]> mj.ucw.cz Git - libucw.git/blob - ucw/opt.c
9ef721d672d64d72c68d88fdd94a4e7e65657bb9
[libucw.git] / ucw / opt.c
1 /*
2  *      UCW Library -- Parsing of command-line options
3  *
4  *      (c) 2013 Jan Moskyto Matejka <mq@ucw.cz>
5  *      (c) 2014 Martin Mares <mj@ucw.cz>
6  *
7  *      This software may be freely distributed and used according to the terms
8  *      of the GNU Lesser General Public License.
9  */
10
11 #include <ucw/lib.h>
12 #include <ucw/opt.h>
13 #include <ucw/opt-internal.h>
14 #include <ucw/gary.h>
15 #include <ucw/stkstring.h>
16 #include <ucw/strtonum.h>
17
18 #include <alloca.h>
19 #include <math.h>
20
21 static uint opt_default_value_flags[] = {
22     [OPT_CL_BOOL] = OPT_NO_VALUE,
23     [OPT_CL_STATIC] = OPT_MAYBE_VALUE,
24     [OPT_CL_MULTIPLE] = OPT_REQUIRED_VALUE,
25     [OPT_CL_SWITCH] = OPT_NO_VALUE,
26     [OPT_CL_INC] = OPT_NO_VALUE,
27     [OPT_CL_CALL] = 0,
28     [OPT_CL_SECTION] = 0,
29     [OPT_CL_HELP] = 0
30 };
31
32 void opt_failure(const char * mesg, ...) {
33   va_list args;
34   va_start(args, mesg);
35   vfprintf(stderr, mesg, args);
36   fprintf(stderr, "\nRun with --help for more information.\n");
37   exit(OPT_EXIT_BAD_ARGS);
38 }
39
40 static char *opt_name(struct opt_context *oc, struct opt_precomputed *opt)
41 {
42   struct opt_item *item = opt->item;
43   char *res;
44   if (item->letter >= OPT_POSITIONAL_TAIL)
45     res = stk_printf("positional argument #%d", oc->positional_count);
46   else if (opt->flags & OPT_SEEN_AS_LONG)
47     res = stk_printf("--%s", opt->name);
48   else
49     res = stk_printf("-%c", item->letter);
50   return xstrdup(res);
51 }
52
53 #define THIS_OPT opt_name(oc, opt)
54
55 void opt_precompute(struct opt_precomputed *opt, struct opt_item *item)
56 {
57   opt->item = item;
58   opt->count = 0;
59   opt->name = item->name;
60   uint flags = item->flags;
61
62   if (item->letter >= OPT_POSITIONAL_TAIL) {
63     flags &= ~OPT_VALUE_FLAGS;
64     flags |= OPT_REQUIRED_VALUE;
65   }
66   if (!(flags & OPT_VALUE_FLAGS)) {
67     ASSERT(item->cls != OPT_CL_CALL);
68     flags |= opt_default_value_flags[item->cls];
69   }
70
71   opt->flags = flags;
72 }
73
74 static void opt_invoke_hooks(struct opt_context *oc, uint event, struct opt_item *item, char *value)
75 {
76   for (int i = 0; i < oc->hook_count; i++) {
77     struct opt_item *hook = oc->hooks[i];
78     if (hook->flags & event) {
79       void *data = (hook->flags & OPT_HOOK_INTERNAL) ? oc : hook->ptr;
80       hook->u.hook(item, event, value, data);
81     }
82   }
83 }
84
85 static struct opt_precomputed * opt_find_item_longopt(struct opt_context * oc, char * str) {
86   uint len = strlen(str);
87   struct opt_precomputed * candidate = NULL;
88
89   for (int i = 0; i < oc->opt_count; i++) {
90     struct opt_precomputed *opt = &oc->opts[i];
91     if (!opt->name)
92       continue;
93
94     if (!strncmp(opt->name, str, len)) {
95       if (strlen(opt->name) == len)
96         return opt;
97     } else if (opt->item->cls == OPT_CL_BOOL) {
98       if (opt->flags & OPT_NEGATIVE) {
99         // If the option is called no-X, match X as well
100         if (!strncmp("no-", opt->name, 3) && !strncmp(opt->name+3, str, len)) {
101           if (strlen(opt->name) == len+3)
102             return opt;
103         } else
104           continue;
105       } else {
106         // Match no-X as well
107         if (!strncmp("no-", str, 3) && !strncmp(opt->name, str+3, len-3)) {
108           if (strlen(opt->name) == len-3)
109             return opt;
110         } else
111           continue;
112       }
113     } else
114       continue;
115
116     if (candidate)
117       opt_failure("Ambiguous option --%s: matches both --%s and --%s.", str, candidate->name, opt->name);
118     else
119       candidate = opt;
120   }
121
122   if (candidate)
123     return candidate;
124
125   opt_failure("Invalid option --%s.", str);
126 }
127
128 static void opt_parse_value(struct opt_context * oc, struct opt_precomputed * opt, char * value) {
129   struct opt_item * item = opt->item;
130
131   if (opt->count++ && (opt->flags & OPT_SINGLE))
132     opt_failure("Option %s must be specified at most once.", THIS_OPT);
133
134   if (opt->flags & OPT_LAST_ARG)
135     oc->stop_parsing = 1;
136
137   opt_invoke_hooks(oc, OPT_HOOK_BEFORE_VALUE, item, value);
138
139   switch (item->cls) {
140     case OPT_CL_BOOL:
141       if (!value || !strcasecmp(value, "y") || !strcasecmp(value, "yes") || !strcasecmp(value, "true") || !strcasecmp(value, "1"))
142         *((int *) item->ptr) = 1 ^ (!!(opt->flags & OPT_NEGATIVE));
143       else if (!strcasecmp(value, "n") || !strcasecmp(value, "no") || !strcasecmp(value, "false") || !strcasecmp(value, "0"))
144         *((int *) item->ptr) = 0 ^ (!!(opt->flags & OPT_NEGATIVE));
145       else
146         opt_failure("Boolean argument for %s has a strange value. Supported (case insensitive): 1/0, y/n, yes/no, true/false.", THIS_OPT);
147       break;
148     case OPT_CL_STATIC:
149     case OPT_CL_MULTIPLE:
150       {
151         char * e = NULL;
152         void * ptr;
153         if (item->cls == OPT_CL_STATIC)
154           ptr = item->ptr;
155         else
156           ptr = GARY_PUSH_GENERIC(*(void **)item->ptr);
157 #define OPT_PTR(type) ((type *) ptr)
158         switch (item->type) {
159           case CT_INT:
160             if (!value)
161               *OPT_PTR(int) = 0;
162             else
163               e = cf_parse_int(value, OPT_PTR(int));
164             if (e)
165               opt_failure("Integer value parsing failed for %s: %s", THIS_OPT, e);
166             break;
167           case CT_U64:
168             if (!value)
169               *OPT_PTR(u64) = 0;
170             else
171               e = cf_parse_u64(value, OPT_PTR(u64));
172             if (e)
173               opt_failure("Unsigned 64-bit value parsing failed for %s: %s", THIS_OPT, e);
174             break;
175           case CT_DOUBLE:
176             if (!value)
177               *OPT_PTR(double) = NAN;
178             else
179               e = cf_parse_double(value, OPT_PTR(double));
180             if (e)
181               opt_failure("Floating-point value parsing failed for %s: %s", THIS_OPT, e);
182             break;
183           case CT_IP:
184             if (!value)
185               *OPT_PTR(u32) = 0;
186             else
187               e = cf_parse_ip(value, OPT_PTR(u32));
188             if (e)
189               opt_failure("IP address parsing failed for %s: %s", THIS_OPT, e);
190             break;
191           case CT_STRING:
192             if (!value)
193               *OPT_PTR(const char *) = NULL;
194             else
195               *OPT_PTR(const char *) = xstrdup(value);
196             break;
197           case CT_USER:
198               {
199                 char * e = item->u.utype->parser(value, ptr);
200                 if (e)
201                   opt_failure("Cannot parse the value of %s: %s", THIS_OPT, e);
202                 break;
203               }
204           default:
205             ASSERT(0);
206         }
207 #undef OPT_PTR
208         break;
209       }
210     case OPT_CL_SWITCH:
211       if ((opt->flags & OPT_SINGLE) && *((int *)item->ptr) != -1)
212         opt_failure("Multiple switches: %s", THIS_OPT);
213       else
214         *((int *)item->ptr) = item->u.value;
215       break;
216     case OPT_CL_INC:
217       if (opt->flags & OPT_NEGATIVE)
218         (*((int *)item->ptr))--;
219       else
220         (*((int *)item->ptr))++;
221       break;
222     case OPT_CL_CALL:
223       {
224         void *data = (opt->flags & OPT_INTERNAL) ? oc : item->ptr;
225         item->u.call(item, value, data);
226         break;
227       }
228     default:
229       ASSERT(0);
230   }
231
232   opt_invoke_hooks(oc, OPT_HOOK_AFTER_VALUE, item, value);
233 }
234
235 static int opt_longopt(struct opt_context * oc, char ** argv, int index) {
236   int eaten = 0;
237   char * name_in = argv[index] + 2; // skipping the -- on the beginning
238   uint pos = strchrnul(name_in, '=') - name_in;
239   struct opt_precomputed * opt = opt_find_item_longopt(oc, strndupa(name_in, pos));
240   char * value = NULL;
241
242   opt->flags |= OPT_SEEN_AS_LONG;
243
244   if (opt->item->cls == OPT_CL_BOOL &&
245       ((opt->flags & OPT_NEGATIVE)
246          ? (!strncmp(opt->item->name, "no-", 3) && !strncmp(name_in, opt->item->name + 3, pos-3))
247          : (!strncmp(name_in, "no-", 3) && !strncmp(name_in+3, opt->item->name, pos-3)))) {
248     if (name_in[pos])
249       opt_failure("Option --%s must not have any value.", name_in);
250     value = "n";
251   } else if (opt->flags & OPT_REQUIRED_VALUE) {
252     if (name_in[pos])
253       value = name_in + pos + 1;
254     else {
255       value = argv[index+1];
256       if (!value)
257         opt_failure("Option %s must have a value, but nothing supplied.", THIS_OPT);
258       eaten++;
259     }
260   } else if (opt->flags & OPT_MAYBE_VALUE) {
261     if (name_in[pos])
262       value = name_in + pos + 1;
263   } else {
264     if (name_in[pos])
265       opt_failure("Option %s must have no value.", THIS_OPT);
266   }
267   opt_parse_value(oc, opt, value);
268   return eaten;
269 }
270
271 static int opt_shortopt(struct opt_context * oc, char ** argv, int index) {
272   int chr = 0;
273   struct opt_precomputed * opt;
274   int o;
275
276   while (o = argv[index][++chr]) {
277     if (o < 0 || o >= 128)
278       opt_failure("Invalid character 0x%02x in option name. Only ASCII is allowed.", o & 0xff);
279     opt = oc->shortopt[o];
280
281     if (!opt)
282       opt_failure("Unknown option -%c.", o);
283
284     opt->flags &= ~OPT_SEEN_AS_LONG;
285
286     if (opt->flags & OPT_NO_VALUE)
287       opt_parse_value(oc, opt, NULL);
288     else if (opt->flags & OPT_REQUIRED_VALUE) {
289       if (argv[index][chr+1]) {
290         opt_parse_value(oc, opt, argv[index] + chr + 1);
291         return 0;
292       } else if (!argv[index+1])
293         opt_failure("Option -%c must have a value, but nothing supplied.", o);
294       else {
295         opt_parse_value(oc, opt, argv[index+1]);
296         return 1;
297       }
298     } else if (opt->flags & OPT_MAYBE_VALUE) {
299       if (argv[index][chr+1]) {
300         opt_parse_value(oc, opt, argv[index] + chr + 1);
301         return 0;
302       } else
303         opt_parse_value(oc, opt, NULL);
304     } else {
305       ASSERT(0);
306     }
307   }
308
309   return 0;
310 }
311
312 static void opt_positional(struct opt_context * oc, char * value) {
313   oc->positional_count++;
314   uint id = oc->positional_count > oc->positional_max ? OPT_POSITIONAL_TAIL : OPT_POSITIONAL(oc->positional_count);
315   struct opt_precomputed * opt = oc->shortopt[id];
316   if (!opt)
317     opt_failure("Too many positional arguments.");
318   else {
319     opt->flags &= ~OPT_SEEN_AS_LONG;
320     opt_parse_value(oc, opt, value);
321   }
322 }
323
324 static void opt_count_items(struct opt_context *oc, const struct opt_section *sec)
325 {
326   for (const struct opt_item *item = sec->opt; item->cls != OPT_CL_END; item++) {
327     if (item->cls == OPT_CL_SECTION)
328       opt_count_items(oc, item->u.section);
329     else if (item->cls == OPT_CL_HOOK)
330       oc->hook_count++;
331     else if (item->letter || item->name) {
332       oc->opt_count++;
333       if (item->letter > OPT_POSITIONAL_TAIL)
334         oc->positional_max++;
335     }
336   }
337 }
338
339 static void opt_prepare_items(struct opt_context *oc, const struct opt_section *sec)
340 {
341   for (struct opt_item *item = sec->opt; item->cls != OPT_CL_END; item++) {
342     if (item->cls == OPT_CL_SECTION)
343       opt_prepare_items(oc, item->u.section);
344     else if (item->cls == OPT_CL_HOOK)
345       oc->hooks[oc->hook_count++] = item;
346     else if (item->letter || item->name) {
347       struct opt_precomputed * opt = &oc->opts[oc->opt_count++];
348       opt_precompute(opt, item);
349       if (item->letter)
350         oc->shortopt[(int) item->letter] = opt;
351     }
352   }
353 }
354
355 static void opt_check_required(struct opt_context *oc)
356 {
357   for (int i = 0; i < oc->opt_count; i++) {
358     struct opt_precomputed *opt = &oc->opts[i];
359     if (!opt->count && (opt->flags & OPT_REQUIRED)) {
360       struct opt_item *item = opt->item;
361       if (item->letter > OPT_POSITIONAL_TAIL)
362         opt_failure("Required positional argument #%d not found.", item->letter - OPT_POSITIONAL_TAIL);
363       else if (item->letter == OPT_POSITIONAL_TAIL)
364         opt_failure("Required positional argument not found.");
365       else if (item->letter && item->name)
366         opt_failure("Required option -%c/--%s not found.", item->letter, item->name);
367       else if (item->letter)
368         opt_failure("Required option -%c not found.", item->letter);
369       else
370         opt_failure("Required option --%s not found.", item->name);
371     }
372   }
373 }
374
375 int opt_parse(const struct opt_section * options, char ** argv) {
376   struct opt_context * oc = alloca(sizeof(*oc));
377   memset(oc, 0, sizeof (*oc));
378   oc->options = options;
379
380   opt_count_items(oc, options);
381   oc->opts = alloca(sizeof(*oc->opts) * oc->opt_count);
382   oc->shortopt = alloca(sizeof(*oc->shortopt) * (oc->positional_max + OPT_POSITIONAL_TAIL + 1));
383   memset(oc->shortopt, 0, sizeof(*oc->shortopt) * (oc->positional_max + OPT_POSITIONAL_TAIL + 1));
384   oc->hooks = alloca(sizeof (*oc->hooks) * oc->hook_count);
385
386   oc->opt_count = 0;
387   oc->hook_count = 0;
388   opt_prepare_items(oc, options);
389
390   int force_positional = 0;
391   int i;
392   for (i=0; argv[i] && !oc->stop_parsing; i++) {
393     char *arg = argv[i];
394     opt_invoke_hooks(oc, OPT_HOOK_BEFORE_ARG, NULL, NULL);
395     if (arg[0] != '-' || force_positional)
396       opt_positional(oc, arg);
397     else {
398       if (arg[1] == '-') {
399         if (arg[2] == '\0')
400           force_positional++;
401         else
402           i += opt_longopt(oc, argv, i);
403       } else if (arg[1])
404         i += opt_shortopt(oc, argv, i);
405       else
406         opt_positional(oc, arg);
407     }
408   }
409
410   opt_check_required(oc);
411   opt_invoke_hooks(oc, OPT_HOOK_FINAL, NULL, NULL);
412   return i;
413 }