2 * Copyright 2008-2009 Katholieke Universiteit Leuven
4 * Use of this software is governed by the GNU LGPLv2.1 license
6 * Written by Sven Verdoolaege, K.U.Leuven, Departement
7 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
17 static void set_default_choice(struct isl_arg *arg, void *opt)
19 *(unsigned *)(((char *)opt) + arg->offset) = arg->u.choice.default_value;
22 static void set_default_flags(struct isl_arg *arg, void *opt)
24 *(unsigned *)(((char *)opt) + arg->offset) = arg->u.flags.default_value;
27 static void set_default_bool(struct isl_arg *arg, void *opt)
29 *(unsigned *)(((char *)opt) + arg->offset) = arg->u.b.default_value;
32 static void set_default_child(struct isl_arg *arg, void *opt)
34 void *child = calloc(1, arg->u.child.size);
37 isl_arg_set_defaults(arg->u.child.child, child);
39 *(void **)(((char *)opt) + arg->offset) = child;
42 static void set_default_user(struct isl_arg *arg, void *opt)
44 arg->u.user.init(((char *)opt) + arg->offset);
47 static void set_default_long(struct isl_arg *arg, void *opt)
49 *(long *)(((char *)opt) + arg->offset) = arg->u.l.default_value;
52 static void set_default_ulong(struct isl_arg *arg, void *opt)
54 *(unsigned long *)(((char *)opt) + arg->offset) = arg->u.ul.default_value;
57 static void set_default_str(struct isl_arg *arg, void *opt)
59 const char *str = NULL;
60 if (arg->u.str.default_value)
61 str = strdup(arg->u.str.default_value);
62 *(const char **)(((char *)opt) + arg->offset) = str;
65 void isl_arg_set_defaults(struct isl_arg *arg, void *opt)
69 for (i = 0; arg[i].type != isl_arg_end; ++i) {
70 switch (arg[i].type) {
72 set_default_choice(&arg[i], opt);
75 set_default_flags(&arg[i], opt);
78 set_default_bool(&arg[i], opt);
81 set_default_child(&arg[i], opt);
84 set_default_user(&arg[i], opt);
87 set_default_long(&arg[i], opt);
90 set_default_ulong(&arg[i], opt);
94 set_default_str(&arg[i], opt);
103 void isl_arg_free(struct isl_arg *arg, void *opt)
110 for (i = 0; arg[i].type != isl_arg_end; ++i) {
111 switch (arg[i].type) {
113 isl_arg_free(arg[i].u.child.child,
114 *(void **)(((char *)opt) + arg[i].offset));
118 free(*(char **)(((char *)opt) + arg[i].offset));
121 if (arg[i].u.user.clear)
122 arg[i].u.user.clear(((char *)opt) + arg[i].offset);
129 case isl_arg_version:
138 static int print_arg_help(struct isl_arg *decl, const char *prefix, int no)
142 if (!decl->long_name) {
143 printf(" -%c", decl->short_name);
147 if (decl->short_name)
148 printf(" -%c, --", decl->short_name);
154 printf("%s-", prefix);
155 len += strlen(prefix) + 1;
161 printf("%s", decl->long_name);
162 len += strlen(decl->long_name);
167 const void *isl_memrchr(const void *s, int c, size_t n)
176 static int print_help_msg(struct isl_arg *decl, int pos)
185 printf("\n%30s", "");
187 printf("%*s", 30 - pos, "");
192 const char *space = isl_memrchr(s, ' ', 45);
196 space = strchr(s + 45, ' ');
200 printf("%.*s", l, s);
203 printf("\n%30s", "");
210 static void print_default(struct isl_arg *decl, const char *def, int pos)
213 const char *default_prefix = "[default: ";
214 const char *default_suffix = "]";
217 len = strlen(default_prefix) + strlen(def) + strlen(default_suffix);
219 if (!decl->help_msg) {
221 printf("\n%30s", "");
223 printf("%*s", 30 - pos, "");
227 printf("\n%30s", "");
231 printf("%s%s%s", default_prefix, def, default_suffix);
234 static void print_default_choice(struct isl_arg *decl, int pos)
237 const char *s = "none";
239 for (i = 0; decl->u.choice.choice[i].name; ++i)
240 if (decl->u.choice.choice[i].value == decl->u.choice.default_value) {
241 s = decl->u.choice.choice[i].name;
245 print_default(decl, s, pos);
248 static void print_choice_help(struct isl_arg *decl, const char *prefix)
253 pos = print_arg_help(decl, prefix, 0);
257 for (i = 0; decl->u.choice.choice[i].name; ++i) {
262 printf("%s", decl->u.choice.choice[i].name);
263 pos += strlen(decl->u.choice.choice[i].name);
266 pos = print_help_msg(decl, pos);
267 print_default_choice(decl, pos);
272 static void print_default_flags(struct isl_arg *decl, int pos)
275 const char *default_prefix = "[default: ";
276 const char *default_suffix = "]";
277 int len = strlen(default_prefix) + strlen(default_suffix);
279 for (i = 0; decl->u.flags.flags[i].name; ++i)
280 if ((decl->u.flags.default_value & decl->u.flags.flags[i].mask) ==
281 decl->u.flags.flags[i].value)
282 len += strlen(decl->u.flags.flags[i].name);
284 if (!decl->help_msg) {
286 printf("\n%30s", "");
288 printf("%*s", 30 - pos, "");
292 printf("\n%30s", "");
296 printf("%s", default_prefix);
298 for (first = 1, i = 0; decl->u.flags.flags[i].name; ++i)
299 if ((decl->u.flags.default_value & decl->u.flags.flags[i].mask) ==
300 decl->u.flags.flags[i].value) {
303 printf("%s", decl->u.flags.flags[i].name);
307 printf("%s", default_suffix);
310 static void print_flags_help(struct isl_arg *decl, const char *prefix)
315 pos = print_arg_help(decl, prefix, 0);
319 for (i = 0; decl->u.flags.flags[i].name; ++i) {
325 decl->u.flags.flags[j].mask == decl->u.flags.flags[i].mask;
331 printf("%s", decl->u.flags.flags[j].name);
332 pos += strlen(decl->u.flags.flags[j].name);
337 pos = print_help_msg(decl, pos);
338 print_default_flags(decl, pos);
343 static void print_bool_help(struct isl_arg *decl, const char *prefix)
346 int no = decl->u.b.default_value == 1;
347 pos = print_arg_help(decl, prefix, no);
348 pos = print_help_msg(decl, pos);
349 print_default(decl, no ? "yes" : "no", pos);
353 static void print_long_help(struct isl_arg *decl, const char *prefix)
356 pos = print_arg_help(decl, prefix, 0);
357 if (decl->u.l.default_value != decl->u.l.default_selected) {
363 if (decl->u.l.default_value != decl->u.l.default_selected) {
367 print_help_msg(decl, pos);
371 static void print_ulong_help(struct isl_arg *decl, const char *prefix)
374 pos = print_arg_help(decl, prefix, 0);
377 print_help_msg(decl, pos);
381 static void print_str_help(struct isl_arg *decl, const char *prefix)
384 const char *a = decl->argument_name ? decl->argument_name : "string";
385 pos = print_arg_help(decl, prefix, 0);
387 pos += 1 + strlen(a);
388 print_help_msg(decl, pos);
392 static void print_help(struct isl_arg *arg, const char *prefix)
396 for (i = 0; arg[i].type != isl_arg_end; ++i) {
397 switch (arg[i].type) {
399 print_flags_help(&arg[i], prefix);
402 print_choice_help(&arg[i], prefix);
405 print_bool_help(&arg[i], prefix);
408 print_long_help(&arg[i], prefix);
411 print_ulong_help(&arg[i], prefix);
414 print_str_help(&arg[i], prefix);
416 case isl_arg_version:
417 printf(" -V, --version\n");
427 for (i = 0; arg[i].type != isl_arg_end; ++i) {
428 if (arg[i].type != isl_arg_child)
433 printf(" %s\n", arg[i].help_msg);
434 print_help(arg[i].u.child.child, arg[i].long_name);
438 static const char *prog_name(const char *prog)
442 slash = strrchr(prog, '/');
445 if (strncmp(prog, "lt-", 3) == 0)
451 static void print_help_and_exit(struct isl_arg *arg, const char *prog)
455 printf("Usage: %s [OPTION...]", prog_name(prog));
457 for (i = 0; arg[i].type != isl_arg_end; ++i)
458 if (arg[i].type == isl_arg_arg)
459 printf(" %s", arg[i].argument_name);
463 print_help(arg, NULL);
468 static const char *skip_name(struct isl_arg *decl, const char *arg,
469 const char *prefix, int need_argument, int *has_argument)
475 if (arg[0] == '-' && arg[1] && arg[1] == decl->short_name) {
476 if (need_argument && !arg[2])
479 *has_argument = arg[2] != '\0';
482 if (!decl->long_name)
485 if (strncmp(arg, "--", 2))
489 equal = strchr(name, '=');
490 if (need_argument && !equal)
494 *has_argument = !!equal;
495 end = equal ? equal : name + strlen(name);
498 size_t prefix_len = strlen(prefix);
499 if (strncmp(name, prefix, prefix_len) == 0 &&
500 name[prefix_len] == '-')
501 name += prefix_len + 1;
504 if (end - name != strlen(decl->long_name) ||
505 strncmp(name, decl->long_name, end - name))
508 return equal ? equal + 1 : end;
511 static int parse_choice_option(struct isl_arg *decl, char **arg,
512 const char *prefix, void *opt)
518 choice = skip_name(decl, arg[0], prefix, 0, &has_argument);
522 if (!has_argument && (!arg[1] || arg[1][0] == '-')) {
523 unsigned u = decl->u.choice.default_selected;
524 if (decl->u.choice.set)
525 decl->u.choice.set(opt, u);
527 *(unsigned *)(((char *)opt) + decl->offset) = u;
535 for (i = 0; decl->u.choice.choice[i].name; ++i) {
538 if (strcmp(choice, decl->u.choice.choice[i].name))
541 u = decl->u.choice.choice[i].value;
542 if (decl->u.choice.set)
543 decl->u.choice.set(opt, u);
545 *(unsigned *)(((char *)opt) + decl->offset) = u;
547 return has_argument ? 1 : 2;
553 static int set_flag(struct isl_arg *decl, unsigned *val, const char *flag,
558 for (i = 0; decl->u.flags.flags[i].name; ++i) {
559 if (strncmp(flag, decl->u.flags.flags[i].name, len))
562 *val &= ~decl->u.flags.flags[i].mask;
563 *val |= decl->u.flags.flags[i].value;
571 static int parse_flags_option(struct isl_arg *decl, char **arg,
572 const char *prefix, void *opt)
579 flags = skip_name(decl, arg[0], prefix, 0, &has_argument);
583 if (!has_argument && !arg[1])
589 val = *(unsigned *)(((char *)opt) + decl->offset);
591 while ((comma = strchr(flags, ',')) != NULL) {
592 if (!set_flag(decl, &val, flags, comma - flags))
596 if (!set_flag(decl, &val, flags, strlen(flags)))
599 *(unsigned *)(((char *)opt) + decl->offset) = val;
601 return has_argument ? 1 : 2;
604 static int parse_bool_option(struct isl_arg *decl, const char *arg,
605 const char *prefix, void *opt)
607 if (skip_name(decl, arg, prefix, 0, NULL)) {
608 *(unsigned *)(((char *)opt) + decl->offset) = 1;
613 if (!decl->long_name)
616 if (strncmp(arg, "--", 2))
621 size_t prefix_len = strlen(prefix);
622 if (strncmp(arg, prefix, prefix_len) == 0 &&
623 arg[prefix_len] == '-') {
624 arg += prefix_len + 1;
629 if (strncmp(arg, "no-", 3))
634 size_t prefix_len = strlen(prefix);
635 if (strncmp(arg, prefix, prefix_len) == 0 &&
636 arg[prefix_len] == '-')
637 arg += prefix_len + 1;
640 if (!strcmp(arg, decl->long_name)) {
641 *(unsigned *)(((char *)opt) + decl->offset) = 0;
649 static int parse_str_option(struct isl_arg *decl, char **arg,
650 const char *prefix, void *opt)
654 char **p = (char **)(((char *)opt) + decl->offset);
656 s = skip_name(decl, arg[0], prefix, 0, &has_argument);
673 static int parse_long_option(struct isl_arg *decl, char **arg,
674 const char *prefix, void *opt)
679 long *p = (long *)(((char *)opt) + decl->offset);
681 val = skip_name(decl, arg[0], prefix, 0, &has_argument);
686 long l = strtol(val, NULL, 0);
688 decl->u.l.set(opt, l);
695 long l = strtol(arg[1], &endptr, 0);
696 if (*endptr == '\0') {
698 decl->u.l.set(opt, l);
705 if (decl->u.l.default_value != decl->u.l.default_selected) {
707 decl->u.l.set(opt, decl->u.l.default_selected);
709 *p = decl->u.l.default_selected;
716 static int parse_ulong_option(struct isl_arg *decl, char **arg,
717 const char *prefix, void *opt)
722 unsigned long *p = (unsigned long *)(((char *)opt) + decl->offset);
724 val = skip_name(decl, arg[0], prefix, 0, &has_argument);
729 *p = strtoul(val, NULL, 0);
734 unsigned long ul = strtoul(arg[1], &endptr, 0);
735 if (*endptr == '\0') {
744 static int parse_option(struct isl_arg *decl, char **arg,
745 const char *prefix, void *opt);
747 static int parse_child_option(struct isl_arg *decl, char **arg, void *opt)
749 return parse_option(decl->u.child.child, arg, decl->long_name,
750 *(void **)(((char *)opt) + decl->offset));
753 static int parse_option(struct isl_arg *decl, char **arg,
754 const char *prefix, void *opt)
758 for (i = 0; decl[i].type != isl_arg_end; ++i) {
760 switch (decl[i].type) {
762 parsed = parse_choice_option(&decl[i], arg, prefix, opt);
765 parsed = parse_flags_option(&decl[i], arg, prefix, opt);
768 parsed = parse_long_option(&decl[i], arg, prefix, opt);
771 parsed = parse_ulong_option(&decl[i], arg, prefix, opt);
774 parsed = parse_bool_option(&decl[i], *arg, prefix, opt);
777 parsed = parse_str_option(&decl[i], arg, prefix, opt);
780 parsed = parse_child_option(&decl[i], arg, opt);
784 case isl_arg_version:
795 static int any_version(struct isl_arg *decl)
799 for (i = 0; decl[i].type != isl_arg_end; ++i) {
800 switch (decl[i].type) {
801 case isl_arg_version:
804 if (any_version(decl[i].u.child.child))
815 static void print_version(struct isl_arg *decl)
819 for (i = 0; decl[i].type != isl_arg_end; ++i) {
820 switch (decl[i].type) {
821 case isl_arg_version:
822 decl[i].u.version.print_version();
825 print_version(decl[i].u.child.child);
833 static void print_version_and_exit(struct isl_arg *decl)
840 static int drop_argument(int argc, char **argv, int drop, int n)
842 for (; drop < argc; ++drop)
843 argv[drop] = argv[drop + n];
848 static int n_arg(struct isl_arg *arg)
853 for (i = 0; arg[i].type != isl_arg_end; ++i)
854 if (arg[i].type == isl_arg_arg)
860 int isl_arg_parse(struct isl_arg *arg, int argc, char **argv, void *opt,
869 for (i = 1; i < argc; ++i) {
870 if (strcmp(argv[i], "--help") == 0)
871 print_help_and_exit(arg, argv[0]);
874 for (i = 1; i < argc; ++i) {
875 if ((strcmp(argv[i], "--version") == 0 ||
876 strcmp(argv[i], "-V") == 0) && any_version(arg))
877 print_version_and_exit(arg);
880 while (argc > 1 + skip) {
882 if (argv[1 + skip][0] != '-')
884 parsed = parse_option(arg, &argv[1 + skip], NULL, opt);
886 argc = drop_argument(argc, argv, 1 + skip, parsed);
887 else if (ISL_FL_ISSET(flags, ISL_ARG_ALL)) {
888 fprintf(stderr, "%s: unrecognized option: %s\n",
889 prog_name(argv[0]), argv[1 + skip]);
895 if (ISL_FL_ISSET(flags, ISL_ARG_ALL) ? argc != 1 + n
896 : argc < 1 + skip + n) {
897 fprintf(stderr, "%s: expecting %d arguments\n",
898 prog_name(argv[0]), n);
902 for (i = 0; arg[i].type != isl_arg_end; ++i) {
904 if (arg[i].type != isl_arg_arg)
906 str = strdup(argv[1 + skip]);
907 *(const char **)(((char *)opt) + arg[i].offset) = str;
908 argc = drop_argument(argc, argv, 1 + skip, 1);