]> mj.ucw.cz Git - libucw.git/blob - ucw/table-test-align.c
tableprinter: started fixing of setting cell values
[libucw.git] / ucw / table-test-align.c
1 /*
2  *      Unit tests of table printer
3  *
4  *      (c) 2014 Robert Kessl <robert.kessl@economia.cz>
5  */
6
7 #include <ucw/lib.h>
8 #include <ucw/table.h>
9 #include <ucw/opt.h>
10 #include <stdio.h>
11
12
13 enum test_table_cols {
14   test_col0_str, test_col1_int, test_col2_uint, test_col3_bool, test_col4_double
15 };
16
17 static struct table_template test_tbl = {
18   TBL_COLUMNS {
19     [test_col0_str] = TBL_COL_STR("col0_str", 30 | CELL_ALIGN_LEFT),
20     [test_col1_int] = TBL_COL_INT("col1_int", 8),
21     [test_col2_uint] = TBL_COL_UINT("col2_uint", 9),
22     [test_col3_bool] = TBL_COL_BOOL("col3_bool", 9 | CELL_ALIGN_LEFT),
23     [test_col4_double] = TBL_COL_DOUBLE_FMT("col4_double", 11 | CELL_ALIGN_LEFT, XTYPE_FMT_DEFAULT),
24     TBL_COL_END
25   },
26   TBL_OUTPUT_HUMAN_READABLE,
27   TBL_COL_DELIMITER("\t"),
28 };
29
30 static char **cli_table_opts;
31
32 static struct opt_section table_printer_opts = {
33   OPT_ITEMS {
34     OPT_HELP("Options:"),
35     OPT_STRING_MULTIPLE('T', "table", cli_table_opts, OPT_REQUIRED_VALUE, "\tSets options for the table."),
36     OPT_END
37   }
38 };
39
40
41 static void process_command_line_opts(char *argv[], struct table *tbl)
42 {
43   GARY_INIT(cli_table_opts, 0);
44
45   opt_parse(&table_printer_opts, argv+1);
46   table_set_gary_options(tbl, cli_table_opts);
47
48   GARY_FREE(cli_table_opts);
49 }
50
51 static void print_table(struct table *tbl, struct fastbuf *out)
52 {
53   table_start(tbl, out);
54
55   struct fastbuf *colfb = table_col_fbstart(tbl, test_col0_str);
56   bputs(colfb, "HELLO");
57   bprintf(colfb, ",col_idx:%d", test_col0_str);
58   table_col_fbend(tbl);
59
60   table_col_int(tbl, test_col1_int, -10);
61   table_col_uint(tbl, test_col2_uint, 10);
62   table_col_bool(tbl, test_col3_bool, 0);
63   table_col_double(tbl, test_col4_double, 3.1415926535897);
64   table_end_row(tbl);
65
66
67
68   colfb = table_col_fbstart(tbl, test_col0_str);
69   bputs(colfb, "EHLO");
70   bprintf(colfb, ",col_idx:%d", test_col0_str);
71   table_col_fbend(tbl);
72
73   table_col_int(tbl, test_col1_int, -12345);
74   table_col_uint(tbl, test_col2_uint, 0xFF);
75   table_col_bool(tbl, test_col3_bool, 1);
76   table_col_double(tbl, test_col4_double, 1.61803398875);
77   table_end_row(tbl);
78
79
80
81   colfb = table_col_fbstart(tbl, test_col0_str);
82   bputs(colfb, "AHOJ");
83   bprintf(colfb, ",col_idx:%d", test_col0_str);
84   table_col_fbend(tbl);
85
86   table_col_int(tbl, test_col1_int, -54321);
87   table_col_uint(tbl, test_col2_uint, 0xFF00);
88   table_col_bool(tbl, test_col3_bool, 0);
89   table_col_double(tbl, test_col4_double, 2.718281828459045);
90   table_end_row(tbl);
91
92   table_end(tbl);
93 }
94
95
96 int main(int argc UNUSED, char **argv)
97 {
98   struct fastbuf *out;
99   out = bfdopen_shared(1, 4096);
100
101   struct table *tbl = table_init(&test_tbl);
102   process_command_line_opts(argv, tbl);
103
104   print_table(tbl, out);
105   table_cleanup(tbl);
106   bclose(out);
107
108   return 0;
109 }
110