X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;ds=sidebyside;f=csv.mli;h=ef061e6773d239d58a63ae0765b52170b486ff09;hb=bde8fd1d0283f16620624155a9bfb0b4e67feca9;hp=589e195975779bf0df8f9db823e03b462dc62817;hpb=383c2300507f7b33c4b4606fdd3b2f03a642e0fa;p=ocaml-csv.git diff --git a/csv.mli b/csv.mli index 589e195..ef061e6 100644 --- a/csv.mli +++ b/csv.mli @@ -1,13 +1,13 @@ (** csv.mli - comma separated values parser * - * $Id: csv.mli,v 1.3 2004-12-22 13:47:51 rich Exp $ + * $Id: csv.mli,v 1.8 2006-02-23 15:24:25 rich Exp $ *) type t = string list list (** Representation of CSV files. *) exception Bad_CSV_file of string -(** Badly formed CSV files throw this exception: *) +(** Badly formed CSV files throw this exception. *) val lines : t -> int (** Work out the number of lines in a CSV file. *) @@ -65,6 +65,60 @@ val trim : ?top:bool -> ?left:bool -> ?right:bool -> ?bottom:bool -> t -> t * each row in isolation. *) +val square : t -> t +(** Make the CSV data "square" (actually rectangular). This pads out + * each row with empty cells so that all rows are the same length as + * the longest row. After this operation, every row will have length + * {!Csv.columns}. + *) + +val is_square : t -> bool +(** Return true iff the CSV is "square" (actually rectangular). This + * means that each row has the same number of cells. + *) + +val set_columns : int -> t -> t +(** [set_columns cols csv] makes the CSV data square by forcing the width + * to the given number of [cols]. Any short rows are padded with blank + * cells. Any long rows are truncated. + *) + +val set_rows : int -> t -> t +(** [set_rows rows csv] makes the CSV data have exactly [rows] rows + * by adding empty rows or truncating rows as necessary. + * + * Note that [set_rows] does not make the CSV square. If you want it + * to be square, call either {!Csv.square} or {!Csv.set_columns} after. + *) + +val set_size : int -> int -> t -> t +(** [set_size rows cols csv] makes the CSV data square by forcing the + * size to [rows * cols], adding blank cells or truncating as necessary. + * It is the same as calling [set_columns cols (set_rows rows csv)] + *) + +val sub : int -> int -> int -> int -> t -> t +(** [sub r c rows cols csv] returns a subset of [csv]. The subset is + * defined as having top left corner at row [r], column [c] (counting + * from [0]) and being [rows] deep and [cols] wide. + * + * The returned CSV will be square. + *) + +val compare : t -> t -> int +(** Compare two CSV files for equality, ignoring blank cells at the end + * of a row, and empty rows appended to one or the other. This is + * "semantic" equality - roughly speaking, the two CSV files would + * look the same if opened in a spreadsheet program. + *) + +val to_array : t -> string array array +val of_array : string array array -> t +(** Convenience functions to convert to and from a matrix representation. + * [to_array] will produce a ragged matrix (not all rows will have the + * same length) unless you call {!Csv.square} first. + *) + val associate : string list -> t -> (string * string) list list (** [associate header data] takes a block of data and converts each * row in turn into an assoc list which maps column header to data cell. @@ -86,7 +140,7 @@ val associate : string list -> t -> (string * string) list list * etc. ] * v} * - * Each row is turned into an assoc list (see {!List.assoc}). + * Each row is turned into an assoc list (see [List.assoc]). * * If a row is too short, it is padded with empty cells ([""]). If * a row is too long, it is truncated. @@ -110,3 +164,14 @@ val save_out : ?separator:char -> out_channel -> t -> unit val save : ?separator:char -> string -> t -> unit (** Save string list list to a file. *) + +val print_readable : t -> unit +(** Print the CSV data to [stdout] in a human-readable format. Not much + * is guaranteed about how the CSV is printed, except that it will be + * easier to follow than a "raw" output done with {!Csv.print}. This is + * a one-way operation. There is no easy way to parse the output of + * this command back into CSV data. + *) +val save_out_readable : out_channel -> t -> unit +(** As for {!Csv.print_readable}, allowing the output to be sent to a channel. + *)