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
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
|
/* Licensed under GPLv2+ - see LICENSE file for details */
#include <ccan/opt/opt.h>
#include <ccan/cast/cast.h>
#include <inttypes.h>
#include <string.h>
#include <stdint.h>
#include <stdlib.h>
#include <errno.h>
#include <stdio.h>
#include <limits.h>
#include "private.h"
#include <float.h>
/* Upper bound to sprintf this simple type? Each 3 bits < 1 digit. */
#define CHAR_SIZE(type) (((sizeof(type)*CHAR_BIT + 2) / 3) + 1)
/* FIXME: asprintf module? */
static char *arg_bad(const char *fmt, const char *arg)
{
char *str = malloc(strlen(fmt) + strlen(arg));
sprintf(str, fmt, arg);
return str;
}
char *opt_set_bool(bool *b)
{
*b = true;
return NULL;
}
char *opt_set_invbool(bool *b)
{
*b = false;
return NULL;
}
char *opt_set_bool_arg(const char *arg, bool *b)
{
if (!strcasecmp(arg, "yes") || !strcasecmp(arg, "true"))
return opt_set_bool(b);
if (!strcasecmp(arg, "no") || !strcasecmp(arg, "false"))
return opt_set_invbool(b);
return opt_invalid_argument(arg);
}
char *opt_set_invbool_arg(const char *arg, bool *b)
{
char *err = opt_set_bool_arg(arg, b);
if (!err)
*b = !*b;
return err;
}
/* Set a char *. */
char *opt_set_charp(const char *arg, char **p)
{
*p = cast_const(char *, arg);
return NULL;
}
/* Set an integer value, various forms.
FIXME: set to 1 on arg == NULL ? */
char *opt_set_intval(const char *arg, int *i)
{
long l;
char *err = opt_set_longval(arg, &l);
if (err)
return err;
*i = l;
/* Beware truncation, but don't generate untestable code. */
if (sizeof(*i) != sizeof(l) && *i != l)
return arg_bad("value '%s' does not fit into an integer", arg);
return err;
}
char *opt_set_uintval(const char *arg, unsigned int *ui)
{
int i;
char *err = opt_set_intval(arg, &i);
if (err)
return err;
if (i < 0)
return arg_bad("'%s' is negative but destination is unsigned", arg);
*ui = i;
return NULL;
}
char *opt_set_longval(const char *arg, long *l)
{
char *endp;
/* This is how the manpage says to do it. Yech. */
errno = 0;
*l = strtol(arg, &endp, 0);
if (*endp || !arg[0])
return arg_bad("'%s' is not a number", arg);
if (errno)
return arg_bad("'%s' is out of range", arg);
return NULL;
}
char *opt_set_ulongval(const char *arg, unsigned long *ul)
{
long int l;
char *err;
err = opt_set_longval(arg, &l);
if (err)
return err;
*ul = l;
if (l < 0)
return arg_bad("'%s' is negative but destination is unsigned", arg);
return NULL;
}
char *opt_set_floatval(const char *arg, float *f)
{
double d;
char *err;
err = opt_set_doubleval(arg, &d);
if (err)
return err;
*f = d;
/*allow true infinity via --foo=INF, while avoiding isinf() from math.h
because it wasn't standard 25 years ago.*/
double inf = 1e300 * 1e300; /*direct 1e600 annoys -Woverflow*/
if ((d > FLT_MAX || d < -FLT_MAX) && d != inf && d != -inf)
return arg_bad("'%s' is out of range for a 32 bit float", arg);
if (d != 0 && *f == 0)
return arg_bad("'%s' is out of range (truncated to zero)", arg);
return NULL;
}
void opt_show_floatval(char buf[OPT_SHOW_LEN], const float *f)
{
double d = *f;
opt_show_doubleval(buf, &d);
}
char *opt_set_doubleval(const char *arg, double *d)
{
char *endp;
/* This is how the manpage says to do it. Yech. */
errno = 0;
/* Don't assume strtof */
*d = strtod(arg, &endp);
if (*endp || !arg[0])
return arg_bad("'%s' is not a number", arg);
if (errno)
return arg_bad("'%s' is out of range", arg);
return NULL;
}
void opt_show_doubleval(char buf[OPT_SHOW_LEN], const double *d)
{
snprintf(buf, OPT_SHOW_LEN, "%f", *d);
}
char *opt_inc_intval(int *i)
{
(*i)++;
return NULL;
}
char *opt_dec_intval(int *i)
{
(*i)--;
return NULL;
}
/* Display version string. */
char *opt_version_and_exit(const char *version)
{
printf("%s\n", version);
/* Don't have valgrind complain! */
opt_free_table();
exit(0);
}
char *opt_usage_and_exit(const char *extra)
{
char *usage = opt_usage(opt_argv0, extra);
printf("%s", usage);
/* Don't have valgrind complain! */
opt_alloc.free(usage);
opt_free_table();
exit(0);
}
void opt_show_bool(char buf[OPT_SHOW_LEN], const bool *b)
{
strncpy(buf, *b ? "true" : "false", OPT_SHOW_LEN);
}
void opt_show_invbool(char buf[OPT_SHOW_LEN], const bool *b)
{
strncpy(buf, *b ? "false" : "true", OPT_SHOW_LEN);
}
void opt_show_charp(char buf[OPT_SHOW_LEN], char *const *p)
{
if (*p){
size_t len = strlen(*p);
buf[0] = '"';
if (len > OPT_SHOW_LEN - 2)
len = OPT_SHOW_LEN - 2;
strncpy(buf+1, *p, len);
buf[1+len] = '"';
if (len < OPT_SHOW_LEN - 2)
buf[2+len] = '\0';
}
else {
strncpy(buf, "(nil)", OPT_SHOW_LEN);
}
}
/* Show an integer value, various forms. */
void opt_show_intval(char buf[OPT_SHOW_LEN], const int *i)
{
snprintf(buf, OPT_SHOW_LEN, "%i", *i);
}
void opt_show_uintval(char buf[OPT_SHOW_LEN], const unsigned int *ui)
{
snprintf(buf, OPT_SHOW_LEN, "%u", *ui);
}
void opt_show_longval(char buf[OPT_SHOW_LEN], const long *l)
{
snprintf(buf, OPT_SHOW_LEN, "%li", *l);
}
void opt_show_ulongval(char buf[OPT_SHOW_LEN], const unsigned long *ul)
{
snprintf(buf, OPT_SHOW_LEN, "%lu", *ul);
}
/* a helper function that multiplies out an argument's kMGTPE suffix in the
* long long int range, and perform checks common to all integer destinations.
*
* The base will be either 1000 or 1024, corresponding with the '_si' and
* '_bi' functions.
*/
static char *set_llong_with_suffix(const char *arg, long long *ll,
const long long base)
{
char *endp;
if (!arg[0]){
*ll = 0;
return arg_bad("'%s' (an empty string) is not a number", arg);
}
errno = 0;
*ll = strtoll(arg, &endp, 0);
if (errno)
return arg_bad("'%s' is out of range", arg);
if (*endp){
/*The string continues with non-digits. If there is just one
letter and it is a known multiplier suffix, use it.*/
if (endp[1])
return arg_bad("'%s' is not a number (suffix too long)", arg);
long long mul;
switch(*endp){
case 'K':
case 'k':
mul = base;
break;
case 'M':
case 'm':
mul = base * base;
break;
case 'G':
case 'g':
mul = base * base * base;
break;
case 'T':
case 't':
mul = base * base * base * base;
break;
case 'P':
mul = base * base * base * base * base;
break;
case 'E':
mul = base * base * base * base * base * base;
break;
/* This is as far as we can go in 64 bits ('E' is 2 ^ 60) */
default:
return arg_bad("'%s' is not a number (unknown suffix)",
arg);
}
if (*ll > LLONG_MAX / mul || *ll < LLONG_MIN / mul)
return arg_bad("'%s' is out of range", arg);
*ll *= mul;
}
return NULL;
}
/* Middle layer helpers that perform bounds checks for specific target sizes
* and signednesses.
*/
static char * set_ulonglong_with_suffix(const char *arg, unsigned long long *ull,
const long base)
{
long long ll;
char *err = set_llong_with_suffix(arg, &ll, base);
if (err != NULL)
return err;
if (ll < 0)
return arg_bad("'%s' is negative but destination is unsigned", arg);
*ull = ll;
return NULL;
}
static char * set_long_with_suffix(const char *arg, long *l, const long base)
{
long long ll;
char *err = set_llong_with_suffix(arg, &ll, base);
if (err != NULL) /*an error*/
return err;
*l = ll;
/* Beware truncation, but don't generate untestable code. */
if (sizeof(*l) != sizeof(ll) && *l != ll)
return arg_bad("value '%s' does not fit into a long", arg);
return NULL;
}
static char * set_ulong_with_suffix(const char *arg, unsigned long *ul, const long base)
{
long long ll;
char *err = set_llong_with_suffix(arg, &ll, base);
if (err != NULL)
return err;
if (ll < 0)
return arg_bad("'%s' is negative but destination is unsigned", arg);
*ul = ll;
/* Beware truncation, but don't generate untestable code. */
if (sizeof(*ul) != sizeof(ll) && *ul != ll)
return arg_bad("value '%s' does not fit into an unsigned long", arg);
return NULL;
}
static char * set_int_with_suffix(const char *arg, int *i, const long base)
{
long long ll;
char *err = set_llong_with_suffix(arg, &ll, base);
if (err != NULL) /*an error*/
return err;
*i = ll;
if (*i != ll)
return arg_bad("value '%s' does not fit into an int", arg);
return NULL;
}
static char * set_uint_with_suffix(const char *arg, unsigned int *u, const long base)
{
long long ll;
char *err = set_llong_with_suffix(arg, &ll, base);
if (err != NULL)
return err;
if (ll < 0)
return arg_bad("'%s' is negative but destination is unsigned", arg);
*u = ll;
if (*u != ll)
return arg_bad("value '%s' does not fit into an unsigned int", arg);
return NULL;
}
/*Set an integer, with decimal or binary suffixes.
The accepted suffixes are k/K, M/m, G/g, T, P, E.
The *_bi functions multiply the numeric value by a power of 1024, while the
*_si functions multiply by a power of 1000.
*/
char * opt_set_ulonglongval_bi(const char *arg, unsigned long long *ll)
{
return set_ulonglong_with_suffix(arg, ll, 1024);
}
char * opt_set_ulonglongval_si(const char *arg, unsigned long long *ll)
{
return set_ulonglong_with_suffix(arg, ll, 1000);
}
char * opt_set_longlongval_bi(const char *arg, long long *ll)
{
return set_llong_with_suffix(arg, ll, 1024);
}
char * opt_set_longlongval_si(const char *arg, long long *ll)
{
return set_llong_with_suffix(arg, ll, 1000);
}
char * opt_set_longval_bi(const char *arg, long *l)
{
return set_long_with_suffix(arg, l, 1024);
}
char * opt_set_longval_si(const char *arg, long *l)
{
return set_long_with_suffix(arg, l, 1000);
}
char * opt_set_ulongval_bi(const char *arg, unsigned long *ul)
{
return set_ulong_with_suffix(arg, ul, 1024);
}
char * opt_set_ulongval_si(const char *arg, unsigned long *ul)
{
return set_ulong_with_suffix(arg, ul, 1000);
}
char * opt_set_intval_bi(const char *arg, int *i)
{
return set_int_with_suffix(arg, i, 1024);
}
char * opt_set_intval_si(const char *arg, int *i)
{
return set_int_with_suffix(arg, i, 1000);
}
char * opt_set_uintval_bi(const char *arg, unsigned int *u)
{
return set_uint_with_suffix(arg, u, 1024);
}
char * opt_set_uintval_si(const char *arg, unsigned int *u)
{
return set_uint_with_suffix(arg, u, 1000);
}
/*static helpers for showing values with kMGTPE suffixes. In this case there
are separate but essentially identical functions for signed and unsigned
values, so that unsigned values greater than LLONG_MAX get suffixes.
*/
static void show_llong_with_suffix(char buf[OPT_SHOW_LEN], long long ll,
const long long base)
{
const char *suffixes = "kMGTPE";
int i;
if (ll == 0){
/*zero is special because everything divides it (you'd get "0E")*/
snprintf(buf, OPT_SHOW_LEN, "0");
return;
}
for (i = 0; i < strlen(suffixes); i++){
long long tmp = ll / base;
if (tmp * base != ll)
break;
ll = tmp;
}
if (i == 0)
snprintf(buf, OPT_SHOW_LEN, "%"PRId64, (int64_t)ll);
else
snprintf(buf, OPT_SHOW_LEN, "%"PRId64"%c", (int64_t)ll, suffixes[i - 1]);
}
static void show_ullong_with_suffix(char buf[OPT_SHOW_LEN], unsigned long long ull,
const unsigned base)
{
const char *suffixes = "kMGTPE";
int i;
if (ull == 0){
/*zero is special because everything divides it (you'd get "0E")*/
snprintf(buf, OPT_SHOW_LEN, "0");
return;
}
for (i = 0; i < strlen(suffixes); i++){
unsigned long long tmp = ull / base;
if (tmp * base != ull)
break;
ull = tmp;
}
if (i == 0)
snprintf(buf, OPT_SHOW_LEN, "%"PRIu64, (uint64_t)ull);
else
snprintf(buf, OPT_SHOW_LEN, "%"PRIu64"%c", (uint64_t)ull, suffixes[i - 1]);
}
/* _bi, signed */
void opt_show_intval_bi(char buf[OPT_SHOW_LEN], const int *x)
{
show_llong_with_suffix(buf, *x, 1024);
}
void opt_show_longval_bi(char buf[OPT_SHOW_LEN], const long *x)
{
show_llong_with_suffix(buf, *x, 1024);
}
void opt_show_longlongval_bi(char buf[OPT_SHOW_LEN], const long long *x)
{
show_llong_with_suffix(buf, *x, 1024);
}
/* _bi, unsigned */
void opt_show_uintval_bi(char buf[OPT_SHOW_LEN], const unsigned int *x)
{
show_ullong_with_suffix(buf, (unsigned long long) *x, 1024);
}
void opt_show_ulongval_bi(char buf[OPT_SHOW_LEN], const unsigned long *x)
{
show_ullong_with_suffix(buf, (unsigned long long) *x, 1024);
}
void opt_show_ulonglongval_bi(char buf[OPT_SHOW_LEN], const unsigned long long *x)
{
show_ullong_with_suffix(buf, (unsigned long long) *x, 1024);
}
/* _si, signed */
void opt_show_intval_si(char buf[OPT_SHOW_LEN], const int *x)
{
show_llong_with_suffix(buf, (long long) *x, 1000);
}
void opt_show_longval_si(char buf[OPT_SHOW_LEN], const long *x)
{
show_llong_with_suffix(buf, (long long) *x, 1000);
}
void opt_show_longlongval_si(char buf[OPT_SHOW_LEN], const long long *x)
{
show_llong_with_suffix(buf, *x, 1000);
}
/* _si, unsigned */
void opt_show_uintval_si(char buf[OPT_SHOW_LEN], const unsigned int *x)
{
show_ullong_with_suffix(buf, (unsigned long long) *x, 1000);
}
void opt_show_ulongval_si(char buf[OPT_SHOW_LEN], const unsigned long *x)
{
show_ullong_with_suffix(buf, (unsigned long long) *x, 1000);
}
void opt_show_ulonglongval_si(char buf[OPT_SHOW_LEN], const unsigned long long *x)
{
show_ullong_with_suffix(buf, (unsigned long long) *x, 1000);
}
|