2 * UCW Library -- Table printer
4 * (c) 2014 Robert Kessl <robert.kessl@economia.cz>
10 #include <ucw/fastbuf.h>
11 #include <ucw/mempool.h>
12 #include <ucw/xtypes.h>
14 // FIXME: update these macros
15 #ifdef CONFIG_UCW_CLEAN_ABI
16 #define table_append_bool ucw_table_append_bool
17 #define table_append_double ucw_table_append_double
18 #define table_append_int ucw_table_append_int
19 #define table_append_intmax ucw_table_append_intmax
20 #define table_append_printf ucw_table_append_printf
21 #define table_append_str ucw_table_append_str
22 #define table_append_u64 ucw_table_append_u64
23 #define table_append_uint ucw_table_append_uint
24 #define table_append_uintmax ucw_table_append_uintmax
25 #define table_cleanup ucw_table_cleanup
26 #define table_col_bool ucw_table_col_bool
27 #define table_col_bool_fmt ucw_table_col_bool_fmt
28 #define table_col_bool_name ucw_table_col_bool_name
29 #define table_col_double ucw_table_col_double
30 #define table_col_double_fmt ucw_table_col_double_fmt
31 #define table_col_double_name ucw_table_col_double_name
32 #define table_col_fbend ucw_table_col_fbend
33 #define table_col_fbstart ucw_table_col_fbstart
34 #define table_col_int ucw_table_col_int
35 #define table_col_int_fmt ucw_table_col_int_fmt
36 #define table_col_int_name ucw_table_col_int_name
37 #define table_col_intmax ucw_table_col_intmax
38 #define table_col_intmax_fmt ucw_table_col_intmax_fmt
39 #define table_col_intmax_name ucw_table_col_intmax_name
40 #define table_col_printf ucw_table_col_printf
41 #define table_col_s64 ucw_table_col_s64
42 #define table_col_s64_fmt ucw_table_col_s64_fmt
43 #define table_col_s64_name ucw_table_col_s64_name
44 #define table_col_str ucw_table_col_str
45 #define table_col_str_fmt ucw_table_col_str_fmt
46 #define table_col_str_name ucw_table_col_str_name
47 #define table_col_u64 ucw_table_col_u64
48 #define table_col_u64_fmt ucw_table_col_u64_fmt
49 #define table_col_u64_name ucw_table_col_u64_name
50 #define table_col_uint ucw_table_col_uint
51 #define table_col_uint_fmt ucw_table_col_uint_fmt
52 #define table_col_uint_name ucw_table_col_uint_name
53 #define table_col_uintmax ucw_table_col_uintmax
54 #define table_col_uintmax_fmt ucw_table_col_uintmax_fmt
55 #define table_col_uintmax_name ucw_table_col_uintmax_name
56 #define table_end ucw_table_end
57 #define table_end_row ucw_table_end_row
58 #define table_fmt_blockline ucw_table_fmt_blockline
59 #define table_fmt_human_readable ucw_table_fmt_human_readable
60 #define table_fmt_machine_readable ucw_table_fmt_machine_readable
61 #define table_get_col_idx ucw_table_get_col_idx
62 #define table_get_col_list ucw_table_get_col_list
63 #define table_init ucw_table_init
64 #define table_set_col_order ucw_table_set_col_order
65 #define table_set_col_order_by_name ucw_table_set_col_order_by_name
66 #define table_set_formatter ucw_table_set_formatter
67 #define table_set_gary_options ucw_table_set_gary_options
68 #define table_set_option ucw_table_set_option
69 #define table_set_option_value ucw_table_set_option_value
70 #define table_start ucw_table_start
78 // FIXME: update documentation according to the changes made in recent commits!
80 /** Types of columns. These are seldom used explicitly, using a column definition macro is preferred. **/
82 #define COL_TYPE_ANY NULL
84 /** Justify cell contents to the left. **/
85 #define CELL_ALIGN_LEFT (1U << 31)
87 // CELL_FLAG_MASK has 1's in bits used for column flags,
88 // CELL_WIDTH_MASK has 1's in bits used for column width.
89 #define CELL_FLAG_MASK (CELL_ALIGN_LEFT)
90 #define CELL_WIDTH_MASK (~CELL_FLAG_MASK)
95 * Definition of a single table column.
96 * Usually, this is generated using the `TABLE_COL_`'type' macros.
97 * Fields marked with `[*]` are user-accessible.
100 const char *name; // [*] Name of the column displayed in table header
101 int width; // [*] Width of the column (in characters) OR'ed with column flags
103 const struct xtype *type_def;
105 bool (*set_col_instance_option)(struct table *tbl, uint col, const char *value, char **err);
106 // [*] process table option for a column instance
109 // FIXME: is it correct to have idx and col_def? idx is sufficient and in fact a duplicity of idx
110 // idx is used only for initialization and col_def is used in other cases
111 struct table_col_instance {
112 uint idx; // idx is a index into struct table::columns
113 const struct table_column *col_def; // this is pointer to the column definition, located in the array struct table::columns
114 const char *cell_content; // content of the cell of the current row
115 int next_column; // index of next column in linked list of columns of the same type
116 enum xtype_fmt output_type; // format of this column
120 * Definition of a table. Contains column definitions, and some per-table settings.
121 * Please use only fields marked with `[*]`.
123 struct table_template {
124 const struct table_column *columns; // [*] Definition of columns
125 struct table_col_instance *column_order; // [*] Order of the columns in the print-out of the table
126 uint cols_to_output; // [*] Number of columns that are printed
127 const char *col_delimiter; // [*] Delimiter that is placed between columns
128 // Back-end used for table formatting and its private data
129 struct table_formatter *formatter;
133 * Handle of a table. Contains column definitions, per-table settings
134 * and internal data. To change the table definition, please use only
135 * fields marked with `[*]`.
138 const struct table_column *columns; // [*] Definition of columns
139 int column_count; // [*] Number of columns (calculated by table_init())
140 int *ll_headers; // headers of linked lists that connects column instances
141 struct mempool *pool; // Memory pool used for storing table data. Contains global state
142 // and data of the current row.
143 struct mempool_state pool_state; // State of the pool after the table is initialized, i.e., before
144 // per-row data have been allocated.
146 struct table_col_instance *column_order; // [*] Order of the columns in the print-out of the table
147 uint cols_to_output; // [*] Number of columns that are printed
148 const char *col_delimiter; // [*] Delimiter that is placed between columns
149 uint print_header; // [*] 0 indicates that table header should not be printed
151 struct fastbuf *out; // [*] Fastbuffer to which the table is printed
152 int last_printed_col; // Index of the last column which was set. -1 indicates start of row.
153 // Used for example for appending to the current column.
154 int row_printing_started; // Indicates that a row has been started. Duplicates last_printed_col, but harmlessly.
155 struct fbpool fb_col_out; // Per-cell fastbuf, see table_col_fbstart()
156 int col_out; // Index of the column that is currently printed using fb_col_out
158 // Back-end used for table formatting and its private data
159 struct table_formatter *formatter;
164 * In most cases, table descriptions are constructed using the following macros.
165 * See the examples above for more details.
167 * * `TBL_COLUMNS` indicates the start of definition of columns
168 * * `TBL_COL_`'type'`(name, width)` defines a column of a given type
169 * * `TBL_COL_`'type'`_FMT(name, width, fmt)` defines a column with a custom format string
170 * * `TBL_COL_END` ends the column definitions
171 * * `TBL_COL_ORDER` specifies custom ordering of columns in the output
172 * * `TBL_COL_DELIMITER` and `TBL_APPEND_DELIMITER` override default delimiters
173 * * `TBL_OUTPUT_HUMAN_READABLE` requests human-readable formatting (this is the default)
174 * * `TBL_OUTPUT_MACHINE_READABLE` requests machine-readable TSV output
175 * * `TBL_OUTPUT_BLOCKLINE` requests block formatting (each cell printed a pair of a key and value on its own line)
179 #define TBL_COL_STR(_name, _width) { .name = _name, .width = _width, .fmt = XTYPE_FMT_DEFAULT, .type_def = &xt_str }
180 #define TBL_COL_INT(_name, _width) { .name = _name, .width = _width, .fmt = XTYPE_FMT_DEFAULT, .type_def = &xt_int }
181 #define TBL_COL_S64(_name, _width) { .name = _name, .width = _width, .fmt = XTYPE_FMT_DEFAULT, .type_def = &xt_s64 }
182 #define TBL_COL_UINT(_name, _width) { .name = _name, .width = _width, .fmt = XTYPE_FMT_DEFAULT, .type_def = &xt_uint }
183 #define TBL_COL_U64(_name, _width) { .name = _name, .width = _width, .fmt = XTYPE_FMT_DEFAULT, .type_def = &xt_u64 }
184 #define TBL_COL_INTMAX(_name, _width) { .name = _name, .width = _width, .fmt = XTYPE_FMT_DEFAULT, .type_def = &xt_intmax }
185 #define TBL_COL_UINTMAX(_name, _width) { .name = _name, .width = _width, .fmt = XTYPE_FMT_DEFAULT, .type_def = &xt_uintmax }
186 #define TBL_COL_HEXUINT(_name, _width) { .name = _name, .width = _width, .fmt = XTYPE_FMT_DEFAULT, .type_def = &xt_uint }
187 #define TBL_COL_DOUBLE(_name, _width) { .name = _name, .width = _width, .fmt = XTYPE_FMT_DEFAULT, .type_def = &xt_double }
188 #define TBL_COL_BOOL(_name, _width) { .name = _name, .width = _width, .fmt = XTYPE_FMT_DEFAULT, .type_def = &xt_bool }
189 #define TBL_COL_ANY(_name, _width) { .name = _name, .width = _width, .fmt = XTYPE_FMT_DEFAULT, .type_def = COL_TYPE_ANY }
190 #define TBL_COL_CUSTOM(_name, _width, _xtype) { .name = _name, .width = _width, .fmt = XTYPE_FMT_DEFAULT, .type_def = _xtype }
192 #define TBL_COL_STR_FMT(_name, _width, _fmt) { .name = _name, .width = _width, .fmt = _fmt, .type_def = &xt_str }
193 #define TBL_COL_INT_FMT(_name, _width, _fmt) { .name = _name, .width = _width, .fmt = _fmt, .type_def = &xt_int }
194 #define TBL_COL_S64_FMT(_name, _width, _fmt) { .name = _name, .width = _width, .fmt = _fmt, .type_def = &xt_s64 }
195 #define TBL_COL_UINT_FMT(_name, _width, _fmt) { .name = _name, .width = _width, .fmt = _fmt, .type_def = &xt_uint }
196 #define TBL_COL_U64_FMT(_name, _width, _fmt) { .name = _name, .width = _width, .fmt = _fmt, .type_def = &xt_u64 }
197 #define TBL_COL_INTMAX_FMT(_name, _width, _fmt) { .name = _name, .width = _width, .fmt = _fmt, .type_def = &xt_intmax }
198 #define TBL_COL_UINTMAX_FMT(_name, _width, _fmt) { .name = _name, .width = _width, .fmt = _fmt, .type_def = &xt_uintmax }
199 #define TBL_COL_HEXUINT_FMT(_name, _width, _fmt) { .name = _name, .width = _width, .fmt = _fmt, .type_def = &xt_uint }
200 #define TBL_COL_BOOL_FMT(_name, _width, _fmt) { .name = _name, .width = _width, .fmt = _fmt, .type_def = &xt_bool }
201 #define TBL_COL_ANY_FMT(_name, _width, _fmt) { .name = _name, .width = _width, .fmt = _fmt, .type_def = COL_TYPE_ANY }
202 #define TBL_COL_DOUBLE_FMT(_name, _width, _fmt) { .name = _name, .width = _width, .fmt = _fmt, .type_def = &xt_double }
204 #define TBL_COL_END { .name = 0, .width = 0, .fmt = 0, .type_def = NULL }
206 #define TBL_COLUMNS .columns = (struct table_column [])
207 #define TBL_COL_ORDER(order) .column_order = (struct table_col_instance *) order, .cols_to_output = ARRAY_SIZE(order)
208 #define TBL_COL_DELIMITER(_delimiter_) .col_delimiter = _delimiter_
209 #define TBL_COL(_idx) { .idx = _idx, .output_type = XTYPE_FMT_DEFAULT, .next_column = -1 }
210 #define TBL_COL_FMT(_idx, _fmt) { .idx = _idx, .output_type = _fmt, .next_column = -1 }
211 #define TBL_COL_TYPE(_idx, _type) { .idx = _idx, .output_type = _type, .next_column = -1 }
213 #define TBL_OUTPUT_HUMAN_READABLE .formatter = &table_fmt_human_readable
214 #define TBL_OUTPUT_BLOCKLINE .formatter = &table_fmt_blockline
215 #define TBL_OUTPUT_MACHINE_READABLE .formatter = &table_fmt_machine_readable
217 #define TBL_COL_ITER_START(_tbl, _colidx, _var, _idxval) { struct table_col_instance *_var = NULL; int _idxval = _tbl->ll_headers[_colidx]; \
218 for(_idxval = _tbl->ll_headers[_colidx], _var = _tbl->column_order + _idxval; _idxval != -1; _idxval = _tbl->column_order[_idxval].next_column, _var = _tbl->column_order + _idxval)
220 #define TBL_COL_ITER_END }
223 * Creates a new table from a table template. The template should already contain
224 * the definitions of columns.
226 struct table *table_init(const struct table_template *tbl_template);
228 /** Destroy a table definition, freeing all memory used by it. **/
229 void table_cleanup(struct table *tbl);
232 * Start printing of a table. This is a prerequisite to setting of column values.
233 * After @table_start() is called, it is no longer possible to change parameters
234 * of the table by `table_set_`'something' nor by direct access to the table structure.
236 void table_start(struct table *tbl, struct fastbuf *out);
239 * This function must be called after all the rows of the current table are printed,
240 * making the table structure ready for the next table. You can call `table_set_`'something'
241 * between @table_end() and @table_start().
243 void table_end(struct table *tbl);
246 * Filling tables with data
247 * ------------------------
249 * For each column type, there are functions for filling of cells
250 * of the particular type:
252 * * `table_col_`'type'`(table, idx, value)` sets the cell in column `idx`
254 * * `table_col_`'type'`_fmt(table, idx, fmt, ...)` does the same with
255 * a custom printf-like format string
256 * * `table_col_`'type'`_name(table, name, value)` refers to the column
257 * by its name instead of its index.
258 * * `table_append_`'type'`(table, value)` appends a value to the most
259 * recently accessed cell.
263 #define TABLE_COL_PROTO(_name_, _type_) void table_col_##_name_(struct table *tbl, int col, _type_ val);
265 // table_col_<type>_fmt has one disadvantage: it is not possible to
266 // check whether fmt contains format that contains formatting that is
267 // compatible with _type_
269 TABLE_COL_PROTO(int, int)
270 TABLE_COL_PROTO(uint, uint)
271 TABLE_COL_PROTO(double, double)
272 TABLE_COL_PROTO(intmax, intmax_t)
273 TABLE_COL_PROTO(uintmax, uintmax_t)
274 TABLE_COL_PROTO(s64, s64)
275 TABLE_COL_PROTO(u64, u64)
276 TABLE_COL_PROTO(bool, bool)
278 void table_col_str(struct table *tbl, int col, const char * val);
280 /** macros that enables easy definitions of bodies of table_col_<something> functions **/
282 #define TABLE_COL_BODY(_name_, _type_) void table_col_##_name_(struct table *tbl, int col, _type_ val) {\
283 table_col_generic_format(tbl, col, (void*)&val, &xt_##_name_);\
286 void table_col_generic_format(struct table *tbl, int col, void *value, const struct xtype *expected_type);
289 * Set a particular cell of the current row to a string formatted
290 * by sprintf(). This function can set a column of an arbitrary type.
292 void table_col_printf(struct table *tbl, int col, const char *fmt, ...) FORMAT_CHECK(printf, 3, 4);
295 * Alternatively, a string cell can be constructed as a stream.
296 * This function creates a fastbuf stream connected to the contents
297 * of the particular cell. Before you close the stream by @table_col_fbend(),
298 * no other operations with cells are allowed.
300 struct fastbuf *table_col_fbstart(struct table *tbl, int col);
303 * Close the stream that is used for printing of the current column.
305 void table_col_fbend(struct table *tbl);
308 * Called when all cells of the current row have their values filled in.
309 * It sends the completed row to the output stream.
311 void table_end_row(struct table *tbl);
314 * Resets data in current row.
316 void table_reset_row(struct table *tbl);
319 * Configuration functions
320 * -----------------------
324 * Find the index of a column with name @col_name. Returns -1 if there is no such column.
326 int table_get_col_idx(struct table *tbl, const char *col_name);
330 * Sets a string argument to a column instance
332 bool table_set_col_opt_default(struct table *tbl, int col_idx, const char *col_arg, char ** err);
335 * Returns a comma-and-space-separated list of column names, allocated from table's internal
338 const char *table_get_col_list(struct table *tbl);
341 * Sets the order in which the columns are printed. The @col_order parameter is used until @table_end() or
342 * @table_cleanup() is called. The table stores only the pointer and the memory pointed to by @col_order is
343 * allocated and deallocated by the caller.
345 void table_set_col_order(struct table *tbl, int *col_order, int col_order_size);
348 * Returns 1 if col_idx will be printed, 0 otherwise.
350 bool table_col_is_printed(struct table *tbl, uint col_idx);
353 * Sets the order in which the columns are printed. The specification is a string with comma-separated column
354 * names. Returns NULL for success and an error message otherwise. The string is not referenced after
355 * this function returns.
357 * The format of the col_order string is the following:
358 * <col-order-string> := <col-def>[,<col-def>]*
360 * <col-def> := <col-name> '[' <col-opt> ']'
362 * <col-name> is a string that does not contain comma ',' or '[',']' brackets
364 * <col-opt> is currently only one string.
366 * FIXME In the future, we should allow <col-opt> to be a comma(,) separated list of identifiers
368 const char *table_set_col_order_by_name(struct table *tbl, const char *col_order);
371 * Sets table formatter. See below for the list of formatters.
373 void table_set_formatter(struct table *tbl, struct table_formatter *fmt);
376 * Set a table option. All options have a key and a value. Currently,
377 * the following keys are defined (other keys can be accepted by formatters):
380 * |===================================================================================================
381 * | key | value | meaning
382 * | `header` | 0 or 1 | set whether a table header should be printed
383 * | `noheader` | 'none' | equivalent to `header`=0
384 * | `cols` | comma-separated column list | set order of columns
385 * | `fmt` | `human`/`machine`/`block` | set table formatter to one of the built-in formatters
386 * | `col-delim`| string | set column delimiter
387 * |===================================================================================================
389 const char *table_set_option_value(struct table *tbl, const char *key, const char *value);
392 * Sets a table option given as 'key'`:`'value' or 'key' (with no value).
394 const char *table_set_option(struct table *tbl, const char *opt);
397 * Sets several table option in 'key'`:`'value' form, stored in a growing array.
398 * This is frequently used for options given on the command line.
400 const char *table_set_gary_options(struct table *tbl, char **gary_table_opts);
406 * Transformation of abstract cell data to the characters in the output stream
407 * is under control of a formatter (which serves as a back-end of the table printer).
408 * There are several built-in formatters, but you can define your own.
410 * A formatter is described by a structure, which contains pointers to several
411 * call-back functions, which are called by the table printer at specific occasions.
413 * The formatter can keep its internal state in the `data` field of `struct table`
414 * and allocate temporary data from the table's memory pool. Memory allocated in
415 * the `row_output` call-back is freed before the next row begins. Memory allocated
416 * between the beginning of `table_start` and the end of `table_end` is freed after
417 * `table_end`. Memory allocated by `process_option` when no table is started
418 * is kept until @table_cleanup().
421 /** Definition of a formatter back-end. **/
422 struct table_formatter {
423 void (*row_output)(struct table *tbl); // [*] Function that outputs one row
424 void (*table_start)(struct table *tbl); // [*] table_start callback (optional)
425 void (*table_end)(struct table *tbl); // [*] table_end callback (optional)
426 bool (*process_option)(struct table *tbl, const char *key, const char *value, const char **err);
427 // [*] Process table option and possibly return an error message (optional)
430 /** Standard formatter for human-readable output. **/
431 extern struct table_formatter table_fmt_human_readable;
433 /** Standard formatter for machine-readable output (tab-separated values). **/
434 extern struct table_formatter table_fmt_machine_readable;
437 * Standard formatter for block output. Each cell is output on its own line
438 * of the form `column_name: value`. Rows are separated by blank lines.
440 extern struct table_formatter table_fmt_blockline;