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