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