-
Notifications
You must be signed in to change notification settings - Fork 6
/
args.c
246 lines (227 loc) · 4.74 KB
/
args.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
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include "args.h"
/* TODO: short parameters */
struct opts {
struct argument *args;
int argc;
char **argv;
};
static const char *typemap[] = {
0,
"NUMBER",
"FLOAT",
"STRING",
0,
0,
0,
0,
0
};
static const struct argument helparg = {
.type = ARGT_END,
.name = "help",
.help = "show this message"
};
static struct argument *match_arg(struct opts *opts)
{
const char *argnodash = &opts->argv[0][2];
struct argument *args = opts->args;
while (args->type != ARGT_END) {
int argnlen = strlen(args->name);
if (!strncmp(args->name, argnodash, argnlen))
return args;
if (args->type == ARGT_BOOLEAN && !strncmp(args->name, argnodash+3, argnlen))
return args;
args++;
}
return 0;
}
static void apply_value_to_arg(struct argument *arg, const char *value)
{
char *end = "E";
switch (arg->type) {
case ARGT_INTEGER:
if (value) {
*((int*)arg->value) = strtol(value, &end, 10);
if (*end == '\0')
break;
}
*((int*)arg->value) = arg->def.i;
break;
case ARGT_FLOAT:
if (value) {
*((float*)arg->value) = (float)strtod(value, &end);
if (*end == '\0')
break;
}
*((float*)arg->value) = arg->def.f;
break;
case ARGT_STRING:
if (value)
*((const char**)arg->value) = value;
break;
case ARGT_BOOLEAN:
*((int*)arg->value) = !strncmp(value, "--no-", 5) ? 0 : 1;
break;
case ARGT_SET_BIT:
*((unsigned int*)arg->value) |= arg->def.b;
break;
case ARGT_SET_INT:
*((int*)arg->value) = arg->def.i;
break;
case ARGT_SET_PTR:
*((void**)arg->value) = arg->def.p;
break;
case ARGT_SET_FLT:
*((float*)arg->value) = arg->def.f;
break;
case ARGT_CALLBACK:
arg->callback(value);
break;
default:
break;
}
}
static void set_defaults(struct argument *args)
{
while (args->type != ARGT_END) {
switch (args->type) {
case ARGT_INTEGER:
*((int*)args->value) = args->def.i;
break;
case ARGT_FLOAT:
*((float*)args->value) = args->def.f;
break;
case ARGT_STRING:
*((const char**)args->value) = args->def.s;
break;
case ARGT_BOOLEAN:
*((int*)args->value) = args->def.i;
break;
default:
break;
}
args++;
}
}
static const char *get_value(struct opts *opts, struct argument *arg)
{
const char *value = 0;
int arglen;
switch (arg->type) {
case ARGT_INTEGER:
case ARGT_FLOAT:
case ARGT_STRING:
case ARGT_CALLBACK:
arglen = strlen(arg->name);
if (opts->argv[0][arglen+2] == '=')
value = &opts->argv[0][arglen+3];
else if (opts->argc > 1 &&
opts->argv[1][0] != '-' &&
opts->argv[1][1] != '-')
{
opts->argv++;
opts->argc--;
value = opts->argv[0];
} else {
value = 0;
}
break;
case ARGT_BOOLEAN:
value = opts->argv[0];
break;
default:
break;
}
if (value && value[0] == '\0')
value = 0;
return value;
}
static void parse_arg(struct opts *opts, struct argument *match)
{
const char *value = get_value(opts, match);
apply_value_to_arg(match, value);
}
static int max_arg_length(struct argument *args)
{
int maxlen = strlen("-h, help"); /* minimum for help hack */
while (args->type != ARGT_END) {
int len = strlen(args->name);
switch (args->type) {
case ARGT_STRING:
case ARGT_INTEGER:
case ARGT_FLOAT:
len += strlen(typemap[args->type]) + 1;
break;
default:
break;
}
maxlen = (maxlen > len) ? maxlen : len;
args++;
}
return maxlen;
}
static void print_arg_string(const struct argument *arg, int maxlen)
{
int p;
/* nasty hack, but.. whatever */
if (arg == &helparg)
p = printf(" -h, --help");
else
p = printf(" --%s", arg->name);
switch (arg->type) {
case ARGT_STRING:
case ARGT_INTEGER:
case ARGT_FLOAT:
p += printf("=%s", typemap[arg->type]);
break;
default:
break;
}
for (; p <= maxlen+6; ++p)
printf(" ");
printf("%s", arg->help);
switch (arg->type) {
case ARGT_STRING:
if (arg->def.s)
printf(" [\"%s\"]", arg->def.s);
break;
case ARGT_INTEGER: printf(" [%d]", arg->def.i); break;
case ARGT_FLOAT: printf(" [%f]", arg->def.f); break;
default:
break;
}
printf("\n");
}
static void show_help_and_quit(struct argument *args, const char *help)
{
int maxlen = max_arg_length(args);
if (help)
printf("%s\n", help);
print_arg_string(&helparg, maxlen);
while (args->type != ARGT_END) {
print_arg_string(args, maxlen);
args++;
}
exit(0);
}
void parse_args(struct argument *args, int argc, char **argv, const char *help)
{
struct opts opts = {args, argc, argv};
set_defaults(args);
for (; opts.argc; opts.argc--, opts.argv++) {
if (!strcmp(opts.argv[0], "--help") ||
!strcmp(opts.argv[0], "-h"))
{
show_help_and_quit(args, help);
}
if (!strncmp(opts.argv[0], "--", 2)) {
/* this is our argument */
struct argument *match = match_arg(&opts);
if (match)
parse_arg(&opts, match);
}
}
}