The following commands are available:
::csv::iscompletedata
A predicate checking if the argument data is a complete csv record. The result is a boolean flag
indicating the completeness of the data. The result is true if the data is complete.
::csv::joinvalues ?sepChar? ?delChar? ?delMode?
Takes a list of values and returns a string in CSV format containing these values. The separator
character can be defined by the caller, but this is optional. The default is ",". The quoting aka
delimiting character can be defined by the caller, but this is optional. The default is '"'. By
default the quoting mode delMode is "auto", surrounding values with delChar only when needed. When
set to "always" however, values are always surrounded by the delChar instead.
::csv::joinlistvalues ?sepChar? ?delChar? ?delMode?
Takes a list of lists of values and returns a string in CSV format containing these values. The
separator character can be defined by the caller, but this is optional. The default is ",". The
quoting character can be defined by the caller, but this is optional. The default is '"'. By
default the quoting mode delMode is "auto", surrounding values with delChar only when needed. When
set to "always" however, values are always surrounded by the delChar instead. Each element of the
outer list is considered a record, these are separated by newlines in the result. The elements of
each record are formatted as usual (via ::csv::join).
::csv::joinmatrixmatrix ?sepChar? ?delChar? ?delMode?
Takes a matrix object following the API specified for the struct::matrix package and returns a
string in CSV format containing these values. The separator character can be defined by the
caller, but this is optional. The default is ",". The quoting character can be defined by the
caller, but this is optional. The default is ´"'. By default the quoting mode delMode is "auto",
surrounding values with delChar only when needed. When set to "always" however, values are always
surrounded by the delChar instead. Each row of the matrix is considered a record, these are
separated by newlines in the result. The elements of each record are formatted as usual (via
::csv::join).
::csv::read2matrix ?-alternate? chanm {sepChar ,} {expand none}
A wrapper around ::csv::split2matrix (see below) reading CSV-formatted lines from the specified
channel (until EOF) and adding them to the given matrix. For an explanation of the expand argument
see ::csv::split2matrix.
::csv::read2queue ?-alternate? chanq {sepChar ,}
A wrapper around ::csv::split2queue (see below) reading CSV-formatted lines from the specified
channel (until EOF) and adding them to the given queue.
::csv::reportcmdmatrix ?chan?
A report command which can be used by the matrix methods format2string and format2chan. For the
latter this command delegates the work to ::csv::writematrix. cmd is expected to be either
printmatrix or printmatrix2channel. The channel argument, chan, has to be present for the latter
and must not be present for the first.
::csv::split ?-alternate? line ?sepChar? ?delChar?
converts a line in CSV format into a list of the values contained in the line. The character used
to separate the values from each other can be defined by the caller, via sepChar, but this is
optional. The default is ",". The quoting character can be defined by the caller, but this is
optional. The default is '"'.
If the option -alternate is specified a slightly different syntax is used to parse the input. This
syntax is explained below, in the section FORMAT.
::csv::split2matrix ?-alternate? mline {sepChar ,} {expand none}
The same as ::csv::split, but appends the resulting list as a new row to the matrix m, using the
method addrow. The expansion mode specified via expand determines how the command handles a
matrix with less columns than contained in line. The allowed modes are:
none This is the default mode. In this mode it is the responsibility of the caller to ensure
that the matrix has enough columns to contain the full line. If there are not enough
columns the list of values is silently truncated at the end to fit.
empty In this mode the command expands an empty matrix to hold all columns of the specified line,
but goes no further. The overall effect is that the first of a series of lines determines
the number of columns in the matrix and all following lines are truncated to that size, as
if mode none was set.
auto In this mode the command expands the matrix as needed to hold all columns contained in
line. The overall effect is that after adding a series of lines the matrix will have enough
columns to hold all columns of the longest line encountered so far.
::csv::split2queue ?-alternate? qline {sepChar ,}
The same as ::csv::split, but appending the resulting list as a single item to the queue q, using
the method put.
::csv::writematrixmchan ?sepChar? ?delChar?
A wrapper around ::csv::join taking all rows in the matrix m and writing them CSV formatted into
the channel chan.
::csv::writequeueqchan ?sepChar? ?delChar?
A wrapper around ::csv::join taking all items in the queue q (assumes that they are lists) and
writing them CSV formatted into the channel chan.