-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtable.c
247 lines (204 loc) · 5.64 KB
/
table.c
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
#include "common.h"
#include "table.h"
#include "stringbuffer.h"
#include "strnatcmp.h"
// Thanks to qsort not offering a custom argument we need a global var for that.
static unsigned int table_sort_col;
size_t table_strlen(const char *str, unsigned int col)
{
return strlen(str);
}
size_t table_strlen_colors(const char *str, unsigned int col)
{
if(!strchr(str, '\033'))
return strlen(str);
size_t len = 0;
for(const char *c = str; *c; c++)
{
if(*c == '\033')
{
while(*c && *c != 'm')
c++;
continue;
}
len++;
}
return len;
}
struct table *table_create(unsigned int cols, unsigned int rows)
{
struct table *table = malloc(sizeof(struct table));
memset(table, 0, sizeof(struct table));
table->cols = cols;
table->rows = rows;
table->data = calloc(table->rows, sizeof(char **));
for(unsigned int i = 0; i < table->rows; i++)
table->data[i] = calloc(table->cols, sizeof(char *));
table->field_len = table_strlen;
return table;
}
void table_set_header(struct table *table, const char *str, ...)
{
va_list args;
assert(str);
table->header = calloc(table->cols, sizeof(char *));
va_start(args, str);
table->header[0] = str;
for(unsigned int i = 1; i < table->cols; i++)
table->header[i] = va_arg(args, const char *);
va_end(args);
}
void table_bold_column(struct table *table, unsigned int col, unsigned char enable)
{
assert(col < table->cols);
if(enable)
table->bold_cols |= (1 << col);
else
table->bold_cols &= ~(1 << col);
}
void table_free_column(struct table *table, unsigned int col, unsigned char enable)
{
assert(col < table->cols);
if(enable)
table->free_cols |= (1 << col);
else
table->free_cols &= ~(1 << col);
}
void table_ralign_column(struct table *table, unsigned int col, unsigned char enable)
{
assert(col < table->cols);
if(enable)
table->ralign_cols |= (1 << col);
else
table->ralign_cols &= ~(1 << col);
}
#define col_free(TABLE, COL) ((TABLE)->free_cols & (1 << COL))
void table_free(struct table *table)
{
for(unsigned int i = 0; i < table->rows; i++)
{
if(table->free_cols)
{
for(unsigned int j = 0; j < table->cols; j++)
{
if(col_free(table, j) && table->data[i][j])
free(table->data[i][j]);
}
}
free(table->data[i]);
}
if(table->header)
free(table->header);
free(table->data);
free(table);
}
#undef col_free
#define col_bold(TABLE, COL) ((TABLE)->bold_cols & (1 << COL))
#define col_ralign(TABLE, COL) ((TABLE)->ralign_cols & (1 << COL))
void table_send(struct table *table)
{
unsigned int len, spaces, *maxlens;
struct stringbuffer *line;
maxlens = calloc(table->cols, sizeof(unsigned int));
if(table->header)
{
for(unsigned int col = 0; col < table->cols; col++)
maxlens[col] = table->field_len(table->header[col], col);
}
for(unsigned int col = 0; col < table->cols; col++)
{
for(unsigned int row = 0; row < table->rows; row++)
{
len = table->data[row][col] ? table->field_len(table->data[row][col], col) : 0;
if(len > maxlens[col])
maxlens[col] = len;
}
}
line = stringbuffer_create();
for(int row = (table->header ? -1 : 0); row < (int)table->rows; row++)
{
const char **ptr = ((row == -1) ? table->header : (const char **)table->data[row]);
for(unsigned int col = 0; col < table->cols; col++)
{
if(row == -1) // Header
{
spaces = maxlens[col] - (ptr[col] ? table->field_len(ptr[col], col) : 0);
stringbuffer_append_string(line, "\033[4m");
if(ptr[col])
stringbuffer_append_string(line, ptr[col]);
stringbuffer_append_string(line, "\033[24m");
}
else // Data
{
spaces = maxlens[col] - (ptr[col] ? table->field_len(ptr[col], col) : 0);
if(col_bold(table, col))
stringbuffer_append_string(line, "\033[1m");
while(col_ralign(table, col) && spaces--)
stringbuffer_append_char(line, ' ');
if(ptr[col])
stringbuffer_append_string(line, ptr[col]);
}
if(col < table->cols - 1) // Not the last column
{
while((!col_ralign(table, col) || row == -1) && spaces--)
stringbuffer_append_char(line, ' ');
if(col_bold(table, col))
stringbuffer_append_string(line, "\033[22m");
stringbuffer_append_string(line, " ");
}
else if(col_bold(table, col))
{
stringbuffer_append_string(line, "\033[22m");
}
}
out("%s%s", table->prefix ? table->prefix : "", line->string);
line->len = 0;
}
stringbuffer_free(line);
free(maxlens);
}
#undef col_bold
#undef col_ralign
static void table_alloc(struct table *table)
{
table->rows++;
table->data = realloc(table->data, table->rows * sizeof(char **));
table->data[table->rows - 1] = calloc(table->cols, sizeof(char *));
}
void table_col_str(struct table *table, unsigned int row, unsigned int col, char *val)
{
assert(col < table->cols);
if(row >= table->rows)
table_alloc(table);
assert(row < table->rows);
table->data[row][col] = val;
}
void table_col_num(struct table *table, unsigned int row, unsigned int col, unsigned int val)
{
assert(col < table->cols);
if(row >= table->rows)
table_alloc(table);
assert(row < table->rows);
asprintf(&table->data[row][col], "%u", val);
}
void table_col_fmt(struct table *table, unsigned int row, unsigned int col, const char *fmt, ...)
{
va_list args;
assert(col < table->cols);
if(row >= table->rows)
table_alloc(table);
assert(row < table->rows);
va_start(args, fmt);
vasprintf(&table->data[row][col], fmt, args);
va_end(args);
}
static int table_cmp(const void *a, const void *b)
{
return strnatcasecmp((*(const char ***)a)[table_sort_col], (*(const char ***)b)[table_sort_col]);
}
void table_sort(struct table *table, unsigned int col)
{
assert(col < table->cols);
table_sort_col = col;
qsort(table->data, table->rows, sizeof(table->data[0]), table_cmp);
}