2 * UCW Library -- Table printer
4 * (c) 2014 Robert Kessl <robert.kessl@economia.cz>
8 #include <ucw/string.h>
9 #include <ucw/stkstring.h>
11 #include <ucw/table.h>
12 #include <ucw/strtonum.h>
17 /* Forward declarations */
19 static void table_update_ll(struct table *tbl);
21 /*** Management of tables ***/
23 void table_init(struct table *tbl)
25 int col_count = 0; // count the number of columns in the struct table
28 if(tbl->columns[col_count].name == NULL &&
29 tbl->columns[col_count].fmt == NULL &&
30 tbl->columns[col_count].width == 0 &&
31 tbl->columns[col_count].type == COL_TYPE_LAST)
33 ASSERT(tbl->columns[col_count].name != NULL);
34 ASSERT(tbl->columns[col_count].type == COL_TYPE_ANY || tbl->columns[col_count].fmt != NULL);
35 ASSERT(tbl->columns[col_count].width != 0);
39 tbl->pool = mp_new(4096);
41 tbl->column_count = col_count;
44 tbl->formatter = &table_fmt_human_readable;
47 tbl->print_header = 1; // by default, print header
50 void table_cleanup(struct table *tbl)
53 memset(tbl, 0, sizeof(struct table));
56 // TODO: test default column order
57 static void table_make_default_column_order(struct table *tbl)
59 int *col_order_int = mp_alloc_zero(tbl->pool, sizeof(int) * tbl->column_count);
60 for(int i = 0; i < tbl->column_count; i++) {
63 table_set_col_order(tbl, col_order_int, tbl->column_count);
66 void table_start(struct table *tbl, struct fastbuf *out)
68 tbl->last_printed_col = -1;
69 tbl->row_printing_started = 0;
72 ASSERT_MSG(tbl->out, "Output fastbuf not specified.");
74 if(tbl->column_order == NULL) table_make_default_column_order(tbl);
76 // update linked lists
79 if(tbl->formatter->table_start != NULL) tbl->formatter->table_start(tbl);
81 mp_save(tbl->pool, &tbl->pool_state);
83 ASSERT_MSG(tbl->col_delimiter, "In-between column delimiter not specified.");
86 void table_end(struct table *tbl)
88 tbl->last_printed_col = -1;
89 tbl->row_printing_started = 0;
91 mp_restore(tbl->pool, &tbl->pool_state);
93 if(tbl->formatter->table_end) tbl->formatter->table_end(tbl);
96 /*** Configuration ***/
98 void table_set_formatter(struct table *tbl, struct table_formatter *fmt)
100 tbl->formatter = fmt;
103 int table_get_col_idx(struct table *tbl, const char *col_name)
105 for(int i = 0; i < tbl->column_count; i++) {
106 if(strcmp(tbl->columns[i].name, col_name) == 0) return i;
111 const char * table_get_col_list(struct table *tbl)
113 if(tbl->column_count == 0) return "";
115 char *tmp = mp_strdup(tbl->pool, tbl->columns[0].name);
117 for(int i = 1; i < tbl->column_count; i++) {
118 tmp = mp_printf_append(tbl->pool, tmp, ", %s", tbl->columns[i].name);
124 static void table_update_ll(struct table *tbl)
126 int cols_to_output = tbl->cols_to_output;
128 for(int i = 0; i < tbl->column_count; i++) {
129 tbl->columns[i].first_column = -1;
130 tbl->columns[i].last_column = -1;
133 for(int i = 0; i < cols_to_output; i++) {
134 int idx = tbl->column_order[i].idx;
135 tbl->column_order[i].col_def = tbl->columns + idx;
138 for(int i = 0; i < cols_to_output; i++) {
139 int last = tbl->column_order[i].col_def->last_column;
141 tbl->column_order[i].col_def->last_column = i;
142 tbl->column_order[last].next_column = i;
144 tbl->column_order[i].col_def->last_column = i;
145 tbl->column_order[i].col_def->first_column = i;
147 tbl->column_order[i].next_column = -1;
151 void table_set_col_order(struct table *tbl, int *col_order, int cols_to_output)
153 for(int i = 0; i < cols_to_output; i++) {
154 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);
157 tbl->cols_to_output = cols_to_output;
158 tbl->column_order = mp_alloc_zero(tbl->pool, sizeof(struct table_col_info) * cols_to_output);
159 for(int i = 0; i < cols_to_output; i++) {
160 int col_idx = col_order[i];
161 tbl->column_order[i].idx = col_idx;
162 tbl->column_order[i].col_def = tbl->columns + col_idx;
163 tbl->column_order[i].cell_content = NULL;
164 tbl->column_order[i].output_type = CELL_OUT_UNINITIALIZED;
166 table_update_ll(tbl);
169 bool table_col_is_printed(struct table *tbl, uint col_idx)
171 if(tbl->columns[col_idx].first_column == -1) return 0;
176 static char * table_parse_col_arg(char *col_def)
178 // FIXME: should be switched to str_sepsplit
179 char * left_br = strchr(col_def, '[');
180 if(left_br == NULL) return NULL;
183 char *right_br = strchr(left_br, ']');
189 * Setting options for basic table types (as defined in table.h)
191 bool table_set_col_opt_default(struct table *tbl, int col_copy_idx, const char *col_arg, char **err)
193 struct table_column *tmp_col = tbl->column_order[col_copy_idx].col_def;
194 int col_type_idx = tbl->column_order[col_copy_idx].idx;
196 if(tmp_col->type == COL_TYPE_DOUBLE) {
198 str_to_uint(&precision, col_arg, NULL, 0);
199 tbl->column_order[col_type_idx].output_type = precision;
203 *err = mp_printf(tbl->pool, "Tableprinter: invalid column format option: '%s' for column %d.", col_arg, col_copy_idx);
208 * TODO: This function deliberately leaks memory. When it is called multiple times,
209 * previous column orders still remain allocated in the table's memory pool.
211 const char * table_set_col_order_by_name(struct table *tbl, const char *col_order_str)
213 if(col_order_str[0] == '*') {
214 int *col_order_int = alloca(sizeof(int) * tbl->column_count);
215 for(int i = 0; i < tbl->column_count; i++) {
216 col_order_int[i] = i;
218 table_set_col_order(tbl, col_order_int, tbl->column_count);
223 if(!col_order_str[0]) {
224 tbl->column_order = mp_alloc(tbl->pool, 0);
225 tbl->cols_to_output = 0;
229 char *tmp_col_order = stk_strdup(col_order_str);
232 for(int i = 0; col_order_str[i] != 0; i++) {
233 if(col_order_str[i] == ',') {
238 tbl->cols_to_output = col_count;
239 tbl->column_order = mp_alloc_zero(tbl->pool, sizeof(struct table_col_info) * col_count);
241 int curr_col_idx = 0;
242 char *name_start = tmp_col_order;
244 char *next = strchr(name_start, ',');
249 char *arg = table_parse_col_arg(name_start); // this sets 0 on the '['
250 int col_idx = table_get_col_idx(tbl, name_start);
253 return mp_printf(tbl->pool, "Unknown table column '%s', possible column names are: %s.", name_start, table_get_col_list(tbl));
255 tbl->column_order[curr_col_idx].col_def = tbl->columns + col_idx;
256 tbl->column_order[curr_col_idx].idx = col_idx;
257 tbl->column_order[curr_col_idx].cell_content = NULL;
258 tbl->column_order[curr_col_idx].output_type = CELL_OUT_UNINITIALIZED;
259 if(tbl->columns[col_idx].type_def && tbl->columns[col_idx].type_def->set_col_instance_option) {
261 tbl->columns[col_idx].type_def->set_col_instance_option(tbl, curr_col_idx, arg, &err);
262 if(err) return mp_printf(tbl->pool, "Error occured while setting column option: %s.", err);
269 table_update_ll(tbl);
274 /*** Table cells ***/
276 static void table_set_all_cols_content(struct table *tbl, int col, char *col_content, int override)
278 int curr_col = tbl->columns[col].first_column;
279 while(curr_col != -1) {
280 if(override == 0 && tbl->column_order[curr_col].output_type != CELL_OUT_UNINITIALIZED ) {
281 die("Error while setting content of all cells of a single type column, cell format should not be overriden.");
283 tbl->column_order[curr_col].cell_content = col_content;
284 curr_col = tbl->column_order[curr_col].next_column;
288 void table_col_printf(struct table *tbl, int col, const char *fmt, ...)
290 ASSERT_MSG(col < tbl->column_count && col >= 0, "Table column %d does not exist.", col);
291 tbl->last_printed_col = col;
292 tbl->row_printing_started = 1;
295 char *cell_content = mp_vprintf(tbl->pool, fmt, args);
296 table_set_all_cols_content(tbl, col, cell_content, 1);
300 static const char *table_col_default_fmts[] = {
301 [COL_TYPE_STR] = "%s",
302 [COL_TYPE_INT] = "%d",
303 [COL_TYPE_S64] = "%lld",
304 [COL_TYPE_INTMAX] = "%jd",
305 [COL_TYPE_UINT] = "%u",
306 [COL_TYPE_U64] = "%llu",
307 [COL_TYPE_UINTMAX] = "%ju",
308 [COL_TYPE_BOOL] = "%d",
309 [COL_TYPE_DOUBLE] = "%.2lf",
310 [COL_TYPE_ANY] = NULL,
311 [COL_TYPE_LAST] = NULL
314 #define TABLE_COL(_name_, _type_, _typeconst_) void table_col_##_name_(struct table *tbl, int col, _type_ val)\
316 const char *fmt = tbl->columns[col].fmt;\
317 if(tbl->columns[col].type == COL_TYPE_ANY) {\
318 fmt = table_col_default_fmts[_typeconst_];\
320 table_col_##_name_##_fmt(tbl, col, fmt, val);\
323 #define TABLE_COL_STR(_name_, _type_, _typeconst_) void table_col_##_name_##_name(struct table *tbl, const char *col_name, _type_ val)\
325 int col = table_get_col_idx(tbl, col_name);\
326 table_col_##_name_(tbl, col, val);\
329 #define TABLE_COL_FMT(_name_, _type_, _typeconst_, _override) void table_col_##_name_##_fmt(struct table *tbl, int col, const char *fmt, _type_ val) \
331 ASSERT_MSG(col < tbl->column_count && col >= 0, "Table column %d does not exist.", col);\
332 ASSERT(tbl->columns[col].type == COL_TYPE_ANY || _typeconst_ == tbl->columns[col].type);\
333 ASSERT(fmt != NULL);\
334 tbl->last_printed_col = col;\
335 tbl->row_printing_started = 1;\
336 char *cell_content = mp_printf(tbl->pool, fmt, val);\
337 table_set_all_cols_content(tbl, col, cell_content, _override);\
340 #define TABLE_COL_BODIES(_name_, _type_, _typeconst_, _override) TABLE_COL(_name_, _type_, _typeconst_); \
341 TABLE_COL_STR(_name_, _type_, _typeconst_);\
342 TABLE_COL_FMT(_name_, _type_, _typeconst_, _override);
344 TABLE_COL_BODIES(int, int, COL_TYPE_INT, 0)
345 TABLE_COL_BODIES(uint, uint, COL_TYPE_UINT, 0)
346 TABLE_COL_BODIES(str, const char *, COL_TYPE_STR, 1)
347 TABLE_COL_BODIES(intmax, intmax_t, COL_TYPE_INTMAX, 0)
348 TABLE_COL_BODIES(uintmax, uintmax_t, COL_TYPE_UINTMAX, 0)
349 TABLE_COL_BODIES(s64, s64, COL_TYPE_S64, 0)
350 TABLE_COL_BODIES(u64, u64, COL_TYPE_U64, 0)
352 // column type double is a special case
353 TABLE_COL(double, double, COL_TYPE_DOUBLE);
354 TABLE_COL_STR(double, double, COL_TYPE_DOUBLE);
358 #undef TABLE_COL_BODIES
360 void table_col_double_fmt(struct table *tbl, int col, const char *fmt, double val)
362 ASSERT_MSG(col < tbl->column_count && col >= 0, "Table column %d does not exist.", col);
363 ASSERT(tbl->columns[col].type == COL_TYPE_ANY || COL_TYPE_DOUBLE == tbl->columns[col].type);
365 tbl->last_printed_col = col;
366 tbl->row_printing_started = 1;
367 char *cell_content = mp_printf(tbl->pool, fmt, val);
368 int curr_col = tbl->columns[col].first_column;
369 while(curr_col != -1) {
370 if(tbl->column_order[curr_col].output_type < 0) tbl->column_order[curr_col].cell_content = cell_content;
372 char *cell_content_tmp = mp_printf(tbl->pool, "%.*lf", tbl->column_order[curr_col].output_type, val);
373 tbl->column_order[curr_col].cell_content = cell_content_tmp;
375 curr_col = tbl->column_order[curr_col].next_column;
379 void table_col_bool(struct table *tbl, int col, uint val)
381 table_col_bool_fmt(tbl, col, tbl->columns[col].fmt, val);
384 void table_col_bool_name(struct table *tbl, const char *col_name, uint val)
386 int col = table_get_col_idx(tbl, col_name);
387 table_col_bool(tbl, col, val);
390 void table_col_bool_fmt(struct table *tbl, int col, const char *fmt, uint val)
392 ASSERT_MSG(col < tbl->column_count && col >= 0, "Table column %d does not exist.", col);
393 ASSERT(COL_TYPE_BOOL == tbl->columns[col].type);
395 tbl->last_printed_col = col;
396 tbl->row_printing_started = 1;
398 int curr_col = tbl->columns[col].first_column;
399 while(curr_col != -1) {
400 switch(tbl->column_order[curr_col].output_type) {
401 case CELL_OUT_HUMAN_READABLE:
402 case CELL_OUT_UNINITIALIZED:
403 tbl->column_order[curr_col].cell_content = mp_printf(tbl->pool, fmt, val ? "true" : "false");
405 case CELL_OUT_MACHINE_READABLE:
406 // FIXME: this is just an example of printing in different formats
407 tbl->column_order[curr_col].cell_content = mp_printf(tbl->pool, fmt, val ? "1" : "0");
410 die("Unsupported output type.");
412 curr_col = tbl->column_order[curr_col].next_column;
416 void table_reset_row(struct table *tbl)
418 for(uint i = 0; i < tbl->cols_to_output; i++) {
419 tbl->column_order[i].cell_content = NULL;
421 mp_restore(tbl->pool, &tbl->pool_state);
422 tbl->last_printed_col = -1;
423 tbl->row_printing_started = 0;
426 void table_end_row(struct table *tbl)
428 ASSERT(tbl->formatter->row_output);
429 if(tbl->row_printing_started == 0) return;
430 tbl->formatter->row_output(tbl);
431 table_reset_row(tbl);
434 /* Construction of a cell using a fastbuf */
436 struct fastbuf *table_col_fbstart(struct table *tbl, int col)
438 fbpool_init(&tbl->fb_col_out);
439 fbpool_start(&tbl->fb_col_out, tbl->pool, 1);
441 return &tbl->fb_col_out.fb;
444 void table_col_fbend(struct table *tbl)
446 char *cell_content = fbpool_end(&tbl->fb_col_out);
447 table_set_all_cols_content(tbl, tbl->col_out, cell_content, 1);
451 /*** Option parsing ***/
453 const char *table_set_option_value(struct table *tbl, const char *key, const char *value)
455 // Options with no value
456 if(value == NULL || (value != NULL && strlen(value) == 0)) {
457 if(strcmp(key, "noheader") == 0) {
458 tbl->print_header = 0;
463 // Options with a value
465 if(strcmp(key, "header") == 0) {
467 return mp_printf(tbl->pool, "Tableprinter: invalid option: '%s' has invalid value: '%s'.", key, value);
468 uint tmp = value[0] - '0';
470 return mp_printf(tbl->pool, "Tableprinter: invalid option: '%s' has invalid value: '%s'.", key, value);
471 tbl->print_header = tmp;
473 } else if(strcmp(key, "cols") == 0) {
474 const char *err = table_set_col_order_by_name(tbl, value);
476 } else if(strcmp(key, "fmt") == 0) {
477 if(strcmp(value, "human") == 0) table_set_formatter(tbl, &table_fmt_human_readable);
478 else if(strcmp(value, "machine") == 0) table_set_formatter(tbl, &table_fmt_machine_readable);
479 else if(strcmp(value, "blockline") == 0) table_set_formatter(tbl, &table_fmt_blockline);
481 return "Tableprinter: invalid argument to output-type option.";
484 } else if(strcmp(key, "col-delim") == 0) {
485 char * d = mp_printf(tbl->pool, "%s", value);
486 tbl->col_delimiter = d;
492 if(tbl->formatter && tbl->formatter->process_option) {
493 const char *err = NULL;
494 if(tbl->formatter->process_option(tbl, key, value, &err)) {
499 // Unrecognized option
500 return mp_printf(tbl->pool, "Tableprinter: invalid option: '%s%s%s'.", key, (value ? ":" : ""), (value ? : ""));
503 const char *table_set_option(struct table *tbl, const char *opt)
505 char *key = stk_strdup(opt);
506 char *value = strchr(key, ':');
510 return table_set_option_value(tbl, key, value);
513 const char *table_set_gary_options(struct table *tbl, char **gary_table_opts)
515 for (uint i = 0; i < GARY_SIZE(gary_table_opts); i++) {
516 const char *rv = table_set_option(tbl, gary_table_opts[i]);
524 /*** Default formatter for human-readable output ***/
526 static void table_row_human_readable(struct table *tbl)
528 for(uint i = 0; i < tbl->cols_to_output; i++) {
529 int col_idx = tbl->column_order[i].idx;
531 bputs(tbl->out, tbl->col_delimiter);
533 int col_width = tbl->columns[col_idx].width & CELL_WIDTH_MASK;
534 if(tbl->columns[col_idx].width & CELL_ALIGN_LEFT) col_width = -1 * col_width;
535 bprintf(tbl->out, "%*s", col_width, tbl->column_order[i].cell_content);
537 bputc(tbl->out, '\n');
540 static void table_write_header(struct table *tbl)
542 for(uint i = 0; i < tbl->cols_to_output; i++) {
543 int col_idx = tbl->column_order[i].col_def - tbl->columns;
545 bputs(tbl->out, tbl->col_delimiter);
547 int col_width = tbl->columns[col_idx].width & CELL_WIDTH_MASK;
548 if(tbl->columns[col_idx].width & CELL_ALIGN_LEFT) col_width = -1 * col_width;
549 bprintf(tbl->out, "%*s", col_width, tbl->columns[col_idx].name);
551 bputc(tbl->out, '\n');
554 static void table_start_human_readable(struct table *tbl)
556 if(tbl->col_delimiter == NULL) {
557 tbl->col_delimiter = " ";
560 if(tbl->print_header != 0) {
561 table_write_header(tbl);
565 struct table_formatter table_fmt_human_readable = {
566 .row_output = table_row_human_readable,
567 .table_start = table_start_human_readable,
570 /*** Default formatter for machine-readable output ***/
572 static void table_row_machine_readable(struct table *tbl)
574 for(uint i = 0; i < tbl->cols_to_output; i++) {
576 bputs(tbl->out, tbl->col_delimiter);
578 bputs(tbl->out, tbl->column_order[i].cell_content);
580 bputc(tbl->out, '\n');
583 static void table_start_machine_readable(struct table *tbl)
585 if(tbl->col_delimiter == NULL) {
586 tbl->col_delimiter = "\t";
589 if(tbl->print_header != 0) {
590 uint col_idx = tbl->column_order[0].col_def - tbl->columns;
591 bputs(tbl->out, tbl->columns[col_idx].name);
592 for(uint i = 1; i < tbl->cols_to_output; i++) {
593 col_idx = tbl->column_order[i].col_def - tbl->columns;
594 bputs(tbl->out, tbl->col_delimiter);
595 bputs(tbl->out, tbl->columns[col_idx].name);
597 bputc(tbl->out, '\n');
601 struct table_formatter table_fmt_machine_readable = {
602 .row_output = table_row_machine_readable,
603 .table_start = table_start_machine_readable,
607 /*** Blockline formatter ***/
609 static void table_row_blockline_output(struct table *tbl)
611 for(uint i = 0; i < tbl->cols_to_output; i++) {
612 int col_idx = tbl->column_order[i].idx;
613 bprintf(tbl->out, "%s: %s\n", tbl->columns[col_idx].name, tbl->column_order[i].cell_content);
615 bputc(tbl->out, '\n');
618 static void table_start_blockline(struct table *tbl)
620 if(tbl->col_delimiter == NULL) {
621 tbl->col_delimiter = "\n";
625 struct table_formatter table_fmt_blockline = {
626 .row_output = table_row_blockline_output,
627 .table_start = table_start_blockline
638 enum test_table_cols {
639 test_col0_str, test_col1_int, test_col2_uint, test_col3_bool, test_col4_double
642 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) };
644 static struct table test_tbl = {
646 [test_col0_str] = TBL_COL_STR("col0_str", 20),
647 [test_col1_int] = TBL_COL_INT("col1_int", 8),
648 [test_col2_uint] = TBL_COL_UINT("col2_uint", 9),
649 [test_col3_bool] = TBL_COL_BOOL("col3_bool", 9),
650 [test_col4_double] = TBL_COL_DOUBLE("col4_double", 11, 2),
653 TBL_COL_ORDER(test_column_order),
654 TBL_OUTPUT_HUMAN_READABLE,
655 TBL_COL_DELIMITER("\t"),
659 * tests: table_set_nt, table_set_uint, table_set_bool, table_set_double, table_set_printf
661 static void do_print1(struct table *test_tbl)
663 table_col_str(test_tbl, test_col0_str, "sdsdf");
664 table_col_int(test_tbl, test_col1_int, -10);
665 table_col_int(test_tbl, test_col1_int, 10000);
666 table_col_uint(test_tbl, test_col2_uint, 10);
667 table_col_printf(test_tbl, test_col2_uint, "XXX-%u", 22222);
668 table_col_bool(test_tbl, test_col3_bool, 1);
669 table_col_double(test_tbl, test_col4_double, 1.5);
670 table_col_printf(test_tbl, test_col4_double, "AAA");
671 table_end_row(test_tbl);
673 table_col_str(test_tbl, test_col0_str, "test");
674 table_col_int(test_tbl, test_col1_int, -100);
675 table_col_uint(test_tbl, test_col2_uint, 100);
676 table_col_bool(test_tbl, test_col3_bool, 0);
677 table_col_printf(test_tbl, test_col4_double, "%.2lf", 1.5);
678 table_end_row(test_tbl);
681 static void test_simple1(struct fastbuf *out)
683 table_init(&test_tbl);
685 // print table with header
686 table_set_col_order_by_name(&test_tbl, "col3_bool");
687 table_start(&test_tbl, out);
688 do_print1(&test_tbl);
689 table_end(&test_tbl);
691 // print the same table as in the previous case without header
692 table_set_col_order_by_name(&test_tbl, "col0_str,col2_uint,col1_int,col3_bool");
693 table_start(&test_tbl, out);
694 do_print1(&test_tbl);
695 table_end(&test_tbl);
697 // this also tests whether there is need to call table_set_col_order_by_name after table_end was called
698 test_tbl.print_header = 0;
699 table_start(&test_tbl, out);
700 do_print1(&test_tbl);
701 table_end(&test_tbl);
702 test_tbl.print_header = 1;
704 table_set_col_order_by_name(&test_tbl, "col3_bool");
705 table_start(&test_tbl, out);
706 do_print1(&test_tbl);
707 table_end(&test_tbl);
709 table_set_col_order_by_name(&test_tbl, "col3_bool,col0_str");
710 table_start(&test_tbl, out);
711 do_print1(&test_tbl);
712 table_end(&test_tbl);
714 table_set_col_order_by_name(&test_tbl, "col0_str,col3_bool,col2_uint");
715 table_start(&test_tbl, out);
716 do_print1(&test_tbl);
717 table_end(&test_tbl);
719 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");
720 table_start(&test_tbl, out);
721 do_print1(&test_tbl);
722 table_end(&test_tbl);
724 table_set_col_order_by_name(&test_tbl, "col0_str,col1_int,col2_uint,col3_bool,col4_double");
725 table_start(&test_tbl, out);
726 do_print1(&test_tbl);
727 table_end(&test_tbl);
729 table_cleanup(&test_tbl);
732 enum test_any_table_cols {
733 test_any_col0_int, test_any_col1_any
736 static struct table_col_info test_any_column_order[] = { TBL_COL(test_any_col0_int), TBL_COL(test_any_col1_any) };
738 static struct table test_any_tbl = {
740 [test_any_col0_int] = TBL_COL_INT("col0_int", 8),
741 [test_any_col1_any] = TBL_COL_ANY("col1_any", 9),
744 TBL_COL_ORDER(test_any_column_order),
745 TBL_OUTPUT_HUMAN_READABLE,
746 TBL_COL_DELIMITER("\t"),
749 static void test_any_type(struct fastbuf *out)
751 table_init(&test_any_tbl);
753 table_start(&test_any_tbl, out);
755 table_col_int(&test_any_tbl, test_any_col0_int, -10);
756 table_col_int(&test_any_tbl, test_any_col1_any, 10000);
757 table_end_row(&test_any_tbl);
759 table_col_int(&test_any_tbl, test_any_col0_int, -10);
760 table_col_double(&test_any_tbl, test_any_col1_any, 1.4);
761 table_end_row(&test_any_tbl);
763 table_col_printf(&test_any_tbl, test_any_col0_int, "%d", 10);
764 table_col_double(&test_any_tbl, test_any_col1_any, 1.4);
765 table_end_row(&test_any_tbl);
767 table_end(&test_any_tbl);
768 table_cleanup(&test_any_tbl);
771 int main(int argc UNUSED, char **argv UNUSED)
774 out = bfdopen_shared(1, 4096);