-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflag.h
470 lines (398 loc) · 12.1 KB
/
flag.h
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
/*
This is a scaffolding implementation of simple argument parsing. Copy the file into
your project, parse types supported out of the box, or implement your own types
in-place.
This is free and unencumbered software released into the public domain.
*/
#ifndef __FLAG_H
#define __FLAG_H
#include <stdint.h>
#include <stdbool.h>
#ifndef FLAG_CAP
#define FLAG_CAP 64
#endif
#ifndef FLAG_ASSERT
#define FLAG_ASSERT(expr) assert((expr));
#define FLAG_STATIC_ASSERT(expr, msg) static_assert((expr), (msg));
#endif
enum FLAG_ERROR {
FLAG_ERROR_NONE,
FLAG_ERROR_MISSING_VALUE,
FLAG_ERROR_MISSING_REQUIRED_FLAG,
FLAG_ERROR_INVALID_INT64,
FLAG_ERROR_OVERFLOW_INT64,
FLAG_ERROR_UNDERFLOW_INT64,
FLAG_ERROR_TOO_MANY_PARGS,
FLAG_ERROR_COUNT,
};
struct flag_error {
enum FLAG_ERROR code;
const char *flag;
union {
struct { char *number_str; } int64;
};
};
enum FLAG_TYPE {
FLAG_TYPE_BOOL,
FLAG_TYPE_STR,
FLAG_TYPE_INT64,
FLAG_TYPE_COUNT,
};
static_assert(FLAG_TYPE_COUNT == 3, "Handle all FLAG_TYPES");
union FLAG_VALUE {
bool as_bool;
char *as_str;
int64_t as_int64;
};
struct flag {
enum FLAG_TYPE type;
const char *name;
const char *name_short;
const char *description;
bool is_required;
bool set_by_user;
union FLAG_VALUE value;
union FLAG_VALUE default_value;
};
bool *flag_bool (const char *name, const char *name_short, bool default_value, const char *description);
char **flag_str (const char *name, const char *name_short, const char *default_value, const char *description);
int64_t *flag_int64(const char *name, const char *name_short, int64_t default_value, const char *description);
void flag_required(void *value_ptr);
struct flag *flag_info(void *value_ptr);
int flag_pargs_n(); // Get the the number of arguments after parsing named arguments
char *flag_pargs(int i); // Get i'th argument after parsing named arguments (positional arguments)
bool flag_parse(int argc, char **argv);
#if __STDC_HOSTED__ == 1
void flag_print_options(FILE *stream);
void flag_print_error(FILE *stream);
#endif
#ifdef FLAG_IMPLEMENTATION
struct flag_context {
struct flag flags[FLAG_CAP];
int flags_count;
char *positionals[FLAG_CAP];
int positionals_count;
struct flag_error error;
};
static struct flag_context g_flag_ctx = {0};
bool *flag_bool(const char *name, const char *name_short, bool default_value, const char *description)
{
assert(g_flag_ctx.flags_count < FLAG_CAP);
assert(sizeof(bool) <= sizeof(union FLAG_VALUE));
struct flag *f = &g_flag_ctx.flags[g_flag_ctx.flags_count++];
*f = (struct flag){
.type = FLAG_TYPE_BOOL,
.name = name,
.name_short = name_short,
.description = description,
.default_value = (union FLAG_VALUE)default_value,
.value = (union FLAG_VALUE)default_value,
};
return &f->value.as_bool;
}
char **flag_str(const char *name, const char *name_short, const char *default_value, const char *description)
{
assert(g_flag_ctx.flags_count < FLAG_CAP);
assert(sizeof(char *) <= sizeof(union FLAG_VALUE));
struct flag *f = &g_flag_ctx.flags[g_flag_ctx.flags_count++];
*f = (struct flag){
.type = FLAG_TYPE_STR,
.name = name,
.name_short = name_short,
.description = description,
.default_value = (union FLAG_VALUE)(char *)default_value,
.value = (union FLAG_VALUE)(char *)default_value,
};
return &f->value.as_str;
}
int64_t *flag_int64(const char *name, const char *name_short, int64_t default_value, const char *description)
{
assert(g_flag_ctx.flags_count < FLAG_CAP);
assert(sizeof(int64_t) <= sizeof(union FLAG_VALUE));
struct flag *f = &g_flag_ctx.flags[g_flag_ctx.flags_count++];
*f = (struct flag){
.type = FLAG_TYPE_INT64,
.name = name,
.name_short = name_short,
.description = description,
.default_value = (union FLAG_VALUE)default_value,
.value = (union FLAG_VALUE)default_value,
};
return &f->value.as_int64;
}
// Returns
// 0, if the s1 and s2 are equal;
// a negative value if s1 is less than s2;
// a positive value if s1 is greater than s2.
static int flag_str_cmp(const char *l, const char *r) {
assert(l && r);
for (; *l==*r && *l; l++, r++) {}
return *(unsigned char *)l - *(unsigned char *)r;
}
//
// Credit: https://github.com/skeeto/scratch/blob/master/parsers/strtonum.c
//
// Parse the buffer as a base 10 integer. The buffer may contain
// arbitrary leading whitespace ("\t\n\v\f\r "), one optional + or -,
// then any number of digits ("0123456789").
//
// If the result is < min, returns FLAG_ERROR_UNDERFLOW_INT64,
// If the result is > max, returns FLAG_ERROR_OVERFLOW_INT64,
// If the buffer is invalid, returns FLAG_ERROR_INVALID_INT64,
// Otherwise returns FLAG_ERROR_NONE and *out is set to the parsed value.
//
static enum FLAG_ERROR flag_str_to_int64(const char *buf, int64_t *out, int64_t min, int64_t max)
{
assert(buf);
assert(out);
assert(min < max);
// Skip any leading whitespace
for (; (*buf >= 0x09 && *buf <= 0x0d) || (*buf == 0x20); buf++);
int64_t mmax, mmin, n = 0;
switch (*buf) {
case 0x2b: // +
buf++; // fallthrough
case 0x30: case 0x31: case 0x32: case 0x33: case 0x34:
case 0x35: case 0x36: case 0x37: case 0x38: case 0x39:
// Accumulate in positive direction, watching for max bound
mmax = max / 10;
do {
int v = *buf++ - 0x30;
if (v < 0 || v > 9) {
goto invalid;
}
if (n > mmax) {
goto toolarge;
}
n *= 10;
if (max - v < n) {
goto toolarge;
}
n += v;
} while (*buf);
// Still need to check min bound
if (n < min) {
goto toosmall;
}
*out = n;
return FLAG_ERROR_NONE;
case 0x2d: // -
buf++;
// Accumulate in negative direction, watching for min bound
mmin = min / 10;
do {
int v = *buf++ - 0x30;
if (v < 0 || v > 9) {
goto invalid;
}
if (n < mmin) {
goto toosmall;
}
n *= 10;
if (min + v > n) {
goto toosmall;
}
n -= v;
} while (*buf);
// Still need to check max bound
if (n > max) {
goto toolarge;
}
*out = n;
return FLAG_ERROR_NONE;
}
invalid:
return FLAG_ERROR_INVALID_INT64;
toolarge:
// Skip remaining digits
for (; *buf >= 0x30 && *buf <= 0x39; buf++);
if (*buf) goto invalid;
return FLAG_ERROR_OVERFLOW_INT64;
toosmall:
// Skip remaining digits
for (; *buf >= 0x30 && *buf <= 0x39; buf++);
if (*buf) goto invalid;
return FLAG_ERROR_UNDERFLOW_INT64;
}
static char *flag_shift_args(int argc[static 1], char **argv[static 1])
{
assert(*argc > 0);
char *result = **argv;
*argv += 1;
*argc -= 1;
return result;
}
static bool flag_parse_stripped_flag(int argc[static 1], char **argv[static 1], char *flag, struct flag *f)
{
f->set_by_user = true;
static_assert(FLAG_TYPE_COUNT == 3, "Handle all FLAG_TYPES.");
switch (f->type) {
case FLAG_TYPE_BOOL: {
f->value.as_bool = true;
} break;
case FLAG_TYPE_STR: {
if (*argc < 1) {
g_flag_ctx.error = (struct flag_error) { .code = FLAG_ERROR_MISSING_VALUE, .flag = flag, };
return false;
}
char *str_val = flag_shift_args(argc, argv);
f->value.as_str = str_val;
} break;
case FLAG_TYPE_INT64: {
if (*argc < 1) {
g_flag_ctx.error = (struct flag_error) { .code = FLAG_ERROR_MISSING_VALUE, .flag = flag, };
return false;
}
char *number_str = flag_shift_args(argc, argv);
int64_t v = 0;
enum FLAG_ERROR err = flag_str_to_int64(number_str, &v, INT64_MIN, INT64_MAX);
if (err != FLAG_ERROR_NONE) {
g_flag_ctx.error = (struct flag_error) { .code = err, .flag = flag, .int64.number_str = number_str, };
return false;
}
f->value.as_int64 = v;
} break;
default: assert(0 && "unreachable");
}
return true;
}
struct flag *flag_info(void *value_ptr)
{
assert(value_ptr);
return (struct flag *)(value_ptr - __builtin_offsetof(struct flag, value));
}
void flag_required(void *value_ptr)
{
assert(value_ptr);
struct flag* f = flag_info(value_ptr);
f->is_required = true;
}
char *flag_pargs(int i)
{
assert(i < g_flag_ctx.positionals_count);
return g_flag_ctx.positionals[i];
}
int flag_pargs_n()
{
return g_flag_ctx.positionals_count;
}
bool flag_parse(int argc, char **argv)
{
flag_shift_args(&argc, &argv); // skip exe name
while (argc > 0) {
char *const argument = flag_shift_args(&argc, &argv);
char *flag = argument;
bool found = false;
// long names
if (flag[0] == '-' && flag[1] == '-') {
flag += 2; // skip dashes
for (int i = 0; i < g_flag_ctx.flags_count && !found; i += 1) {
struct flag *f = &g_flag_ctx.flags[i];
assert(f->name);
if (flag_str_cmp(flag, f->name) == 0) {
found = true;
bool ok = flag_parse_stripped_flag(&argc, &argv, flag, f);
if (!ok) { return false; }
}
}
}
// short names
else if (!found && flag[0] == '-') {
flag += 1; // skip dash
for (int i = 0; i < g_flag_ctx.flags_count && !found; i += 1) {
struct flag *f = &g_flag_ctx.flags[i];
if (f->name_short && flag_str_cmp(flag, f->name_short) == 0) {
found = true;
bool ok = flag_parse_stripped_flag(&argc, &argv, flag, f);
if (!ok) { return false; }
}
}
}
if (!found) {
// treat as positional argument
if (g_flag_ctx.positionals_count < FLAG_CAP) {
g_flag_ctx.positionals[g_flag_ctx.positionals_count++] = argument;
}
else {
g_flag_ctx.error = (struct flag_error) { .code = FLAG_ERROR_TOO_MANY_PARGS, };
return false;
}
}
}
for (int i = 0; i < g_flag_ctx.flags_count; i += 1) {
struct flag *f = &g_flag_ctx.flags[i];
if (f->is_required && !f->set_by_user) {
g_flag_ctx.error = (struct flag_error) { .code = FLAG_ERROR_MISSING_REQUIRED_FLAG, .flag = f->name, };
return false;
}
}
return true;
}
#if __STDC_HOSTED__ == 1
void flag_print_error(FILE *stream)
{
struct flag_error e = g_flag_ctx.error;
static_assert(FLAG_ERROR_COUNT == 7, "Handle all FLAG_ERROR.");
switch (e.code) {
case FLAG_ERROR_NONE:
{
fprintf(stream, "Internal Error. The developer called an error handling procedure without there being any errors. Fire that guy.\n");
} break;
case FLAG_ERROR_MISSING_REQUIRED_FLAG:
{
fprintf(stream, "Error. Required flag '%s' not set.\n", e.flag);
} break;
case FLAG_ERROR_MISSING_VALUE:
{
fprintf(stream, "Error parsing arguments. Expected a value to flag '%s'.\n", e.flag);
} break;
case FLAG_ERROR_INVALID_INT64:
{
fprintf(stream, "Error parsing the number '%s' of flag '%s'.\n", e.int64.number_str, e.flag);
} break;
case FLAG_ERROR_UNDERFLOW_INT64:
{
fprintf(stream, "Error parsing the number '%s' of flag '%s'. Underflow.\n", e.int64.number_str, e.flag);
} break;
case FLAG_ERROR_OVERFLOW_INT64:
{
fprintf(stream, "Error parsing the number '%s' of flag '%s'. Overflow.\n", e.int64.number_str, e.flag);
} break;
case FLAG_ERROR_TOO_MANY_PARGS:
{
fprintf(stream, "Error: too many positional arguments given.\n");
} break;
case FLAG_ERROR_COUNT: assert(0 && "unreachable");
}
}
void flag_print_options(FILE *stream)
{
for (int i = 0; i < g_flag_ctx.flags_count; i += 1) {
struct flag *f = &g_flag_ctx.flags[i];
fprintf(stream, " --%s, -%s %s", f->name, f->name_short, f->description);
fprintf(stream, " [ ");
static_assert(FLAG_TYPE_COUNT == 3, "Handle all FLAG_TYPES.");
switch (f->type) {
case FLAG_TYPE_BOOL:
{
bool v = f->default_value.as_bool;
fprintf(stream, "default: %s", v ? "true" : "false");
} break;
case FLAG_TYPE_STR:
{
char *str = f->default_value.as_str;
fprintf(stream, "default: '%s'", str);
} break;
case FLAG_TYPE_INT64:
{
int64_t v = f->default_value.as_int64;
fprintf(stream, "default: %ld", v);
} break;
case FLAG_TYPE_COUNT: assert(0 && "unreachable");
}
fprintf(stream, " ]\n");
}
}
#endif // __STDC_HOSTED__
#endif // FLAG_IMPLEMENTATIONS
#endif // __FLAG_H