1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
#include "carefulputc.h"
#include "smartcolsP.h"
void fput_indent(struct libscols_table *tb)
{
int i;
for (i = 0; i <= tb->indent; i++)
fputs(" ", tb->out);
}
void fput_table_open(struct libscols_table *tb)
{
tb->indent = 0;
if (scols_table_is_json(tb)) {
fputc('{', tb->out);
fputs(linesep(tb), tb->out);
fput_indent(tb);
fputs_quoted(tb->name, tb->out);
fputs(": [", tb->out);
fputs(linesep(tb), tb->out);
tb->indent++;
tb->indent_last_sep = 1;
}
}
void fput_table_close(struct libscols_table *tb)
{
tb->indent--;
if (scols_table_is_json(tb)) {
fput_indent(tb);
fputc(']', tb->out);
tb->indent--;
fputs(linesep(tb), tb->out);
fputc('}', tb->out);
tb->indent_last_sep = 1;
}
}
void fput_children_open(struct libscols_table *tb)
{
if (scols_table_is_json(tb)) {
fputc(',', tb->out);
fputs(linesep(tb), tb->out);
fput_indent(tb);
fputs("\"children\": [", tb->out);
}
/* between parent and child is separator */
fputs(linesep(tb), tb->out);
tb->indent_last_sep = 1;
tb->indent++;
tb->termlines_used++;
}
void fput_children_close(struct libscols_table *tb)
{
tb->indent--;
if (scols_table_is_json(tb)) {
fput_indent(tb);
fputc(']', tb->out);
fputs(linesep(tb), tb->out);
tb->indent_last_sep = 1;
}
}
void fput_line_open(struct libscols_table *tb)
{
if (scols_table_is_json(tb)) {
fput_indent(tb);
fputc('{', tb->out);
tb->indent_last_sep = 0;
}
tb->indent++;
}
void fput_line_close(struct libscols_table *tb, int last, int last_in_table)
{
tb->indent--;
if (scols_table_is_json(tb)) {
if (tb->indent_last_sep)
fput_indent(tb);
fputs(last ? "}" : "},", tb->out);
if (!tb->no_linesep)
fputs(linesep(tb), tb->out);
} else if (tb->no_linesep == 0 && last_in_table == 0) {
fputs(linesep(tb), tb->out);
tb->termlines_used++;
}
tb->indent_last_sep = 1;
}
|