]> mj.ucw.cz Git - libucw.git/blob - ucw/table.h
bf62a58781e149ce075fa5ed3fcb5c1150c5f82a
[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_fbend ucw_table_col_fbend
29 #define table_col_fbstart ucw_table_col_fbstart
30 #define table_col_int ucw_table_col_int
31 #define table_col_intmax ucw_table_col_intmax
32 #define table_col_printf ucw_table_col_printf
33 #define table_col_str ucw_table_col_str
34 #define table_col_u64 ucw_table_col_u64
35 #define table_col_uint ucw_table_col_uint
36 #define table_col_uintmax ucw_table_col_uintmax
37 #define table_end ucw_table_end
38 #define table_end_row ucw_table_end_row
39 #define table_fmt_human_readable ucw_table_fmt_human_readable
40 #define table_fmt_machine_readable ucw_table_fmt_machine_readable
41 #define table_get_col_idx ucw_table_get_col_idx
42 #define table_get_col_list ucw_table_get_col_list
43 #define table_init ucw_table_init
44 #define table_set_col_order ucw_table_set_col_order
45 #define table_set_col_order_by_name ucw_table_set_col_order_by_name
46 #define table_set_formatter ucw_table_set_formatter
47 #define table_set_gary_options ucw_table_set_gary_options
48 #define table_set_option ucw_table_set_option
49 #define table_set_option_value ucw_table_set_option_value
50 #define table_start ucw_table_start
51 #endif
52
53 enum column_type {
54   COL_TYPE_STR,
55   COL_TYPE_INT,
56   COL_TYPE_S64,
57   COL_TYPE_INTMAX,
58   COL_TYPE_UINT,
59   COL_TYPE_U64,
60   COL_TYPE_UINTMAX,
61   COL_TYPE_BOOL,
62   COL_TYPE_DOUBLE,
63   COL_TYPE_ANY,
64   COL_TYPE_LAST
65 };
66
67 #define CELL_ALIGN_LEFT     (1<<(sizeof(enum column_type)*8 - 1))
68 // FIXME: an example of another flag, not implemented now
69 #define CELL_ALIGN_CENTER   (1<<(sizeof(enum column_type)*8 - 2))
70 #define CELL_ALIGN_FLOAT    (1<<(sizeof(enum column_type)*8 - 3))
71
72 #define CELL_TRUNC_RIGHT    (1<<(sizeof(enum column_type)*8 - 4))
73
74 // CELL_ALIGN_MASK is a mask which has 1's on positions used by some alignment mask.
75 // that is: col_width & CELL_ALIGN_MASK  gives column width (in characters).
76 // the top bit is reserved for left alignment and is not demasked by CELL_ALIGN_MASK.
77 // the reason is that all printf and friends are using negative number for left alignment.
78 #define CELL_ALIGN_MASK     (~(CELL_ALIGN_LEFT | CELL_ALIGN_FLOAT | CELL_ALIGN_CENTER))
79
80 #define TBL_COL_STR(_name, _width)            { .name = _name, .width = _width, .fmt = "%s", .type = COL_TYPE_STR }
81 #define TBL_COL_INT(_name, _width)            { .name = _name, .width = _width, .fmt = "%d", .type = COL_TYPE_INT }
82 #define TBL_COL_S64(_name, _width)            { .name = _name, .width = _width, .fmt = "%lld", .type = COL_TYPE_S64 }
83 #define TBL_COL_UINT(_name, _width)           { .name = _name, .width = _width, .fmt = "%u", .type = COL_TYPE_UINT }
84 #define TBL_COL_U64(_name, _width)            { .name = _name, .width = _width, .fmt = "%llu", .type = COL_TYPE_U64 }
85 #define TBL_COL_INTMAX(_name, _width)         { .name = _name, .width = _width, .fmt = "%jd", .type = COL_TYPE_INTMAX }
86 #define TBL_COL_UINTMAX(_name, _width)        { .name = _name, .width = _width, .fmt = "%ju", .type = COL_TYPE_UINTMAX }
87 #define TBL_COL_HEXUINT(_name, _width)        { .name = _name, .width = _width, .fmt = "0x%x", .type = COL_TYPE_UINT }
88 #define TBL_COL_DOUBLE(_name, _width, _prec)  { .name = _name, .width = _width, .fmt = "%." #_prec "lf", .type = COL_TYPE_DOUBLE }
89 #define TBL_COL_BOOL(_name, _width)           { .name = _name, .width = _width, .fmt = "%s", .type = COL_TYPE_BOOL }
90 #define TBL_COL_ANY(_name, _width)            { .name = _name, .width = _width, .fmt = 0, .type = COL_TYPE_ANY }
91
92 #define TBL_COL_STR_FMT(_name, _width, _fmt)            { .name = _name, .width = _width, .fmt = _fmt, .type = COL_TYPE_STR }
93 #define TBL_COL_INT_FMT(_name, _width, _fmt)            { .name = _name, .width = _width, .fmt = _fmt, .type = COL_TYPE_INT }
94 #define TBL_COL_S64_FMT(_name, _width, _fmt)            { .name = _name, .width = _width, .fmt = _fmt, .type = COL_TYPE_S64 }
95 #define TBL_COL_UINT_FMT(_name, _width, _fmt)           { .name = _name, .width = _width, .fmt = _fmt, .type = COL_TYPE_UINT }
96 #define TBL_COL_U64_FMT(_name, _width, _fmt)            { .name = _name, .width = _width, .fmt = _fmt, .type = COL_TYPE_U64 }
97 #define TBL_COL_INTMAX_FMT(_name, _width, _fmt)         { .name = _name, .width = _width, .fmt = _fmt, .type = COL_TYPE_INTMAX }
98 #define TBL_COL_UINTMAX_FMT(_name, _width, _fmt)        { .name = _name, .width = _width, .fmt = _fmt, .type = COL_TYPE_UINTMAX }
99 #define TBL_COL_HEXUINT_FMT(_name, _width, _fmt)        { .name = _name, .width = _width, .fmt = _fmt, .type = COL_TYPE_UINT }
100 #define TBL_COL_BOOL_FMT(_name, _width, _fmt)           { .name = _name, .width = _width, .fmt = _fmt, .type = COL_TYPE_BOOL }
101
102 #define TBL_COL_END { .name = 0, .width = 0, .fmt = 0, .type = COL_TYPE_LAST }
103
104 #define TBL_COLUMNS  .columns = (struct table_column [])
105 #define TBL_COL_ORDER(order) .column_order = (int *) order, .cols_to_output = ARRAY_SIZE(order)
106 #define TBL_COL_DELIMITER(_delimiter_) .col_delimiter = _delimiter_
107 #define TBL_APPEND_DELIMITER(_delimiter_) .append_delimiter = _delimiter_
108
109 #define TBL_OUTPUT_HUMAN_READABLE     .formatter = &table_fmt_human_readable
110 #define TBL_OUTPUT_MACHINE_READABLE   .formatter = &table_fmt_machine_readable
111
112 /***
113  * [[ Usage ]]
114  * The table works as follows:
115  * The table can be used after table_init is called. Then at the beginning of each printing, the
116  * table_start function must be called. After printing, the table_end must be called. The
117  * table_start MUST be paired with table_end. Inbetween table_start/table_end the user can set the
118  * cells of one row and one row is finished and printed using table_end_row. The pairs
119  * table_start/table_end can be used multiple-times for one table. The table is deallocated using
120  * table_cleanup. After table_cleanup is called it is not possible to further use the struct table.
121  * The struct table must be reinitialized.
122  *
123  * Default behaviour of the table_col_* is replacement of already set data. To append, the user
124  * must use table_append_*
125  *
126  * To summarize:
127  * 1) @table_init is called;
128  * 2) @table_start is called following by table_col_xxx functions and @table_end.
129  *    table_start/table_end forms 1-level parenthesis structure. Some of the table
130  *    settings can be changed only between table_init and @table_start or after table_end
131  *    is called (but before next table_start.
132  * 3) the table is deallocated using @table_cleanup. After the cleanup
133  *    is done, the struct table is unusable and must be initialized.
134  *
135  *
136  * An example of the procedure is following sequence of calls:
137  *  table_init
138  *
139  *  table_start
140  *  table_end
141  *  table_start
142  *  table_end
143  *
144  *  table_cleanup
145  *
146  * The tableprinter supports user-specified callback for each row and table-print (i.e., a callback
147  * that is called in table_end).
148  *
149  * The table is initialized by defining a table struct using the following macros:
150  *  o TBL_COLUMNS    indicates start of definition of columns
151  *  o TBL_COL_XXX    macros specify the column types with some default formatting the column is specified using a column
152  *                   name (which should be C identifier) and a prefix.  the column name is the a string with the column
153  *                   name. The prefix is used for discriminating between columns from different tables. The column index
154  *                   should be taken from an enum. The enum identifier is prefix concatenated with the column name identifier.
155  *  o TBL_COL_XXX_F  macros specify column types with user supplied formatting
156  *  o TBL_COL_END    indicates end of column definitions
157  *  o TBL_COL_ORDER  specify the column order
158  *  o TBL_COL_DELIMITER specify the in-between cell delimiter
159  *
160  * The table cells have strict type control, with the exception of type TBL_COL_ANY. In the case of
161  * TBL_COL_ANY, the type is not tested and an arbitrary value can be printed into the cell.
162  * It is also possible to print string to an arbitrary cell.
163  *
164  * Features:
165  * * user supplied callback functions can be used for modifying the output format.
166  *
167  * TODO part/Planned features:
168  * * computing statistics of columns via the table_start_callback/table_end_callback.
169  * * unsupported: (dynamic) alignment of cells which is computed in table_end
170  *
171  * TODO: table_set_col_fmt: this functin takes the format string and the value. But I'm not able to
172  * test whether the format string and the type match !!!
173  *
174  * TODO: how to print column which is aligned to the left flag for alignment: 1) left; 2) right;
175  *       3) decimal point alignment;
176  ***/
177
178 struct table;
179
180 /** Specification of a single table column */
181 struct table_column {
182   const char *name;             // [*] Name of the column displayed in table header
183   int width;                    // [*] Width of the column (in characters). Negative number indicates alignment to left.
184                                 // FIXME: Request left alignment by a flag.
185   const char *fmt;              // [*] Default format of each cell in the column
186   enum column_type type;        // Type of the cells in the column
187 };
188
189 /** The definition of a table. Contains column definitions plus internal data. */
190 struct table {
191   struct table_column *columns;         // [*] Definition of columns
192   int column_count;                     // [*] Number of columns (calculated by table_init())
193   struct mempool *pool;                 // Memory pool used for storing table data. Contains global state
194                                         // and data of the current row.
195   struct mempool_state pool_state;      // State of the pool after the table is initialized, i.e., before
196                                         // per-row data have been allocated.
197
198   char **col_str_ptrs;                  // Values of cells in the current row (allocated from the pool)
199
200   uint *column_order;                   // [*] Order of the columns in the print-out of the table
201   uint cols_to_output;                  // [*] Number of columns that are printed
202   const char *col_delimiter;            // [*] Delimiter that is placed between columns
203   const char *append_delimiter;         // [*] Separator of multiple values in a single cell (see table_append_...())
204   uint print_header;                    // [*] 0 indicates that table header should not be printed
205
206   struct fastbuf *out;                  // [*] Fastbuffer to which the table is printed
207   int last_printed_col;                 // Index of the last column which was set. -1 indicates start of row.
208                                         // Used for example for appending to the current column.
209   int row_printing_started;             // Indicates that a row has been started. Duplicates last_printed_col, but harmlessly.
210   struct fbpool fb_col_out;             // Per-cell fastbuf, see table_col_fbstart()
211   int col_out;                          // Index of the column that is currently printed using fb_col_out
212
213   // Back-end used for table formatting and its private data
214   struct table_formatter *formatter;
215   void *data;
216 };
217
218
219 /**
220  * @table_init serves for initialization of the table. The @tbl parameter should have set the columns member of
221  * the table structure.
222  **/
223 void table_init(struct table *tbl);
224 void table_cleanup(struct table *tbl);
225
226 /**
227  * table_start is called before the cells of the table are set. After the table_start is called, the
228  * user can call the table_col_* or table_append_ functions, but cannot call the table_set_*
229  * functions. The table_end_row function can be called after the table_start is called (but before
230  * the table_end is called)
231  **/
232 void table_start(struct table *tbl, struct fastbuf *out);
233
234 /**
235  * This function must be called after all the rows of the current table are printed. The table_set_*
236  * functions can be called in between table_start and table_end calls.
237  **/
238 void table_end(struct table *tbl);
239
240 /**
241  * Sets the order in which the columns are printed. The @col_order parameter is used until the table_end or
242  * table_cleanup is called. The table stores the pointer only and the memory pointed to by @col_order is
243  * allocated and deallocated by the caller.
244  **/
245 void table_set_col_order(struct table *tbl, int *col_order, int col_order_size);
246
247 /**
248  * Sets the order in which the columns are printed. The specification is a string with comma-separated column
249  * names. Returns NULL for success and an error message otherwise.
250  **/
251 const char *table_set_col_order_by_name(struct table *tbl, const char *col_order);
252
253 /**
254  * Called when all the cells have filled values. The function the prints a table row into the output stream.
255  * The table row has newline at the end.
256  **/
257 void table_end_row(struct table *tbl);
258
259 /**
260  * Prints a string that is printf-like formated into a particular column. This function does not check the
261  * type of the column, i.e., it can be used to print double into an int column
262  **/
263 void table_col_printf(struct table *tbl, int col, const char *fmt, ...) FORMAT_CHECK(printf, 3, 4);
264
265 /**
266  * Appends a string that is printf-like formated to the last printed column. This function does not check the
267  * type of the column, i.e., it can be used to print double into an int column.
268  **/
269 void table_append_printf(struct table *tbl, const char *fmt, ...) FORMAT_CHECK(printf, 2, 3);
270
271 /**
272  * Find the index of a column with name @col_name and returns it. Returns -1 if the column was not found.
273  **/
274 int table_get_col_idx(struct table *tbl, const char *col_name);
275
276 /**
277  * Returns comma-and-space-separated list of column names, allocated from table's internal
278  * memory pool.
279  **/
280 const char *table_get_col_list(struct table *tbl);
281
282 /**
283  * Opens a fastbuf stream that can be used for creating a cell content. The @sz parameter is the initial size
284  * allocated on the memory pool.
285  **/
286 struct fastbuf *table_col_fbstart(struct table *tbl, int col);
287
288 /**
289  * Closes the stream that is used for printing of the last column.
290  **/
291 void table_col_fbend(struct table *tbl);
292
293 /**
294  * Sets table formatter for @tbl.
295  **/
296 void table_set_formatter(struct table *tbl, struct table_formatter *fmt);
297
298 /** Definition of a formatter back-end. **/
299 struct table_formatter {
300   void (*row_output)(struct table *tbl);        // [*] Function that outputs one row
301   void (*table_start)(struct table *tbl);       // [*] table_start callback (optional)
302   void (*table_end)(struct table *tbl);         // [*] table_end callback (optional)
303   bool (*process_option)(struct table *tbl, const char *key, const char *value, const char **err);
304         // [*] Process table option and possibly return an error message (optional)
305 };
306
307 // Standard formatters
308 extern struct table_formatter table_fmt_human_readable;
309 extern struct table_formatter table_fmt_machine_readable;
310
311 /**
312  * Process the table one option and sets the values in @tbl according to the command-line parameters.
313  * The option has the following format: a) "<key>:<value>"; b) "<key>" (currently not used).
314  *
315  * Possible key-value pairs:
316  * header:[0|1]                     - 1 indicates that the header should be printed, 0 otherwise
317  * noheader                         - equivalent to header:0
318  * cols:<string-with-col-names>     - comma-separated list of columns that will be printed (in the order specified on the cmd-line)
319  * fmt:[human|machine|...]          - output type
320  * col-delim:<char>                 - column delimiter
321  *
322  * Returns NULL on success or an error string otherwise.
323  **/
324 const char *table_set_option(struct table *tbl, const char *opt);
325 const char *table_set_option_value(struct table *tbl, const char *key, const char *value);
326 const char *table_set_gary_options(struct table *tbl, char **gary_table_opts);
327
328 #define TABLE_COL_PROTO(_name_, _type_) void table_col_##_name_(struct table *tbl, int col, _type_ val);\
329   void table_col_##_name_##_name(struct table *tbl, const char *col_name, _type_ val);\
330   void table_col_##_name_##_fmt(struct table *tbl, int col, const char *fmt, _type_ val) FORMAT_CHECK(printf, 3, 0);
331
332 // table_col_<type>_fmt has one disadvantage: it is not possible to
333 // check whether fmt contains format that contains formatting that is
334 // compatible with _type_
335
336 TABLE_COL_PROTO(int, int);
337 TABLE_COL_PROTO(uint, uint);
338 TABLE_COL_PROTO(double, double);
339 TABLE_COL_PROTO(str, const char *);
340 TABLE_COL_PROTO(intmax, intmax_t);
341 TABLE_COL_PROTO(uintmax, uintmax_t);
342 TABLE_COL_PROTO(s64, s64);
343 TABLE_COL_PROTO(u64, u64);
344
345 void table_col_bool(struct table *tbl, int col, uint val);
346 void table_col_bool_name(struct table *tbl, const char *col_name, uint val);
347 void table_col_bool_fmt(struct table *tbl, int col, const char *fmt, uint val);
348 #undef TABLE_COL_PROTO
349
350 #define TABLE_APPEND_PROTO(_name_, _type_) void table_append_##_name_(struct table *tbl, _type_ val)
351 TABLE_APPEND_PROTO(int, int);
352 TABLE_APPEND_PROTO(uint, uint);
353 TABLE_APPEND_PROTO(double, double);
354 TABLE_APPEND_PROTO(str, const char *);
355 TABLE_APPEND_PROTO(intmax, intmax_t);
356 TABLE_APPEND_PROTO(uintmax, uintmax_t);
357 TABLE_APPEND_PROTO(s64, s64);
358 TABLE_APPEND_PROTO(u64, u64);
359 void table_append_bool(struct table *tbl, int val);
360 #undef TABLE_APPEND_PROTO
361
362 #endif