]> git.ipfire.org Git - thirdparty/git.git/blame - parse-options.c
Sync with 2.31.5
[thirdparty/git.git] / parse-options.c
CommitLineData
4a59fd13
PH
1#include "git-compat-util.h"
2#include "parse-options.h"
26141b5b 3#include "cache.h"
b2141fc1 4#include "config.h"
269defdf 5#include "commit.h"
73e9da01 6#include "color.h"
c0821965 7#include "utf8.h"
4a59fd13 8
b02e7d5d
JS
9static int disallow_abbreviated_options;
10
4a59fd13
PH
11#define OPT_SHORT 1
12#define OPT_UNSET 2
13
1f275b7c 14int optbug(const struct option *opt, const char *reason)
1e5ce570 15{
af465af8
JH
16 if (opt->long_name) {
17 if (opt->short_name)
18 return error("BUG: switch '%c' (--%s) %s",
19 opt->short_name, opt->long_name, reason);
1e5ce570 20 return error("BUG: option '%s' %s", opt->long_name, reason);
af465af8 21 }
1e5ce570
JN
22 return error("BUG: switch '%c' %s", opt->short_name, reason);
23}
24
f41179f1
NTND
25static enum parse_opt_result get_arg(struct parse_opt_ctx_t *p,
26 const struct option *opt,
27 int flags, const char **arg)
1cc6985c
PH
28{
29 if (p->opt) {
30 *arg = p->opt;
31 p->opt = NULL;
32 } else if (p->argc == 1 && (opt->flags & PARSE_OPT_LASTARG_DEFAULT)) {
33 *arg = (const char *)opt->defval;
d5d745f9 34 } else if (p->argc > 1) {
1cc6985c
PH
35 p->argc--;
36 *arg = *++p->argv;
37 } else
9440b831 38 return error(_("%s requires a value"), optname(opt, flags));
1cc6985c
PH
39 return 0;
40}
41
df217ed6
SB
42static void fix_filename(const char *prefix, const char **file)
43{
44 if (!file || !*file || !prefix || is_absolute_path(*file)
45 || !strcmp("-", *file))
46 return;
e4da43b1 47 *file = prefix_filename(prefix, *file);
df217ed6
SB
48}
49
f41179f1
NTND
50static enum parse_opt_result opt_command_mode_error(
51 const struct option *opt,
52 const struct option *all_opts,
53 int flags)
11588263
JH
54{
55 const struct option *that;
11588263
JH
56 struct strbuf that_name = STRBUF_INIT;
57
58 /*
59 * Find the other option that was used to set the variable
60 * already, and report that this is not compatible with it.
61 */
62 for (that = all_opts; that->type != OPTION_END; that++) {
63 if (that == opt ||
bc8620b4 64 !(that->flags & PARSE_OPT_CMDMODE) ||
11588263
JH
65 that->value != opt->value ||
66 that->defval != *(int *)opt->value)
67 continue;
68
69 if (that->long_name)
70 strbuf_addf(&that_name, "--%s", that->long_name);
71 else
72 strbuf_addf(&that_name, "-%c", that->short_name);
9440b831
NTND
73 error(_("%s is incompatible with %s"),
74 optname(opt, flags), that_name.buf);
11588263 75 strbuf_release(&that_name);
f41179f1 76 return PARSE_OPT_ERROR;
11588263 77 }
9440b831
NTND
78 return error(_("%s : incompatible with something else"),
79 optname(opt, flags));
11588263
JH
80}
81
f41179f1
NTND
82static enum parse_opt_result get_value(struct parse_opt_ctx_t *p,
83 const struct option *opt,
84 const struct option *all_opts,
85 int flags)
4a59fd13 86{
ffe659f9 87 const char *s, *arg;
db7244bd 88 const int unset = flags & OPT_UNSET;
df217ed6 89 int err;
4a59fd13 90
db7244bd 91 if (unset && p->opt)
9440b831 92 return error(_("%s takes no value"), optname(opt, flags));
db7244bd 93 if (unset && (opt->flags & PARSE_OPT_NONEG))
9440b831 94 return error(_("%s isn't available"), optname(opt, flags));
c1f4ec9e 95 if (!(flags & OPT_SHORT) && p->opt && (opt->flags & PARSE_OPT_NOARG))
9440b831 96 return error(_("%s takes no value"), optname(opt, flags));
db7244bd 97
bc8620b4
PB
98 /*
99 * Giving the same mode option twice, although unnecessary,
100 * is not a grave error, so let it pass.
101 */
102 if ((opt->flags & PARSE_OPT_CMDMODE) &&
103 *(int *)opt->value && *(int *)opt->value != opt->defval)
104 return opt_command_mode_error(opt, all_opts, flags);
105
db7244bd 106 switch (opt->type) {
b0b3a8b6 107 case OPTION_LOWLEVEL_CALLBACK:
3ebbe289 108 return opt->ll_callback(p, opt, NULL, unset);
b0b3a8b6 109
db7244bd
PH
110 case OPTION_BIT:
111 if (unset)
112 *(int *)opt->value &= ~opt->defval;
4a59fd13 113 else
db7244bd
PH
114 *(int *)opt->value |= opt->defval;
115 return 0;
116
2f4b97f9
RS
117 case OPTION_NEGBIT:
118 if (unset)
119 *(int *)opt->value |= opt->defval;
120 else
121 *(int *)opt->value &= ~opt->defval;
122 return 0;
123
f62470c6
NTND
124 case OPTION_BITOP:
125 if (unset)
126 BUG("BITOP can't have unset form");
127 *(int *)opt->value &= ~opt->extra;
128 *(int *)opt->value |= opt->defval;
129 return 0;
130
b04ba2bb 131 case OPTION_COUNTUP:
e0070e8b
PB
132 if (*(int *)opt->value < 0)
133 *(int *)opt->value = 0;
db7244bd
PH
134 *(int *)opt->value = unset ? 0 : *(int *)opt->value + 1;
135 return 0;
136
137 case OPTION_SET_INT:
138 *(int *)opt->value = unset ? 0 : opt->defval;
139 return 0;
140
4a59fd13 141 case OPTION_STRING:
1cc6985c 142 if (unset)
db7244bd 143 *(const char **)opt->value = NULL;
1cc6985c 144 else if (opt->flags & PARSE_OPT_OPTARG && !p->opt)
ffe659f9 145 *(const char **)opt->value = (const char *)opt->defval;
1cc6985c
PH
146 else
147 return get_arg(p, opt, flags, (const char **)opt->value);
4a59fd13
PH
148 return 0;
149
df217ed6
SB
150 case OPTION_FILENAME:
151 err = 0;
152 if (unset)
153 *(const char **)opt->value = NULL;
154 else if (opt->flags & PARSE_OPT_OPTARG && !p->opt)
155 *(const char **)opt->value = (const char *)opt->defval;
156 else
157 err = get_arg(p, opt, flags, (const char **)opt->value);
158
159 if (!err)
160 fix_filename(p->prefix, (const char **)opt->value);
161 return err;
162
ffe659f9 163 case OPTION_CALLBACK:
3ebbe289
NTND
164 {
165 const char *p_arg = NULL;
166 int p_unset;
167
db7244bd 168 if (unset)
3ebbe289
NTND
169 p_unset = 1;
170 else if (opt->flags & PARSE_OPT_NOARG)
171 p_unset = 0;
172 else if (opt->flags & PARSE_OPT_OPTARG && !p->opt)
173 p_unset = 0;
174 else if (get_arg(p, opt, flags, &arg))
1cc6985c 175 return -1;
3ebbe289
NTND
176 else {
177 p_unset = 0;
178 p_arg = arg;
179 }
180 if (opt->callback)
181 return (*opt->callback)(opt, p_arg, p_unset) ? (-1) : 0;
182 else
183 return (*opt->ll_callback)(p, opt, p_arg, p_unset);
184 }
4a59fd13 185 case OPTION_INTEGER:
db7244bd 186 if (unset) {
4a59fd13
PH
187 *(int *)opt->value = 0;
188 return 0;
189 }
c43a2483 190 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) {
ffe659f9
PH
191 *(int *)opt->value = opt->defval;
192 return 0;
193 }
1cc6985c
PH
194 if (get_arg(p, opt, flags, &arg))
195 return -1;
f7e68a08
NTND
196 if (!*arg)
197 return error(_("%s expects a numerical value"),
198 optname(opt, flags));
1cc6985c 199 *(int *)opt->value = strtol(arg, (char **)&s, 10);
4a59fd13 200 if (*s)
9440b831
NTND
201 return error(_("%s expects a numerical value"),
202 optname(opt, flags));
4a59fd13
PH
203 return 0;
204
2a514ed8
CB
205 case OPTION_MAGNITUDE:
206 if (unset) {
207 *(unsigned long *)opt->value = 0;
208 return 0;
209 }
210 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) {
211 *(unsigned long *)opt->value = opt->defval;
212 return 0;
213 }
214 if (get_arg(p, opt, flags, &arg))
215 return -1;
216 if (!git_parse_ulong(arg, opt->value))
9440b831
NTND
217 return error(_("%s expects a non-negative integer value"
218 " with an optional k/m/g suffix"),
219 optname(opt, flags));
2a514ed8
CB
220 return 0;
221
4a59fd13 222 default:
48a5499e 223 BUG("opt->type %d should not happen", opt->type);
4a59fd13
PH
224 }
225}
226
f41179f1
NTND
227static enum parse_opt_result parse_short_opt(struct parse_opt_ctx_t *p,
228 const struct option *options)
4a59fd13 229{
11588263 230 const struct option *all_opts = options;
e0319ff5
RS
231 const struct option *numopt = NULL;
232
4a59fd13
PH
233 for (; options->type != OPTION_END; options++) {
234 if (options->short_name == *p->opt) {
235 p->opt = p->opt[1] ? p->opt + 1 : NULL;
11588263 236 return get_value(p, options, all_opts, OPT_SHORT);
4a59fd13 237 }
e0319ff5
RS
238
239 /*
240 * Handle the numerical option later, explicit one-digit
241 * options take precedence over it.
242 */
243 if (options->type == OPTION_NUMBER)
244 numopt = options;
245 }
246 if (numopt && isdigit(*p->opt)) {
247 size_t len = 1;
248 char *arg;
249 int rc;
250
251 while (isdigit(p->opt[len]))
252 len++;
253 arg = xmemdupz(p->opt, len);
254 p->opt = p->opt[len] ? p->opt + len : NULL;
3ebbe289
NTND
255 if (numopt->callback)
256 rc = (*numopt->callback)(numopt, arg, 0) ? (-1) : 0;
257 else
258 rc = (*numopt->ll_callback)(p, numopt, arg, 0);
e0319ff5
RS
259 free(arg);
260 return rc;
4a59fd13 261 }
f41179f1 262 return PARSE_OPT_UNKNOWN;
4a59fd13
PH
263}
264
5c387428
NTND
265static int has_string(const char *it, const char **array)
266{
267 while (*array)
268 if (!strcmp(it, *(array++)))
269 return 1;
270 return 0;
271}
272
273static int is_alias(struct parse_opt_ctx_t *ctx,
274 const struct option *one_opt,
275 const struct option *another_opt)
276{
277 const char **group;
278
279 if (!ctx->alias_groups)
280 return 0;
281
282 if (!one_opt->long_name || !another_opt->long_name)
283 return 0;
284
285 for (group = ctx->alias_groups; *group; group += 3) {
286 /* it and other are from the same family? */
287 if (has_string(one_opt->long_name, group) &&
288 has_string(another_opt->long_name, group))
289 return 1;
290 }
291 return 0;
292}
293
f41179f1
NTND
294static enum parse_opt_result parse_long_opt(
295 struct parse_opt_ctx_t *p, const char *arg,
296 const struct option *options)
4a59fd13 297{
11588263 298 const struct option *all_opts = options;
2c5495f7 299 const char *arg_end = strchrnul(arg, '=');
243e0614
JS
300 const struct option *abbrev_option = NULL, *ambiguous_option = NULL;
301 int abbrev_flags = 0, ambiguous_flags = 0;
7f275b91 302
4a59fd13 303 for (; options->type != OPTION_END; options++) {
0f1930c5
RS
304 const char *rest, *long_name = options->long_name;
305 int flags = 0, opt_flags = 0;
4a59fd13 306
0f1930c5 307 if (!long_name)
4a59fd13
PH
308 continue;
309
0f1930c5 310again:
cf4fff57
JK
311 if (!skip_prefix(arg, long_name, &rest))
312 rest = NULL;
580d5bff
PH
313 if (options->type == OPTION_ARGUMENT) {
314 if (!rest)
315 continue;
316 if (*rest == '=')
9440b831
NTND
317 return error(_("%s takes no value"),
318 optname(options, flags));
580d5bff
PH
319 if (*rest)
320 continue;
1a85b49b
JS
321 if (options->value)
322 *(int *)options->value = options->defval;
580d5bff 323 p->out[p->cpidx++] = arg - 2;
f41179f1 324 return PARSE_OPT_DONE;
580d5bff 325 }
4a59fd13 326 if (!rest) {
7f275b91 327 /* abbreviated? */
baa4adc6
NTND
328 if (!(p->flags & PARSE_OPT_KEEP_UNKNOWN) &&
329 !strncmp(long_name, arg, arg_end - arg)) {
7f275b91 330is_abbreviated:
5c387428
NTND
331 if (abbrev_option &&
332 !is_alias(p, abbrev_option, options)) {
243e0614
JS
333 /*
334 * If this is abbreviated, it is
335 * ambiguous. So when there is no
336 * exact match later, we need to
337 * error out.
338 */
339 ambiguous_option = abbrev_option;
340 ambiguous_flags = abbrev_flags;
341 }
7f275b91
JS
342 if (!(flags & OPT_UNSET) && *arg_end)
343 p->opt = arg_end + 1;
344 abbrev_option = options;
0f1930c5 345 abbrev_flags = flags ^ opt_flags;
7f275b91
JS
346 continue;
347 }
6bbfd1fa
AS
348 /* negation allowed? */
349 if (options->flags & PARSE_OPT_NONEG)
350 continue;
7f275b91 351 /* negated and abbreviated very much? */
59556548 352 if (starts_with("no-", arg)) {
7f275b91
JS
353 flags |= OPT_UNSET;
354 goto is_abbreviated;
355 }
356 /* negated? */
59556548 357 if (!starts_with(arg, "no-")) {
145136a9 358 if (skip_prefix(long_name, "no-", &long_name)) {
0f1930c5
RS
359 opt_flags |= OPT_UNSET;
360 goto again;
361 }
4a59fd13 362 continue;
0f1930c5 363 }
4a59fd13 364 flags |= OPT_UNSET;
cf4fff57
JK
365 if (!skip_prefix(arg + 3, long_name, &rest)) {
366 /* abbreviated and negated? */
367 if (starts_with(long_name, arg + 3))
368 goto is_abbreviated;
369 else
370 continue;
371 }
4a59fd13
PH
372 }
373 if (*rest) {
374 if (*rest != '=')
375 continue;
376 p->opt = rest + 1;
377 }
11588263 378 return get_value(p, options, all_opts, flags ^ opt_flags);
4a59fd13 379 }
243e0614 380
b02e7d5d
JS
381 if (disallow_abbreviated_options && (ambiguous_option || abbrev_option))
382 die("disallowed abbreviated or ambiguous option '%.*s'",
383 (int)(arg_end - arg), arg);
384
3bb0923f 385 if (ambiguous_option) {
89003426
NTND
386 error(_("ambiguous option: %s "
387 "(could be --%s%s or --%s%s)"),
243e0614
JS
388 arg,
389 (ambiguous_flags & OPT_UNSET) ? "no-" : "",
390 ambiguous_option->long_name,
391 (abbrev_flags & OPT_UNSET) ? "no-" : "",
392 abbrev_option->long_name);
f41179f1 393 return PARSE_OPT_HELP;
3bb0923f 394 }
7f275b91 395 if (abbrev_option)
11588263 396 return get_value(p, abbrev_option, all_opts, abbrev_flags);
f41179f1 397 return PARSE_OPT_UNKNOWN;
4a59fd13
PH
398}
399
51a9949e
RS
400static int parse_nodash_opt(struct parse_opt_ctx_t *p, const char *arg,
401 const struct option *options)
402{
11588263
JH
403 const struct option *all_opts = options;
404
51a9949e
RS
405 for (; options->type != OPTION_END; options++) {
406 if (!(options->flags & PARSE_OPT_NODASH))
407 continue;
51a9949e 408 if (options->short_name == arg[0] && arg[1] == '\0')
11588263 409 return get_value(p, options, all_opts, OPT_SHORT);
51a9949e
RS
410 }
411 return -2;
412}
413
1121a878 414static void check_typos(const char *arg, const struct option *options)
3a9f0f41
PH
415{
416 if (strlen(arg) < 3)
417 return;
418
59556548 419 if (starts_with(arg, "no-")) {
395518cf 420 error(_("did you mean `--%s` (with two dashes)?"), arg);
3a9f0f41
PH
421 exit(129);
422 }
423
424 for (; options->type != OPTION_END; options++) {
425 if (!options->long_name)
426 continue;
59556548 427 if (starts_with(options->long_name, arg)) {
395518cf 428 error(_("did you mean `--%s` (with two dashes)?"), arg);
3a9f0f41
PH
429 exit(129);
430 }
431 }
432}
433
cb9d398c
PH
434static void parse_options_check(const struct option *opts)
435{
436 int err = 0;
af465af8 437 char short_opts[128];
cb9d398c 438
af465af8 439 memset(short_opts, '\0', sizeof(short_opts));
cb9d398c
PH
440 for (; opts->type != OPTION_END; opts++) {
441 if ((opts->flags & PARSE_OPT_LASTARG_DEFAULT) &&
1e5ce570
JN
442 (opts->flags & PARSE_OPT_OPTARG))
443 err |= optbug(opts, "uses incompatible flags "
444 "LASTARG_DEFAULT and OPTARG");
af465af8
JH
445 if (opts->short_name) {
446 if (0x7F <= opts->short_name)
447 err |= optbug(opts, "invalid short name");
448 else if (short_opts[opts->short_name]++)
449 err |= optbug(opts, "short name already used");
450 }
a02dd4ff
JN
451 if (opts->flags & PARSE_OPT_NODASH &&
452 ((opts->flags & PARSE_OPT_OPTARG) ||
453 !(opts->flags & PARSE_OPT_NOARG) ||
454 !(opts->flags & PARSE_OPT_NONEG) ||
455 opts->long_name))
456 err |= optbug(opts, "uses feature "
457 "not supported for dashless options");
5c400ed2 458 switch (opts->type) {
b04ba2bb 459 case OPTION_COUNTUP:
5c400ed2
JN
460 case OPTION_BIT:
461 case OPTION_NEGBIT:
462 case OPTION_SET_INT:
5c400ed2
JN
463 case OPTION_NUMBER:
464 if ((opts->flags & PARSE_OPT_OPTARG) ||
465 !(opts->flags & PARSE_OPT_NOARG))
466 err |= optbug(opts, "should not accept an argument");
bf3ff338
NTND
467 break;
468 case OPTION_CALLBACK:
3ebbe289
NTND
469 if (!opts->callback && !opts->ll_callback)
470 BUG("OPTION_CALLBACK needs one callback");
471 if (opts->callback && opts->ll_callback)
472 BUG("OPTION_CALLBACK can't have two callbacks");
bf3ff338
NTND
473 break;
474 case OPTION_LOWLEVEL_CALLBACK:
475 if (!opts->ll_callback)
476 BUG("OPTION_LOWLEVEL_CALLBACK needs a callback");
477 if (opts->callback)
478 BUG("OPTION_LOWLEVEL_CALLBACK needs no high level callback");
479 break;
5c387428
NTND
480 case OPTION_ALIAS:
481 BUG("OPT_ALIAS() should not remain at this point. "
482 "Are you using parse_options_step() directly?\n"
483 "That case is not supported yet.");
5c400ed2
JN
484 default:
485 ; /* ok. (usually accepts an argument) */
486 }
b6c2a0d4
JH
487 if (opts->argh &&
488 strcspn(opts->argh, " _") != strlen(opts->argh))
489 err |= optbug(opts, "multi-word argh should use dash to separate words");
cb9d398c 490 }
cb9d398c 491 if (err)
1e5ce570 492 exit(128);
cb9d398c
PH
493}
494
5c387428
NTND
495static void parse_options_start_1(struct parse_opt_ctx_t *ctx,
496 int argc, const char **argv, const char *prefix,
497 const struct option *options, int flags)
7e7bbcb4 498{
202fbb33
NTND
499 ctx->argc = argc;
500 ctx->argv = argv;
501 if (!(flags & PARSE_OPT_ONE_SHOT)) {
502 ctx->argc--;
503 ctx->argv++;
504 }
505 ctx->total = ctx->argc;
506 ctx->out = argv;
37782920 507 ctx->prefix = prefix;
a32a4eaa 508 ctx->cpidx = ((flags & PARSE_OPT_KEEP_ARGV0) != 0);
7e7bbcb4 509 ctx->flags = flags;
0d260f9a 510 if ((flags & PARSE_OPT_KEEP_UNKNOWN) &&
202fbb33
NTND
511 (flags & PARSE_OPT_STOP_AT_NON_OPTION) &&
512 !(flags & PARSE_OPT_ONE_SHOT))
48a5499e 513 BUG("STOP_AT_NON_OPTION and KEEP_UNKNOWN don't go together");
202fbb33
NTND
514 if ((flags & PARSE_OPT_ONE_SHOT) &&
515 (flags & PARSE_OPT_KEEP_ARGV0))
516 BUG("Can't keep argv0 if you don't have it");
9ca1169f 517 parse_options_check(options);
7e7bbcb4
PH
518}
519
5c387428
NTND
520void parse_options_start(struct parse_opt_ctx_t *ctx,
521 int argc, const char **argv, const char *prefix,
522 const struct option *options, int flags)
523{
524 memset(ctx, 0, sizeof(*ctx));
525 parse_options_start_1(ctx, argc, argv, prefix, options, flags);
526}
527
a0abe5e3
RZ
528static void show_negated_gitcomp(const struct option *opts, int show_all,
529 int nr_noopts)
b221b5ab
NTND
530{
531 int printed_dashdash = 0;
532
533 for (; opts->type != OPTION_END; opts++) {
534 int has_unset_form = 0;
535 const char *name;
536
537 if (!opts->long_name)
538 continue;
a0abe5e3
RZ
539 if (!show_all &&
540 (opts->flags & (PARSE_OPT_HIDDEN | PARSE_OPT_NOCOMPLETE)))
b221b5ab
NTND
541 continue;
542 if (opts->flags & PARSE_OPT_NONEG)
543 continue;
544
545 switch (opts->type) {
546 case OPTION_STRING:
547 case OPTION_FILENAME:
548 case OPTION_INTEGER:
549 case OPTION_MAGNITUDE:
550 case OPTION_CALLBACK:
551 case OPTION_BIT:
552 case OPTION_NEGBIT:
553 case OPTION_COUNTUP:
554 case OPTION_SET_INT:
555 has_unset_form = 1;
556 break;
557 default:
558 break;
559 }
560 if (!has_unset_form)
561 continue;
562
563 if (skip_prefix(opts->long_name, "no-", &name)) {
564 if (nr_noopts < 0)
565 printf(" --%s", name);
566 } else if (nr_noopts >= 0) {
567 if (nr_noopts && !printed_dashdash) {
568 printf(" --");
569 printed_dashdash = 1;
570 }
571 printf(" --no-%s", opts->long_name);
572 nr_noopts++;
573 }
574 }
575}
576
a0abe5e3 577static int show_gitcomp(const struct option *opts, int show_all)
b9d7f4b4 578{
b221b5ab
NTND
579 const struct option *original_opts = opts;
580 int nr_noopts = 0;
581
b9d7f4b4
NTND
582 for (; opts->type != OPTION_END; opts++) {
583 const char *suffix = "";
584
585 if (!opts->long_name)
586 continue;
a0abe5e3
RZ
587 if (!show_all &&
588 (opts->flags & (PARSE_OPT_HIDDEN | PARSE_OPT_NOCOMPLETE)))
b9d7f4b4
NTND
589 continue;
590
591 switch (opts->type) {
592 case OPTION_GROUP:
593 continue;
594 case OPTION_STRING:
595 case OPTION_FILENAME:
596 case OPTION_INTEGER:
597 case OPTION_MAGNITUDE:
598 case OPTION_CALLBACK:
599 if (opts->flags & PARSE_OPT_NOARG)
600 break;
601 if (opts->flags & PARSE_OPT_OPTARG)
602 break;
603 if (opts->flags & PARSE_OPT_LASTARG_DEFAULT)
604 break;
605 suffix = "=";
606 break;
607 default:
608 break;
609 }
ebc4a04e
NTND
610 if (opts->flags & PARSE_OPT_COMP_ARG)
611 suffix = "=";
b221b5ab
NTND
612 if (starts_with(opts->long_name, "no-"))
613 nr_noopts++;
b9d7f4b4
NTND
614 printf(" --%s%s", opts->long_name, suffix);
615 }
a0abe5e3
RZ
616 show_negated_gitcomp(original_opts, show_all, -1);
617 show_negated_gitcomp(original_opts, show_all, nr_noopts);
b9d7f4b4 618 fputc('\n', stdout);
a92ec7ef 619 return PARSE_OPT_COMPLETE;
b9d7f4b4
NTND
620}
621
5c387428
NTND
622/*
623 * Scan and may produce a new option[] array, which should be used
624 * instead of the original 'options'.
625 *
15beaaa3 626 * Right now this is only used to preprocess and substitute
5c387428 627 * OPTION_ALIAS.
64cc539f
AH
628 *
629 * The returned options should be freed using free_preprocessed_options.
5c387428
NTND
630 */
631static struct option *preprocess_options(struct parse_opt_ctx_t *ctx,
632 const struct option *options)
633{
634 struct option *newopt;
635 int i, nr, alias;
636 int nr_aliases = 0;
637
638 for (nr = 0; options[nr].type != OPTION_END; nr++) {
639 if (options[nr].type == OPTION_ALIAS)
640 nr_aliases++;
641 }
642
643 if (!nr_aliases)
644 return NULL;
645
646 ALLOC_ARRAY(newopt, nr + 1);
647 COPY_ARRAY(newopt, options, nr + 1);
648
649 /* each alias has two string pointers and NULL */
650 CALLOC_ARRAY(ctx->alias_groups, 3 * (nr_aliases + 1));
651
652 for (alias = 0, i = 0; i < nr; i++) {
653 int short_name;
654 const char *long_name;
655 const char *source;
7c280589 656 struct strbuf help = STRBUF_INIT;
5c387428
NTND
657 int j;
658
659 if (newopt[i].type != OPTION_ALIAS)
660 continue;
661
662 short_name = newopt[i].short_name;
663 long_name = newopt[i].long_name;
664 source = newopt[i].value;
665
666 if (!long_name)
667 BUG("An alias must have long option name");
7c280589 668 strbuf_addf(&help, _("alias of --%s"), source);
5c387428
NTND
669
670 for (j = 0; j < nr; j++) {
671 const char *name = options[j].long_name;
672
673 if (!name || strcmp(name, source))
674 continue;
675
676 if (options[j].type == OPTION_ALIAS)
677 BUG("No please. Nested aliases are not supported.");
678
5c387428
NTND
679 memcpy(newopt + i, options + j, sizeof(*newopt));
680 newopt[i].short_name = short_name;
681 newopt[i].long_name = long_name;
7c280589 682 newopt[i].help = strbuf_detach(&help, NULL);
64cc539f 683 newopt[i].flags |= PARSE_OPT_FROM_ALIAS;
5c387428
NTND
684 break;
685 }
686
687 if (j == nr)
688 BUG("could not find source option '%s' of alias '%s'",
689 source, newopt[i].long_name);
690 ctx->alias_groups[alias * 3 + 0] = newopt[i].long_name;
691 ctx->alias_groups[alias * 3 + 1] = options[j].long_name;
692 ctx->alias_groups[alias * 3 + 2] = NULL;
693 alias++;
694 }
695
696 return newopt;
697}
698
64cc539f
AH
699static void free_preprocessed_options(struct option *options)
700{
701 int i;
702
703 if (!options)
704 return;
705
706 for (i = 0; options[i].type != OPTION_END; i++) {
707 if (options[i].flags & PARSE_OPT_FROM_ALIAS)
708 free((void *)options[i].help);
709 }
710 free(options);
711}
712
47e9cd28
TR
713static int usage_with_options_internal(struct parse_opt_ctx_t *,
714 const char * const *,
9c7304e3 715 const struct option *, int, int);
dd3bf0f4 716
ff43ec3e
PH
717int parse_options_step(struct parse_opt_ctx_t *ctx,
718 const struct option *options,
719 const char * const usagestr[])
4a59fd13 720{
b92891f9
RS
721 int internal_help = !(ctx->flags & PARSE_OPT_NO_INTERNAL_HELP);
722
26141b5b
PH
723 /* we must reset ->opt, unknown short option leave it dangling */
724 ctx->opt = NULL;
725
ff43ec3e
PH
726 for (; ctx->argc; ctx->argc--, ctx->argv++) {
727 const char *arg = ctx->argv[0];
4a59fd13 728
202fbb33
NTND
729 if (ctx->flags & PARSE_OPT_ONE_SHOT &&
730 ctx->argc != ctx->total)
731 break;
732
4a59fd13 733 if (*arg != '-' || !arg[1]) {
51a9949e
RS
734 if (parse_nodash_opt(ctx, arg, options) == 0)
735 continue;
ff43ec3e 736 if (ctx->flags & PARSE_OPT_STOP_AT_NON_OPTION)
979240fe 737 return PARSE_OPT_NON_OPTION;
ff43ec3e 738 ctx->out[ctx->cpidx++] = ctx->argv[0];
4a59fd13
PH
739 continue;
740 }
741
5ad0d3d5
RS
742 /* lone -h asks for help */
743 if (internal_help && ctx->total == 1 && !strcmp(arg + 1, "h"))
744 goto show_usage;
745
a0abe5e3
RZ
746 /*
747 * lone --git-completion-helper and --git-completion-helper-all
748 * are asked by git-completion.bash
749 */
750 if (ctx->total == 1 && !strcmp(arg, "--git-completion-helper"))
751 return show_gitcomp(options, 0);
752 if (ctx->total == 1 && !strcmp(arg, "--git-completion-helper-all"))
753 return show_gitcomp(options, 1);
b9d7f4b4 754
4a59fd13 755 if (arg[1] != '-') {
ff43ec3e 756 ctx->opt = arg + 1;
07fe54db 757 switch (parse_short_opt(ctx, options)) {
f41179f1 758 case PARSE_OPT_ERROR:
3bb0923f 759 return PARSE_OPT_ERROR;
f41179f1 760 case PARSE_OPT_UNKNOWN:
38916c5b
RS
761 if (ctx->opt)
762 check_typos(arg + 1, options);
5ad0d3d5
RS
763 if (internal_help && *ctx->opt == 'h')
764 goto show_usage;
b5ce3a54 765 goto unknown;
f41179f1
NTND
766 case PARSE_OPT_NON_OPTION:
767 case PARSE_OPT_HELP:
768 case PARSE_OPT_COMPLETE:
769 BUG("parse_short_opt() cannot return these");
770 case PARSE_OPT_DONE:
771 break;
07fe54db 772 }
ff43ec3e 773 if (ctx->opt)
3a9f0f41 774 check_typos(arg + 1, options);
ff43ec3e 775 while (ctx->opt) {
07fe54db 776 switch (parse_short_opt(ctx, options)) {
f41179f1 777 case PARSE_OPT_ERROR:
3bb0923f 778 return PARSE_OPT_ERROR;
f41179f1 779 case PARSE_OPT_UNKNOWN:
5ad0d3d5
RS
780 if (internal_help && *ctx->opt == 'h')
781 goto show_usage;
782
26141b5b
PH
783 /* fake a short option thing to hide the fact that we may have
784 * started to parse aggregated stuff
785 *
786 * This is leaky, too bad.
787 */
788 ctx->argv[0] = xstrdup(ctx->opt - 1);
789 *(char *)ctx->argv[0] = '-';
b5ce3a54 790 goto unknown;
f41179f1
NTND
791 case PARSE_OPT_NON_OPTION:
792 case PARSE_OPT_COMPLETE:
793 case PARSE_OPT_HELP:
794 BUG("parse_short_opt() cannot return these");
795 case PARSE_OPT_DONE:
796 break;
07fe54db 797 }
3a9f0f41 798 }
4a59fd13
PH
799 continue;
800 }
801
51b4594b
JK
802 if (!arg[2] /* "--" */ ||
803 !strcmp(arg + 2, "end-of-options")) {
ff43ec3e
PH
804 if (!(ctx->flags & PARSE_OPT_KEEP_DASHDASH)) {
805 ctx->argc--;
806 ctx->argv++;
4a59fd13
PH
807 }
808 break;
809 }
810
b92891f9 811 if (internal_help && !strcmp(arg + 2, "help-all"))
47e9cd28 812 return usage_with_options_internal(ctx, usagestr, options, 1, 0);
b92891f9 813 if (internal_help && !strcmp(arg + 2, "help"))
ac20ff6d 814 goto show_usage;
07fe54db 815 switch (parse_long_opt(ctx, arg + 2, options)) {
f41179f1 816 case PARSE_OPT_ERROR:
3bb0923f 817 return PARSE_OPT_ERROR;
f41179f1 818 case PARSE_OPT_UNKNOWN:
b5ce3a54 819 goto unknown;
f41179f1 820 case PARSE_OPT_HELP:
3bb0923f 821 goto show_usage;
f41179f1
NTND
822 case PARSE_OPT_NON_OPTION:
823 case PARSE_OPT_COMPLETE:
824 BUG("parse_long_opt() cannot return these");
825 case PARSE_OPT_DONE:
826 break;
07fe54db 827 }
b5ce3a54
RS
828 continue;
829unknown:
202fbb33
NTND
830 if (ctx->flags & PARSE_OPT_ONE_SHOT)
831 break;
b5ce3a54
RS
832 if (!(ctx->flags & PARSE_OPT_KEEP_UNKNOWN))
833 return PARSE_OPT_UNKNOWN;
834 ctx->out[ctx->cpidx++] = ctx->argv[0];
835 ctx->opt = NULL;
ff43ec3e
PH
836 }
837 return PARSE_OPT_DONE;
ac20ff6d 838
ac20ff6d 839 show_usage:
3bb0923f 840 return usage_with_options_internal(ctx, usagestr, options, 0, 0);
ff43ec3e
PH
841}
842
843int parse_options_end(struct parse_opt_ctx_t *ctx)
844{
202fbb33
NTND
845 if (ctx->flags & PARSE_OPT_ONE_SHOT)
846 return ctx->total - ctx->argc;
847
f919ffeb 848 MOVE_ARRAY(ctx->out + ctx->cpidx, ctx->argv, ctx->argc);
ff43ec3e
PH
849 ctx->out[ctx->cpidx + ctx->argc] = NULL;
850 return ctx->cpidx + ctx->argc;
851}
852
37782920
SB
853int parse_options(int argc, const char **argv, const char *prefix,
854 const struct option *options, const char * const usagestr[],
855 int flags)
ff43ec3e
PH
856{
857 struct parse_opt_ctx_t ctx;
5c387428 858 struct option *real_options;
ff43ec3e 859
b02e7d5d
JS
860 disallow_abbreviated_options =
861 git_env_bool("GIT_TEST_DISALLOW_ABBREVIATED_OPTIONS", 0);
862
5c387428
NTND
863 memset(&ctx, 0, sizeof(ctx));
864 real_options = preprocess_options(&ctx, options);
865 if (real_options)
866 options = real_options;
867 parse_options_start_1(&ctx, argc, argv, prefix, options, flags);
ff43ec3e
PH
868 switch (parse_options_step(&ctx, options, usagestr)) {
869 case PARSE_OPT_HELP:
3bb0923f 870 case PARSE_OPT_ERROR:
ff43ec3e 871 exit(129);
a92ec7ef
NTND
872 case PARSE_OPT_COMPLETE:
873 exit(0);
979240fe 874 case PARSE_OPT_NON_OPTION:
ff43ec3e
PH
875 case PARSE_OPT_DONE:
876 break;
877 default: /* PARSE_OPT_UNKNOWN */
07fe54db 878 if (ctx.argv[0][1] == '-') {
89003426 879 error(_("unknown option `%s'"), ctx.argv[0] + 2);
b141a478 880 } else if (isascii(*ctx.opt)) {
89003426 881 error(_("unknown switch `%c'"), *ctx.opt);
b141a478 882 } else {
89003426 883 error(_("unknown non-ascii option in string: `%s'"),
b141a478 884 ctx.argv[0]);
07fe54db
PH
885 }
886 usage_with_options(usagestr, options);
4a59fd13
PH
887 }
888
5c327502 889 precompose_argv_prefix(argc, argv, NULL);
64cc539f 890 free_preprocessed_options(real_options);
5c387428 891 free(ctx.alias_groups);
7e7bbcb4 892 return parse_options_end(&ctx);
4a59fd13 893}
d7a38c54 894
9c7304e3 895static int usage_argh(const struct option *opts, FILE *outfile)
29f25d49
SB
896{
897 const char *s;
5f0df44c
RS
898 int literal = (opts->flags & PARSE_OPT_LITERAL_ARGHELP) ||
899 !opts->argh || !!strpbrk(opts->argh, "()<>[]|");
29f25d49
SB
900 if (opts->flags & PARSE_OPT_OPTARG)
901 if (opts->long_name)
902 s = literal ? "[=%s]" : "[=<%s>]";
903 else
904 s = literal ? "[%s]" : "[<%s>]";
905 else
906 s = literal ? " %s" : " <%s>";
c0821965 907 return utf8_fprintf(outfile, s, opts->argh ? _(opts->argh) : _("..."));
29f25d49
SB
908}
909
d7a38c54
PH
910#define USAGE_OPTS_WIDTH 24
911#define USAGE_GAP 2
912
47e9cd28
TR
913static int usage_with_options_internal(struct parse_opt_ctx_t *ctx,
914 const char * const *usagestr,
915 const struct option *opts, int full, int err)
d7a38c54 916{
9c7304e3 917 FILE *outfile = err ? stderr : stdout;
a6304fa4 918 int need_newline;
9c7304e3 919
49b61802
RS
920 if (!usagestr)
921 return PARSE_OPT_HELP;
922
47e9cd28
TR
923 if (!err && ctx && ctx->flags & PARSE_OPT_SHELL_EVAL)
924 fprintf(outfile, "cat <<\\EOF\n");
925
54e6dc7d 926 fprintf_ln(outfile, _("usage: %s"), _(*usagestr++));
f389c808 927 while (*usagestr && **usagestr)
66f5f6dc
ÆAB
928 /*
929 * TRANSLATORS: the colon here should align with the
930 * one in "usage: %s" translation.
931 */
54e6dc7d 932 fprintf_ln(outfile, _(" or: %s"), _(*usagestr++));
44d86e91 933 while (*usagestr) {
54e6dc7d
NTND
934 if (**usagestr)
935 fprintf_ln(outfile, _(" %s"), _(*usagestr));
936 else
1a9bf1e1 937 fputc('\n', outfile);
44d86e91
JK
938 usagestr++;
939 }
d7a38c54 940
a6304fa4 941 need_newline = 1;
d7a38c54
PH
942
943 for (; opts->type != OPTION_END; opts++) {
944 size_t pos;
945 int pad;
946
947 if (opts->type == OPTION_GROUP) {
9c7304e3 948 fputc('\n', outfile);
a6304fa4 949 need_newline = 0;
d7a38c54 950 if (*opts->help)
54e6dc7d 951 fprintf(outfile, "%s\n", _(opts->help));
d7a38c54
PH
952 continue;
953 }
dd3bf0f4
PH
954 if (!full && (opts->flags & PARSE_OPT_HIDDEN))
955 continue;
d7a38c54 956
a6304fa4
BC
957 if (need_newline) {
958 fputc('\n', outfile);
959 need_newline = 0;
960 }
961
9c7304e3 962 pos = fprintf(outfile, " ");
cbb08c2e 963 if (opts->short_name) {
51a9949e 964 if (opts->flags & PARSE_OPT_NODASH)
9c7304e3 965 pos += fprintf(outfile, "%c", opts->short_name);
51a9949e 966 else
9c7304e3 967 pos += fprintf(outfile, "-%c", opts->short_name);
51a9949e 968 }
d7a38c54 969 if (opts->long_name && opts->short_name)
9c7304e3 970 pos += fprintf(outfile, ", ");
d7a38c54 971 if (opts->long_name)
cbb08c2e 972 pos += fprintf(outfile, "--%s", opts->long_name);
e0319ff5 973 if (opts->type == OPTION_NUMBER)
c0821965 974 pos += utf8_fprintf(outfile, _("-NUM"));
d7a38c54 975
b57c68a6
JN
976 if ((opts->flags & PARSE_OPT_LITERAL_ARGHELP) ||
977 !(opts->flags & PARSE_OPT_NOARG))
9c7304e3 978 pos += usage_argh(opts, outfile);
d7a38c54 979
f389c808
AR
980 if (pos <= USAGE_OPTS_WIDTH)
981 pad = USAGE_OPTS_WIDTH - pos;
d7a38c54 982 else {
9c7304e3 983 fputc('\n', outfile);
d7a38c54
PH
984 pad = USAGE_OPTS_WIDTH;
985 }
5c387428
NTND
986 if (opts->type == OPTION_ALIAS) {
987 fprintf(outfile, "%*s", pad + USAGE_GAP, "");
988 fprintf_ln(outfile, _("alias of --%s"),
989 (const char *)opts->value);
990 continue;
991 }
54e6dc7d 992 fprintf(outfile, "%*s%s\n", pad + USAGE_GAP, "", _(opts->help));
d7a38c54 993 }
9c7304e3 994 fputc('\n', outfile);
f389c808 995
47e9cd28
TR
996 if (!err && ctx && ctx->flags & PARSE_OPT_SHELL_EVAL)
997 fputs("EOF\n", outfile);
998
ee68b87a 999 return PARSE_OPT_HELP;
d7a38c54 1000}
0ce865b1 1001
c2e86add 1002void NORETURN usage_with_options(const char * const *usagestr,
ff43ec3e 1003 const struct option *opts)
dd3bf0f4 1004{
47e9cd28 1005 usage_with_options_internal(NULL, usagestr, opts, 0, 1);
ff43ec3e 1006 exit(129);
dd3bf0f4
PH
1007}
1008
c2e86add 1009void NORETURN usage_msg_opt(const char *msg,
451bb210
CC
1010 const char * const *usagestr,
1011 const struct option *options)
1012{
87433261 1013 fprintf(stderr, "fatal: %s\n\n", msg);
451bb210
CC
1014 usage_with_options(usagestr, options);
1015}
1016
9440b831 1017const char *optname(const struct option *opt, int flags)
a469a101 1018{
9440b831
NTND
1019 static struct strbuf sb = STRBUF_INIT;
1020
1021 strbuf_reset(&sb);
a469a101 1022 if (flags & OPT_SHORT)
9440b831
NTND
1023 strbuf_addf(&sb, "switch `%c'", opt->short_name);
1024 else if (flags & OPT_UNSET)
1025 strbuf_addf(&sb, "option `no-%s'", opt->long_name);
1026 else
1027 strbuf_addf(&sb, "option `%s'", opt->long_name);
1028
1029 return sb.buf;
a469a101 1030}