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