Commit | Line | Data |
---|---|---|
4a59fd13 PH |
1 | #include "git-compat-util.h" |
2 | #include "parse-options.h" | |
26141b5b | 3 | #include "cache.h" |
269defdf | 4 | #include "commit.h" |
73e9da01 | 5 | #include "color.h" |
c0821965 | 6 | #include "utf8.h" |
4a59fd13 PH |
7 | |
8 | #define OPT_SHORT 1 | |
9 | #define OPT_UNSET 2 | |
10 | ||
1f275b7c | 11 | int optbug(const struct option *opt, const char *reason) |
1e5ce570 | 12 | { |
af465af8 JH |
13 | if (opt->long_name) { |
14 | if (opt->short_name) | |
15 | return error("BUG: switch '%c' (--%s) %s", | |
16 | opt->short_name, opt->long_name, reason); | |
1e5ce570 | 17 | return error("BUG: option '%s' %s", opt->long_name, reason); |
af465af8 | 18 | } |
1e5ce570 JN |
19 | return error("BUG: switch '%c' %s", opt->short_name, reason); |
20 | } | |
21 | ||
1cc6985c PH |
22 | static int get_arg(struct parse_opt_ctx_t *p, const struct option *opt, |
23 | int flags, const char **arg) | |
24 | { | |
25 | if (p->opt) { | |
26 | *arg = p->opt; | |
27 | p->opt = NULL; | |
28 | } else if (p->argc == 1 && (opt->flags & PARSE_OPT_LASTARG_DEFAULT)) { | |
29 | *arg = (const char *)opt->defval; | |
d5d745f9 | 30 | } else if (p->argc > 1) { |
1cc6985c PH |
31 | p->argc--; |
32 | *arg = *++p->argv; | |
33 | } else | |
34 | return opterror(opt, "requires a value", flags); | |
35 | return 0; | |
36 | } | |
37 | ||
df217ed6 SB |
38 | static void fix_filename(const char *prefix, const char **file) |
39 | { | |
40 | if (!file || !*file || !prefix || is_absolute_path(*file) | |
41 | || !strcmp("-", *file)) | |
42 | return; | |
43 | *file = xstrdup(prefix_filename(prefix, strlen(prefix), *file)); | |
44 | } | |
45 | ||
11588263 JH |
46 | static int opt_command_mode_error(const struct option *opt, |
47 | const struct option *all_opts, | |
48 | int flags) | |
49 | { | |
50 | const struct option *that; | |
51 | struct strbuf message = STRBUF_INIT; | |
52 | struct strbuf that_name = STRBUF_INIT; | |
53 | ||
54 | /* | |
55 | * Find the other option that was used to set the variable | |
56 | * already, and report that this is not compatible with it. | |
57 | */ | |
58 | for (that = all_opts; that->type != OPTION_END; that++) { | |
59 | if (that == opt || | |
60 | that->type != OPTION_CMDMODE || | |
61 | that->value != opt->value || | |
62 | that->defval != *(int *)opt->value) | |
63 | continue; | |
64 | ||
65 | if (that->long_name) | |
66 | strbuf_addf(&that_name, "--%s", that->long_name); | |
67 | else | |
68 | strbuf_addf(&that_name, "-%c", that->short_name); | |
69 | strbuf_addf(&message, ": incompatible with %s", that_name.buf); | |
70 | strbuf_release(&that_name); | |
71 | opterror(opt, message.buf, flags); | |
72 | strbuf_release(&message); | |
73 | return -1; | |
74 | } | |
75 | return opterror(opt, ": incompatible with something else", flags); | |
76 | } | |
77 | ||
7e7bbcb4 | 78 | static int get_value(struct parse_opt_ctx_t *p, |
11588263 JH |
79 | const struct option *opt, |
80 | const struct option *all_opts, | |
81 | int flags) | |
4a59fd13 | 82 | { |
ffe659f9 | 83 | const char *s, *arg; |
db7244bd | 84 | const int unset = flags & OPT_UNSET; |
df217ed6 | 85 | int err; |
4a59fd13 | 86 | |
db7244bd | 87 | if (unset && p->opt) |
4a59fd13 | 88 | return opterror(opt, "takes no value", flags); |
db7244bd PH |
89 | if (unset && (opt->flags & PARSE_OPT_NONEG)) |
90 | return opterror(opt, "isn't available", flags); | |
c1f4ec9e SB |
91 | if (!(flags & OPT_SHORT) && p->opt && (opt->flags & PARSE_OPT_NOARG)) |
92 | return opterror(opt, "takes no value", flags); | |
db7244bd | 93 | |
db7244bd | 94 | switch (opt->type) { |
b0b3a8b6 JN |
95 | case OPTION_LOWLEVEL_CALLBACK: |
96 | return (*(parse_opt_ll_cb *)opt->callback)(p, opt, unset); | |
97 | ||
db7244bd PH |
98 | case OPTION_BIT: |
99 | if (unset) | |
100 | *(int *)opt->value &= ~opt->defval; | |
4a59fd13 | 101 | else |
db7244bd PH |
102 | *(int *)opt->value |= opt->defval; |
103 | return 0; | |
104 | ||
2f4b97f9 RS |
105 | case OPTION_NEGBIT: |
106 | if (unset) | |
107 | *(int *)opt->value |= opt->defval; | |
108 | else | |
109 | *(int *)opt->value &= ~opt->defval; | |
110 | return 0; | |
111 | ||
b04ba2bb | 112 | case OPTION_COUNTUP: |
db7244bd PH |
113 | *(int *)opt->value = unset ? 0 : *(int *)opt->value + 1; |
114 | return 0; | |
115 | ||
116 | case OPTION_SET_INT: | |
117 | *(int *)opt->value = unset ? 0 : opt->defval; | |
118 | return 0; | |
119 | ||
11588263 JH |
120 | case OPTION_CMDMODE: |
121 | /* | |
122 | * Giving the same mode option twice, although is unnecessary, | |
123 | * is not a grave error, so let it pass. | |
124 | */ | |
125 | if (*(int *)opt->value && *(int *)opt->value != opt->defval) | |
126 | return opt_command_mode_error(opt, all_opts, flags); | |
127 | *(int *)opt->value = opt->defval; | |
128 | return 0; | |
129 | ||
4a59fd13 | 130 | case OPTION_STRING: |
1cc6985c | 131 | if (unset) |
db7244bd | 132 | *(const char **)opt->value = NULL; |
1cc6985c | 133 | else if (opt->flags & PARSE_OPT_OPTARG && !p->opt) |
ffe659f9 | 134 | *(const char **)opt->value = (const char *)opt->defval; |
1cc6985c PH |
135 | else |
136 | return get_arg(p, opt, flags, (const char **)opt->value); | |
4a59fd13 PH |
137 | return 0; |
138 | ||
df217ed6 SB |
139 | case OPTION_FILENAME: |
140 | err = 0; | |
141 | if (unset) | |
142 | *(const char **)opt->value = NULL; | |
143 | else if (opt->flags & PARSE_OPT_OPTARG && !p->opt) | |
144 | *(const char **)opt->value = (const char *)opt->defval; | |
145 | else | |
146 | err = get_arg(p, opt, flags, (const char **)opt->value); | |
147 | ||
148 | if (!err) | |
149 | fix_filename(p->prefix, (const char **)opt->value); | |
150 | return err; | |
151 | ||
ffe659f9 | 152 | case OPTION_CALLBACK: |
db7244bd | 153 | if (unset) |
07fe54db | 154 | return (*opt->callback)(opt, NULL, 1) ? (-1) : 0; |
db7244bd | 155 | if (opt->flags & PARSE_OPT_NOARG) |
07fe54db | 156 | return (*opt->callback)(opt, NULL, 0) ? (-1) : 0; |
c43a2483 | 157 | if (opt->flags & PARSE_OPT_OPTARG && !p->opt) |
07fe54db | 158 | return (*opt->callback)(opt, NULL, 0) ? (-1) : 0; |
1cc6985c PH |
159 | if (get_arg(p, opt, flags, &arg)) |
160 | return -1; | |
161 | return (*opt->callback)(opt, arg, 0) ? (-1) : 0; | |
ffe659f9 | 162 | |
4a59fd13 | 163 | case OPTION_INTEGER: |
db7244bd | 164 | if (unset) { |
4a59fd13 PH |
165 | *(int *)opt->value = 0; |
166 | return 0; | |
167 | } | |
c43a2483 | 168 | if (opt->flags & PARSE_OPT_OPTARG && !p->opt) { |
ffe659f9 PH |
169 | *(int *)opt->value = opt->defval; |
170 | return 0; | |
171 | } | |
1cc6985c PH |
172 | if (get_arg(p, opt, flags, &arg)) |
173 | return -1; | |
174 | *(int *)opt->value = strtol(arg, (char **)&s, 10); | |
4a59fd13 PH |
175 | if (*s) |
176 | return opterror(opt, "expects a numerical value", flags); | |
177 | return 0; | |
178 | ||
2a514ed8 CB |
179 | case OPTION_MAGNITUDE: |
180 | if (unset) { | |
181 | *(unsigned long *)opt->value = 0; | |
182 | return 0; | |
183 | } | |
184 | if (opt->flags & PARSE_OPT_OPTARG && !p->opt) { | |
185 | *(unsigned long *)opt->value = opt->defval; | |
186 | return 0; | |
187 | } | |
188 | if (get_arg(p, opt, flags, &arg)) | |
189 | return -1; | |
190 | if (!git_parse_ulong(arg, opt->value)) | |
191 | return opterror(opt, | |
192 | "expects a non-negative integer value with an optional k/m/g suffix", | |
193 | flags); | |
194 | return 0; | |
195 | ||
4a59fd13 PH |
196 | default: |
197 | die("should not happen, someone must be hit on the forehead"); | |
198 | } | |
199 | } | |
200 | ||
7e7bbcb4 | 201 | static int parse_short_opt(struct parse_opt_ctx_t *p, const struct option *options) |
4a59fd13 | 202 | { |
11588263 | 203 | const struct option *all_opts = options; |
e0319ff5 RS |
204 | const struct option *numopt = NULL; |
205 | ||
4a59fd13 PH |
206 | for (; options->type != OPTION_END; options++) { |
207 | if (options->short_name == *p->opt) { | |
208 | p->opt = p->opt[1] ? p->opt + 1 : NULL; | |
11588263 | 209 | return get_value(p, options, all_opts, OPT_SHORT); |
4a59fd13 | 210 | } |
e0319ff5 RS |
211 | |
212 | /* | |
213 | * Handle the numerical option later, explicit one-digit | |
214 | * options take precedence over it. | |
215 | */ | |
216 | if (options->type == OPTION_NUMBER) | |
217 | numopt = options; | |
218 | } | |
219 | if (numopt && isdigit(*p->opt)) { | |
220 | size_t len = 1; | |
221 | char *arg; | |
222 | int rc; | |
223 | ||
224 | while (isdigit(p->opt[len])) | |
225 | len++; | |
226 | arg = xmemdupz(p->opt, len); | |
227 | p->opt = p->opt[len] ? p->opt + len : NULL; | |
228 | rc = (*numopt->callback)(numopt, arg, 0) ? (-1) : 0; | |
229 | free(arg); | |
230 | return rc; | |
4a59fd13 | 231 | } |
07fe54db | 232 | return -2; |
4a59fd13 PH |
233 | } |
234 | ||
7e7bbcb4 | 235 | static int parse_long_opt(struct parse_opt_ctx_t *p, const char *arg, |
4a59fd13 PH |
236 | const struct option *options) |
237 | { | |
11588263 | 238 | const struct option *all_opts = options; |
2c5495f7 | 239 | const char *arg_end = strchrnul(arg, '='); |
243e0614 JS |
240 | const struct option *abbrev_option = NULL, *ambiguous_option = NULL; |
241 | int abbrev_flags = 0, ambiguous_flags = 0; | |
7f275b91 | 242 | |
4a59fd13 | 243 | for (; options->type != OPTION_END; options++) { |
0f1930c5 RS |
244 | const char *rest, *long_name = options->long_name; |
245 | int flags = 0, opt_flags = 0; | |
4a59fd13 | 246 | |
0f1930c5 | 247 | if (!long_name) |
4a59fd13 PH |
248 | continue; |
249 | ||
0f1930c5 | 250 | again: |
cf4fff57 JK |
251 | if (!skip_prefix(arg, long_name, &rest)) |
252 | rest = NULL; | |
580d5bff PH |
253 | if (options->type == OPTION_ARGUMENT) { |
254 | if (!rest) | |
255 | continue; | |
256 | if (*rest == '=') | |
257 | return opterror(options, "takes no value", flags); | |
258 | if (*rest) | |
259 | continue; | |
260 | p->out[p->cpidx++] = arg - 2; | |
261 | return 0; | |
262 | } | |
4a59fd13 | 263 | if (!rest) { |
7f275b91 | 264 | /* abbreviated? */ |
0f1930c5 | 265 | if (!strncmp(long_name, arg, arg_end - arg)) { |
7f275b91 | 266 | is_abbreviated: |
243e0614 JS |
267 | if (abbrev_option) { |
268 | /* | |
269 | * If this is abbreviated, it is | |
270 | * ambiguous. So when there is no | |
271 | * exact match later, we need to | |
272 | * error out. | |
273 | */ | |
274 | ambiguous_option = abbrev_option; | |
275 | ambiguous_flags = abbrev_flags; | |
276 | } | |
7f275b91 JS |
277 | if (!(flags & OPT_UNSET) && *arg_end) |
278 | p->opt = arg_end + 1; | |
279 | abbrev_option = options; | |
0f1930c5 | 280 | abbrev_flags = flags ^ opt_flags; |
7f275b91 JS |
281 | continue; |
282 | } | |
6bbfd1fa AS |
283 | /* negation allowed? */ |
284 | if (options->flags & PARSE_OPT_NONEG) | |
285 | continue; | |
7f275b91 | 286 | /* negated and abbreviated very much? */ |
59556548 | 287 | if (starts_with("no-", arg)) { |
7f275b91 JS |
288 | flags |= OPT_UNSET; |
289 | goto is_abbreviated; | |
290 | } | |
291 | /* negated? */ | |
59556548 CC |
292 | if (!starts_with(arg, "no-")) { |
293 | if (starts_with(long_name, "no-")) { | |
0f1930c5 RS |
294 | long_name += 3; |
295 | opt_flags |= OPT_UNSET; | |
296 | goto again; | |
297 | } | |
4a59fd13 | 298 | continue; |
0f1930c5 | 299 | } |
4a59fd13 | 300 | flags |= OPT_UNSET; |
cf4fff57 JK |
301 | if (!skip_prefix(arg + 3, long_name, &rest)) { |
302 | /* abbreviated and negated? */ | |
303 | if (starts_with(long_name, arg + 3)) | |
304 | goto is_abbreviated; | |
305 | else | |
306 | continue; | |
307 | } | |
4a59fd13 PH |
308 | } |
309 | if (*rest) { | |
310 | if (*rest != '=') | |
311 | continue; | |
312 | p->opt = rest + 1; | |
313 | } | |
11588263 | 314 | return get_value(p, options, all_opts, flags ^ opt_flags); |
4a59fd13 | 315 | } |
243e0614 JS |
316 | |
317 | if (ambiguous_option) | |
318 | return error("Ambiguous option: %s " | |
319 | "(could be --%s%s or --%s%s)", | |
320 | arg, | |
321 | (ambiguous_flags & OPT_UNSET) ? "no-" : "", | |
322 | ambiguous_option->long_name, | |
323 | (abbrev_flags & OPT_UNSET) ? "no-" : "", | |
324 | abbrev_option->long_name); | |
7f275b91 | 325 | if (abbrev_option) |
11588263 | 326 | return get_value(p, abbrev_option, all_opts, abbrev_flags); |
07fe54db | 327 | return -2; |
4a59fd13 PH |
328 | } |
329 | ||
51a9949e RS |
330 | static int parse_nodash_opt(struct parse_opt_ctx_t *p, const char *arg, |
331 | const struct option *options) | |
332 | { | |
11588263 JH |
333 | const struct option *all_opts = options; |
334 | ||
51a9949e RS |
335 | for (; options->type != OPTION_END; options++) { |
336 | if (!(options->flags & PARSE_OPT_NODASH)) | |
337 | continue; | |
51a9949e | 338 | if (options->short_name == arg[0] && arg[1] == '\0') |
11588263 | 339 | return get_value(p, options, all_opts, OPT_SHORT); |
51a9949e RS |
340 | } |
341 | return -2; | |
342 | } | |
343 | ||
1121a878 | 344 | static void check_typos(const char *arg, const struct option *options) |
3a9f0f41 PH |
345 | { |
346 | if (strlen(arg) < 3) | |
347 | return; | |
348 | ||
59556548 | 349 | if (starts_with(arg, "no-")) { |
3a9f0f41 PH |
350 | error ("did you mean `--%s` (with two dashes ?)", arg); |
351 | exit(129); | |
352 | } | |
353 | ||
354 | for (; options->type != OPTION_END; options++) { | |
355 | if (!options->long_name) | |
356 | continue; | |
59556548 | 357 | if (starts_with(options->long_name, arg)) { |
3a9f0f41 PH |
358 | error ("did you mean `--%s` (with two dashes ?)", arg); |
359 | exit(129); | |
360 | } | |
361 | } | |
362 | } | |
363 | ||
cb9d398c PH |
364 | static void parse_options_check(const struct option *opts) |
365 | { | |
366 | int err = 0; | |
af465af8 | 367 | char short_opts[128]; |
cb9d398c | 368 | |
af465af8 | 369 | memset(short_opts, '\0', sizeof(short_opts)); |
cb9d398c PH |
370 | for (; opts->type != OPTION_END; opts++) { |
371 | if ((opts->flags & PARSE_OPT_LASTARG_DEFAULT) && | |
1e5ce570 JN |
372 | (opts->flags & PARSE_OPT_OPTARG)) |
373 | err |= optbug(opts, "uses incompatible flags " | |
374 | "LASTARG_DEFAULT and OPTARG"); | |
af465af8 JH |
375 | if (opts->short_name) { |
376 | if (0x7F <= opts->short_name) | |
377 | err |= optbug(opts, "invalid short name"); | |
378 | else if (short_opts[opts->short_name]++) | |
379 | err |= optbug(opts, "short name already used"); | |
380 | } | |
a02dd4ff JN |
381 | if (opts->flags & PARSE_OPT_NODASH && |
382 | ((opts->flags & PARSE_OPT_OPTARG) || | |
383 | !(opts->flags & PARSE_OPT_NOARG) || | |
384 | !(opts->flags & PARSE_OPT_NONEG) || | |
385 | opts->long_name)) | |
386 | err |= optbug(opts, "uses feature " | |
387 | "not supported for dashless options"); | |
5c400ed2 | 388 | switch (opts->type) { |
b04ba2bb | 389 | case OPTION_COUNTUP: |
5c400ed2 JN |
390 | case OPTION_BIT: |
391 | case OPTION_NEGBIT: | |
392 | case OPTION_SET_INT: | |
5c400ed2 JN |
393 | case OPTION_NUMBER: |
394 | if ((opts->flags & PARSE_OPT_OPTARG) || | |
395 | !(opts->flags & PARSE_OPT_NOARG)) | |
396 | err |= optbug(opts, "should not accept an argument"); | |
397 | default: | |
398 | ; /* ok. (usually accepts an argument) */ | |
399 | } | |
b6c2a0d4 JH |
400 | if (opts->argh && |
401 | strcspn(opts->argh, " _") != strlen(opts->argh)) | |
402 | err |= optbug(opts, "multi-word argh should use dash to separate words"); | |
cb9d398c | 403 | } |
cb9d398c | 404 | if (err) |
1e5ce570 | 405 | exit(128); |
cb9d398c PH |
406 | } |
407 | ||
7e7bbcb4 | 408 | void parse_options_start(struct parse_opt_ctx_t *ctx, |
37782920 | 409 | int argc, const char **argv, const char *prefix, |
9ca1169f | 410 | const struct option *options, int flags) |
7e7bbcb4 PH |
411 | { |
412 | memset(ctx, 0, sizeof(*ctx)); | |
413 | ctx->argc = argc - 1; | |
414 | ctx->argv = argv + 1; | |
415 | ctx->out = argv; | |
37782920 | 416 | ctx->prefix = prefix; |
a32a4eaa | 417 | ctx->cpidx = ((flags & PARSE_OPT_KEEP_ARGV0) != 0); |
7e7bbcb4 | 418 | ctx->flags = flags; |
0d260f9a RS |
419 | if ((flags & PARSE_OPT_KEEP_UNKNOWN) && |
420 | (flags & PARSE_OPT_STOP_AT_NON_OPTION)) | |
421 | die("STOP_AT_NON_OPTION and KEEP_UNKNOWN don't go together"); | |
9ca1169f | 422 | parse_options_check(options); |
7e7bbcb4 PH |
423 | } |
424 | ||
47e9cd28 TR |
425 | static int usage_with_options_internal(struct parse_opt_ctx_t *, |
426 | const char * const *, | |
9c7304e3 | 427 | const struct option *, int, int); |
dd3bf0f4 | 428 | |
ff43ec3e PH |
429 | int parse_options_step(struct parse_opt_ctx_t *ctx, |
430 | const struct option *options, | |
431 | const char * const usagestr[]) | |
4a59fd13 | 432 | { |
b92891f9 | 433 | int internal_help = !(ctx->flags & PARSE_OPT_NO_INTERNAL_HELP); |
ac20ff6d | 434 | int err = 0; |
b92891f9 | 435 | |
26141b5b PH |
436 | /* we must reset ->opt, unknown short option leave it dangling */ |
437 | ctx->opt = NULL; | |
438 | ||
ff43ec3e PH |
439 | for (; ctx->argc; ctx->argc--, ctx->argv++) { |
440 | const char *arg = ctx->argv[0]; | |
4a59fd13 PH |
441 | |
442 | if (*arg != '-' || !arg[1]) { | |
51a9949e RS |
443 | if (parse_nodash_opt(ctx, arg, options) == 0) |
444 | continue; | |
ff43ec3e | 445 | if (ctx->flags & PARSE_OPT_STOP_AT_NON_OPTION) |
979240fe | 446 | return PARSE_OPT_NON_OPTION; |
ff43ec3e | 447 | ctx->out[ctx->cpidx++] = ctx->argv[0]; |
4a59fd13 PH |
448 | continue; |
449 | } | |
450 | ||
451 | if (arg[1] != '-') { | |
ff43ec3e | 452 | ctx->opt = arg + 1; |
b92891f9 | 453 | if (internal_help && *ctx->opt == 'h') |
ac20ff6d | 454 | goto show_usage; |
07fe54db PH |
455 | switch (parse_short_opt(ctx, options)) { |
456 | case -1: | |
ac20ff6d | 457 | goto show_usage_error; |
07fe54db | 458 | case -2: |
38916c5b RS |
459 | if (ctx->opt) |
460 | check_typos(arg + 1, options); | |
b5ce3a54 | 461 | goto unknown; |
07fe54db | 462 | } |
ff43ec3e | 463 | if (ctx->opt) |
3a9f0f41 | 464 | check_typos(arg + 1, options); |
ff43ec3e | 465 | while (ctx->opt) { |
b92891f9 | 466 | if (internal_help && *ctx->opt == 'h') |
ac20ff6d | 467 | goto show_usage; |
07fe54db PH |
468 | switch (parse_short_opt(ctx, options)) { |
469 | case -1: | |
ac20ff6d | 470 | goto show_usage_error; |
07fe54db | 471 | case -2: |
26141b5b PH |
472 | /* fake a short option thing to hide the fact that we may have |
473 | * started to parse aggregated stuff | |
474 | * | |
475 | * This is leaky, too bad. | |
476 | */ | |
477 | ctx->argv[0] = xstrdup(ctx->opt - 1); | |
478 | *(char *)ctx->argv[0] = '-'; | |
b5ce3a54 | 479 | goto unknown; |
07fe54db | 480 | } |
3a9f0f41 | 481 | } |
4a59fd13 PH |
482 | continue; |
483 | } | |
484 | ||
485 | if (!arg[2]) { /* "--" */ | |
ff43ec3e PH |
486 | if (!(ctx->flags & PARSE_OPT_KEEP_DASHDASH)) { |
487 | ctx->argc--; | |
488 | ctx->argv++; | |
4a59fd13 PH |
489 | } |
490 | break; | |
491 | } | |
492 | ||
b92891f9 | 493 | if (internal_help && !strcmp(arg + 2, "help-all")) |
47e9cd28 | 494 | return usage_with_options_internal(ctx, usagestr, options, 1, 0); |
b92891f9 | 495 | if (internal_help && !strcmp(arg + 2, "help")) |
ac20ff6d | 496 | goto show_usage; |
07fe54db PH |
497 | switch (parse_long_opt(ctx, arg + 2, options)) { |
498 | case -1: | |
ac20ff6d | 499 | goto show_usage_error; |
07fe54db | 500 | case -2: |
b5ce3a54 | 501 | goto unknown; |
07fe54db | 502 | } |
b5ce3a54 RS |
503 | continue; |
504 | unknown: | |
505 | if (!(ctx->flags & PARSE_OPT_KEEP_UNKNOWN)) | |
506 | return PARSE_OPT_UNKNOWN; | |
507 | ctx->out[ctx->cpidx++] = ctx->argv[0]; | |
508 | ctx->opt = NULL; | |
ff43ec3e PH |
509 | } |
510 | return PARSE_OPT_DONE; | |
ac20ff6d RS |
511 | |
512 | show_usage_error: | |
513 | err = 1; | |
514 | show_usage: | |
d3d1f8c4 | 515 | return usage_with_options_internal(ctx, usagestr, options, 0, err); |
ff43ec3e PH |
516 | } |
517 | ||
518 | int parse_options_end(struct parse_opt_ctx_t *ctx) | |
519 | { | |
520 | memmove(ctx->out + ctx->cpidx, ctx->argv, ctx->argc * sizeof(*ctx->out)); | |
521 | ctx->out[ctx->cpidx + ctx->argc] = NULL; | |
522 | return ctx->cpidx + ctx->argc; | |
523 | } | |
524 | ||
37782920 SB |
525 | int parse_options(int argc, const char **argv, const char *prefix, |
526 | const struct option *options, const char * const usagestr[], | |
527 | int flags) | |
ff43ec3e PH |
528 | { |
529 | struct parse_opt_ctx_t ctx; | |
530 | ||
9ca1169f | 531 | parse_options_start(&ctx, argc, argv, prefix, options, flags); |
ff43ec3e PH |
532 | switch (parse_options_step(&ctx, options, usagestr)) { |
533 | case PARSE_OPT_HELP: | |
534 | exit(129); | |
979240fe | 535 | case PARSE_OPT_NON_OPTION: |
ff43ec3e PH |
536 | case PARSE_OPT_DONE: |
537 | break; | |
538 | default: /* PARSE_OPT_UNKNOWN */ | |
07fe54db PH |
539 | if (ctx.argv[0][1] == '-') { |
540 | error("unknown option `%s'", ctx.argv[0] + 2); | |
b141a478 | 541 | } else if (isascii(*ctx.opt)) { |
07fe54db | 542 | error("unknown switch `%c'", *ctx.opt); |
b141a478 EFL |
543 | } else { |
544 | error("unknown non-ascii option in string: `%s'", | |
545 | ctx.argv[0]); | |
07fe54db PH |
546 | } |
547 | usage_with_options(usagestr, options); | |
4a59fd13 PH |
548 | } |
549 | ||
76759c7d | 550 | precompose_argv(argc, argv); |
7e7bbcb4 | 551 | return parse_options_end(&ctx); |
4a59fd13 | 552 | } |
d7a38c54 | 553 | |
9c7304e3 | 554 | static int usage_argh(const struct option *opts, FILE *outfile) |
29f25d49 SB |
555 | { |
556 | const char *s; | |
34aec9f5 | 557 | int literal = (opts->flags & PARSE_OPT_LITERAL_ARGHELP) || !opts->argh; |
29f25d49 SB |
558 | if (opts->flags & PARSE_OPT_OPTARG) |
559 | if (opts->long_name) | |
560 | s = literal ? "[=%s]" : "[=<%s>]"; | |
561 | else | |
562 | s = literal ? "[%s]" : "[<%s>]"; | |
563 | else | |
564 | s = literal ? " %s" : " <%s>"; | |
c0821965 | 565 | return utf8_fprintf(outfile, s, opts->argh ? _(opts->argh) : _("...")); |
29f25d49 SB |
566 | } |
567 | ||
d7a38c54 PH |
568 | #define USAGE_OPTS_WIDTH 24 |
569 | #define USAGE_GAP 2 | |
570 | ||
47e9cd28 TR |
571 | static int usage_with_options_internal(struct parse_opt_ctx_t *ctx, |
572 | const char * const *usagestr, | |
573 | const struct option *opts, int full, int err) | |
d7a38c54 | 574 | { |
9c7304e3 GS |
575 | FILE *outfile = err ? stderr : stdout; |
576 | ||
49b61802 RS |
577 | if (!usagestr) |
578 | return PARSE_OPT_HELP; | |
579 | ||
47e9cd28 TR |
580 | if (!err && ctx && ctx->flags & PARSE_OPT_SHELL_EVAL) |
581 | fprintf(outfile, "cat <<\\EOF\n"); | |
582 | ||
54e6dc7d | 583 | fprintf_ln(outfile, _("usage: %s"), _(*usagestr++)); |
f389c808 | 584 | while (*usagestr && **usagestr) |
54e6dc7d NTND |
585 | /* TRANSLATORS: the colon here should align with the |
586 | one in "usage: %s" translation */ | |
587 | fprintf_ln(outfile, _(" or: %s"), _(*usagestr++)); | |
44d86e91 | 588 | while (*usagestr) { |
54e6dc7d NTND |
589 | if (**usagestr) |
590 | fprintf_ln(outfile, _(" %s"), _(*usagestr)); | |
591 | else | |
592 | putchar('\n'); | |
44d86e91 JK |
593 | usagestr++; |
594 | } | |
d7a38c54 PH |
595 | |
596 | if (opts->type != OPTION_GROUP) | |
9c7304e3 | 597 | fputc('\n', outfile); |
d7a38c54 PH |
598 | |
599 | for (; opts->type != OPTION_END; opts++) { | |
600 | size_t pos; | |
601 | int pad; | |
602 | ||
603 | if (opts->type == OPTION_GROUP) { | |
9c7304e3 | 604 | fputc('\n', outfile); |
d7a38c54 | 605 | if (*opts->help) |
54e6dc7d | 606 | fprintf(outfile, "%s\n", _(opts->help)); |
d7a38c54 PH |
607 | continue; |
608 | } | |
dd3bf0f4 PH |
609 | if (!full && (opts->flags & PARSE_OPT_HIDDEN)) |
610 | continue; | |
d7a38c54 | 611 | |
9c7304e3 | 612 | pos = fprintf(outfile, " "); |
cbb08c2e | 613 | if (opts->short_name) { |
51a9949e | 614 | if (opts->flags & PARSE_OPT_NODASH) |
9c7304e3 | 615 | pos += fprintf(outfile, "%c", opts->short_name); |
51a9949e | 616 | else |
9c7304e3 | 617 | pos += fprintf(outfile, "-%c", opts->short_name); |
51a9949e | 618 | } |
d7a38c54 | 619 | if (opts->long_name && opts->short_name) |
9c7304e3 | 620 | pos += fprintf(outfile, ", "); |
d7a38c54 | 621 | if (opts->long_name) |
cbb08c2e | 622 | pos += fprintf(outfile, "--%s", opts->long_name); |
e0319ff5 | 623 | if (opts->type == OPTION_NUMBER) |
c0821965 | 624 | pos += utf8_fprintf(outfile, _("-NUM")); |
d7a38c54 | 625 | |
b57c68a6 JN |
626 | if ((opts->flags & PARSE_OPT_LITERAL_ARGHELP) || |
627 | !(opts->flags & PARSE_OPT_NOARG)) | |
9c7304e3 | 628 | pos += usage_argh(opts, outfile); |
d7a38c54 | 629 | |
f389c808 AR |
630 | if (pos <= USAGE_OPTS_WIDTH) |
631 | pad = USAGE_OPTS_WIDTH - pos; | |
d7a38c54 | 632 | else { |
9c7304e3 | 633 | fputc('\n', outfile); |
d7a38c54 PH |
634 | pad = USAGE_OPTS_WIDTH; |
635 | } | |
54e6dc7d | 636 | fprintf(outfile, "%*s%s\n", pad + USAGE_GAP, "", _(opts->help)); |
d7a38c54 | 637 | } |
9c7304e3 | 638 | fputc('\n', outfile); |
f389c808 | 639 | |
47e9cd28 TR |
640 | if (!err && ctx && ctx->flags & PARSE_OPT_SHELL_EVAL) |
641 | fputs("EOF\n", outfile); | |
642 | ||
ee68b87a | 643 | return PARSE_OPT_HELP; |
d7a38c54 | 644 | } |
0ce865b1 | 645 | |
c2e86add | 646 | void NORETURN usage_with_options(const char * const *usagestr, |
ff43ec3e | 647 | const struct option *opts) |
dd3bf0f4 | 648 | { |
47e9cd28 | 649 | usage_with_options_internal(NULL, usagestr, opts, 0, 1); |
ff43ec3e | 650 | exit(129); |
dd3bf0f4 PH |
651 | } |
652 | ||
c2e86add | 653 | void NORETURN usage_msg_opt(const char *msg, |
451bb210 CC |
654 | const char * const *usagestr, |
655 | const struct option *options) | |
656 | { | |
657 | fprintf(stderr, "%s\n\n", msg); | |
658 | usage_with_options(usagestr, options); | |
659 | } | |
660 | ||
a469a101 JK |
661 | #undef opterror |
662 | int opterror(const struct option *opt, const char *reason, int flags) | |
663 | { | |
664 | if (flags & OPT_SHORT) | |
665 | return error("switch `%c' %s", opt->short_name, reason); | |
666 | if (flags & OPT_UNSET) | |
667 | return error("option `no-%s' %s", opt->long_name, reason); | |
668 | return error("option `%s' %s", opt->long_name, reason); | |
669 | } |