1 #include "git-compat-util.h"
2 #include "parse-options.h"
8 static int parse_options_usage(struct parse_opt_ctx_t
*ctx
,
9 const char * const *usagestr
,
10 const struct option
*opts
, int err
);
15 int optbug(const struct option
*opt
, const char *reason
)
18 return error("BUG: option '%s' %s", opt
->long_name
, reason
);
19 return error("BUG: switch '%c' %s", opt
->short_name
, reason
);
22 int opterror(const struct option
*opt
, const char *reason
, int flags
)
24 if (flags
& OPT_SHORT
)
25 return error("switch `%c' %s", opt
->short_name
, reason
);
26 if (flags
& OPT_UNSET
)
27 return error("option `no-%s' %s", opt
->long_name
, reason
);
28 return error("option `%s' %s", opt
->long_name
, reason
);
31 static int get_arg(struct parse_opt_ctx_t
*p
, const struct option
*opt
,
32 int flags
, const char **arg
)
37 } else if (p
->argc
== 1 && (opt
->flags
& PARSE_OPT_LASTARG_DEFAULT
)) {
38 *arg
= (const char *)opt
->defval
;
39 } else if (p
->argc
> 1) {
43 return opterror(opt
, "requires a value", flags
);
47 static void fix_filename(const char *prefix
, const char **file
)
49 if (!file
|| !*file
|| !prefix
|| is_absolute_path(*file
)
50 || !strcmp("-", *file
))
52 *file
= xstrdup(prefix_filename(prefix
, strlen(prefix
), *file
));
55 static int get_value(struct parse_opt_ctx_t
*p
,
56 const struct option
*opt
, int flags
)
59 const int unset
= flags
& OPT_UNSET
;
63 return opterror(opt
, "takes no value", flags
);
64 if (unset
&& (opt
->flags
& PARSE_OPT_NONEG
))
65 return opterror(opt
, "isn't available", flags
);
66 if (!(flags
& OPT_SHORT
) && p
->opt
&& (opt
->flags
& PARSE_OPT_NOARG
))
67 return opterror(opt
, "takes no value", flags
);
70 case OPTION_LOWLEVEL_CALLBACK
:
71 return (*(parse_opt_ll_cb
*)opt
->callback
)(p
, opt
, unset
);
75 *(int *)opt
->value
&= ~opt
->defval
;
77 *(int *)opt
->value
|= opt
->defval
;
82 *(int *)opt
->value
|= opt
->defval
;
84 *(int *)opt
->value
&= ~opt
->defval
;
88 *(int *)opt
->value
= unset
? 0 : *(int *)opt
->value
+ 1;
92 *(int *)opt
->value
= unset
? 0 : opt
->defval
;
96 *(void **)opt
->value
= unset
? NULL
: (void *)opt
->defval
;
101 *(const char **)opt
->value
= NULL
;
102 else if (opt
->flags
& PARSE_OPT_OPTARG
&& !p
->opt
)
103 *(const char **)opt
->value
= (const char *)opt
->defval
;
105 return get_arg(p
, opt
, flags
, (const char **)opt
->value
);
108 case OPTION_FILENAME
:
111 *(const char **)opt
->value
= NULL
;
112 else if (opt
->flags
& PARSE_OPT_OPTARG
&& !p
->opt
)
113 *(const char **)opt
->value
= (const char *)opt
->defval
;
115 err
= get_arg(p
, opt
, flags
, (const char **)opt
->value
);
118 fix_filename(p
->prefix
, (const char **)opt
->value
);
121 case OPTION_CALLBACK
:
123 return (*opt
->callback
)(opt
, NULL
, 1) ? (-1) : 0;
124 if (opt
->flags
& PARSE_OPT_NOARG
)
125 return (*opt
->callback
)(opt
, NULL
, 0) ? (-1) : 0;
126 if (opt
->flags
& PARSE_OPT_OPTARG
&& !p
->opt
)
127 return (*opt
->callback
)(opt
, NULL
, 0) ? (-1) : 0;
128 if (get_arg(p
, opt
, flags
, &arg
))
130 return (*opt
->callback
)(opt
, arg
, 0) ? (-1) : 0;
134 *(int *)opt
->value
= 0;
137 if (opt
->flags
& PARSE_OPT_OPTARG
&& !p
->opt
) {
138 *(int *)opt
->value
= opt
->defval
;
141 if (get_arg(p
, opt
, flags
, &arg
))
143 *(int *)opt
->value
= strtol(arg
, (char **)&s
, 10);
145 return opterror(opt
, "expects a numerical value", flags
);
149 die("should not happen, someone must be hit on the forehead");
153 static int parse_short_opt(struct parse_opt_ctx_t
*p
, const struct option
*options
)
155 const struct option
*numopt
= NULL
;
157 for (; options
->type
!= OPTION_END
; options
++) {
158 if (options
->short_name
== *p
->opt
) {
159 p
->opt
= p
->opt
[1] ? p
->opt
+ 1 : NULL
;
160 return get_value(p
, options
, OPT_SHORT
);
164 * Handle the numerical option later, explicit one-digit
165 * options take precedence over it.
167 if (options
->type
== OPTION_NUMBER
)
170 if (numopt
&& isdigit(*p
->opt
)) {
175 while (isdigit(p
->opt
[len
]))
177 arg
= xmemdupz(p
->opt
, len
);
178 p
->opt
= p
->opt
[len
] ? p
->opt
+ len
: NULL
;
179 rc
= (*numopt
->callback
)(numopt
, arg
, 0) ? (-1) : 0;
186 static int parse_long_opt(struct parse_opt_ctx_t
*p
, const char *arg
,
187 const struct option
*options
)
189 const char *arg_end
= strchr(arg
, '=');
190 const struct option
*abbrev_option
= NULL
, *ambiguous_option
= NULL
;
191 int abbrev_flags
= 0, ambiguous_flags
= 0;
194 arg_end
= arg
+ strlen(arg
);
196 for (; options
->type
!= OPTION_END
; options
++) {
197 const char *rest
, *long_name
= options
->long_name
;
198 int flags
= 0, opt_flags
= 0;
204 rest
= skip_prefix(arg
, long_name
);
205 if (options
->type
== OPTION_ARGUMENT
) {
209 return opterror(options
, "takes no value", flags
);
212 p
->out
[p
->cpidx
++] = arg
- 2;
217 if (!strncmp(long_name
, arg
, arg_end
- arg
)) {
221 * If this is abbreviated, it is
222 * ambiguous. So when there is no
223 * exact match later, we need to
226 ambiguous_option
= abbrev_option
;
227 ambiguous_flags
= abbrev_flags
;
229 if (!(flags
& OPT_UNSET
) && *arg_end
)
230 p
->opt
= arg_end
+ 1;
231 abbrev_option
= options
;
232 abbrev_flags
= flags
^ opt_flags
;
235 /* negation allowed? */
236 if (options
->flags
& PARSE_OPT_NONEG
)
238 /* negated and abbreviated very much? */
239 if (!prefixcmp("no-", arg
)) {
244 if (prefixcmp(arg
, "no-")) {
245 if (!prefixcmp(long_name
, "no-")) {
247 opt_flags
|= OPT_UNSET
;
253 rest
= skip_prefix(arg
+ 3, long_name
);
254 /* abbreviated and negated? */
255 if (!rest
&& !prefixcmp(long_name
, arg
+ 3))
265 return get_value(p
, options
, flags
^ opt_flags
);
268 if (ambiguous_option
)
269 return error("Ambiguous option: %s "
270 "(could be --%s%s or --%s%s)",
272 (ambiguous_flags
& OPT_UNSET
) ? "no-" : "",
273 ambiguous_option
->long_name
,
274 (abbrev_flags
& OPT_UNSET
) ? "no-" : "",
275 abbrev_option
->long_name
);
277 return get_value(p
, abbrev_option
, abbrev_flags
);
281 static int parse_nodash_opt(struct parse_opt_ctx_t
*p
, const char *arg
,
282 const struct option
*options
)
284 for (; options
->type
!= OPTION_END
; options
++) {
285 if (!(options
->flags
& PARSE_OPT_NODASH
))
287 if (options
->short_name
== arg
[0] && arg
[1] == '\0')
288 return get_value(p
, options
, OPT_SHORT
);
293 static void check_typos(const char *arg
, const struct option
*options
)
298 if (!prefixcmp(arg
, "no-")) {
299 error ("did you mean `--%s` (with two dashes ?)", arg
);
303 for (; options
->type
!= OPTION_END
; options
++) {
304 if (!options
->long_name
)
306 if (!prefixcmp(options
->long_name
, arg
)) {
307 error ("did you mean `--%s` (with two dashes ?)", arg
);
313 static void parse_options_check(const struct option
*opts
)
317 for (; opts
->type
!= OPTION_END
; opts
++) {
318 if ((opts
->flags
& PARSE_OPT_LASTARG_DEFAULT
) &&
319 (opts
->flags
& PARSE_OPT_OPTARG
))
320 err
|= optbug(opts
, "uses incompatible flags "
321 "LASTARG_DEFAULT and OPTARG");
322 if (opts
->flags
& PARSE_OPT_NODASH
&&
323 ((opts
->flags
& PARSE_OPT_OPTARG
) ||
324 !(opts
->flags
& PARSE_OPT_NOARG
) ||
325 !(opts
->flags
& PARSE_OPT_NONEG
) ||
327 err
|= optbug(opts
, "uses feature "
328 "not supported for dashless options");
329 switch (opts
->type
) {
336 if ((opts
->flags
& PARSE_OPT_OPTARG
) ||
337 !(opts
->flags
& PARSE_OPT_NOARG
))
338 err
|= optbug(opts
, "should not accept an argument");
340 ; /* ok. (usually accepts an argument) */
347 void parse_options_start(struct parse_opt_ctx_t
*ctx
,
348 int argc
, const char **argv
, const char *prefix
,
349 const struct option
*options
, int flags
)
351 memset(ctx
, 0, sizeof(*ctx
));
352 ctx
->argc
= argc
- 1;
353 ctx
->argv
= argv
+ 1;
355 ctx
->prefix
= prefix
;
356 ctx
->cpidx
= ((flags
& PARSE_OPT_KEEP_ARGV0
) != 0);
358 if ((flags
& PARSE_OPT_KEEP_UNKNOWN
) &&
359 (flags
& PARSE_OPT_STOP_AT_NON_OPTION
))
360 die("STOP_AT_NON_OPTION and KEEP_UNKNOWN don't go together");
361 parse_options_check(options
);
364 static int usage_with_options_internal(struct parse_opt_ctx_t
*,
365 const char * const *,
366 const struct option
*, int, int);
368 int parse_options_step(struct parse_opt_ctx_t
*ctx
,
369 const struct option
*options
,
370 const char * const usagestr
[])
372 int internal_help
= !(ctx
->flags
& PARSE_OPT_NO_INTERNAL_HELP
);
374 /* we must reset ->opt, unknown short option leave it dangling */
377 for (; ctx
->argc
; ctx
->argc
--, ctx
->argv
++) {
378 const char *arg
= ctx
->argv
[0];
380 if (*arg
!= '-' || !arg
[1]) {
381 if (parse_nodash_opt(ctx
, arg
, options
) == 0)
383 if (ctx
->flags
& PARSE_OPT_STOP_AT_NON_OPTION
)
384 return PARSE_OPT_NON_OPTION
;
385 ctx
->out
[ctx
->cpidx
++] = ctx
->argv
[0];
391 if (internal_help
&& *ctx
->opt
== 'h')
392 return parse_options_usage(ctx
, usagestr
, options
, 0);
393 switch (parse_short_opt(ctx
, options
)) {
395 return parse_options_usage(ctx
, usagestr
, options
, 1);
398 check_typos(arg
+ 1, options
);
402 check_typos(arg
+ 1, options
);
404 if (internal_help
&& *ctx
->opt
== 'h')
405 return parse_options_usage(ctx
, usagestr
, options
, 0);
406 switch (parse_short_opt(ctx
, options
)) {
408 return parse_options_usage(ctx
, usagestr
, options
, 1);
410 /* fake a short option thing to hide the fact that we may have
411 * started to parse aggregated stuff
413 * This is leaky, too bad.
415 ctx
->argv
[0] = xstrdup(ctx
->opt
- 1);
416 *(char *)ctx
->argv
[0] = '-';
423 if (!arg
[2]) { /* "--" */
424 if (!(ctx
->flags
& PARSE_OPT_KEEP_DASHDASH
)) {
431 if (internal_help
&& !strcmp(arg
+ 2, "help-all"))
432 return usage_with_options_internal(ctx
, usagestr
, options
, 1, 0);
433 if (internal_help
&& !strcmp(arg
+ 2, "help"))
434 return parse_options_usage(ctx
, usagestr
, options
, 0);
435 switch (parse_long_opt(ctx
, arg
+ 2, options
)) {
437 return parse_options_usage(ctx
, usagestr
, options
, 1);
443 if (!(ctx
->flags
& PARSE_OPT_KEEP_UNKNOWN
))
444 return PARSE_OPT_UNKNOWN
;
445 ctx
->out
[ctx
->cpidx
++] = ctx
->argv
[0];
448 return PARSE_OPT_DONE
;
451 int parse_options_end(struct parse_opt_ctx_t
*ctx
)
453 memmove(ctx
->out
+ ctx
->cpidx
, ctx
->argv
, ctx
->argc
* sizeof(*ctx
->out
));
454 ctx
->out
[ctx
->cpidx
+ ctx
->argc
] = NULL
;
455 return ctx
->cpidx
+ ctx
->argc
;
458 int parse_options(int argc
, const char **argv
, const char *prefix
,
459 const struct option
*options
, const char * const usagestr
[],
462 struct parse_opt_ctx_t ctx
;
464 parse_options_start(&ctx
, argc
, argv
, prefix
, options
, flags
);
465 switch (parse_options_step(&ctx
, options
, usagestr
)) {
468 case PARSE_OPT_NON_OPTION
:
471 default: /* PARSE_OPT_UNKNOWN */
472 if (ctx
.argv
[0][1] == '-') {
473 error("unknown option `%s'", ctx
.argv
[0] + 2);
474 } else if (isascii(*ctx
.opt
)) {
475 error("unknown switch `%c'", *ctx
.opt
);
477 error("unknown non-ascii option in string: `%s'",
480 usage_with_options(usagestr
, options
);
483 precompose_argv(argc
, argv
);
484 return parse_options_end(&ctx
);
487 static int usage_argh(const struct option
*opts
, FILE *outfile
)
490 int literal
= (opts
->flags
& PARSE_OPT_LITERAL_ARGHELP
) || !opts
->argh
;
491 if (opts
->flags
& PARSE_OPT_OPTARG
)
493 s
= literal
? "[=%s]" : "[=<%s>]";
495 s
= literal
? "[%s]" : "[<%s>]";
497 s
= literal
? " %s" : " <%s>";
498 return utf8_fprintf(outfile
, s
, opts
->argh
? _(opts
->argh
) : _("..."));
501 #define USAGE_OPTS_WIDTH 24
504 static int usage_with_options_internal(struct parse_opt_ctx_t
*ctx
,
505 const char * const *usagestr
,
506 const struct option
*opts
, int full
, int err
)
508 FILE *outfile
= err
? stderr
: stdout
;
511 return PARSE_OPT_HELP
;
513 if (!err
&& ctx
&& ctx
->flags
& PARSE_OPT_SHELL_EVAL
)
514 fprintf(outfile
, "cat <<\\EOF\n");
516 fprintf_ln(outfile
, _("usage: %s"), _(*usagestr
++));
517 while (*usagestr
&& **usagestr
)
518 /* TRANSLATORS: the colon here should align with the
519 one in "usage: %s" translation */
520 fprintf_ln(outfile
, _(" or: %s"), _(*usagestr
++));
523 fprintf_ln(outfile
, _(" %s"), _(*usagestr
));
529 if (opts
->type
!= OPTION_GROUP
)
530 fputc('\n', outfile
);
532 for (; opts
->type
!= OPTION_END
; opts
++) {
536 if (opts
->type
== OPTION_GROUP
) {
537 fputc('\n', outfile
);
539 fprintf(outfile
, "%s\n", _(opts
->help
));
542 if (!full
&& (opts
->flags
& PARSE_OPT_HIDDEN
))
545 pos
= fprintf(outfile
, " ");
546 if (opts
->short_name
) {
547 if (opts
->flags
& PARSE_OPT_NODASH
)
548 pos
+= fprintf(outfile
, "%c", opts
->short_name
);
550 pos
+= fprintf(outfile
, "-%c", opts
->short_name
);
552 if (opts
->long_name
&& opts
->short_name
)
553 pos
+= fprintf(outfile
, ", ");
555 pos
+= fprintf(outfile
, "--%s", opts
->long_name
);
556 if (opts
->type
== OPTION_NUMBER
)
557 pos
+= utf8_fprintf(outfile
, _("-NUM"));
559 if ((opts
->flags
& PARSE_OPT_LITERAL_ARGHELP
) ||
560 !(opts
->flags
& PARSE_OPT_NOARG
))
561 pos
+= usage_argh(opts
, outfile
);
563 if (pos
<= USAGE_OPTS_WIDTH
)
564 pad
= USAGE_OPTS_WIDTH
- pos
;
566 fputc('\n', outfile
);
567 pad
= USAGE_OPTS_WIDTH
;
569 fprintf(outfile
, "%*s%s\n", pad
+ USAGE_GAP
, "", _(opts
->help
));
571 fputc('\n', outfile
);
573 if (!err
&& ctx
&& ctx
->flags
& PARSE_OPT_SHELL_EVAL
)
574 fputs("EOF\n", outfile
);
576 return PARSE_OPT_HELP
;
579 void NORETURN
usage_with_options(const char * const *usagestr
,
580 const struct option
*opts
)
582 usage_with_options_internal(NULL
, usagestr
, opts
, 0, 1);
586 void NORETURN
usage_msg_opt(const char *msg
,
587 const char * const *usagestr
,
588 const struct option
*options
)
590 fprintf(stderr
, "%s\n\n", msg
);
591 usage_with_options(usagestr
, options
);
594 static int parse_options_usage(struct parse_opt_ctx_t
*ctx
,
595 const char * const *usagestr
,
596 const struct option
*opts
, int err
)
598 return usage_with_options_internal(ctx
, usagestr
, opts
, 0, err
);