]> mj.ucw.cz Git - libucw.git/blob - ucw/table.c
tableprinter: table_make_default_column_order sets default xtype format
[libucw.git] / ucw / table.c
1 /*
2  *      UCW Library -- Table printer
3  *
4  *      (c) 2014 Robert Kessl <robert.kessl@economia.cz>
5  */
6
7 #include <ucw/lib.h>
8 #include <ucw/string.h>
9 #include <ucw/stkstring.h>
10 #include <ucw/gary.h>
11 #include <ucw/table.h>
12 #include <ucw/strtonum.h>
13
14 #include <stdlib.h>
15 #include <stdio.h>
16
17 /* Forward declarations */
18
19 static void table_update_ll(struct table *tbl);
20
21 /*** Management of tables ***/
22
23 struct table *table_init(const struct table_template *tbl_template)
24 {
25   struct mempool *pool = mp_new(4096);
26   struct table *new_inst = mp_alloc_zero(pool, sizeof(struct table));
27
28   new_inst->pool = pool;
29
30   // initialize column definitions
31   uint col_count = 0; // count the number of columns in the struct table
32   for(;;) {
33     if(tbl_template->columns[col_count].name == NULL &&
34        tbl_template->columns[col_count].width == 0 &&
35        tbl_template->columns[col_count].type_def == COL_TYPE_ANY)
36       break;
37     ASSERT(tbl_template->columns[col_count].name != NULL);
38     ASSERT(tbl_template->columns[col_count].width != 0);
39
40     col_count++;
41   }
42   new_inst->column_count = col_count;
43
44   new_inst->columns = tbl_template->columns;
45   new_inst->ll_headers = mp_alloc(new_inst->pool, sizeof(int) * col_count);
46   for(uint i = 0; i < col_count; i++) {
47     new_inst->ll_headers[i] = -1;
48   }
49
50   // initialize column_order
51   if(tbl_template->column_order) {
52     new_inst->column_order = mp_alloc_zero(new_inst->pool, sizeof(struct table_col_instance) * tbl_template->cols_to_output);
53     memcpy(new_inst->column_order, tbl_template->column_order, sizeof(struct table_col_instance) * tbl_template->cols_to_output);
54     for(uint i = 0; i < new_inst->cols_to_output; i++) {
55       new_inst->column_order[i].cell_content = NULL;
56       int col_def_idx = new_inst->column_order[i].idx;
57       new_inst->column_order[i].col_def = new_inst->columns + col_def_idx;
58       new_inst->column_order[i].fmt = tbl_template->columns[col_def_idx].fmt;
59     }
60
61     new_inst->cols_to_output = tbl_template->cols_to_output;
62   }
63
64   new_inst->col_delimiter = tbl_template->col_delimiter;
65   new_inst->print_header = true;
66   new_inst->out = 0;
67   new_inst->row_printing_started = false;
68   new_inst->col_out = -1;
69   new_inst->formatter = tbl_template->formatter;
70   if(!new_inst->formatter) {
71     new_inst->formatter = &table_fmt_human_readable;
72   }
73   new_inst->formatter_data = NULL;
74   return new_inst;
75 }
76
77 void table_cleanup(struct table *tbl)
78 {
79   mp_delete(tbl->pool);
80 }
81
82 // TODO: test default column order
83 static void table_make_default_column_order(struct table *tbl)
84 {
85   struct table_col_instance *col_order = alloca(sizeof(struct table_col_instance) * tbl->column_count);
86   bzero(col_order, sizeof(struct table_col_instance) * tbl->column_count);
87
88   for(int i = 0; i < tbl->column_count; i++) {
89     col_order[i].idx = (uint) i;
90     // currently, XTYPE_FMT_DEFAULT is 0, so bzero actually sets it correctly. This makes it more explicit.
91     col_order[i].fmt = XTYPE_FMT_DEFAULT;
92   }
93
94   table_set_col_order(tbl, col_order, tbl->column_count);
95 }
96
97 void table_start(struct table *tbl, struct fastbuf *out)
98 {
99   tbl->row_printing_started = false;
100   tbl->out = out;
101
102   ASSERT_MSG(tbl->out, "Output fastbuf not specified.");
103
104   if(tbl->column_order == NULL) table_make_default_column_order(tbl);
105   else {
106     // update linked lists
107     table_update_ll(tbl);
108   }
109   if(tbl->formatter->table_start != NULL) tbl->formatter->table_start(tbl);
110
111   mp_save(tbl->pool, &tbl->pool_state);
112
113   ASSERT_MSG(tbl->col_delimiter, "Column delimiter not specified.");
114 }
115
116 void table_end(struct table *tbl)
117 {
118   tbl->row_printing_started = false;
119
120   mp_restore(tbl->pool, &tbl->pool_state);
121
122   if(tbl->formatter->table_end) tbl->formatter->table_end(tbl);
123 }
124
125 /*** Configuration ***/
126
127 void table_set_formatter(struct table *tbl, const struct table_formatter *fmt)
128 {
129   tbl->formatter = fmt;
130 }
131
132 int table_get_col_idx(struct table *tbl, const char *col_name)
133 {
134   for(int i = 0; i < tbl->column_count; i++) {
135     if(strcmp(tbl->columns[i].name, col_name) == 0) return i;
136   }
137   return -1;
138 }
139
140 const char * table_get_col_list(struct table *tbl)
141 {
142   if(tbl->column_count == 0) return "";
143
144   char *tmp = mp_strdup(tbl->pool, tbl->columns[0].name);
145
146   for(int i = 1; i < tbl->column_count; i++) {
147     tmp = mp_printf_append(tbl->pool, tmp, ", %s", tbl->columns[i].name);
148   }
149
150   return tmp;
151 }
152
153 static void table_update_ll(struct table *tbl)
154 {
155   int cols_to_output = tbl->cols_to_output;
156
157   for(int i = 0; i < tbl->column_count; i++) {
158     tbl->ll_headers[i] = -1;
159   }
160
161   for(int i = 0; i < cols_to_output; i++) {
162     int col_def_idx = tbl->column_order[i].idx;
163     tbl->column_order[i].col_def = tbl->columns + col_def_idx;
164   }
165
166   for(int i = 0; i < cols_to_output; i++) {
167     int col_def_idx = tbl->column_order[i].idx;
168     int first = tbl->ll_headers[col_def_idx];
169     tbl->ll_headers[col_def_idx] = i;
170     tbl->column_order[i].next_column = first;
171   }
172 }
173
174 void table_set_col_order(struct table *tbl, const struct table_col_instance *col_order, uint cols_to_output)
175 {
176   for(uint i = 0; i < cols_to_output; i++) {
177     ASSERT_MSG(col_order[i].idx < (uint) tbl->column_count, "Column %d does not exist; column number should be between 0 and %d(including).", col_order[i].idx, tbl->column_count - 1);
178   }
179
180   tbl->cols_to_output = cols_to_output;
181   tbl->column_order = mp_alloc_zero(tbl->pool, sizeof(struct table_col_instance) * cols_to_output);
182   memcpy(tbl->column_order, col_order, sizeof(struct table_col_instance) * cols_to_output);
183   for(uint i = 0; i < cols_to_output; i++) {
184     int col_def_idx = tbl->column_order[i].idx; // this is given in col_order
185     tbl->column_order[i].col_def = tbl->columns + col_def_idx;
186     tbl->column_order[i].cell_content = NULL; // cell_content is copied from @col_order, so make sure that it is NULL
187     tbl->column_order[i].next_column = -1;
188     // tbl->column_order[i].fmt should be untouched (copied from col_order)
189   }
190   table_update_ll(tbl);
191 }
192
193 bool table_col_is_printed(struct table *tbl, uint col_def_idx)
194 {
195   if(tbl->ll_headers[col_def_idx] == -1) return 0;
196
197   return 1;
198 }
199
200 static char * table_parse_col_arg(char *col_def)
201 {
202   // FIXME: should be switched to str_sepsplit
203   char * left_br = strchr(col_def, '[');
204   if(left_br == NULL) return NULL;
205   *left_br = 0;
206   left_br++;
207   char *right_br = strchr(left_br, ']');
208   *right_br = 0;
209   return left_br;
210 }
211
212 const char *table_set_col_opt(struct table *tbl, uint col_inst_idx, const char *col_opt)
213 {
214   const struct table_column *col_def = tbl->column_order[col_inst_idx].col_def;
215
216   // Make sure that we do not call table_set_col_opt, which would
217   // result in an infinite recursion.
218   if(col_def && col_def->set_col_opt) {
219     if(col_def->set_col_opt == table_set_col_opt) {
220       die("table_set_col_opt should not be used as a struct table_column::set_col_opt hook");
221     }
222     return col_def->set_col_opt(tbl, col_inst_idx, col_opt);
223   }
224
225   if(col_def && col_def->type_def && col_def->type_def->parse_fmt) {
226     uint fmt = 0;
227     const char *tmp_err = col_def->type_def->parse_fmt(col_opt, &fmt, tbl->pool);
228     if(tmp_err) return tmp_err;
229     tbl->column_order[col_inst_idx].fmt = fmt;
230     return NULL;
231   }
232
233   return mp_printf(tbl->pool, "Invalid column format option: '%s' for column %d.", col_opt, col_inst_idx);
234 }
235
236 /**
237  * TODO: This function deliberately leaks memory. When it is called multiple times,
238  * previous column orders still remain allocated in the table's memory pool.
239  **/
240 const char * table_set_col_order_by_name(struct table *tbl, const char *col_order_str)
241 {
242   if(col_order_str[0] == '*') {
243     table_make_default_column_order(tbl);
244     return NULL;
245   }
246
247   if(!col_order_str[0]) {
248     tbl->column_order = mp_alloc(tbl->pool, 0);
249     tbl->cols_to_output = 0;
250     return NULL;
251   }
252
253   char *tmp_col_order = stk_strdup(col_order_str);
254
255   int col_count = 1;
256   for(int i = 0; col_order_str[i] != 0; i++) {
257     if(col_order_str[i] == ',') {
258       col_count++;
259     }
260   }
261
262   tbl->cols_to_output = col_count;
263   tbl->column_order = mp_alloc_zero(tbl->pool, sizeof(struct table_col_instance) * col_count);
264
265   int curr_col_inst_idx = 0;
266   char *name_start = tmp_col_order;
267   while(name_start) {
268     char *next = strchr(name_start, ',');
269     if(next) {
270       *next++ = 0;
271     }
272
273     char *arg = table_parse_col_arg(name_start); // this sets 0 on the '['
274     int col_def_idx = table_get_col_idx(tbl, name_start);
275
276     if(col_def_idx == -1) {
277       return mp_printf(tbl->pool, "Unknown table column '%s', possible column names are: %s.", name_start, table_get_col_list(tbl));
278     }
279     tbl->column_order[curr_col_inst_idx].col_def = tbl->columns + col_def_idx;
280     tbl->column_order[curr_col_inst_idx].idx = col_def_idx;
281     tbl->column_order[curr_col_inst_idx].fmt = tbl->columns[col_def_idx].fmt;
282     if(arg) {
283       const char *err = NULL;
284       err = table_set_col_opt(tbl, curr_col_inst_idx, arg);
285       if(err) return mp_printf(tbl->pool, "Error occured while setting column option: %s.", err);
286     }
287
288     name_start = next;
289     curr_col_inst_idx++;
290   }
291
292   table_update_ll(tbl);
293
294   return NULL;
295 }
296
297 /*** Table cells ***/
298
299 /**
300  * The TBL_COL_ITER_START macro are used for iterating over all instances of a particular column in
301  * table _tbl.  _colidx is the column index in _tbl, _instptr is the pointer to the column instance
302  * (struct table_col_instance *), _idxval is the index of current column index. The variables are
303  * enclosed in a block, so they do not introduce variable name collisions.
304  *
305  * The TBL_COL_ITER_END macro must close the block started with TBL_COL_ITER_START.
306  *
307  * These macros are usually used to hide the implementation details of the column instances linked
308  * list. This is usefull for definition of new types.
309  **/
310 #define TBL_COL_ITER_START(_tbl, _colidx, _instptr, _idxval) { struct table_col_instance *_instptr = NULL; int _idxval = _tbl->ll_headers[_colidx]; \
311   for(_idxval = _tbl->ll_headers[_colidx], _instptr = _tbl->column_order + _idxval; _idxval != -1; _idxval = _tbl->column_order[_idxval].next_column, _instptr = _tbl->column_order + _idxval)
312
313 #define TBL_COL_ITER_END }
314
315 static void table_col_raw(struct table *tbl, int col_templ, const char *col_content)
316 {
317   TBL_COL_ITER_START(tbl, col_templ, curr_col_ptr, curr_col) {
318     curr_col_ptr->cell_content = col_content;
319   } TBL_COL_ITER_END
320 }
321
322 void table_col_generic_format(struct table *tbl, int col, void *value, const struct xtype *expected_type)
323 {
324   ASSERT_MSG(col < tbl->column_count && col >= 0, "Table column %d does not exist.", col);
325   ASSERT(tbl->columns[col].type_def == COL_TYPE_ANY || expected_type == tbl->columns[col].type_def);
326   tbl->row_printing_started = true;
327   TBL_COL_ITER_START(tbl, col, curr_col, curr_col_inst_idx) {
328     enum xtype_fmt fmt = curr_col->fmt;
329     curr_col->cell_content = expected_type->format(value, fmt, tbl->pool);
330   } TBL_COL_ITER_END
331 }
332
333 #undef TBL_COL_ITER_START
334 #undef TBL_COL_ITER_END
335
336 void table_col_printf(struct table *tbl, int col, const char *fmt, ...)
337 {
338   ASSERT_MSG(col < tbl->column_count && col >= 0, "Table column %d does not exist.", col);
339   tbl->row_printing_started = true;
340   va_list args;
341   va_start(args, fmt);
342   char *cell_content = mp_vprintf(tbl->pool, fmt, args);
343   table_col_raw(tbl, col, cell_content);
344   va_end(args);
345 }
346
347 TABLE_COL_BODY(int, int)
348 TABLE_COL_BODY(uint, uint)
349 TABLE_COL_BODY(double, double)
350 TABLE_COL_BODY(intmax, intmax_t)
351 TABLE_COL_BODY(uintmax, uintmax_t)
352 TABLE_COL_BODY(s64, s64)
353 TABLE_COL_BODY(u64, u64)
354 TABLE_COL_BODY(bool, bool)
355 TABLE_COL_BODY(str, const char *)
356
357 void table_reset_row(struct table *tbl)
358 {
359   for(uint i = 0; i < tbl->cols_to_output; i++) {
360     tbl->column_order[i].cell_content = NULL;
361   }
362   mp_restore(tbl->pool, &tbl->pool_state);
363   tbl->row_printing_started = false;
364 }
365
366 void table_end_row(struct table *tbl)
367 {
368   ASSERT(tbl->formatter->row_output);
369   if(tbl->row_printing_started == false) return;
370   tbl->formatter->row_output(tbl);
371   table_reset_row(tbl);
372 }
373
374 /* Construction of a cell using a fastbuf */
375
376 struct fastbuf *table_col_fbstart(struct table *tbl, int col)
377 {
378   fbpool_init(&tbl->fb_col_out);
379   fbpool_start(&tbl->fb_col_out, tbl->pool, 1);
380   tbl->col_out = col;
381   return &tbl->fb_col_out.fb;
382 }
383
384 void table_col_fbend(struct table *tbl)
385 {
386   char *cell_content = fbpool_end(&tbl->fb_col_out);
387   table_col_raw(tbl, tbl->col_out, cell_content);
388   tbl->col_out = -1;
389 }
390
391 /*** Option parsing ***/
392
393 const char *table_set_option_value(struct table *tbl, const char *key, const char *value)
394 {
395   // Options with no value
396   if(value == NULL || (value != NULL && strlen(value) == 0)) {
397     if(strcmp(key, "noheader") == 0) {
398       tbl->print_header = false;
399       return NULL;
400     }
401   }
402
403   // Options with a value
404   if(value) {
405     if(strcmp(key, "header") == 0) {
406       bool tmp;
407       const char *err = xt_bool.parse(value, &tmp, tbl->pool);
408       if(err)
409         return mp_printf(tbl->pool, "Invalid header parameter: '%s' has invalid value: '%s'.", key, value);
410
411       tbl->print_header = tmp;
412
413       return NULL;
414     } else if(strcmp(key, "cols") == 0) {
415       return table_set_col_order_by_name(tbl, value);
416     } else if(strcmp(key, "fmt") == 0) {
417       if(strcmp(value, "human") == 0) table_set_formatter(tbl, &table_fmt_human_readable);
418       else if(strcmp(value, "machine") == 0) table_set_formatter(tbl, &table_fmt_machine_readable);
419       else if(strcmp(value, "blockline") == 0) table_set_formatter(tbl, &table_fmt_blockline);
420       else {
421         return "Invalid argument to output-type option.";
422       }
423       return NULL;
424     } else if(strcmp(key, "cells") == 0) {
425       u32 fmt = 0;
426       const char *err = xtype_parse_fmt(NULL, value, &fmt, tbl->pool);
427       if(err) return mp_printf(tbl->pool, "Invalid cell format: '%s'.", err);
428       for(uint i = 0; i < tbl->cols_to_output; i++) {
429         tbl->column_order[i].fmt = fmt;
430       }
431       return NULL;
432     } else if(strcmp(key, "raw") == 0 || strcmp(key, "pretty") == 0) {
433       u32 fmt = 0;
434       const char *err = xtype_parse_fmt(NULL, key, &fmt, tbl->pool);
435       if(err) return mp_printf(tbl->pool, "Invalid cell format: '%s'.", err);
436       for(uint i = 0; i < tbl->cols_to_output; i++) {
437         tbl->column_order[i].fmt = fmt;
438       }
439       return NULL;
440     } else if(strcmp(key, "col-delim") == 0) {
441       char * d = mp_printf(tbl->pool, "%s", value);
442       tbl->col_delimiter = d;
443       return NULL;
444     }
445   }
446
447   // Formatter options
448   if(tbl->formatter && tbl->formatter->process_option) {
449     const char *err = NULL;
450     if(tbl->formatter->process_option(tbl, key, value, &err)) {
451       return err;
452     }
453   }
454
455   // Unrecognized option
456   return mp_printf(tbl->pool, "Invalid option: '%s%s%s'.", key, (value ? ":" : ""), (value ? : ""));
457 }
458
459 const char *table_set_option(struct table *tbl, const char *opt)
460 {
461   char *key = stk_strdup(opt);
462   char *value = strchr(key, ':');
463   if(value) {
464     *value++ = 0;
465   }
466   return table_set_option_value(tbl, key, value);
467 }
468
469 const char *table_set_gary_options(struct table *tbl, char **gary_table_opts)
470 {
471   for (uint i = 0; i < GARY_SIZE(gary_table_opts); i++) {
472     const char *rv = table_set_option(tbl, gary_table_opts[i]);
473     if(rv != NULL) {
474       return rv;
475     }
476   }
477   return NULL;
478 }
479
480 /*** Default formatter for human-readable output ***/
481
482 static void table_row_human_readable(struct table *tbl)
483 {
484   for(uint i = 0; i < tbl->cols_to_output; i++) {
485     const struct table_column *col_def = tbl->column_order[i].col_def;
486     if(i) {
487       bputs(tbl->out, tbl->col_delimiter);
488     }
489     int col_width = col_def->width & CELL_WIDTH_MASK;
490     if(col_def->width & CELL_ALIGN_LEFT) col_width = -1 * col_width;
491     bprintf(tbl->out, "%*s", col_width, tbl->column_order[i].cell_content);
492   }
493   bputc(tbl->out, '\n');
494 }
495
496 static void table_write_header(struct table *tbl)
497 {
498   for(uint i = 0; i < tbl->cols_to_output; i++) {
499     const struct table_column *col_def = tbl->column_order[i].col_def;
500     if(i) {
501       bputs(tbl->out, tbl->col_delimiter);
502     }
503     int col_width = col_def->width & CELL_WIDTH_MASK;
504     if(col_def->width & CELL_ALIGN_LEFT) col_width = -1 * col_width;
505     bprintf(tbl->out, "%*s", col_width, col_def->name);
506   }
507   bputc(tbl->out, '\n');
508 }
509
510 static void table_start_human_readable(struct table *tbl)
511 {
512   if(tbl->col_delimiter == NULL) {
513     tbl->col_delimiter = " ";
514   }
515
516   if(tbl->print_header != false) {
517     table_write_header(tbl);
518   }
519 }
520
521 const struct table_formatter table_fmt_human_readable = {
522   .row_output = table_row_human_readable,
523   .table_start = table_start_human_readable,
524 };
525
526 /*** Default formatter for machine-readable output ***/
527
528 static void table_row_machine_readable(struct table *tbl)
529 {
530   for(uint i = 0; i < tbl->cols_to_output; i++) {
531     if(i) {
532       bputs(tbl->out, tbl->col_delimiter);
533     }
534     bputs(tbl->out, tbl->column_order[i].cell_content);
535   }
536   bputc(tbl->out, '\n');
537 }
538
539 static void table_start_machine_readable(struct table *tbl)
540 {
541   if(tbl->col_delimiter == NULL) {
542     tbl->col_delimiter = "\t";
543   }
544
545   if(tbl->print_header != false && tbl->cols_to_output > 0) {
546     bputs(tbl->out, tbl->column_order[0].col_def->name);
547     for(uint i = 1; i < tbl->cols_to_output; i++) {
548       bputs(tbl->out, tbl->col_delimiter);
549       bputs(tbl->out, tbl->column_order[i].col_def->name);
550     }
551     bputc(tbl->out, '\n');
552   }
553 }
554
555 const struct table_formatter table_fmt_machine_readable = {
556   .row_output = table_row_machine_readable,
557   .table_start = table_start_machine_readable,
558 };
559
560
561 /*** Blockline formatter ***/
562
563 static void table_row_blockline_output(struct table *tbl)
564 {
565   for(uint i = 0; i < tbl->cols_to_output; i++) {
566     const struct table_column *col_def = tbl->column_order[i].col_def;
567     bprintf(tbl->out, "%s: %s\n", col_def->name, tbl->column_order[i].cell_content);
568   }
569   bputc(tbl->out, '\n');
570 }
571
572 static void table_start_blockline(struct table *tbl)
573 {
574   if(tbl->col_delimiter == NULL) {
575     tbl->col_delimiter = "\n";
576   }
577 }
578
579 const struct table_formatter table_fmt_blockline = {
580   .row_output = table_row_blockline_output,
581   .table_start = table_start_blockline
582 };
583
584 /*** Tests ***/
585
586 #ifdef TEST
587
588 #include <stdio.h>
589
590 enum test_table_cols {
591   TEST_COL0_STR, TEST_COL1_INT, TEST_COL2_UINT, TEST_COL3_BOOL, TEST_COL4_DOUBLE
592 };
593
594 static struct table_col_instance test_column_order[] = { TBL_COL(TEST_COL3_BOOL), TBL_COL(TEST_COL4_DOUBLE), TBL_COL(TEST_COL2_UINT), TBL_COL(TEST_COL1_INT), TBL_COL(TEST_COL0_STR) };
595
596 static struct table_template test_tbl = {
597   TBL_COLUMNS {
598     [TEST_COL0_STR] = TBL_COL_STR("col0_str", 20),
599     [TEST_COL1_INT] = TBL_COL_INT("col1_int", 8),
600     [TEST_COL2_UINT] = TBL_COL_UINT("col2_uint", 9),
601     [TEST_COL3_BOOL] = TBL_COL_BOOL_FMT("col3_bool", 9, XTYPE_FMT_PRETTY),
602     [TEST_COL4_DOUBLE] = TBL_COL_DOUBLE("col4_double", 11),
603     TBL_COL_END
604   },
605   TBL_COL_ORDER(test_column_order),
606   TBL_FMT_HUMAN_READABLE,
607   TBL_COL_DELIMITER("\t"),
608 };
609
610 /**
611  * tests: table_set_nt, table_set_uint, table_set_bool, table_set_double, table_set_printf
612  **/
613 static void do_print1(struct table *test_tbl)
614 {
615   table_col_str(test_tbl, TEST_COL0_STR, "sdsdf");
616   table_col_int(test_tbl, TEST_COL1_INT, -10);
617   table_col_int(test_tbl, TEST_COL1_INT, 10000);
618   table_col_uint(test_tbl, TEST_COL2_UINT, 10);
619   table_col_printf(test_tbl, TEST_COL2_UINT, "XXX-%u", 22222);
620   table_col_bool(test_tbl, TEST_COL3_BOOL, true);
621   table_col_double(test_tbl, TEST_COL4_DOUBLE, 1.5);
622   table_col_printf(test_tbl, TEST_COL4_DOUBLE, "AAA");
623   table_end_row(test_tbl);
624
625   table_col_str(test_tbl, TEST_COL0_STR, "test");
626   table_col_int(test_tbl, TEST_COL1_INT, -100);
627   table_col_uint(test_tbl, TEST_COL2_UINT, 100);
628   table_col_bool(test_tbl, TEST_COL3_BOOL, false);
629   table_col_printf(test_tbl, TEST_COL4_DOUBLE, "%.2lf", 1.5);
630   table_end_row(test_tbl);
631 }
632
633 static void test_simple1(struct fastbuf *out)
634 {
635   struct table *tbl = table_init(&test_tbl);
636
637   // print table with header
638   table_set_col_order_by_name(tbl, "col3_bool");
639   table_start(tbl, out);
640   do_print1(tbl);
641   table_end(tbl);
642
643   // print the same table as in the previous case without header
644   table_set_col_order_by_name(tbl, "col0_str,col2_uint,col1_int,col3_bool");
645   table_start(tbl, out);
646   do_print1(tbl);
647   table_end(tbl);
648
649   // this also tests whether there is need to call table_set_col_order_by_name after table_end was called
650   tbl->print_header = false;
651   table_start(tbl, out);
652   do_print1(tbl);
653   table_end(tbl);
654   tbl->print_header = true;
655
656   table_set_col_order_by_name(tbl, "col3_bool");
657   table_start(tbl, out);
658   do_print1(tbl);
659   table_end(tbl);
660
661   table_set_col_order_by_name(tbl, "col3_bool,col0_str");
662   table_start(tbl, out);
663   do_print1(tbl);
664   table_end(tbl);
665
666   table_set_col_order_by_name(tbl, "col0_str,col3_bool,col2_uint");
667   table_start(tbl, out);
668   do_print1(tbl);
669   table_end(tbl);
670
671   table_set_col_order_by_name(tbl, "col0_str,col3_bool,col2_uint,col0_str,col3_bool,col2_uint,col0_str,col3_bool,col2_uint");
672   table_start(tbl, out);
673   do_print1(tbl);
674   table_end(tbl);
675
676   table_set_col_order_by_name(tbl, "col0_str,col1_int,col2_uint,col3_bool,col4_double");
677   table_start(tbl, out);
678   do_print1(tbl);
679   table_end(tbl);
680
681
682   // test table_col_order_fmt
683   struct table_col_instance col_order[] = { TBL_COL(TEST_COL0_STR), TBL_COL_FMT(TEST_COL4_DOUBLE, XTYPE_FMT_PRETTY), TBL_COL_FMT(TEST_COL4_DOUBLE, XTYPE_FMT_RAW) };
684   table_set_col_order(tbl, col_order, ARRAY_SIZE(col_order));
685   table_start(tbl, out);
686
687   table_col_str(tbl, TEST_COL0_STR, "test");
688   table_col_double(tbl, TEST_COL4_DOUBLE, 1.23456789);
689   table_end_row(tbl);
690
691   table_col_str(tbl, TEST_COL0_STR, "test");
692   table_col_double(tbl, TEST_COL4_DOUBLE, 1.23456789);
693   table_end_row(tbl);
694
695   table_end(tbl);
696
697   table_cleanup(tbl);
698 }
699
700 enum test_any_table_cols {
701   TEST_ANY_COL0_INT, TEST_ANY_COL1_ANY
702 };
703
704 static struct table_col_instance test_any_column_order[] = { TBL_COL(TEST_ANY_COL0_INT), TBL_COL_FMT(TEST_ANY_COL1_ANY, XTYPE_FMT_PRETTY) };
705
706 static struct table_template test_any_tbl = {
707   TBL_COLUMNS {
708     [TEST_ANY_COL0_INT] = TBL_COL_INT("col0_int", 8),
709     [TEST_ANY_COL1_ANY] = TBL_COL_ANY_FMT("col1_any", 9, XTYPE_FMT_PRETTY),
710     TBL_COL_END
711   },
712   TBL_COL_ORDER(test_any_column_order),
713   TBL_FMT_HUMAN_READABLE,
714   TBL_COL_DELIMITER("\t"),
715 };
716
717 static void test_any_type(struct fastbuf *out)
718 {
719   struct table *tbl = table_init(&test_any_tbl);
720
721   table_start(tbl, out);
722
723   table_col_int(tbl, TEST_ANY_COL0_INT, -10);
724   table_col_int(tbl, TEST_ANY_COL1_ANY, 10000);
725   table_end_row(tbl);
726
727   table_col_int(tbl, TEST_ANY_COL0_INT, -10);
728   table_col_double(tbl, TEST_ANY_COL1_ANY, 1.4);
729   table_end_row(tbl);
730
731   table_col_printf(tbl, TEST_ANY_COL0_INT, "%d", 10);
732   table_col_double(tbl, TEST_ANY_COL1_ANY, 1.4);
733   table_end_row(tbl);
734
735   table_end(tbl);
736   table_cleanup(tbl);
737 }
738
739 int main(int argc UNUSED, char **argv UNUSED)
740 {
741   struct fastbuf *out;
742   out = bfdopen_shared(1, 4096);
743
744   test_simple1(out);
745
746   test_any_type(out);
747
748   bclose(out);
749   return 0;
750 }
751
752 #endif