2 #include "parse-options.h"
8 static int opterror(const struct option *opt, const char *reason, int flags)
10 if (flags & OPT_SHORT)
11 return error("switch `%c' %s", opt->short_name, reason);
12 if (flags & OPT_UNSET)
13 return error("option `no-%s' %s", opt->long_name, reason);
14 return error("option `%s' %s", opt->long_name, reason);
17 static int get_arg(struct parse_opt_ctx_t *p, const struct option *opt,
18 int flags, const char **arg)
23 } else if (p->argc == 1 && (opt->flags & PARSE_OPT_LASTARG_DEFAULT)) {
24 *arg = (const char *)opt->defval;
25 } else if (p->argc > 1) {
29 return opterror(opt, "requires a value", flags);
33 static int get_value(struct parse_opt_ctx_t *p,
34 const struct option *opt, int flags)
37 const int unset = flags & OPT_UNSET;
40 return opterror(opt, "takes no value", flags);
41 if (unset && (opt->flags & PARSE_OPT_NONEG))
42 return opterror(opt, "isn't available", flags);
44 if (!(flags & OPT_SHORT) && p->opt) {
47 if (!(opt->flags & PARSE_OPT_NOARG))
54 return opterror(opt, "takes no value", flags);
63 *(int *)opt->value &= ~opt->defval;
65 *(int *)opt->value |= opt->defval;
69 *(int *)opt->value = unset ? 0 : *(int *)opt->value + 1;
73 *(int *)opt->value = unset ? 0 : opt->defval;
77 *(void **)opt->value = unset ? NULL : (void *)opt->defval;
82 *(const char **)opt->value = NULL;
83 else if (opt->flags & PARSE_OPT_OPTARG && !p->opt)
84 *(const char **)opt->value = (const char *)opt->defval;
86 return get_arg(p, opt, flags, (const char **)opt->value);
91 return (*opt->callback)(opt, NULL, 1) ? (-1) : 0;
92 if (opt->flags & PARSE_OPT_NOARG)
93 return (*opt->callback)(opt, NULL, 0) ? (-1) : 0;
94 if (opt->flags & PARSE_OPT_OPTARG && !p->opt)
95 return (*opt->callback)(opt, NULL, 0) ? (-1) : 0;
96 if (get_arg(p, opt, flags, &arg))
98 return (*opt->callback)(opt, arg, 0) ? (-1) : 0;
102 *(int *)opt->value = 0;
105 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) {
106 *(int *)opt->value = opt->defval;
109 if (get_arg(p, opt, flags, &arg))
111 *(int *)opt->value = strtol(arg, (char **)&s, 10);
113 return opterror(opt, "expects a numerical value", flags);
117 die("should not happen, someone must be hit on the forehead");
121 static int parse_short_opt(struct parse_opt_ctx_t *p, const struct option *options)
123 for (; options->type != OPTION_END; options++) {
124 if (options->short_name == *p->opt) {
125 p->opt = p->opt[1] ? p->opt + 1 : NULL;
126 return get_value(p, options, OPT_SHORT);
132 static int parse_long_opt(struct parse_opt_ctx_t *p, const char *arg,
133 const struct option *options)
135 const char *arg_end = strchr(arg, '=');
136 const struct option *abbrev_option = NULL, *ambiguous_option = NULL;
137 int abbrev_flags = 0, ambiguous_flags = 0;
140 arg_end = arg + strlen(arg);
142 for (; options->type != OPTION_END; options++) {
146 if (!options->long_name)
149 rest = skip_prefix(arg, options->long_name);
150 if (options->type == OPTION_ARGUMENT) {
154 return opterror(options, "takes no value", flags);
157 p->out[p->cpidx++] = arg - 2;
162 if (!strncmp(options->long_name, arg, arg_end - arg)) {
166 * If this is abbreviated, it is
167 * ambiguous. So when there is no
168 * exact match later, we need to
171 ambiguous_option = abbrev_option;
172 ambiguous_flags = abbrev_flags;
174 if (!(flags & OPT_UNSET) && *arg_end)
175 p->opt = arg_end + 1;
176 abbrev_option = options;
177 abbrev_flags = flags;
180 /* negated and abbreviated very much? */
181 if (!prefixcmp("no-", arg)) {
186 if (strncmp(arg, "no-", 3))
189 rest = skip_prefix(arg + 3, options->long_name);
190 /* abbreviated and negated? */
191 if (!rest && !prefixcmp(options->long_name, arg + 3))
201 return get_value(p, options, flags);
204 if (ambiguous_option)
205 return error("Ambiguous option: %s "
206 "(could be --%s%s or --%s%s)",
208 (ambiguous_flags & OPT_UNSET) ? "no-" : "",
209 ambiguous_option->long_name,
210 (abbrev_flags & OPT_UNSET) ? "no-" : "",
211 abbrev_option->long_name);
213 return get_value(p, abbrev_option, abbrev_flags);
217 static void check_typos(const char *arg, const struct option *options)
222 if (!prefixcmp(arg, "no-")) {
223 error ("did you mean `--%s` (with two dashes ?)", arg);
227 for (; options->type != OPTION_END; options++) {
228 if (!options->long_name)
230 if (!prefixcmp(options->long_name, arg)) {
231 error ("did you mean `--%s` (with two dashes ?)", arg);
237 void parse_options_start(struct parse_opt_ctx_t *ctx,
238 int argc, const char **argv, int flags)
240 memset(ctx, 0, sizeof(*ctx));
241 ctx->argc = argc - 1;
242 ctx->argv = argv + 1;
244 ctx->cpidx = ((flags & PARSE_OPT_KEEP_ARGV0) != 0);
246 if ((flags & PARSE_OPT_KEEP_UNKNOWN) &&
247 (flags & PARSE_OPT_STOP_AT_NON_OPTION))
248 die("STOP_AT_NON_OPTION and KEEP_UNKNOWN don't go together");
251 static int usage_with_options_internal(const char * const *,
252 const struct option *, int);
254 int parse_options_step(struct parse_opt_ctx_t *ctx,
255 const struct option *options,
256 const char * const usagestr[])
258 int internal_help = !(ctx->flags & PARSE_OPT_NO_INTERNAL_HELP);
260 /* we must reset ->opt, unknown short option leave it dangling */
263 for (; ctx->argc; ctx->argc--, ctx->argv++) {
264 const char *arg = ctx->argv[0];
266 if (*arg != '-' || !arg[1]) {
267 if (ctx->flags & PARSE_OPT_STOP_AT_NON_OPTION)
269 ctx->out[ctx->cpidx++] = ctx->argv[0];
275 if (internal_help && *ctx->opt == 'h')
276 return parse_options_usage(usagestr, options);
277 switch (parse_short_opt(ctx, options)) {
279 return parse_options_usage(usagestr, options);
284 check_typos(arg + 1, options);
286 if (internal_help && *ctx->opt == 'h')
287 return parse_options_usage(usagestr, options);
288 switch (parse_short_opt(ctx, options)) {
290 return parse_options_usage(usagestr, options);
292 /* fake a short option thing to hide the fact that we may have
293 * started to parse aggregated stuff
295 * This is leaky, too bad.
297 ctx->argv[0] = strdup(ctx->opt - 1);
298 *(char *)ctx->argv[0] = '-';
305 if (!arg[2]) { /* "--" */
306 if (!(ctx->flags & PARSE_OPT_KEEP_DASHDASH)) {
313 if (internal_help && !strcmp(arg + 2, "help-all"))
314 return usage_with_options_internal(usagestr, options, 1);
315 if (internal_help && !strcmp(arg + 2, "help"))
316 return parse_options_usage(usagestr, options);
317 switch (parse_long_opt(ctx, arg + 2, options)) {
319 return parse_options_usage(usagestr, options);
325 if (!(ctx->flags & PARSE_OPT_KEEP_UNKNOWN))
326 return PARSE_OPT_UNKNOWN;
327 ctx->out[ctx->cpidx++] = ctx->argv[0];
330 return PARSE_OPT_DONE;
333 int parse_options_end(struct parse_opt_ctx_t *ctx)
335 memmove(ctx->out + ctx->cpidx, ctx->argv, ctx->argc * sizeof(*ctx->out));
336 ctx->out[ctx->cpidx + ctx->argc] = NULL;
337 return ctx->cpidx + ctx->argc;
340 int parse_options(int argc, const char **argv, const struct option *options,
341 const char * const usagestr[], int flags)
343 struct parse_opt_ctx_t ctx;
345 parse_options_start(&ctx, argc, argv, flags);
346 switch (parse_options_step(&ctx, options, usagestr)) {
351 default: /* PARSE_OPT_UNKNOWN */
352 if (ctx.argv[0][1] == '-') {
353 error("unknown option `%s'", ctx.argv[0] + 2);
355 error("unknown switch `%c'", *ctx.opt);
357 usage_with_options(usagestr, options);
360 return parse_options_end(&ctx);
363 #define USAGE_OPTS_WIDTH 24
366 int usage_with_options_internal(const char * const *usagestr,
367 const struct option *opts, int full)
370 return PARSE_OPT_HELP;
372 fprintf(stderr, "usage: %s\n", *usagestr++);
373 while (*usagestr && **usagestr)
374 fprintf(stderr, " or: %s\n", *usagestr++);
376 fprintf(stderr, "%s%s\n",
377 **usagestr ? " " : "",
382 if (opts->type != OPTION_GROUP)
385 for (; opts->type != OPTION_END; opts++) {
389 if (opts->type == OPTION_GROUP) {
392 fprintf(stderr, "%s\n", opts->help);
395 if (!full && (opts->flags & PARSE_OPT_HIDDEN))
398 pos = fprintf(stderr, " ");
399 if (opts->short_name)
400 pos += fprintf(stderr, "-%c", opts->short_name);
401 if (opts->long_name && opts->short_name)
402 pos += fprintf(stderr, ", ");
404 pos += fprintf(stderr, "--%s", opts->long_name);
406 switch (opts->type) {
407 case OPTION_ARGUMENT:
410 if (opts->flags & PARSE_OPT_OPTARG)
412 pos += fprintf(stderr, "[=<n>]");
414 pos += fprintf(stderr, "[<n>]");
416 pos += fprintf(stderr, " <n>");
418 case OPTION_CALLBACK:
419 if (opts->flags & PARSE_OPT_NOARG)
424 if (opts->flags & PARSE_OPT_OPTARG)
426 pos += fprintf(stderr, "[=<%s>]", opts->argh);
428 pos += fprintf(stderr, "[<%s>]", opts->argh);
430 pos += fprintf(stderr, " <%s>", opts->argh);
432 if (opts->flags & PARSE_OPT_OPTARG)
434 pos += fprintf(stderr, "[=...]");
436 pos += fprintf(stderr, "[...]");
438 pos += fprintf(stderr, " ...");
441 default: /* OPTION_{BIT,BOOLEAN,SET_INT,SET_PTR} */
445 if (pos <= USAGE_OPTS_WIDTH)
446 pad = USAGE_OPTS_WIDTH - pos;
449 pad = USAGE_OPTS_WIDTH;
451 fprintf(stderr, "%*s%s\n", pad + USAGE_GAP, "", opts->help);
455 return PARSE_OPT_HELP;
458 void usage_with_options(const char * const *usagestr,
459 const struct option *opts)
461 usage_with_options_internal(usagestr, opts, 0);
465 int parse_options_usage(const char * const *usagestr,
466 const struct option *opts)
468 return usage_with_options_internal(usagestr, opts, 0);
472 int parse_opt_verbosity_cb(const struct option *opt, const char *arg,
475 int *target = opt->value;
478 /* --no-quiet, --no-verbose */
480 else if (opt->short_name == 'v') {