]> mj.ucw.cz Git - libucw.git/blob - ucw/table.h
tableprinter: allocation of handles now uses xmalloc_zero/xfree
[libucw.git] / ucw / table.h
1 /*
2  *      UCW Library -- Table printer
3  *
4  *      (c) 2014 Robert Kessl <robert.kessl@economia.cz>
5  */
6
7 #ifndef _UCW_TABLE_H
8 #define _UCW_TABLE_H
9
10 #include <ucw/fastbuf.h>
11 #include <ucw/mempool.h>
12
13 #ifdef CONFIG_UCW_CLEAN_ABI
14 #define table_append_bool ucw_table_append_bool
15 #define table_append_double ucw_table_append_double
16 #define table_append_int ucw_table_append_int
17 #define table_append_intmax ucw_table_append_intmax
18 #define table_append_printf ucw_table_append_printf
19 #define table_append_str ucw_table_append_str
20 #define table_append_u64 ucw_table_append_u64
21 #define table_append_uint ucw_table_append_uint
22 #define table_append_uintmax ucw_table_append_uintmax
23 #define table_cleanup ucw_table_cleanup
24 #define table_col_bool ucw_table_col_bool
25 #define table_col_bool_fmt ucw_table_col_bool_fmt
26 #define table_col_bool_name ucw_table_col_bool_name
27 #define table_col_double ucw_table_col_double
28 #define table_col_double_fmt ucw_table_col_double_fmt
29 #define table_col_double_name ucw_table_col_double_name
30 #define table_col_fbend ucw_table_col_fbend
31 #define table_col_fbstart ucw_table_col_fbstart
32 #define table_col_int ucw_table_col_int
33 #define table_col_int_fmt ucw_table_col_int_fmt
34 #define table_col_int_name ucw_table_col_int_name
35 #define table_col_intmax ucw_table_col_intmax
36 #define table_col_intmax_fmt ucw_table_col_intmax_fmt
37 #define table_col_intmax_name ucw_table_col_intmax_name
38 #define table_col_printf ucw_table_col_printf
39 #define table_col_s64 ucw_table_col_s64
40 #define table_col_s64_fmt ucw_table_col_s64_fmt
41 #define table_col_s64_name ucw_table_col_s64_name
42 #define table_col_str ucw_table_col_str
43 #define table_col_str_fmt ucw_table_col_str_fmt
44 #define table_col_str_name ucw_table_col_str_name
45 #define table_col_u64 ucw_table_col_u64
46 #define table_col_u64_fmt ucw_table_col_u64_fmt
47 #define table_col_u64_name ucw_table_col_u64_name
48 #define table_col_uint ucw_table_col_uint
49 #define table_col_uint_fmt ucw_table_col_uint_fmt
50 #define table_col_uint_name ucw_table_col_uint_name
51 #define table_col_uintmax ucw_table_col_uintmax
52 #define table_col_uintmax_fmt ucw_table_col_uintmax_fmt
53 #define table_col_uintmax_name ucw_table_col_uintmax_name
54 #define table_end ucw_table_end
55 #define table_end_row ucw_table_end_row
56 #define table_fmt_blockline ucw_table_fmt_blockline
57 #define table_fmt_human_readable ucw_table_fmt_human_readable
58 #define table_fmt_machine_readable ucw_table_fmt_machine_readable
59 #define table_get_col_idx ucw_table_get_col_idx
60 #define table_get_col_list ucw_table_get_col_list
61 #define table_init ucw_table_init
62 #define table_set_col_order ucw_table_set_col_order
63 #define table_set_col_order_by_name ucw_table_set_col_order_by_name
64 #define table_set_formatter ucw_table_set_formatter
65 #define table_set_gary_options ucw_table_set_gary_options
66 #define table_set_option ucw_table_set_option
67 #define table_set_option_value ucw_table_set_option_value
68 #define table_start ucw_table_start
69 #endif
70
71 /***
72  * Table definitions
73  * -----------------
74  ***/
75
76 // FIXME: update documentation according to the changes made in recent commits!
77
78 /** Types of columns. These are seldom used explicitly, using a column definition macro is preferred. **/
79 enum column_type {
80   COL_TYPE_STR,         // String
81   COL_TYPE_INT,         // int
82   COL_TYPE_S64,         // Signed 64-bit integer
83   COL_TYPE_INTMAX,      // intmax_t
84   COL_TYPE_UINT,        // unsigned int
85   COL_TYPE_U64,         // Unsigned 64-bit integer
86   COL_TYPE_UINTMAX,     // uintmax_t
87   COL_TYPE_BOOL,        // bool
88   COL_TYPE_DOUBLE,      // double
89   COL_TYPE_ANY,         // Any type
90   COL_TYPE_LAST
91 };
92
93 #define COL_TYPE_UCW           0x100
94 #define COL_TYPE_CUSTOM        0x1000
95
96 /** Justify cell contents to the left. **/
97 #define CELL_ALIGN_LEFT     (1U << 31)
98
99 // CELL_FLAG_MASK has 1's in bits used for column flags,
100 // CELL_WIDTH_MASK has 1's in bits used for column width.
101 #define CELL_FLAG_MASK  (CELL_ALIGN_LEFT)
102 #define CELL_WIDTH_MASK (~CELL_FLAG_MASK)
103
104 #define CELL_OUT_UNINITIALIZED      -1
105 #define CELL_OUT_HUMAN_READABLE     0
106 #define CELL_OUT_MACHINE_READABLE   1
107
108 struct table;
109
110 struct table_user_type {
111   bool (*set_col_instance_option)(struct table *tbl, uint col, const char *value, char **err);
112        // [*] process table option for a column instance
113   uint type;               // [*] type identifier, should be a number shifted by COL_TYPE_CUSTOM
114   const char *default_fmt; // [*] default format used for printing
115 };
116
117 /**
118  * Definition of a single table column.
119  * Usually, this is generated using the `TABLE_COL_`'type' macros.
120  * Fields marked with `[*]` are user-accessible.
121  **/
122 struct table_column {
123   const char *name;             // [*] Name of the column displayed in table header
124   int width;                    // [*] Width of the column (in characters) OR'ed with column flags
125   const char *fmt;              // [*] Default format of each cell in the column
126   enum column_type type;        // [*] Type of the cells in the column
127   int first_column;             // head of linked list of columns of this type
128   int last_column;              // tail of linked list of columns of this type
129   struct table_user_type *type_def;
130 };
131
132 // FIXME: is it correct to have idx and col_def? idx is sufficient and in fact a duplicity of idx
133 struct table_col_info {
134   uint idx;                      // idx is a pointer to struct table::columns
135   struct table_column *col_def;  // this is pointer to the column definition, located in the array struct table::columns
136   char *cell_content;            // content of the cell of the current row
137   int next_column;               // index of next column in linked list of columns of the same type
138   int output_type;               // format of this column
139 };
140
141 /**
142  * Definition of a table. Contains column definitions, and some per-table settings.
143  * Please use only fields marked with `[*]`.
144  **/
145 struct table_template {
146   struct table_column *columns;         // [*] Definition of columns
147   int column_count;                     // [*] Number of columns (calculated by table_init())
148   struct table_col_info *column_order;  // [*] Order of the columns in the print-out of the table
149   uint cols_to_output;                  // [*] Number of columns that are printed
150   const char *col_delimiter;            // [*] Delimiter that is placed between columns
151   // Back-end used for table formatting and its private data
152   struct table_formatter *formatter;
153 };
154
155 /**
156  * Handle of a table. Contains column definitions, per-table settings
157  * and internal data. To change the table definition, please use only
158  * fields marked with `[*]`.
159  **/
160 struct table {
161   struct table_column *columns;         // [*] Definition of columns
162   int column_count;                     // [*] Number of columns (calculated by table_init())
163   struct mempool *pool;                 // Memory pool used for storing table data. Contains global state
164                                         // and data of the current row.
165   struct mempool_state pool_state;      // State of the pool after the table is initialized, i.e., before
166                                         // per-row data have been allocated.
167
168   struct table_col_info *column_order;  // [*] Order of the columns in the print-out of the table
169   uint cols_to_output;                  // [*] Number of columns that are printed
170   const char *col_delimiter;            // [*] Delimiter that is placed between columns
171   uint print_header;                    // [*] 0 indicates that table header should not be printed
172
173   struct fastbuf *out;                  // [*] Fastbuffer to which the table is printed
174   int last_printed_col;                 // Index of the last column which was set. -1 indicates start of row.
175                                         // Used for example for appending to the current column.
176   int row_printing_started;             // Indicates that a row has been started. Duplicates last_printed_col, but harmlessly.
177   struct fbpool fb_col_out;             // Per-cell fastbuf, see table_col_fbstart()
178   int col_out;                          // Index of the column that is currently printed using fb_col_out
179
180   // Back-end used for table formatting and its private data
181   struct table_formatter *formatter;
182   void *data;
183 };
184
185 /****
186  * In most cases, table descriptions are constructed using the following macros.
187  * See the examples above for more details.
188  *
189  *  * `TBL_COLUMNS` indicates the start of definition of columns
190  *  * `TBL_COL_`'type'`(name, width)` defines a column of a given type
191  *  * `TBL_COL_`'type'`_FMT(name, width, fmt)` defines a column with a custom format string
192  *  * `TBL_COL_END` ends the column definitions
193  *  * `TBL_COL_ORDER` specifies custom ordering of columns in the output
194  *  * `TBL_COL_DELIMITER` and `TBL_APPEND_DELIMITER` override default delimiters
195  *  * `TBL_OUTPUT_HUMAN_READABLE` requests human-readable formatting (this is the default)
196  *  * `TBL_OUTPUT_MACHINE_READABLE` requests machine-readable TSV output
197  *  * `TBL_OUTPUT_BLOCKLINE` requests block formatting (each cell printed a pair of a key and value on its own line)
198  *
199  ***/
200
201 #define TBL_COL_LIST_INIT     .first_column = -1, .last_column = -1
202 #define TBL_COL_STR(_name, _width)            { .name = _name, .width = _width, .fmt = "%s", .type = COL_TYPE_STR, TBL_COL_LIST_INIT }
203 #define TBL_COL_INT(_name, _width)            { .name = _name, .width = _width, .fmt = "%d", .type = COL_TYPE_INT, TBL_COL_LIST_INIT }
204 #define TBL_COL_S64(_name, _width)            { .name = _name, .width = _width, .fmt = "%lld", .type = COL_TYPE_S64, TBL_COL_LIST_INIT }
205 #define TBL_COL_UINT(_name, _width)           { .name = _name, .width = _width, .fmt = "%u", .type = COL_TYPE_UINT, TBL_COL_LIST_INIT }
206 #define TBL_COL_U64(_name, _width)            { .name = _name, .width = _width, .fmt = "%llu", .type = COL_TYPE_U64, TBL_COL_LIST_INIT }
207 #define TBL_COL_INTMAX(_name, _width)         { .name = _name, .width = _width, .fmt = "%jd", .type = COL_TYPE_INTMAX, TBL_COL_LIST_INIT }
208 #define TBL_COL_UINTMAX(_name, _width)        { .name = _name, .width = _width, .fmt = "%ju", .type = COL_TYPE_UINTMAX, TBL_COL_LIST_INIT }
209 #define TBL_COL_HEXUINT(_name, _width)        { .name = _name, .width = _width, .fmt = "0x%x", .type = COL_TYPE_UINT, TBL_COL_LIST_INIT }
210 #define TBL_COL_DOUBLE(_name, _width, _prec)  { .name = _name, .width = _width, .fmt = "%." #_prec "lf", .type = COL_TYPE_DOUBLE, TBL_COL_LIST_INIT }
211 #define TBL_COL_BOOL(_name, _width)           { .name = _name, .width = _width, .fmt = "%s", .type = COL_TYPE_BOOL, TBL_COL_LIST_INIT }
212 #define TBL_COL_ANY(_name, _width)            { .name = _name, .width = _width, .fmt = 0, .type = COL_TYPE_ANY, TBL_COL_LIST_INIT }
213
214 #define TBL_COL_STR_FMT(_name, _width, _fmt)            { .name = _name, .width = _width, .fmt = _fmt, .type = COL_TYPE_STR, TBL_COL_LIST_INIT }
215 #define TBL_COL_INT_FMT(_name, _width, _fmt)            { .name = _name, .width = _width, .fmt = _fmt, .type = COL_TYPE_INT, TBL_COL_LIST_INIT }
216 #define TBL_COL_S64_FMT(_name, _width, _fmt)            { .name = _name, .width = _width, .fmt = _fmt, .type = COL_TYPE_S64, TBL_COL_LIST_INIT }
217 #define TBL_COL_UINT_FMT(_name, _width, _fmt)           { .name = _name, .width = _width, .fmt = _fmt, .type = COL_TYPE_UINT, TBL_COL_LIST_INIT }
218 #define TBL_COL_U64_FMT(_name, _width, _fmt)            { .name = _name, .width = _width, .fmt = _fmt, .type = COL_TYPE_U64, TBL_COL_LIST_INIT }
219 #define TBL_COL_INTMAX_FMT(_name, _width, _fmt)         { .name = _name, .width = _width, .fmt = _fmt, .type = COL_TYPE_INTMAX, TBL_COL_LIST_INIT }
220 #define TBL_COL_UINTMAX_FMT(_name, _width, _fmt)        { .name = _name, .width = _width, .fmt = _fmt, .type = COL_TYPE_UINTMAX, TBL_COL_LIST_INIT }
221 #define TBL_COL_HEXUINT_FMT(_name, _width, _fmt)        { .name = _name, .width = _width, .fmt = _fmt, .type = COL_TYPE_UINT, TBL_COL_LIST_INIT }
222 #define TBL_COL_BOOL_FMT(_name, _width, _fmt)           { .name = _name, .width = _width, .fmt = _fmt, .type = COL_TYPE_BOOL, TBL_COL_LIST_INIT }
223
224 #define TBL_COL_END { .name = 0, .width = 0, .fmt = 0, .type = COL_TYPE_LAST }
225
226 #define TBL_COLUMNS  .columns = (struct table_column [])
227 #define TBL_COL_ORDER(order) .column_order = (struct table_col_info *) order, .cols_to_output = ARRAY_SIZE(order)
228 #define TBL_COL_DELIMITER(_delimiter_) .col_delimiter = _delimiter_
229 #define TBL_COL(_idx) { .idx = _idx, .output_type = -1, .next_column = -1 }
230 #define TBL_COL_FMT(_idx, _fmt) { .idx = _idx, .output_type = -1, .next_column = -1, .fmt = _fmt }
231 #define TBL_COL_TYPE(_idx, _type) { .idx = _idx, .output_type = _type, .next_column = -1 }
232
233 #define TBL_OUTPUT_HUMAN_READABLE     .formatter = &table_fmt_human_readable
234 #define TBL_OUTPUT_BLOCKLINE          .formatter = &table_fmt_blockline
235 #define TBL_OUTPUT_MACHINE_READABLE   .formatter = &table_fmt_machine_readable
236
237 #define TBL_COL_ITER(_tbl, _colidx, _var, _idxval) struct table_col_info *_var = NULL; int _idxval = _tbl->columns[_colidx].first_column;\
238   for(_idxval = _tbl->columns[_colidx].first_column, _var = _tbl->column_order + _idxval; _idxval != -1; _idxval = _tbl->column_order[_idxval].next_column, _var = _tbl->column_order + _idxval)
239
240 /**
241  * Creates a new table from a table template. The template should already contain
242  * the definitions of columns.
243  **/
244 struct table *table_init(struct table_template *tbl_template);
245
246 /** Destroy a table definition, freeing all memory used by it. **/
247 void table_cleanup(struct table *tbl);
248
249 /**
250  * Start printing of a table. This is a prerequisite to setting of column values.
251  * After @table_start() is called, it is no longer possible to change parameters
252  * of the table by `table_set_`'something' nor by direct access to the table structure.
253  **/
254 void table_start(struct table *tbl, struct fastbuf *out);
255
256 /**
257  * This function must be called after all the rows of the current table are printed,
258  * making the table structure ready for the next table. You can call `table_set_`'something'
259  * between @table_end() and @table_start().
260  **/
261 void table_end(struct table *tbl);
262
263 /***
264  * Filling tables with data
265  * ------------------------
266  *
267  * For each column type, there are functions for filling of cells
268  * of the particular type:
269  *
270  *   * `table_col_`'type'`(table, idx, value)` sets the cell in column `idx`
271  *     to the `value`
272  *   * `table_col_`'type'`_fmt(table, idx, fmt, ...)` does the same with
273  *     a custom printf-like format string
274  *   * `table_col_`'type'`_name(table, name, value)` refers to the column
275  *     by its name instead of its index.
276  *   * `table_append_`'type'`(table, value)` appends a value to the most
277  *     recently accessed cell.
278  ***/
279
280 #define TABLE_COL_PROTO(_name_, _type_) void table_col_##_name_(struct table *tbl, int col, _type_ val);\
281   void table_col_##_name_##_name(struct table *tbl, const char *col_name, _type_ val);\
282   void table_col_##_name_##_fmt(struct table *tbl, int col, const char *fmt, _type_ val) FORMAT_CHECK(printf, 3, 0);
283
284 // table_col_<type>_fmt has one disadvantage: it is not possible to
285 // check whether fmt contains format that contains formatting that is
286 // compatible with _type_
287
288 TABLE_COL_PROTO(int, int);
289 TABLE_COL_PROTO(uint, uint);
290 TABLE_COL_PROTO(double, double);
291 TABLE_COL_PROTO(str, const char *);
292 TABLE_COL_PROTO(intmax, intmax_t);
293 TABLE_COL_PROTO(uintmax, uintmax_t);
294 TABLE_COL_PROTO(s64, s64);
295 TABLE_COL_PROTO(u64, u64);
296
297 void table_col_bool(struct table *tbl, int col, uint val);
298 void table_col_bool_name(struct table *tbl, const char *col_name, uint val);
299 void table_col_bool_fmt(struct table *tbl, int col, const char *fmt, uint val);
300 #undef TABLE_COL_PROTO
301
302 /**
303  * Set a particular cell of the current row to a string formatted
304  * by sprintf(). This function can set a column of an arbitrary type.
305  **/
306 void table_col_printf(struct table *tbl, int col, const char *fmt, ...) FORMAT_CHECK(printf, 3, 4);
307
308 /**
309  * Alternatively, a string cell can be constructed as a stream.
310  * This function creates a fastbuf stream connected to the contents
311  * of the particular cell. Before you close the stream by @table_col_fbend(),
312  * no other operations with cells are allowed.
313  **/
314 struct fastbuf *table_col_fbstart(struct table *tbl, int col);
315
316 /**
317  * Close the stream that is used for printing of the current column.
318  **/
319 void table_col_fbend(struct table *tbl);
320
321 /**
322  * Called when all cells of the current row have their values filled in.
323  * It sends the completed row to the output stream.
324  **/
325 void table_end_row(struct table *tbl);
326
327 /**
328  * Resets data in current row.
329  **/
330 void table_reset_row(struct table *tbl);
331
332 /***
333  * Configuration functions
334  * -----------------------
335  ***/
336
337 /**
338  * Find the index of a column with name @col_name. Returns -1 if there is no such column.
339  **/
340 int table_get_col_idx(struct table *tbl, const char *col_name);
341
342
343 /**
344  * Sets a string argument to a column realization
345  **/
346 bool table_set_col_opt_default(struct table *tbl, int col_copy_idx, const char *col_arg, char ** err);
347
348 /**
349  * Returns a comma-and-space-separated list of column names, allocated from table's internal
350  * memory pool.
351  **/
352 const char *table_get_col_list(struct table *tbl);
353
354 /**
355  * Sets the order in which the columns are printed. The @col_order parameter is used until @table_end() or
356  * @table_cleanup() is called. The table stores only the pointer and the memory pointed to by @col_order is
357  * allocated and deallocated by the caller.
358  **/
359 void table_set_col_order(struct table *tbl, int *col_order, int col_order_size);
360
361 /**
362  * Returns 1 if col_idx will be printed, 0 otherwise.
363  **/
364 bool table_col_is_printed(struct table *tbl, uint col_idx);
365
366 /**
367  * Sets the order in which the columns are printed. The specification is a string with comma-separated column
368  * names. Returns NULL for success and an error message otherwise. The string is not referenced after
369  * this function returns.
370  *
371  * The format of the col_order string is the following:
372  * <col-order-string> := <col-def>[,<col-def>]*
373  *
374  * <col-def> := <col-name> '[' <col-opt> ']'
375  * <col-name> is a string that does not contain comma ',' or '[',']' brackets
376  * <col-opt> is currently only one string.
377  *
378  * FIXME In the future, we should allow <col-opt> to be a comma(,) separated list of identifiers
379  **/
380 const char *table_set_col_order_by_name(struct table *tbl, const char *col_order);
381
382 /**
383  * Sets table formatter. See below for the list of formatters.
384  **/
385 void table_set_formatter(struct table *tbl, struct table_formatter *fmt);
386
387 /**
388  * Set a table option. All options have a key and a value. Currently,
389  * the following keys are defined (other keys can be accepted by formatters):
390  *
391  * [options="header"]
392  * |===================================================================================================
393  * | key        | value                         | meaning
394  * | `header`   | 0 or 1                        | set whether a table header should be printed
395  * | `noheader` | 'none'                        | equivalent to `header`=0
396  * | `cols`     | comma-separated column list   | set order of columns
397  * | `fmt`      | `human`/`machine`/`block`     | set table formatter to one of the built-in formatters
398  * | `col-delim`| string                        | set column delimiter
399  * |===================================================================================================
400  **/
401 const char *table_set_option_value(struct table *tbl, const char *key, const char *value);
402
403 /**
404  * Sets a table option given as 'key'`:`'value' or 'key' (with no value).
405  **/
406 const char *table_set_option(struct table *tbl, const char *opt);
407
408 /**
409  * Sets several table option in 'key'`:`'value' form, stored in a growing array.
410  * This is frequently used for options given on the command line.
411  **/
412 const char *table_set_gary_options(struct table *tbl, char **gary_table_opts);
413
414 /***
415  * Formatters
416  * ----------
417  *
418  * Transformation of abstract cell data to the characters in the output stream
419  * is under control of a formatter (which serves as a back-end of the table printer).
420  * There are several built-in formatters, but you can define your own.
421  *
422  * A formatter is described by a structure, which contains pointers to several
423  * call-back functions, which are called by the table printer at specific occasions.
424  *
425  * The formatter can keep its internal state in the `data` field of `struct table`
426  * and allocate temporary data from the table's memory pool. Memory allocated in
427  * the `row_output` call-back is freed before the next row begins. Memory allocated
428  * between the beginning of `table_start` and the end of `table_end` is freed after
429  * `table_end`. Memory allocated by `process_option` when no table is started
430  * is kept until @table_cleanup().
431  ***/
432
433 /** Definition of a formatter back-end. **/
434 struct table_formatter {
435   void (*row_output)(struct table *tbl);        // [*] Function that outputs one row
436   void (*table_start)(struct table *tbl);       // [*] table_start callback (optional)
437   void (*table_end)(struct table *tbl);         // [*] table_end callback (optional)
438   bool (*process_option)(struct table *tbl, const char *key, const char *value, const char **err);
439         // [*] Process table option and possibly return an error message (optional)
440   const char *formats[];
441 };
442
443 /** Standard formatter for human-readable output. **/
444 extern struct table_formatter table_fmt_human_readable;
445
446 /** Standard formatter for machine-readable output (tab-separated values). **/
447 extern struct table_formatter table_fmt_machine_readable;
448
449 /**
450  * Standard formatter for block output. Each cell is output on its own line
451  * of the form `column_name: value`. Rows are separated by blank lines.
452  **/
453 extern struct table_formatter table_fmt_blockline;
454
455 #endif