1 #include "git-compat-util.h"
2 #include "parse-options.h"
9 static int disallow_abbreviated_options
;
17 static int optbug(const struct option
*opt
, const char *reason
)
21 return error("BUG: switch '%c' (--%s) %s",
22 opt
->short_name
, opt
->long_name
, reason
);
23 return error("BUG: option '%s' %s", opt
->long_name
, reason
);
25 return error("BUG: switch '%c' %s", opt
->short_name
, reason
);
28 static const char *optname(const struct option
*opt
, enum opt_parsed flags
)
30 static struct strbuf sb
= STRBUF_INIT
;
33 if (flags
& OPT_SHORT
)
34 strbuf_addf(&sb
, "switch `%c'", opt
->short_name
);
35 else if (flags
& OPT_UNSET
)
36 strbuf_addf(&sb
, "option `no-%s'", opt
->long_name
);
37 else if (flags
== OPT_LONG
)
38 strbuf_addf(&sb
, "option `%s'", opt
->long_name
);
40 BUG("optname() got unknown flags %d", flags
);
45 static enum parse_opt_result
get_arg(struct parse_opt_ctx_t
*p
,
46 const struct option
*opt
,
47 enum opt_parsed flags
, const char **arg
)
52 } else if (p
->argc
== 1 && (opt
->flags
& PARSE_OPT_LASTARG_DEFAULT
)) {
53 *arg
= (const char *)opt
->defval
;
54 } else if (p
->argc
> 1) {
58 return error(_("%s requires a value"), optname(opt
, flags
));
62 static void fix_filename(const char *prefix
, const char **file
)
64 if (!file
|| !*file
|| !prefix
|| is_absolute_path(*file
)
65 || !strcmp("-", *file
))
67 *file
= prefix_filename(prefix
, *file
);
70 static enum parse_opt_result
opt_command_mode_error(
71 const struct option
*opt
,
72 const struct option
*all_opts
,
73 enum opt_parsed flags
)
75 const struct option
*that
;
76 struct strbuf that_name
= STRBUF_INIT
;
79 * Find the other option that was used to set the variable
80 * already, and report that this is not compatible with it.
82 for (that
= all_opts
; that
->type
!= OPTION_END
; that
++) {
84 !(that
->flags
& PARSE_OPT_CMDMODE
) ||
85 that
->value
!= opt
->value
||
86 that
->defval
!= *(int *)opt
->value
)
90 strbuf_addf(&that_name
, "--%s", that
->long_name
);
92 strbuf_addf(&that_name
, "-%c", that
->short_name
);
93 error(_("%s is incompatible with %s"),
94 optname(opt
, flags
), that_name
.buf
);
95 strbuf_release(&that_name
);
96 return PARSE_OPT_ERROR
;
98 return error(_("%s : incompatible with something else"),
102 static enum parse_opt_result
get_value(struct parse_opt_ctx_t
*p
,
103 const struct option
*opt
,
104 const struct option
*all_opts
,
105 enum opt_parsed flags
)
108 const int unset
= flags
& OPT_UNSET
;
112 return error(_("%s takes no value"), optname(opt
, flags
));
113 if (unset
&& (opt
->flags
& PARSE_OPT_NONEG
))
114 return error(_("%s isn't available"), optname(opt
, flags
));
115 if (!(flags
& OPT_SHORT
) && p
->opt
&& (opt
->flags
& PARSE_OPT_NOARG
))
116 return error(_("%s takes no value"), optname(opt
, flags
));
119 * Giving the same mode option twice, although unnecessary,
120 * is not a grave error, so let it pass.
122 if ((opt
->flags
& PARSE_OPT_CMDMODE
) &&
123 *(int *)opt
->value
&& *(int *)opt
->value
!= opt
->defval
)
124 return opt_command_mode_error(opt
, all_opts
, flags
);
127 case OPTION_LOWLEVEL_CALLBACK
:
128 return opt
->ll_callback(p
, opt
, NULL
, unset
);
132 *(int *)opt
->value
&= ~opt
->defval
;
134 *(int *)opt
->value
|= opt
->defval
;
139 *(int *)opt
->value
|= opt
->defval
;
141 *(int *)opt
->value
&= ~opt
->defval
;
146 BUG("BITOP can't have unset form");
147 *(int *)opt
->value
&= ~opt
->extra
;
148 *(int *)opt
->value
|= opt
->defval
;
152 if (*(int *)opt
->value
< 0)
153 *(int *)opt
->value
= 0;
154 *(int *)opt
->value
= unset
? 0 : *(int *)opt
->value
+ 1;
158 *(int *)opt
->value
= unset
? 0 : opt
->defval
;
163 *(const char **)opt
->value
= NULL
;
164 else if (opt
->flags
& PARSE_OPT_OPTARG
&& !p
->opt
)
165 *(const char **)opt
->value
= (const char *)opt
->defval
;
167 return get_arg(p
, opt
, flags
, (const char **)opt
->value
);
170 case OPTION_FILENAME
:
173 *(const char **)opt
->value
= NULL
;
174 else if (opt
->flags
& PARSE_OPT_OPTARG
&& !p
->opt
)
175 *(const char **)opt
->value
= (const char *)opt
->defval
;
177 err
= get_arg(p
, opt
, flags
, (const char **)opt
->value
);
180 fix_filename(p
->prefix
, (const char **)opt
->value
);
183 case OPTION_CALLBACK
:
185 const char *p_arg
= NULL
;
190 else if (opt
->flags
& PARSE_OPT_NOARG
)
192 else if (opt
->flags
& PARSE_OPT_OPTARG
&& !p
->opt
)
194 else if (get_arg(p
, opt
, flags
, &arg
))
201 return (*opt
->callback
)(opt
, p_arg
, p_unset
) ? (-1) : 0;
203 return (*opt
->ll_callback
)(p
, opt
, p_arg
, p_unset
);
207 *(int *)opt
->value
= 0;
210 if (opt
->flags
& PARSE_OPT_OPTARG
&& !p
->opt
) {
211 *(int *)opt
->value
= opt
->defval
;
214 if (get_arg(p
, opt
, flags
, &arg
))
217 return error(_("%s expects a numerical value"),
218 optname(opt
, flags
));
219 *(int *)opt
->value
= strtol(arg
, (char **)&s
, 10);
221 return error(_("%s expects a numerical value"),
222 optname(opt
, flags
));
225 case OPTION_MAGNITUDE
:
227 *(unsigned long *)opt
->value
= 0;
230 if (opt
->flags
& PARSE_OPT_OPTARG
&& !p
->opt
) {
231 *(unsigned long *)opt
->value
= opt
->defval
;
234 if (get_arg(p
, opt
, flags
, &arg
))
236 if (!git_parse_ulong(arg
, opt
->value
))
237 return error(_("%s expects a non-negative integer value"
238 " with an optional k/m/g suffix"),
239 optname(opt
, flags
));
243 BUG("opt->type %d should not happen", opt
->type
);
247 static enum parse_opt_result
parse_short_opt(struct parse_opt_ctx_t
*p
,
248 const struct option
*options
)
250 const struct option
*all_opts
= options
;
251 const struct option
*numopt
= NULL
;
253 for (; options
->type
!= OPTION_END
; options
++) {
254 if (options
->short_name
== *p
->opt
) {
255 p
->opt
= p
->opt
[1] ? p
->opt
+ 1 : NULL
;
256 return get_value(p
, options
, all_opts
, OPT_SHORT
);
260 * Handle the numerical option later, explicit one-digit
261 * options take precedence over it.
263 if (options
->type
== OPTION_NUMBER
)
266 if (numopt
&& isdigit(*p
->opt
)) {
271 while (isdigit(p
->opt
[len
]))
273 arg
= xmemdupz(p
->opt
, len
);
274 p
->opt
= p
->opt
[len
] ? p
->opt
+ len
: NULL
;
275 if (numopt
->callback
)
276 rc
= (*numopt
->callback
)(numopt
, arg
, 0) ? (-1) : 0;
278 rc
= (*numopt
->ll_callback
)(p
, numopt
, arg
, 0);
282 return PARSE_OPT_UNKNOWN
;
285 static int has_string(const char *it
, const char **array
)
288 if (!strcmp(it
, *(array
++)))
293 static int is_alias(struct parse_opt_ctx_t
*ctx
,
294 const struct option
*one_opt
,
295 const struct option
*another_opt
)
299 if (!ctx
->alias_groups
)
302 if (!one_opt
->long_name
|| !another_opt
->long_name
)
305 for (group
= ctx
->alias_groups
; *group
; group
+= 3) {
306 /* it and other are from the same family? */
307 if (has_string(one_opt
->long_name
, group
) &&
308 has_string(another_opt
->long_name
, group
))
314 static enum parse_opt_result
parse_long_opt(
315 struct parse_opt_ctx_t
*p
, const char *arg
,
316 const struct option
*options
)
318 const struct option
*all_opts
= options
;
319 const char *arg_end
= strchrnul(arg
, '=');
320 const struct option
*abbrev_option
= NULL
, *ambiguous_option
= NULL
;
321 enum opt_parsed abbrev_flags
= OPT_LONG
, ambiguous_flags
= OPT_LONG
;
323 for (; options
->type
!= OPTION_END
; options
++) {
324 const char *rest
, *long_name
= options
->long_name
;
325 enum opt_parsed flags
= OPT_LONG
, opt_flags
= OPT_LONG
;
331 if (!skip_prefix(arg
, long_name
, &rest
))
335 if (!(p
->flags
& PARSE_OPT_KEEP_UNKNOWN
) &&
336 !strncmp(long_name
, arg
, arg_end
- arg
)) {
339 !is_alias(p
, abbrev_option
, options
)) {
341 * If this is abbreviated, it is
342 * ambiguous. So when there is no
343 * exact match later, we need to
346 ambiguous_option
= abbrev_option
;
347 ambiguous_flags
= abbrev_flags
;
349 if (!(flags
& OPT_UNSET
) && *arg_end
)
350 p
->opt
= arg_end
+ 1;
351 abbrev_option
= options
;
352 abbrev_flags
= flags
^ opt_flags
;
355 /* negation allowed? */
356 if (options
->flags
& PARSE_OPT_NONEG
)
358 /* negated and abbreviated very much? */
359 if (starts_with("no-", arg
)) {
364 if (!starts_with(arg
, "no-")) {
365 if (skip_prefix(long_name
, "no-", &long_name
)) {
366 opt_flags
|= OPT_UNSET
;
372 if (!skip_prefix(arg
+ 3, long_name
, &rest
)) {
373 /* abbreviated and negated? */
374 if (starts_with(long_name
, arg
+ 3))
385 return get_value(p
, options
, all_opts
, flags
^ opt_flags
);
388 if (disallow_abbreviated_options
&& (ambiguous_option
|| abbrev_option
))
389 die("disallowed abbreviated or ambiguous option '%.*s'",
390 (int)(arg_end
- arg
), arg
);
392 if (ambiguous_option
) {
393 error(_("ambiguous option: %s "
394 "(could be --%s%s or --%s%s)"),
396 (ambiguous_flags
& OPT_UNSET
) ? "no-" : "",
397 ambiguous_option
->long_name
,
398 (abbrev_flags
& OPT_UNSET
) ? "no-" : "",
399 abbrev_option
->long_name
);
400 return PARSE_OPT_HELP
;
403 return get_value(p
, abbrev_option
, all_opts
, abbrev_flags
);
404 return PARSE_OPT_UNKNOWN
;
407 static int parse_nodash_opt(struct parse_opt_ctx_t
*p
, const char *arg
,
408 const struct option
*options
)
410 const struct option
*all_opts
= options
;
412 for (; options
->type
!= OPTION_END
; options
++) {
413 if (!(options
->flags
& PARSE_OPT_NODASH
))
415 if (options
->short_name
== arg
[0] && arg
[1] == '\0')
416 return get_value(p
, options
, all_opts
, OPT_SHORT
);
421 static void check_typos(const char *arg
, const struct option
*options
)
426 if (starts_with(arg
, "no-")) {
427 error(_("did you mean `--%s` (with two dashes)?"), arg
);
431 for (; options
->type
!= OPTION_END
; options
++) {
432 if (!options
->long_name
)
434 if (starts_with(options
->long_name
, arg
)) {
435 error(_("did you mean `--%s` (with two dashes)?"), arg
);
441 static void parse_options_check(const struct option
*opts
)
444 char short_opts
[128];
446 memset(short_opts
, '\0', sizeof(short_opts
));
447 for (; opts
->type
!= OPTION_END
; opts
++) {
448 if ((opts
->flags
& PARSE_OPT_LASTARG_DEFAULT
) &&
449 (opts
->flags
& PARSE_OPT_OPTARG
))
450 err
|= optbug(opts
, "uses incompatible flags "
451 "LASTARG_DEFAULT and OPTARG");
452 if (opts
->short_name
) {
453 if (0x7F <= opts
->short_name
)
454 err
|= optbug(opts
, "invalid short name");
455 else if (short_opts
[opts
->short_name
]++)
456 err
|= optbug(opts
, "short name already used");
458 if (opts
->flags
& PARSE_OPT_NODASH
&&
459 ((opts
->flags
& PARSE_OPT_OPTARG
) ||
460 !(opts
->flags
& PARSE_OPT_NOARG
) ||
461 !(opts
->flags
& PARSE_OPT_NONEG
) ||
463 err
|= optbug(opts
, "uses feature "
464 "not supported for dashless options");
465 switch (opts
->type
) {
471 if ((opts
->flags
& PARSE_OPT_OPTARG
) ||
472 !(opts
->flags
& PARSE_OPT_NOARG
))
473 err
|= optbug(opts
, "should not accept an argument");
475 case OPTION_CALLBACK
:
476 if (!opts
->callback
&& !opts
->ll_callback
)
477 BUG("OPTION_CALLBACK needs one callback");
478 if (opts
->callback
&& opts
->ll_callback
)
479 BUG("OPTION_CALLBACK can't have two callbacks");
481 case OPTION_LOWLEVEL_CALLBACK
:
482 if (!opts
->ll_callback
)
483 BUG("OPTION_LOWLEVEL_CALLBACK needs a callback");
485 BUG("OPTION_LOWLEVEL_CALLBACK needs no high level callback");
488 BUG("OPT_ALIAS() should not remain at this point. "
489 "Are you using parse_options_step() directly?\n"
490 "That case is not supported yet.");
492 ; /* ok. (usually accepts an argument) */
495 strcspn(opts
->argh
, " _") != strlen(opts
->argh
))
496 err
|= optbug(opts
, "multi-word argh should use dash to separate words");
502 static void parse_options_start_1(struct parse_opt_ctx_t
*ctx
,
503 int argc
, const char **argv
, const char *prefix
,
504 const struct option
*options
,
505 enum parse_opt_flags flags
)
509 if (!(flags
& PARSE_OPT_ONE_SHOT
)) {
513 ctx
->total
= ctx
->argc
;
515 ctx
->prefix
= prefix
;
516 ctx
->cpidx
= ((flags
& PARSE_OPT_KEEP_ARGV0
) != 0);
518 if ((flags
& PARSE_OPT_KEEP_UNKNOWN
) &&
519 (flags
& PARSE_OPT_STOP_AT_NON_OPTION
) &&
520 !(flags
& PARSE_OPT_ONE_SHOT
))
521 BUG("STOP_AT_NON_OPTION and KEEP_UNKNOWN don't go together");
522 if ((flags
& PARSE_OPT_ONE_SHOT
) &&
523 (flags
& PARSE_OPT_KEEP_ARGV0
))
524 BUG("Can't keep argv0 if you don't have it");
525 parse_options_check(options
);
528 void parse_options_start(struct parse_opt_ctx_t
*ctx
,
529 int argc
, const char **argv
, const char *prefix
,
530 const struct option
*options
,
531 enum parse_opt_flags flags
)
533 memset(ctx
, 0, sizeof(*ctx
));
534 parse_options_start_1(ctx
, argc
, argv
, prefix
, options
, flags
);
537 static void show_negated_gitcomp(const struct option
*opts
, int show_all
,
540 int printed_dashdash
= 0;
542 for (; opts
->type
!= OPTION_END
; opts
++) {
543 int has_unset_form
= 0;
546 if (!opts
->long_name
)
549 (opts
->flags
& (PARSE_OPT_HIDDEN
| PARSE_OPT_NOCOMPLETE
)))
551 if (opts
->flags
& PARSE_OPT_NONEG
)
554 switch (opts
->type
) {
556 case OPTION_FILENAME
:
558 case OPTION_MAGNITUDE
:
559 case OPTION_CALLBACK
:
572 if (skip_prefix(opts
->long_name
, "no-", &name
)) {
574 printf(" --%s", name
);
575 } else if (nr_noopts
>= 0) {
576 if (nr_noopts
&& !printed_dashdash
) {
578 printed_dashdash
= 1;
580 printf(" --no-%s", opts
->long_name
);
586 static int show_gitcomp(const struct option
*opts
, int show_all
)
588 const struct option
*original_opts
= opts
;
591 for (; opts
->type
!= OPTION_END
; opts
++) {
592 const char *suffix
= "";
594 if (!opts
->long_name
)
597 (opts
->flags
& (PARSE_OPT_HIDDEN
| PARSE_OPT_NOCOMPLETE
| PARSE_OPT_FROM_ALIAS
)))
600 switch (opts
->type
) {
604 case OPTION_FILENAME
:
606 case OPTION_MAGNITUDE
:
607 case OPTION_CALLBACK
:
608 if (opts
->flags
& PARSE_OPT_NOARG
)
610 if (opts
->flags
& PARSE_OPT_OPTARG
)
612 if (opts
->flags
& PARSE_OPT_LASTARG_DEFAULT
)
619 if (opts
->flags
& PARSE_OPT_COMP_ARG
)
621 if (starts_with(opts
->long_name
, "no-"))
623 printf(" --%s%s", opts
->long_name
, suffix
);
625 show_negated_gitcomp(original_opts
, show_all
, -1);
626 show_negated_gitcomp(original_opts
, show_all
, nr_noopts
);
628 return PARSE_OPT_COMPLETE
;
632 * Scan and may produce a new option[] array, which should be used
633 * instead of the original 'options'.
635 * Right now this is only used to preprocess and substitute
638 * The returned options should be freed using free_preprocessed_options.
640 static struct option
*preprocess_options(struct parse_opt_ctx_t
*ctx
,
641 const struct option
*options
)
643 struct option
*newopt
;
647 for (nr
= 0; options
[nr
].type
!= OPTION_END
; nr
++) {
648 if (options
[nr
].type
== OPTION_ALIAS
)
655 ALLOC_ARRAY(newopt
, nr
+ 1);
656 COPY_ARRAY(newopt
, options
, nr
+ 1);
658 /* each alias has two string pointers and NULL */
659 CALLOC_ARRAY(ctx
->alias_groups
, 3 * (nr_aliases
+ 1));
661 for (alias
= 0, i
= 0; i
< nr
; i
++) {
663 const char *long_name
;
665 struct strbuf help
= STRBUF_INIT
;
668 if (newopt
[i
].type
!= OPTION_ALIAS
)
671 short_name
= newopt
[i
].short_name
;
672 long_name
= newopt
[i
].long_name
;
673 source
= newopt
[i
].value
;
676 BUG("An alias must have long option name");
677 strbuf_addf(&help
, _("alias of --%s"), source
);
679 for (j
= 0; j
< nr
; j
++) {
680 const char *name
= options
[j
].long_name
;
682 if (!name
|| strcmp(name
, source
))
685 if (options
[j
].type
== OPTION_ALIAS
)
686 BUG("No please. Nested aliases are not supported.");
688 memcpy(newopt
+ i
, options
+ j
, sizeof(*newopt
));
689 newopt
[i
].short_name
= short_name
;
690 newopt
[i
].long_name
= long_name
;
691 newopt
[i
].help
= strbuf_detach(&help
, NULL
);
692 newopt
[i
].flags
|= PARSE_OPT_FROM_ALIAS
;
697 BUG("could not find source option '%s' of alias '%s'",
698 source
, newopt
[i
].long_name
);
699 ctx
->alias_groups
[alias
* 3 + 0] = newopt
[i
].long_name
;
700 ctx
->alias_groups
[alias
* 3 + 1] = options
[j
].long_name
;
701 ctx
->alias_groups
[alias
* 3 + 2] = NULL
;
708 static void free_preprocessed_options(struct option
*options
)
715 for (i
= 0; options
[i
].type
!= OPTION_END
; i
++) {
716 if (options
[i
].flags
& PARSE_OPT_FROM_ALIAS
)
717 free((void *)options
[i
].help
);
722 static enum parse_opt_result
usage_with_options_internal(struct parse_opt_ctx_t
*,
723 const char * const *,
724 const struct option
*,
727 enum parse_opt_result
parse_options_step(struct parse_opt_ctx_t
*ctx
,
728 const struct option
*options
,
729 const char * const usagestr
[])
731 int internal_help
= !(ctx
->flags
& PARSE_OPT_NO_INTERNAL_HELP
);
733 /* we must reset ->opt, unknown short option leave it dangling */
736 for (; ctx
->argc
; ctx
->argc
--, ctx
->argv
++) {
737 const char *arg
= ctx
->argv
[0];
739 if (ctx
->flags
& PARSE_OPT_ONE_SHOT
&&
740 ctx
->argc
!= ctx
->total
)
743 if (*arg
!= '-' || !arg
[1]) {
744 if (parse_nodash_opt(ctx
, arg
, options
) == 0)
746 if (ctx
->flags
& PARSE_OPT_STOP_AT_NON_OPTION
)
747 return PARSE_OPT_NON_OPTION
;
748 ctx
->out
[ctx
->cpidx
++] = ctx
->argv
[0];
752 /* lone -h asks for help */
753 if (internal_help
&& ctx
->total
== 1 && !strcmp(arg
+ 1, "h"))
757 * lone --git-completion-helper and --git-completion-helper-all
758 * are asked by git-completion.bash
760 if (ctx
->total
== 1 && !strcmp(arg
, "--git-completion-helper"))
761 return show_gitcomp(options
, 0);
762 if (ctx
->total
== 1 && !strcmp(arg
, "--git-completion-helper-all"))
763 return show_gitcomp(options
, 1);
767 switch (parse_short_opt(ctx
, options
)) {
768 case PARSE_OPT_ERROR
:
769 return PARSE_OPT_ERROR
;
770 case PARSE_OPT_UNKNOWN
:
772 check_typos(arg
+ 1, options
);
773 if (internal_help
&& *ctx
->opt
== 'h')
776 case PARSE_OPT_NON_OPTION
:
778 case PARSE_OPT_COMPLETE
:
779 BUG("parse_short_opt() cannot return these");
784 check_typos(arg
+ 1, options
);
786 switch (parse_short_opt(ctx
, options
)) {
787 case PARSE_OPT_ERROR
:
788 return PARSE_OPT_ERROR
;
789 case PARSE_OPT_UNKNOWN
:
790 if (internal_help
&& *ctx
->opt
== 'h')
793 /* fake a short option thing to hide the fact that we may have
794 * started to parse aggregated stuff
796 * This is leaky, too bad.
798 ctx
->argv
[0] = xstrdup(ctx
->opt
- 1);
799 *(char *)ctx
->argv
[0] = '-';
801 case PARSE_OPT_NON_OPTION
:
802 case PARSE_OPT_COMPLETE
:
804 BUG("parse_short_opt() cannot return these");
812 if (!arg
[2] /* "--" */ ||
813 !strcmp(arg
+ 2, "end-of-options")) {
814 if (!(ctx
->flags
& PARSE_OPT_KEEP_DASHDASH
)) {
821 if (internal_help
&& !strcmp(arg
+ 2, "help-all"))
822 return usage_with_options_internal(ctx
, usagestr
, options
, 1, 0);
823 if (internal_help
&& !strcmp(arg
+ 2, "help"))
825 switch (parse_long_opt(ctx
, arg
+ 2, options
)) {
826 case PARSE_OPT_ERROR
:
827 return PARSE_OPT_ERROR
;
828 case PARSE_OPT_UNKNOWN
:
832 case PARSE_OPT_NON_OPTION
:
833 case PARSE_OPT_COMPLETE
:
834 BUG("parse_long_opt() cannot return these");
840 if (ctx
->flags
& PARSE_OPT_ONE_SHOT
)
842 if (!(ctx
->flags
& PARSE_OPT_KEEP_UNKNOWN
))
843 return PARSE_OPT_UNKNOWN
;
844 ctx
->out
[ctx
->cpidx
++] = ctx
->argv
[0];
847 return PARSE_OPT_DONE
;
850 return usage_with_options_internal(ctx
, usagestr
, options
, 0, 0);
853 int parse_options_end(struct parse_opt_ctx_t
*ctx
)
855 if (ctx
->flags
& PARSE_OPT_ONE_SHOT
)
856 return ctx
->total
- ctx
->argc
;
858 MOVE_ARRAY(ctx
->out
+ ctx
->cpidx
, ctx
->argv
, ctx
->argc
);
859 ctx
->out
[ctx
->cpidx
+ ctx
->argc
] = NULL
;
860 return ctx
->cpidx
+ ctx
->argc
;
863 int parse_options(int argc
, const char **argv
,
865 const struct option
*options
,
866 const char * const usagestr
[],
867 enum parse_opt_flags flags
)
869 struct parse_opt_ctx_t ctx
;
870 struct option
*real_options
;
872 disallow_abbreviated_options
=
873 git_env_bool("GIT_TEST_DISALLOW_ABBREVIATED_OPTIONS", 0);
875 memset(&ctx
, 0, sizeof(ctx
));
876 real_options
= preprocess_options(&ctx
, options
);
878 options
= real_options
;
879 parse_options_start_1(&ctx
, argc
, argv
, prefix
, options
, flags
);
880 switch (parse_options_step(&ctx
, options
, usagestr
)) {
882 case PARSE_OPT_ERROR
:
884 case PARSE_OPT_COMPLETE
:
886 case PARSE_OPT_NON_OPTION
:
889 case PARSE_OPT_UNKNOWN
:
890 if (ctx
.argv
[0][1] == '-') {
891 error(_("unknown option `%s'"), ctx
.argv
[0] + 2);
892 } else if (isascii(*ctx
.opt
)) {
893 error(_("unknown switch `%c'"), *ctx
.opt
);
895 error(_("unknown non-ascii option in string: `%s'"),
898 usage_with_options(usagestr
, options
);
901 precompose_argv_prefix(argc
, argv
, NULL
);
902 free_preprocessed_options(real_options
);
903 free(ctx
.alias_groups
);
904 return parse_options_end(&ctx
);
907 static int usage_argh(const struct option
*opts
, FILE *outfile
)
910 int literal
= (opts
->flags
& PARSE_OPT_LITERAL_ARGHELP
) ||
911 !opts
->argh
|| !!strpbrk(opts
->argh
, "()<>[]|");
912 if (opts
->flags
& PARSE_OPT_OPTARG
)
914 s
= literal
? "[=%s]" : "[=<%s>]";
916 s
= literal
? "[%s]" : "[<%s>]";
918 s
= literal
? " %s" : " <%s>";
919 return utf8_fprintf(outfile
, s
, opts
->argh
? _(opts
->argh
) : _("..."));
922 #define USAGE_OPTS_WIDTH 24
925 static enum parse_opt_result
usage_with_options_internal(struct parse_opt_ctx_t
*ctx
,
926 const char * const *usagestr
,
927 const struct option
*opts
,
930 FILE *outfile
= err
? stderr
: stdout
;
933 const char *usage_prefix
= _("usage: %s");
935 * The translation could be anything, but we can count on
936 * msgfmt(1)'s --check option to have asserted that "%s" is in
937 * the translation. So compute the length of the "usage: "
938 * part. We are assuming that the translator wasn't overly
939 * clever and used e.g. "%1$s" instead of "%s", there's only
940 * one "%s" in "usage_prefix" above, so there's no reason to
941 * do so even with a RTL language.
943 size_t usage_len
= strlen(usage_prefix
) - strlen("%s");
945 * TRANSLATORS: the colon here should align with the
946 * one in "usage: %s" translation.
948 const char *or_prefix
= _(" or: %s");
950 * TRANSLATORS: You should only need to translate this format
951 * string if your language is a RTL language (e.g. Arabic,
952 * Hebrew etc.), not if it's a LTR language (e.g. German,
953 * Russian, Chinese etc.).
955 * When a translated usage string has an embedded "\n" it's
956 * because options have wrapped to the next line. The line
957 * after the "\n" will then be padded to align with the
958 * command name, such as N_("git cmd [opt]\n<8
959 * spaces>[opt2]"), where the 8 spaces are the same length as
962 * This format string prints out that already-translated
963 * line. The "%*s" is whitespace padding to account for the
964 * padding at the start of the line that we add in this
965 * function. The "%s" is a line in the (hopefully already
966 * translated) N_() usage string, which contained embedded
967 * newlines before we split it up.
969 const char *usage_continued
= _("%*s%s");
970 const char *prefix
= usage_prefix
;
971 int saw_empty_line
= 0;
974 return PARSE_OPT_HELP
;
976 if (!err
&& ctx
&& ctx
->flags
& PARSE_OPT_SHELL_EVAL
)
977 fprintf(outfile
, "cat <<\\EOF\n");
980 const char *str
= _(*usagestr
++);
981 struct string_list list
= STRING_LIST_INIT_DUP
;
984 if (!saw_empty_line
&& !*str
)
987 string_list_split(&list
, str
, '\n', -1);
988 for (j
= 0; j
< list
.nr
; j
++) {
989 const char *line
= list
.items
[j
].string
;
991 if (saw_empty_line
&& *line
)
992 fprintf_ln(outfile
, _(" %s"), line
);
993 else if (saw_empty_line
)
994 fputc('\n', outfile
);
996 fprintf_ln(outfile
, prefix
, line
);
998 fprintf_ln(outfile
, usage_continued
,
999 (int)usage_len
, "", line
);
1001 string_list_clear(&list
, 0);
1008 for (; opts
->type
!= OPTION_END
; opts
++) {
1012 if (opts
->type
== OPTION_GROUP
) {
1013 fputc('\n', outfile
);
1016 fprintf(outfile
, "%s\n", _(opts
->help
));
1019 if (!full
&& (opts
->flags
& PARSE_OPT_HIDDEN
))
1023 fputc('\n', outfile
);
1027 pos
= fprintf(outfile
, " ");
1028 if (opts
->short_name
) {
1029 if (opts
->flags
& PARSE_OPT_NODASH
)
1030 pos
+= fprintf(outfile
, "%c", opts
->short_name
);
1032 pos
+= fprintf(outfile
, "-%c", opts
->short_name
);
1034 if (opts
->long_name
&& opts
->short_name
)
1035 pos
+= fprintf(outfile
, ", ");
1036 if (opts
->long_name
)
1037 pos
+= fprintf(outfile
, "--%s", opts
->long_name
);
1038 if (opts
->type
== OPTION_NUMBER
)
1039 pos
+= utf8_fprintf(outfile
, _("-NUM"));
1041 if ((opts
->flags
& PARSE_OPT_LITERAL_ARGHELP
) ||
1042 !(opts
->flags
& PARSE_OPT_NOARG
))
1043 pos
+= usage_argh(opts
, outfile
);
1045 if (pos
<= USAGE_OPTS_WIDTH
)
1046 pad
= USAGE_OPTS_WIDTH
- pos
;
1048 fputc('\n', outfile
);
1049 pad
= USAGE_OPTS_WIDTH
;
1051 if (opts
->type
== OPTION_ALIAS
) {
1052 fprintf(outfile
, "%*s", pad
+ USAGE_GAP
, "");
1053 fprintf_ln(outfile
, _("alias of --%s"),
1054 (const char *)opts
->value
);
1057 fprintf(outfile
, "%*s%s\n", pad
+ USAGE_GAP
, "", _(opts
->help
));
1059 fputc('\n', outfile
);
1061 if (!err
&& ctx
&& ctx
->flags
& PARSE_OPT_SHELL_EVAL
)
1062 fputs("EOF\n", outfile
);
1064 return PARSE_OPT_HELP
;
1067 void NORETURN
usage_with_options(const char * const *usagestr
,
1068 const struct option
*opts
)
1070 usage_with_options_internal(NULL
, usagestr
, opts
, 0, 1);
1074 void NORETURN
usage_msg_opt(const char *msg
,
1075 const char * const *usagestr
,
1076 const struct option
*options
)
1078 fprintf(stderr
, "fatal: %s\n\n", msg
);
1079 usage_with_options(usagestr
, options
);