1 #include "git-compat-util.h"
2 #include "parse-options.h"
9 static int opterror(const struct option *opt, const char *reason, int flags)
11 if (flags & OPT_SHORT)
12 return error("switch `%c' %s", opt->short_name, reason);
13 if (flags & OPT_UNSET)
14 return error("option `no-%s' %s", opt->long_name, reason);
15 return error("option `%s' %s", opt->long_name, reason);
18 static int get_arg(struct parse_opt_ctx_t *p, const struct option *opt,
19 int flags, const char **arg)
24 } else if (p->argc == 1 && (opt->flags & PARSE_OPT_LASTARG_DEFAULT)) {
25 *arg = (const char *)opt->defval;
26 } else if (p->argc > 1) {
30 return opterror(opt, "requires a value", flags);
34 static int get_value(struct parse_opt_ctx_t *p,
35 const struct option *opt, int flags)
38 const int unset = flags & OPT_UNSET;
41 return opterror(opt, "takes no value", flags);
42 if (unset && (opt->flags & PARSE_OPT_NONEG))
43 return opterror(opt, "isn't available", flags);
45 if (!(flags & OPT_SHORT) && p->opt) {
48 if (!(opt->flags & PARSE_OPT_NOARG))
56 return opterror(opt, "takes no value", flags);
65 *(int *)opt->value &= ~opt->defval;
67 *(int *)opt->value |= opt->defval;
72 *(int *)opt->value |= opt->defval;
74 *(int *)opt->value &= ~opt->defval;
78 *(int *)opt->value = unset ? 0 : *(int *)opt->value + 1;
82 *(int *)opt->value = unset ? 0 : opt->defval;
86 *(void **)opt->value = unset ? NULL : (void *)opt->defval;
91 *(const char **)opt->value = NULL;
92 else if (opt->flags & PARSE_OPT_OPTARG && !p->opt)
93 *(const char **)opt->value = (const char *)opt->defval;
95 return get_arg(p, opt, flags, (const char **)opt->value);
100 return (*opt->callback)(opt, NULL, 1) ? (-1) : 0;
101 if (opt->flags & PARSE_OPT_NOARG)
102 return (*opt->callback)(opt, NULL, 0) ? (-1) : 0;
103 if (opt->flags & PARSE_OPT_OPTARG && !p->opt)
104 return (*opt->callback)(opt, NULL, 0) ? (-1) : 0;
105 if (get_arg(p, opt, flags, &arg))
107 return (*opt->callback)(opt, arg, 0) ? (-1) : 0;
111 *(int *)opt->value = 0;
114 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) {
115 *(int *)opt->value = opt->defval;
118 if (get_arg(p, opt, flags, &arg))
120 *(int *)opt->value = strtol(arg, (char **)&s, 10);
122 return opterror(opt, "expects a numerical value", flags);
126 die("should not happen, someone must be hit on the forehead");
130 static int parse_short_opt(struct parse_opt_ctx_t *p, const struct option *options)
132 const struct option *numopt = NULL;
134 for (; options->type != OPTION_END; options++) {
135 if (options->short_name == *p->opt) {
136 p->opt = p->opt[1] ? p->opt + 1 : NULL;
137 return get_value(p, options, OPT_SHORT);
141 * Handle the numerical option later, explicit one-digit
142 * options take precedence over it.
144 if (options->type == OPTION_NUMBER)
147 if (numopt && isdigit(*p->opt)) {
152 while (isdigit(p->opt[len]))
154 arg = xmemdupz(p->opt, len);
155 p->opt = p->opt[len] ? p->opt + len : NULL;
156 rc = (*numopt->callback)(numopt, arg, 0) ? (-1) : 0;
163 static int parse_long_opt(struct parse_opt_ctx_t *p, const char *arg,
164 const struct option *options)
166 const char *arg_end = strchr(arg, '=');
167 const struct option *abbrev_option = NULL, *ambiguous_option = NULL;
168 int abbrev_flags = 0, ambiguous_flags = 0;
171 arg_end = arg + strlen(arg);
173 for (; options->type != OPTION_END; options++) {
177 if (!options->long_name)
180 rest = skip_prefix(arg, options->long_name);
181 if (options->type == OPTION_ARGUMENT) {
185 return opterror(options, "takes no value", flags);
188 p->out[p->cpidx++] = arg - 2;
193 if (!strncmp(options->long_name, arg, arg_end - arg)) {
197 * If this is abbreviated, it is
198 * ambiguous. So when there is no
199 * exact match later, we need to
202 ambiguous_option = abbrev_option;
203 ambiguous_flags = abbrev_flags;
205 if (!(flags & OPT_UNSET) && *arg_end)
206 p->opt = arg_end + 1;
207 abbrev_option = options;
208 abbrev_flags = flags;
211 /* negated and abbreviated very much? */
212 if (!prefixcmp("no-", arg)) {
217 if (strncmp(arg, "no-", 3))
220 rest = skip_prefix(arg + 3, options->long_name);
221 /* abbreviated and negated? */
222 if (!rest && !prefixcmp(options->long_name, arg + 3))
232 return get_value(p, options, flags);
235 if (ambiguous_option)
236 return error("Ambiguous option: %s "
237 "(could be --%s%s or --%s%s)",
239 (ambiguous_flags & OPT_UNSET) ? "no-" : "",
240 ambiguous_option->long_name,
241 (abbrev_flags & OPT_UNSET) ? "no-" : "",
242 abbrev_option->long_name);
244 return get_value(p, abbrev_option, abbrev_flags);
248 static int parse_nodash_opt(struct parse_opt_ctx_t *p, const char *arg,
249 const struct option *options)
251 for (; options->type != OPTION_END; options++) {
252 if (!(options->flags & PARSE_OPT_NODASH))
254 if ((options->flags & PARSE_OPT_OPTARG) ||
255 !(options->flags & PARSE_OPT_NOARG))
256 die("BUG: dashless options don't support arguments");
257 if (!(options->flags & PARSE_OPT_NONEG))
258 die("BUG: dashless options don't support negation");
259 if (options->long_name)
260 die("BUG: dashless options can't be long");
261 if (options->short_name == arg[0] && arg[1] == '\0')
262 return get_value(p, options, OPT_SHORT);
267 static void check_typos(const char *arg, const struct option *options)
272 if (!prefixcmp(arg, "no-")) {
273 error ("did you mean `--%s` (with two dashes ?)", arg);
277 for (; options->type != OPTION_END; options++) {
278 if (!options->long_name)
280 if (!prefixcmp(options->long_name, arg)) {
281 error ("did you mean `--%s` (with two dashes ?)", arg);
287 void parse_options_start(struct parse_opt_ctx_t *ctx,
288 int argc, const char **argv, int flags)
290 memset(ctx, 0, sizeof(*ctx));
291 ctx->argc = argc - 1;
292 ctx->argv = argv + 1;
294 ctx->cpidx = ((flags & PARSE_OPT_KEEP_ARGV0) != 0);
296 if ((flags & PARSE_OPT_KEEP_UNKNOWN) &&
297 (flags & PARSE_OPT_STOP_AT_NON_OPTION))
298 die("STOP_AT_NON_OPTION and KEEP_UNKNOWN don't go together");
301 static int usage_with_options_internal(const char * const *,
302 const struct option *, int);
304 int parse_options_step(struct parse_opt_ctx_t *ctx,
305 const struct option *options,
306 const char * const usagestr[])
308 int internal_help = !(ctx->flags & PARSE_OPT_NO_INTERNAL_HELP);
310 /* we must reset ->opt, unknown short option leave it dangling */
313 for (; ctx->argc; ctx->argc--, ctx->argv++) {
314 const char *arg = ctx->argv[0];
316 if (*arg != '-' || !arg[1]) {
317 if (parse_nodash_opt(ctx, arg, options) == 0)
319 if (ctx->flags & PARSE_OPT_STOP_AT_NON_OPTION)
321 ctx->out[ctx->cpidx++] = ctx->argv[0];
327 if (internal_help && *ctx->opt == 'h')
328 return parse_options_usage(usagestr, options);
329 switch (parse_short_opt(ctx, options)) {
331 return parse_options_usage(usagestr, options);
336 check_typos(arg + 1, options);
338 if (internal_help && *ctx->opt == 'h')
339 return parse_options_usage(usagestr, options);
340 switch (parse_short_opt(ctx, options)) {
342 return parse_options_usage(usagestr, options);
344 /* fake a short option thing to hide the fact that we may have
345 * started to parse aggregated stuff
347 * This is leaky, too bad.
349 ctx->argv[0] = xstrdup(ctx->opt - 1);
350 *(char *)ctx->argv[0] = '-';
357 if (!arg[2]) { /* "--" */
358 if (!(ctx->flags & PARSE_OPT_KEEP_DASHDASH)) {
365 if (internal_help && !strcmp(arg + 2, "help-all"))
366 return usage_with_options_internal(usagestr, options, 1);
367 if (internal_help && !strcmp(arg + 2, "help"))
368 return parse_options_usage(usagestr, options);
369 switch (parse_long_opt(ctx, arg + 2, options)) {
371 return parse_options_usage(usagestr, options);
377 if (!(ctx->flags & PARSE_OPT_KEEP_UNKNOWN))
378 return PARSE_OPT_UNKNOWN;
379 ctx->out[ctx->cpidx++] = ctx->argv[0];
382 return PARSE_OPT_DONE;
385 int parse_options_end(struct parse_opt_ctx_t *ctx)
387 memmove(ctx->out + ctx->cpidx, ctx->argv, ctx->argc * sizeof(*ctx->out));
388 ctx->out[ctx->cpidx + ctx->argc] = NULL;
389 return ctx->cpidx + ctx->argc;
392 int parse_options(int argc, const char **argv, const struct option *options,
393 const char * const usagestr[], int flags)
395 struct parse_opt_ctx_t ctx;
397 parse_options_start(&ctx, argc, argv, flags);
398 switch (parse_options_step(&ctx, options, usagestr)) {
403 default: /* PARSE_OPT_UNKNOWN */
404 if (ctx.argv[0][1] == '-') {
405 error("unknown option `%s'", ctx.argv[0] + 2);
407 error("unknown switch `%c'", *ctx.opt);
409 usage_with_options(usagestr, options);
412 return parse_options_end(&ctx);
415 #define USAGE_OPTS_WIDTH 24
418 int usage_with_options_internal(const char * const *usagestr,
419 const struct option *opts, int full)
422 return PARSE_OPT_HELP;
424 fprintf(stderr, "usage: %s\n", *usagestr++);
425 while (*usagestr && **usagestr)
426 fprintf(stderr, " or: %s\n", *usagestr++);
428 fprintf(stderr, "%s%s\n",
429 **usagestr ? " " : "",
434 if (opts->type != OPTION_GROUP)
437 for (; opts->type != OPTION_END; opts++) {
441 if (opts->type == OPTION_GROUP) {
444 fprintf(stderr, "%s\n", opts->help);
447 if (!full && (opts->flags & PARSE_OPT_HIDDEN))
450 pos = fprintf(stderr, " ");
451 if (opts->short_name) {
452 if (opts->flags & PARSE_OPT_NODASH)
453 pos += fprintf(stderr, "%c", opts->short_name);
455 pos += fprintf(stderr, "-%c", opts->short_name);
457 if (opts->long_name && opts->short_name)
458 pos += fprintf(stderr, ", ");
460 pos += fprintf(stderr, "--%s", opts->long_name);
461 if (opts->type == OPTION_NUMBER)
462 pos += fprintf(stderr, "-NUM");
464 switch (opts->type) {
465 case OPTION_ARGUMENT:
468 if (opts->flags & PARSE_OPT_OPTARG)
470 pos += fprintf(stderr, "[=<n>]");
472 pos += fprintf(stderr, "[<n>]");
474 pos += fprintf(stderr, " <n>");
476 case OPTION_CALLBACK:
477 if (opts->flags & PARSE_OPT_NOARG)
482 if (opts->flags & PARSE_OPT_OPTARG)
484 pos += fprintf(stderr, "[=<%s>]", opts->argh);
486 pos += fprintf(stderr, "[<%s>]", opts->argh);
488 pos += fprintf(stderr, " <%s>", opts->argh);
490 if (opts->flags & PARSE_OPT_OPTARG)
492 pos += fprintf(stderr, "[=...]");
494 pos += fprintf(stderr, "[...]");
496 pos += fprintf(stderr, " ...");
499 default: /* OPTION_{BIT,BOOLEAN,NUMBER,SET_INT,SET_PTR} */
503 if (pos <= USAGE_OPTS_WIDTH)
504 pad = USAGE_OPTS_WIDTH - pos;
507 pad = USAGE_OPTS_WIDTH;
509 fprintf(stderr, "%*s%s\n", pad + USAGE_GAP, "", opts->help);
513 return PARSE_OPT_HELP;
516 void usage_with_options(const char * const *usagestr,
517 const struct option *opts)
519 usage_with_options_internal(usagestr, opts, 0);
523 int parse_options_usage(const char * const *usagestr,
524 const struct option *opts)
526 return usage_with_options_internal(usagestr, opts, 0);
530 /*----- some often used options -----*/
533 int parse_opt_abbrev_cb(const struct option *opt, const char *arg, int unset)
538 v = unset ? 0 : DEFAULT_ABBREV;
540 v = strtol(arg, (char **)&arg, 10);
542 return opterror(opt, "expects a numerical value", 0);
543 if (v && v < MINIMUM_ABBREV)
548 *(int *)(opt->value) = v;
552 int parse_opt_approxidate_cb(const struct option *opt, const char *arg,
555 *(unsigned long *)(opt->value) = approxidate(arg);
559 int parse_opt_verbosity_cb(const struct option *opt, const char *arg,
562 int *target = opt->value;
565 /* --no-quiet, --no-verbose */
567 else if (opt->short_name == 'v') {
581 int parse_opt_with_commit(const struct option *opt, const char *arg, int unset)
583 unsigned char sha1[20];
584 struct commit *commit;
588 if (get_sha1(arg, sha1))
589 return error("malformed object name %s", arg);
590 commit = lookup_commit_reference(sha1);
592 return error("no such commit %s", arg);
593 commit_list_insert(commit, opt->value);
598 * This should really be OPTION_FILENAME type as a part of
599 * parse_options that take prefix to do this while parsing.
601 extern const char *parse_options_fix_filename(const char *prefix, const char *file)
603 if (!file || !prefix || is_absolute_path(file) || !strcmp("-", file))
605 return prefix_filename(prefix, strlen(prefix), file);