2 * Copyright 2008-2009 Katholieke Universiteit Leuven
4 * Use of this software is governed by the MIT license
6 * Written by Sven Verdoolaege, K.U.Leuven, Departement
7 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
17 static struct isl_arg help_arg
[] = {
18 ISL_ARG_PHANTOM_BOOL('h', "help", NULL
, "print this help, then exit")
21 static void set_default_choice(struct isl_arg
*arg
, void *opt
)
23 *(unsigned *)(((char *)opt
) + arg
->offset
) = arg
->u
.choice
.default_value
;
26 static void set_default_flags(struct isl_arg
*arg
, void *opt
)
28 *(unsigned *)(((char *)opt
) + arg
->offset
) = arg
->u
.flags
.default_value
;
31 static void set_default_bool(struct isl_arg
*arg
, void *opt
)
33 if (arg
->offset
== (size_t) -1)
35 *(unsigned *)(((char *)opt
) + arg
->offset
) = arg
->u
.b
.default_value
;
38 static void set_default_child(struct isl_arg
*arg
, void *opt
)
42 if (arg
->offset
== (size_t) -1)
45 child
= calloc(1, arg
->u
.child
.child
->options_size
);
46 *(void **)(((char *)opt
) + arg
->offset
) = child
;
50 isl_args_set_defaults(arg
->u
.child
.child
, child
);
53 static void set_default_user(struct isl_arg
*arg
, void *opt
)
55 arg
->u
.user
.init(((char *)opt
) + arg
->offset
);
58 static void set_default_int(struct isl_arg
*arg
, void *opt
)
60 *(int *)(((char *)opt
) + arg
->offset
) = arg
->u
.i
.default_value
;
63 static void set_default_long(struct isl_arg
*arg
, void *opt
)
65 *(long *)(((char *)opt
) + arg
->offset
) = arg
->u
.l
.default_value
;
68 static void set_default_ulong(struct isl_arg
*arg
, void *opt
)
70 *(unsigned long *)(((char *)opt
) + arg
->offset
) = arg
->u
.ul
.default_value
;
73 static void set_default_str(struct isl_arg
*arg
, void *opt
)
75 const char *str
= NULL
;
76 if (arg
->u
.str
.default_value
)
77 str
= strdup(arg
->u
.str
.default_value
);
78 *(const char **)(((char *)opt
) + arg
->offset
) = str
;
81 static void set_default_str_list(struct isl_arg
*arg
, void *opt
)
83 *(const char ***)(((char *) opt
) + arg
->offset
) = NULL
;
84 *(int *)(((char *) opt
) + arg
->u
.str_list
.offset_n
) = 0;
87 void isl_args_set_defaults(struct isl_args
*args
, void *opt
)
91 for (i
= 0; args
->args
[i
].type
!= isl_arg_end
; ++i
) {
92 switch (args
->args
[i
].type
) {
94 set_default_choice(&args
->args
[i
], opt
);
97 set_default_flags(&args
->args
[i
], opt
);
100 set_default_bool(&args
->args
[i
], opt
);
103 set_default_child(&args
->args
[i
], opt
);
106 set_default_user(&args
->args
[i
], opt
);
109 set_default_int(&args
->args
[i
], opt
);
112 set_default_long(&args
->args
[i
], opt
);
115 set_default_ulong(&args
->args
[i
], opt
);
119 set_default_str(&args
->args
[i
], opt
);
121 case isl_arg_str_list
:
122 set_default_str_list(&args
->args
[i
], opt
);
126 case isl_arg_version
:
133 static void free_args(struct isl_arg
*arg
, void *opt
);
135 static void free_child(struct isl_arg
*arg
, void *opt
)
137 if (arg
->offset
== (size_t) -1)
138 free_args(arg
->u
.child
.child
->args
, opt
);
140 isl_args_free(arg
->u
.child
.child
,
141 *(void **)(((char *)opt
) + arg
->offset
));
144 static void free_str_list(struct isl_arg
*arg
, void *opt
)
147 int n
= *(int *)(((char *) opt
) + arg
->u
.str_list
.offset_n
);
148 char **list
= *(char ***)(((char *) opt
) + arg
->offset
);
150 for (i
= 0; i
< n
; ++i
)
155 static void free_user(struct isl_arg
*arg
, void *opt
)
157 if (arg
->u
.user
.clear
)
158 arg
->u
.user
.clear(((char *)opt
) + arg
->offset
);
161 static void free_args(struct isl_arg
*arg
, void *opt
)
165 for (i
= 0; arg
[i
].type
!= isl_arg_end
; ++i
) {
166 switch (arg
[i
].type
) {
168 free_child(&arg
[i
], opt
);
172 free(*(char **)(((char *)opt
) + arg
[i
].offset
));
174 case isl_arg_str_list
:
175 free_str_list(&arg
[i
], opt
);
178 free_user(&arg
[i
], opt
);
187 case isl_arg_version
:
195 void isl_args_free(struct isl_args
*args
, void *opt
)
200 free_args(args
->args
, opt
);
205 /* Data structure for collecting the prefixes of ancestor nodes.
207 * n is the number of prefixes.
208 * prefix[i] for i < n is a prefix of an ancestor.
209 * len[i] for i < n is the length of prefix[i].
211 struct isl_prefixes
{
213 const char *prefix
[10];
217 /* Add "prefix" to the list of prefixes and return the updated
218 * number of prefixes.
220 static int add_prefix(struct isl_prefixes
*prefixes
, const char *prefix
)
227 if (prefixes
->n
>= 10) {
228 fprintf(stderr
, "too many prefixes\n");
231 prefixes
->len
[prefixes
->n
] = strlen(prefix
);
232 prefixes
->prefix
[prefixes
->n
] = prefix
;
238 /* Drop all prefixes starting at "first".
240 static void drop_prefix(struct isl_prefixes
*prefixes
, int first
)
245 /* Print the prefixes in "prefixes".
247 static int print_prefixes(struct isl_prefixes
*prefixes
)
255 for (i
= 0; i
< prefixes
->n
; ++i
) {
256 printf("%s-", prefixes
->prefix
[i
]);
257 len
+= strlen(prefixes
->prefix
[i
]) + 1;
263 /* Check if "name" starts with one or more of the prefixes in "prefixes",
264 * starting at *first. If so, advance the pointer beyond the prefixes
265 * and return the updated pointer. Additionally, update *first to
266 * the index after the last prefix found.
268 static const char *skip_prefixes(const char *name
,
269 struct isl_prefixes
*prefixes
, int *first
)
273 for (i
= first
? *first
: 0; i
< prefixes
->n
; ++i
) {
274 size_t len
= prefixes
->len
[i
];
275 const char *prefix
= prefixes
->prefix
[i
];
276 if (strncmp(name
, prefix
, len
) == 0 && name
[len
] == '-') {
286 static int print_arg_help(struct isl_arg
*decl
, struct isl_prefixes
*prefixes
,
291 if (!decl
->long_name
) {
292 printf(" -%c", decl
->short_name
);
296 if (decl
->short_name
) {
297 printf(" -%c, --", decl
->short_name
);
299 } else if (decl
->flags
& ISL_ARG_SINGLE_DASH
) {
311 len
+= print_prefixes(prefixes
);
312 printf("%s", decl
->long_name
);
313 len
+= strlen(decl
->long_name
);
315 while ((++decl
)->type
== isl_arg_alias
) {
322 printf("%s", decl
->long_name
);
323 len
+= strlen(decl
->long_name
);
329 const void *isl_memrchr(const void *s
, int c
, size_t n
)
338 static int wrap_msg(const char *s
, int indent
, int pos
)
341 int wrap_len
= 75 - indent
;
343 if (pos
+ 1 >= indent
)
344 printf("\n%*s", indent
, "");
346 printf("%*s", indent
- pos
, "");
349 while (len
> wrap_len
) {
350 const char *space
= isl_memrchr(s
, ' ', wrap_len
);
354 space
= strchr(s
+ wrap_len
, ' ');
358 printf("%.*s", l
, s
);
361 printf("\n%*s", indent
, "");
368 static int print_help_msg(struct isl_arg
*decl
, int pos
)
373 return wrap_msg(decl
->help_msg
, 30, pos
);
376 static void print_default(struct isl_arg
*decl
, const char *def
, int pos
)
378 const char *default_prefix
= "[default: ";
379 const char *default_suffix
= "]";
382 len
= strlen(default_prefix
) + strlen(def
) + strlen(default_suffix
);
384 if (!decl
->help_msg
) {
386 printf("\n%30s", "");
388 printf("%*s", 30 - pos
, "");
391 printf("\n%30s", "");
395 printf("%s%s%s", default_prefix
, def
, default_suffix
);
398 static void print_default_choice(struct isl_arg
*decl
, void *opt
, int pos
)
401 const char *s
= "none";
404 p
= (unsigned *)(((char *) opt
) + decl
->offset
);
405 for (i
= 0; decl
->u
.choice
.choice
[i
].name
; ++i
)
406 if (decl
->u
.choice
.choice
[i
].value
== *p
) {
407 s
= decl
->u
.choice
.choice
[i
].name
;
411 print_default(decl
, s
, pos
);
414 static void print_choice_help(struct isl_arg
*decl
,
415 struct isl_prefixes
*prefixes
, void *opt
)
420 pos
= print_arg_help(decl
, prefixes
, 0);
424 for (i
= 0; decl
->u
.choice
.choice
[i
].name
; ++i
) {
429 printf("%s", decl
->u
.choice
.choice
[i
].name
);
430 pos
+= strlen(decl
->u
.choice
.choice
[i
].name
);
433 pos
= print_help_msg(decl
, pos
);
434 print_default_choice(decl
, opt
, pos
);
439 static void print_default_flags(struct isl_arg
*decl
, void *opt
, int pos
)
442 const char *default_prefix
= "[default: ";
443 const char *default_suffix
= "]";
444 int len
= strlen(default_prefix
) + strlen(default_suffix
);
447 p
= (unsigned *)(((char *) opt
) + decl
->offset
);
448 for (i
= 0; decl
->u
.flags
.flags
[i
].name
; ++i
)
449 if ((*p
& decl
->u
.flags
.flags
[i
].mask
) ==
450 decl
->u
.flags
.flags
[i
].value
)
451 len
+= strlen(decl
->u
.flags
.flags
[i
].name
);
453 if (!decl
->help_msg
) {
455 printf("\n%30s", "");
457 printf("%*s", 30 - pos
, "");
460 printf("\n%30s", "");
464 printf("%s", default_prefix
);
466 for (first
= 1, i
= 0; decl
->u
.flags
.flags
[i
].name
; ++i
)
467 if ((*p
& decl
->u
.flags
.flags
[i
].mask
) ==
468 decl
->u
.flags
.flags
[i
].value
) {
471 printf("%s", decl
->u
.flags
.flags
[i
].name
);
475 printf("%s", default_suffix
);
478 static void print_flags_help(struct isl_arg
*decl
,
479 struct isl_prefixes
*prefixes
, void *opt
)
484 pos
= print_arg_help(decl
, prefixes
, 0);
488 for (i
= 0; decl
->u
.flags
.flags
[i
].name
; ++i
) {
494 decl
->u
.flags
.flags
[j
].mask
== decl
->u
.flags
.flags
[i
].mask
;
500 printf("%s", decl
->u
.flags
.flags
[j
].name
);
501 pos
+= strlen(decl
->u
.flags
.flags
[j
].name
);
506 pos
= print_help_msg(decl
, pos
);
507 print_default_flags(decl
, opt
, pos
);
512 static void print_bool_help(struct isl_arg
*decl
,
513 struct isl_prefixes
*prefixes
, void *opt
)
516 unsigned *p
= opt
? (unsigned *)(((char *) opt
) + decl
->offset
) : NULL
;
517 int no
= p
? *p
== 1 : 0;
518 pos
= print_arg_help(decl
, prefixes
, no
);
519 pos
= print_help_msg(decl
, pos
);
520 if (decl
->offset
!= (size_t) -1)
521 print_default(decl
, no
? "yes" : "no", pos
);
525 static int print_argument_name(struct isl_arg
*decl
, const char *name
, int pos
)
527 printf("%c<%s>", decl
->long_name
? '=' : ' ', name
);
528 return pos
+ 3 + strlen(name
);
531 static void print_int_help(struct isl_arg
*decl
,
532 struct isl_prefixes
*prefixes
, void *opt
)
536 int *p
= (int *)(((char *) opt
) + decl
->offset
);
537 pos
= print_arg_help(decl
, prefixes
, 0);
538 pos
= print_argument_name(decl
, decl
->argument_name
, pos
);
539 pos
= print_help_msg(decl
, pos
);
540 snprintf(val
, sizeof(val
), "%d", *p
);
541 print_default(decl
, val
, pos
);
545 static void print_long_help(struct isl_arg
*decl
,
546 struct isl_prefixes
*prefixes
, void *opt
)
549 long *p
= (long *)(((char *) opt
) + decl
->offset
);
550 pos
= print_arg_help(decl
, prefixes
, 0);
551 if (*p
!= decl
->u
.l
.default_selected
) {
557 if (*p
!= decl
->u
.l
.default_selected
) {
561 print_help_msg(decl
, pos
);
565 static void print_ulong_help(struct isl_arg
*decl
,
566 struct isl_prefixes
*prefixes
)
569 pos
= print_arg_help(decl
, prefixes
, 0);
572 print_help_msg(decl
, pos
);
576 static void print_str_help(struct isl_arg
*decl
,
577 struct isl_prefixes
*prefixes
, void *opt
)
580 const char *a
= decl
->argument_name
? decl
->argument_name
: "string";
581 const char **p
= (const char **)(((char *) opt
) + decl
->offset
);
582 pos
= print_arg_help(decl
, prefixes
, 0);
583 pos
= print_argument_name(decl
, a
, pos
);
584 pos
= print_help_msg(decl
, pos
);
586 print_default(decl
, *p
, pos
);
590 static void print_str_list_help(struct isl_arg
*decl
,
591 struct isl_prefixes
*prefixes
)
594 const char *a
= decl
->argument_name
? decl
->argument_name
: "string";
595 pos
= print_arg_help(decl
, prefixes
, 0);
596 pos
= print_argument_name(decl
, a
, pos
);
597 pos
= print_help_msg(decl
, pos
);
601 static void print_help(struct isl_arg
*arg
,
602 struct isl_prefixes
*prefixes
, void *opt
)
607 for (i
= 0; arg
[i
].type
!= isl_arg_end
; ++i
) {
608 if (arg
[i
].flags
& ISL_ARG_HIDDEN
)
610 switch (arg
[i
].type
) {
612 print_flags_help(&arg
[i
], prefixes
, opt
);
616 print_choice_help(&arg
[i
], prefixes
, opt
);
620 print_bool_help(&arg
[i
], prefixes
, opt
);
624 print_int_help(&arg
[i
], prefixes
, opt
);
628 print_long_help(&arg
[i
], prefixes
, opt
);
632 print_ulong_help(&arg
[i
], prefixes
);
636 print_str_help(&arg
[i
], prefixes
, opt
);
639 case isl_arg_str_list
:
640 print_str_list_help(&arg
[i
], prefixes
);
644 case isl_arg_version
:
654 for (i
= 0; arg
[i
].type
!= isl_arg_end
; ++i
) {
658 if (arg
[i
].type
!= isl_arg_child
)
660 if (arg
[i
].flags
& ISL_ARG_HIDDEN
)
666 printf(" %s\n", arg
[i
].help_msg
);
667 if (arg
[i
].offset
== (size_t) -1)
670 child
= *(void **)(((char *) opt
) + arg
[i
].offset
);
671 first
= add_prefix(prefixes
, arg
[i
].long_name
);
672 print_help(arg
[i
].u
.child
.child
->args
, prefixes
, child
);
673 drop_prefix(prefixes
, first
);
678 static const char *prog_name(const char *prog
)
682 slash
= strrchr(prog
, '/');
685 if (strncmp(prog
, "lt-", 3) == 0)
691 static int any_version(struct isl_arg
*decl
)
695 for (i
= 0; decl
[i
].type
!= isl_arg_end
; ++i
) {
696 switch (decl
[i
].type
) {
697 case isl_arg_version
:
700 if (any_version(decl
[i
].u
.child
.child
->args
))
711 static void print_help_and_exit(struct isl_arg
*arg
, const char *prog
,
715 struct isl_prefixes prefixes
= { 0 };
717 printf("Usage: %s [OPTION...]", prog_name(prog
));
719 for (i
= 0; arg
[i
].type
!= isl_arg_end
; ++i
)
720 if (arg
[i
].type
== isl_arg_arg
)
721 printf(" %s", arg
[i
].argument_name
);
725 print_help(arg
, &prefixes
, opt
);
727 if (any_version(arg
))
728 printf(" -V, --version\n");
729 print_bool_help(help_arg
, NULL
, NULL
);
731 for (i
= 0; arg
[i
].type
!= isl_arg_end
; ++i
) {
732 if (arg
[i
].type
!= isl_arg_footer
)
734 wrap_msg(arg
[i
].help_msg
, 0, 0);
741 static int match_long_name(struct isl_arg
*decl
,
742 const char *start
, const char *end
)
745 if (end
- start
== strlen(decl
->long_name
) &&
746 !strncmp(start
, decl
->long_name
, end
- start
))
748 } while ((++decl
)->type
== isl_arg_alias
);
753 static const char *skip_dash_dash(struct isl_arg
*decl
, const char *arg
)
755 if (!strncmp(arg
, "--", 2))
757 if ((decl
->flags
& ISL_ARG_SINGLE_DASH
) && arg
[0] == '-')
762 static const char *skip_name(struct isl_arg
*decl
, const char *arg
,
763 struct isl_prefixes
*prefixes
, int need_argument
, int *has_argument
)
769 if (arg
[0] == '-' && arg
[1] && arg
[1] == decl
->short_name
) {
770 if (need_argument
&& !arg
[2])
773 *has_argument
= arg
[2] != '\0';
776 if (!decl
->long_name
)
779 name
= skip_dash_dash(decl
, arg
);
783 equal
= strchr(name
, '=');
784 if (need_argument
&& !equal
)
788 *has_argument
= !!equal
;
789 end
= equal
? equal
: name
+ strlen(name
);
791 name
= skip_prefixes(name
, prefixes
, NULL
);
793 if (!match_long_name(decl
, name
, end
))
796 return equal
? equal
+ 1 : end
;
799 static int parse_choice_option(struct isl_arg
*decl
, char **arg
,
800 struct isl_prefixes
*prefixes
, void *opt
)
806 choice
= skip_name(decl
, arg
[0], prefixes
, 0, &has_argument
);
810 if (!has_argument
&& (!arg
[1] || arg
[1][0] == '-')) {
811 unsigned u
= decl
->u
.choice
.default_selected
;
812 *(unsigned *)(((char *)opt
) + decl
->offset
) = u
;
813 if (decl
->u
.choice
.set
)
814 decl
->u
.choice
.set(opt
, u
);
822 for (i
= 0; decl
->u
.choice
.choice
[i
].name
; ++i
) {
825 if (strcmp(choice
, decl
->u
.choice
.choice
[i
].name
))
828 u
= decl
->u
.choice
.choice
[i
].value
;
829 *(unsigned *)(((char *)opt
) + decl
->offset
) = u
;
830 if (decl
->u
.choice
.set
)
831 decl
->u
.choice
.set(opt
, u
);
833 return has_argument
? 1 : 2;
839 static int set_flag(struct isl_arg
*decl
, unsigned *val
, const char *flag
,
844 for (i
= 0; decl
->u
.flags
.flags
[i
].name
; ++i
) {
845 if (strncmp(flag
, decl
->u
.flags
.flags
[i
].name
, len
))
848 *val
&= ~decl
->u
.flags
.flags
[i
].mask
;
849 *val
|= decl
->u
.flags
.flags
[i
].value
;
857 static int parse_flags_option(struct isl_arg
*decl
, char **arg
,
858 struct isl_prefixes
*prefixes
, void *opt
)
865 flags
= skip_name(decl
, arg
[0], prefixes
, 0, &has_argument
);
869 if (!has_argument
&& !arg
[1])
877 while ((comma
= strchr(flags
, ',')) != NULL
) {
878 if (!set_flag(decl
, &val
, flags
, comma
- flags
))
882 if (!set_flag(decl
, &val
, flags
, strlen(flags
)))
885 *(unsigned *)(((char *)opt
) + decl
->offset
) = val
;
887 return has_argument
? 1 : 2;
890 static int parse_bool_option(struct isl_arg
*decl
, char **arg
,
891 struct isl_prefixes
*prefixes
, void *opt
)
894 unsigned *p
= (unsigned *)(((char *)opt
) + decl
->offset
);
897 if (skip_name(decl
, arg
[0], prefixes
, 0, NULL
)) {
898 if ((decl
->flags
& ISL_ARG_BOOL_ARG
) && arg
[1]) {
900 int val
= strtol(arg
[1], &endptr
, 0);
901 if (*endptr
== '\0' && (val
== 0 || val
== 1)) {
902 if (decl
->offset
!= (size_t) -1)
905 decl
->u
.b
.set(opt
, val
);
909 if (decl
->offset
!= (size_t) -1)
912 decl
->u
.b
.set(opt
, 1);
917 if (!decl
->long_name
)
920 name
= skip_dash_dash(decl
, arg
[0]);
925 name
= skip_prefixes(name
, prefixes
, &next_prefix
);
927 if (strncmp(name
, "no-", 3))
931 name
= skip_prefixes(name
, prefixes
, &next_prefix
);
933 if (match_long_name(decl
, name
, name
+ strlen(name
))) {
934 if (decl
->offset
!= (size_t) -1)
937 decl
->u
.b
.set(opt
, 0);
945 static int parse_str_option(struct isl_arg
*decl
, char **arg
,
946 struct isl_prefixes
*prefixes
, void *opt
)
950 char **p
= (char **)(((char *)opt
) + decl
->offset
);
952 s
= skip_name(decl
, arg
[0], prefixes
, 0, &has_argument
);
971 static int isl_arg_str_list_append(struct isl_arg
*decl
, void *opt
,
974 int *n
= (int *)(((char *) opt
) + decl
->u
.str_list
.offset_n
);
975 char **list
= *(char ***)(((char *) opt
) + decl
->offset
);
977 list
= realloc(list
, (*n
+ 1) * sizeof(char *));
980 *(char ***)(((char *) opt
) + decl
->offset
) = list
;
981 list
[*n
] = strdup(s
);
986 static int parse_str_list_option(struct isl_arg
*decl
, char **arg
,
987 struct isl_prefixes
*prefixes
, void *opt
)
992 s
= skip_name(decl
, arg
[0], prefixes
, 0, &has_argument
);
997 isl_arg_str_list_append(decl
, opt
, s
);
1002 isl_arg_str_list_append(decl
, opt
, arg
[1]);
1009 static int parse_int_option(struct isl_arg
*decl
, char **arg
,
1010 struct isl_prefixes
*prefixes
, void *opt
)
1015 int *p
= (int *)(((char *)opt
) + decl
->offset
);
1017 val
= skip_name(decl
, arg
[0], prefixes
, 0, &has_argument
);
1027 int i
= strtol(arg
[1], &endptr
, 0);
1028 if (*endptr
== '\0') {
1037 static int parse_long_option(struct isl_arg
*decl
, char **arg
,
1038 struct isl_prefixes
*prefixes
, void *opt
)
1043 long *p
= (long *)(((char *)opt
) + decl
->offset
);
1045 val
= skip_name(decl
, arg
[0], prefixes
, 0, &has_argument
);
1050 long l
= strtol(val
, NULL
, 0);
1053 decl
->u
.l
.set(opt
, l
);
1058 long l
= strtol(arg
[1], &endptr
, 0);
1059 if (*endptr
== '\0') {
1062 decl
->u
.l
.set(opt
, l
);
1067 if (decl
->u
.l
.default_value
!= decl
->u
.l
.default_selected
) {
1068 *p
= decl
->u
.l
.default_selected
;
1070 decl
->u
.l
.set(opt
, decl
->u
.l
.default_selected
);
1077 static int parse_ulong_option(struct isl_arg
*decl
, char **arg
,
1078 struct isl_prefixes
*prefixes
, void *opt
)
1083 unsigned long *p
= (unsigned long *)(((char *)opt
) + decl
->offset
);
1085 val
= skip_name(decl
, arg
[0], prefixes
, 0, &has_argument
);
1090 *p
= strtoul(val
, NULL
, 0);
1095 unsigned long ul
= strtoul(arg
[1], &endptr
, 0);
1096 if (*endptr
== '\0') {
1105 static int parse_option(struct isl_arg
*decl
, char **arg
,
1106 struct isl_prefixes
*prefixes
, void *opt
);
1108 static int parse_child_option(struct isl_arg
*decl
, char **arg
,
1109 struct isl_prefixes
*prefixes
, void *opt
)
1114 if (decl
->offset
== (size_t) -1)
1117 child
= *(void **)(((char *)opt
) + decl
->offset
);
1119 first
= add_prefix(prefixes
, decl
->long_name
);
1120 parsed
= parse_option(decl
->u
.child
.child
->args
, arg
, prefixes
, child
);
1121 drop_prefix(prefixes
, first
);
1126 static int parse_option(struct isl_arg
*decl
, char **arg
,
1127 struct isl_prefixes
*prefixes
, void *opt
)
1131 for (i
= 0; decl
[i
].type
!= isl_arg_end
; ++i
) {
1133 switch (decl
[i
].type
) {
1134 case isl_arg_choice
:
1135 parsed
= parse_choice_option(&decl
[i
], arg
,
1139 parsed
= parse_flags_option(&decl
[i
], arg
,
1143 parsed
= parse_int_option(&decl
[i
], arg
, prefixes
, opt
);
1146 parsed
= parse_long_option(&decl
[i
], arg
,
1150 parsed
= parse_ulong_option(&decl
[i
], arg
,
1154 parsed
= parse_bool_option(&decl
[i
], arg
,
1158 parsed
= parse_str_option(&decl
[i
], arg
, prefixes
, opt
);
1160 case isl_arg_str_list
:
1161 parsed
= parse_str_list_option(&decl
[i
], arg
, prefixes
,
1165 parsed
= parse_child_option(&decl
[i
], arg
,
1170 case isl_arg_footer
:
1172 case isl_arg_version
:
1183 static void print_version(struct isl_arg
*decl
)
1187 for (i
= 0; decl
[i
].type
!= isl_arg_end
; ++i
) {
1188 switch (decl
[i
].type
) {
1189 case isl_arg_version
:
1190 decl
[i
].u
.version
.print_version();
1193 print_version(decl
[i
].u
.child
.child
->args
);
1201 static void print_version_and_exit(struct isl_arg
*decl
)
1203 print_version(decl
);
1208 static int drop_argument(int argc
, char **argv
, int drop
, int n
)
1210 for (; drop
+ n
< argc
; ++drop
)
1211 argv
[drop
] = argv
[drop
+ n
];
1216 static int n_arg(struct isl_arg
*arg
)
1221 for (i
= 0; arg
[i
].type
!= isl_arg_end
; ++i
)
1222 if (arg
[i
].type
== isl_arg_arg
)
1228 static int next_arg(struct isl_arg
*arg
, int a
)
1230 for (++a
; arg
[a
].type
!= isl_arg_end
; ++a
)
1231 if (arg
[a
].type
== isl_arg_arg
)
1237 /* Unless ISL_ARG_SKIP_HELP is set, check if "arg" is
1238 * equal to "--help" and if so call print_help_and_exit.
1240 static void check_help(struct isl_args
*args
, char *arg
, char *prog
, void *opt
,
1243 if (ISL_FL_ISSET(flags
, ISL_ARG_SKIP_HELP
))
1246 if (strcmp(arg
, "--help") == 0)
1247 print_help_and_exit(args
->args
, prog
, opt
);
1250 int isl_args_parse(struct isl_args
*args
, int argc
, char **argv
, void *opt
,
1257 struct isl_prefixes prefixes
= { 0 };
1259 n
= n_arg(args
->args
);
1261 for (i
= 1; i
< argc
; ++i
) {
1262 if ((strcmp(argv
[i
], "--version") == 0 ||
1263 strcmp(argv
[i
], "-V") == 0) && any_version(args
->args
))
1264 print_version_and_exit(args
->args
);
1267 while (argc
> 1 + skip
) {
1269 if (argv
[1 + skip
][0] != '-') {
1270 a
= next_arg(args
->args
, a
);
1273 p
= (char **)(((char *)opt
)+args
->args
[a
].offset
);
1275 *p
= strdup(argv
[1 + skip
]);
1276 argc
= drop_argument(argc
, argv
, 1 + skip
, 1);
1278 } else if (ISL_FL_ISSET(flags
, ISL_ARG_ALL
)) {
1279 fprintf(stderr
, "%s: extra argument: %s\n",
1280 prog_name(argv
[0]), argv
[1 + skip
]);
1286 check_help(args
, argv
[1 + skip
], argv
[0], opt
, flags
);
1287 parsed
= parse_option(args
->args
, &argv
[1 + skip
],
1290 argc
= drop_argument(argc
, argv
, 1 + skip
, parsed
);
1291 else if (ISL_FL_ISSET(flags
, ISL_ARG_ALL
)) {
1292 fprintf(stderr
, "%s: unrecognized option: %s\n",
1293 prog_name(argv
[0]), argv
[1 + skip
]);
1300 fprintf(stderr
, "%s: expecting %d more argument(s)\n",
1301 prog_name(argv
[0]), n
);