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