1 #ifndef PARSE_OPTIONS_H
2 #define PARSE_OPTIONS_H
9 * Refer to Documentation/technical/api-parse-options.adoc for the API doc.
19 /* options with no arguments */
25 /* options with arguments (usually) */
30 OPTION_LOWLEVEL_CALLBACK
,
34 enum parse_opt_flags
{
35 PARSE_OPT_KEEP_DASHDASH
= 1 << 0,
36 PARSE_OPT_STOP_AT_NON_OPTION
= 1 << 1,
37 PARSE_OPT_KEEP_ARGV0
= 1 << 2,
38 PARSE_OPT_KEEP_UNKNOWN_OPT
= 1 << 3,
39 PARSE_OPT_NO_INTERNAL_HELP
= 1 << 4,
40 PARSE_OPT_ONE_SHOT
= 1 << 5,
41 PARSE_OPT_SHELL_EVAL
= 1 << 6,
42 PARSE_OPT_SUBCOMMAND_OPTIONAL
= 1 << 7,
45 enum parse_opt_option_flags
{
46 PARSE_OPT_OPTARG
= 1 << 0,
47 PARSE_OPT_NOARG
= 1 << 1,
48 PARSE_OPT_NONEG
= 1 << 2,
49 PARSE_OPT_HIDDEN
= 1 << 3,
50 PARSE_OPT_LASTARG_DEFAULT
= 1 << 4,
51 PARSE_OPT_NODASH
= 1 << 5,
52 PARSE_OPT_LITERAL_ARGHELP
= 1 << 6,
53 PARSE_OPT_FROM_ALIAS
= 1 << 7,
54 PARSE_OPT_NOCOMPLETE
= 1 << 9,
55 PARSE_OPT_COMP_ARG
= 1 << 10,
56 PARSE_OPT_CMDMODE
= 1 << 11,
59 enum parse_opt_result
{
60 PARSE_OPT_COMPLETE
= -3,
62 PARSE_OPT_ERROR
= -1, /* must be the same as error() */
63 PARSE_OPT_DONE
= 0, /* fixed so that "return 0" works */
70 typedef int parse_opt_cb(const struct option
*, const char *arg
, int unset
);
72 struct parse_opt_ctx_t
;
73 typedef enum parse_opt_result
parse_opt_ll_cb(struct parse_opt_ctx_t
*ctx
,
74 const struct option
*opt
,
75 const char *arg
, int unset
);
77 typedef int parse_opt_subcommand_fn(int argc
, const char **argv
,
78 const char *prefix
, struct repository
*repo
);
82 * holds the type of the option, you must have an OPTION_END last in your
86 * the character to use as a short option name, '\0' if none.
89 * the long option (without the leading dashes) or subcommand name,
93 * stores pointers to the values to be filled.
96 * precision of the integer pointed to by `value` in number of bytes. Should
97 * typically be its `sizeof()`.
100 * token to explain the kind of argument this option wants. Does not
101 * begin in capital letter, and does not end with a full stop.
102 * Should be wrapped by N_() for translation.
103 * Is automatically enclosed in brackets when printed, unless it
104 * contains any of the following characters: ()<>[]|
105 * E.g. "name" is shown as "<name>" to indicate that a name value
106 * needs to be supplied, not the literal string "name", but
107 * "<start>,<end>" and "(this|that)" are printed verbatim.
110 * the short help associated to what the option does.
111 * Must never be NULL (except for OPTION_END and OPTION_SUBCOMMAND).
112 * OPTION_GROUP uses this pointer to store the group header.
113 * Should be wrapped by N_() for translation.
116 * mask of parse_opt_option_flags.
117 * PARSE_OPT_OPTARG: says that the argument is optional (not for BOOLEANs)
118 * PARSE_OPT_NOARG: says that this option does not take an argument
119 * PARSE_OPT_NONEG: says that this option cannot be negated
120 * PARSE_OPT_HIDDEN: this option is skipped in the default usage, and
121 * shown only in the full usage.
122 * PARSE_OPT_LASTARG_DEFAULT: says that this option will take the default
123 * value if no argument is given when the option
124 * is last on the command line. If the option is
125 * not last it will require an argument.
126 * Should not be used with PARSE_OPT_OPTARG.
127 * PARSE_OPT_NODASH: this option doesn't start with a dash; can only be a
128 * short option and can't accept arguments.
129 * PARSE_OPT_LITERAL_ARGHELP: says that argh shouldn't be enclosed in brackets
130 * (i.e. '<argh>') in the help message.
131 * Useful for options with multiple parameters.
132 * PARSE_OPT_NOCOMPLETE: by default all visible options are completable
133 * by git-completion.bash. This option suppresses that.
134 * PARSE_OPT_COMP_ARG: this option forces to git-completion.bash to
135 * complete an option as --name= not --name even if
136 * the option takes optional argument.
139 * pointer to the callback to use for OPTION_CALLBACK
142 * default value to fill (*->value) with for PARSE_OPT_OPTARG.
143 * OPTION_{BIT,SET_INT} store the {mask,integer} to put in the value when met.
144 * CALLBACKS can use it like they want.
147 * pointer to the callback to use for OPTION_LOWLEVEL_CALLBACK
150 * pointer to a function to use for OPTION_SUBCOMMAND.
151 * It will be put in value when the subcommand is given on the command line.
154 enum parse_opt_type type
;
156 const char *long_name
;
162 enum parse_opt_option_flags flags
;
163 parse_opt_cb
*callback
;
165 parse_opt_ll_cb
*ll_callback
;
167 parse_opt_subcommand_fn
*subcommand_fn
;
170 #define OPT_BIT_F(s, l, v, h, b, f) { \
171 .type = OPTION_BIT, \
175 .precision = sizeof(*v), \
177 .flags = PARSE_OPT_NOARG|(f), \
181 #define OPT_COUNTUP_F(s, l, v, h, f) { \
182 .type = OPTION_COUNTUP, \
186 .precision = sizeof(*v), \
188 .flags = PARSE_OPT_NOARG|(f), \
190 #define OPT_SET_INT_F(s, l, v, h, i, f) { \
191 .type = OPTION_SET_INT, \
195 .precision = sizeof(*v), \
197 .flags = PARSE_OPT_NOARG | (f), \
200 #define OPT_BOOL_F(s, l, v, h, f) OPT_SET_INT_F(s, l, v, h, 1, f)
201 #define OPT_CALLBACK_F(s, l, v, a, h, f, cb) { \
202 .type = OPTION_CALLBACK, \
211 #define OPT_STRING_F(s, l, v, a, h, f) { \
212 .type = OPTION_STRING, \
220 #define OPT_INTEGER_F(s, l, v, h, f) { \
221 .type = OPTION_INTEGER, \
224 .value = (v) + BARF_UNLESS_SIGNED(*(v)), \
225 .precision = sizeof(*v), \
231 #define OPT_END() { \
232 .type = OPTION_END, \
234 #define OPT_GROUP(h) { \
235 .type = OPTION_GROUP, \
238 #define OPT_BIT(s, l, v, h, b) OPT_BIT_F(s, l, v, h, b, 0)
239 #define OPT_BITOP(s, l, v, h, set, clear) { \
240 .type = OPTION_BITOP, \
244 .precision = sizeof(*v), \
246 .flags = PARSE_OPT_NOARG|PARSE_OPT_NONEG, \
250 #define OPT_NEGBIT(s, l, v, h, b) { \
251 .type = OPTION_NEGBIT, \
255 .precision = sizeof(*v), \
257 .flags = PARSE_OPT_NOARG, \
260 #define OPT_COUNTUP(s, l, v, h) OPT_COUNTUP_F(s, l, v, h, 0)
261 #define OPT_SET_INT(s, l, v, h, i) OPT_SET_INT_F(s, l, v, h, i, 0)
262 #define OPT_BOOL(s, l, v, h) OPT_BOOL_F(s, l, v, h, 0)
263 #define OPT_HIDDEN_BOOL(s, l, v, h) { \
264 .type = OPTION_SET_INT, \
268 .precision = sizeof(*v), \
270 .flags = PARSE_OPT_NOARG | PARSE_OPT_HIDDEN, \
273 #define OPT_CMDMODE_F(s, l, v, h, i, f) { \
274 .type = OPTION_SET_INT, \
278 .precision = sizeof(*v), \
280 .flags = PARSE_OPT_CMDMODE|PARSE_OPT_NOARG|PARSE_OPT_NONEG | (f), \
283 #define OPT_CMDMODE(s, l, v, h, i) OPT_CMDMODE_F(s, l, v, h, i, 0)
285 #define OPT_INTEGER(s, l, v, h) OPT_INTEGER_F(s, l, v, h, 0)
286 #define OPT_UNSIGNED(s, l, v, h) { \
287 .type = OPTION_UNSIGNED, \
290 .value = (v) + BARF_UNLESS_UNSIGNED(*(v)), \
291 .precision = sizeof(*v), \
294 .flags = PARSE_OPT_NONEG, \
296 #define OPT_STRING(s, l, v, a, h) OPT_STRING_F(s, l, v, a, h, 0)
297 #define OPT_STRING_LIST(s, l, v, a, h) { \
298 .type = OPTION_CALLBACK, \
304 .callback = &parse_opt_string_list, \
306 #define OPT_STRVEC(s, l, v, a, h) { \
307 .type = OPTION_CALLBACK, \
313 .callback = &parse_opt_strvec, \
315 #define OPT_UYN(s, l, v, h) { \
316 .type = OPTION_CALLBACK, \
321 .flags = PARSE_OPT_NOARG, \
322 .callback = &parse_opt_tertiary, \
324 #define OPT_EXPIRY_DATE(s, l, v, h) { \
325 .type = OPTION_CALLBACK, \
329 .argh = N_("expiry-date"), \
331 .callback = parse_opt_expiry_date_cb, \
333 #define OPT_CALLBACK(s, l, v, a, h, cb) OPT_CALLBACK_F(s, l, v, a, h, 0, cb)
334 #define OPT_NUMBER_CALLBACK(v, h, cb) { \
335 .type = OPTION_NUMBER, \
338 .flags = PARSE_OPT_NOARG | PARSE_OPT_NONEG, \
341 #define OPT_FILENAME(s, l, v, h) { \
342 .type = OPTION_FILENAME, \
346 .argh = N_("file"), \
349 #define OPT_COLOR_FLAG(s, l, v, h) { \
350 .type = OPTION_CALLBACK, \
354 .argh = N_("when"), \
356 .flags = PARSE_OPT_OPTARG, \
357 .callback = parse_opt_color_flag_cb, \
358 .defval = (intptr_t)"always", \
361 #define OPT_NOOP_NOARG(s, l) { \
362 .type = OPTION_CALLBACK, \
365 .help = N_("no-op (backward compatibility)"), \
366 .flags = PARSE_OPT_HIDDEN | PARSE_OPT_NOARG, \
367 .callback = parse_opt_noop_cb, \
370 static char *parse_options_noop_ignored_value MAYBE_UNUSED
;
371 #define OPT_NOOP_ARG(s, l) { \
372 .type = OPTION_CALLBACK, \
375 .value = &parse_options_noop_ignored_value, \
377 .help = N_("no-op (backward compatibility)"), \
378 .flags = PARSE_OPT_HIDDEN, \
379 .callback = parse_opt_noop_cb, \
382 #define OPT_ALIAS(s, l, source_long_name) { \
383 .type = OPTION_ALIAS, \
386 .value = (char *)(source_long_name), \
389 #define OPT_SUBCOMMAND_F(l, v, fn, f) { \
390 .type = OPTION_SUBCOMMAND, \
394 .subcommand_fn = (fn), \
396 #define OPT_SUBCOMMAND(l, v, fn) OPT_SUBCOMMAND_F((l), (v), (fn), 0)
399 * parse_options() will filter out the processed options and leave the
400 * non-option arguments in argv[]. argv0 is assumed program name and
403 * usagestr strings should be marked for translation with N_().
405 * Returns the number of arguments left in argv[].
407 * In one-shot mode, argv0 is not a program name, argv[] is left
408 * untouched and parse_options() returns the number of options
411 int parse_options(int argc
, const char **argv
, const char *prefix
,
412 const struct option
*options
,
413 const char * const usagestr
[],
414 enum parse_opt_flags flags
);
416 NORETURN
void usage_with_options(const char * const *usagestr
,
417 const struct option
*options
);
419 void show_usage_with_options_if_asked(int ac
, const char **av
,
420 const char * const *usage
,
421 const struct option
*options
);
423 NORETURN
void usage_msg_opt(const char *msg
,
424 const char * const *usagestr
,
425 const struct option
*options
);
428 * usage_msg_optf() is like usage_msg_opt() except that the first
429 * argument is a format string, and optional format arguments follow
430 * after the 3rd option.
432 __attribute__((format (printf
,1,4)))
433 void NORETURN
usage_msg_optf(const char *fmt
,
434 const char * const *usagestr
,
435 const struct option
*options
, ...);
437 void die_for_incompatible_opt4(int opt1
, const char *opt1_name
,
438 int opt2
, const char *opt2_name
,
439 int opt3
, const char *opt3_name
,
440 int opt4
, const char *opt4_name
);
443 static inline void die_for_incompatible_opt3(int opt1
, const char *opt1_name
,
444 int opt2
, const char *opt2_name
,
445 int opt3
, const char *opt3_name
)
447 die_for_incompatible_opt4(opt1
, opt1_name
,
453 static inline void die_for_incompatible_opt2(int opt1
, const char *opt1_name
,
454 int opt2
, const char *opt2_name
)
456 die_for_incompatible_opt4(opt1
, opt1_name
,
463 * Use these assertions for callbacks that expect to be called with NONEG and
464 * NOARG respectively, and do not otherwise handle the "unset" and "arg"
467 #define BUG_ON_OPT_NEG(unset) do { \
469 BUG("option callback does not expect negation"); \
471 #define BUG_ON_OPT_ARG(arg) do { \
473 BUG("option callback does not expect an argument"); \
477 * Similar to the assertions above, but checks that "arg" is always non-NULL.
478 * This assertion also implies BUG_ON_OPT_NEG(), letting you declare both
479 * assertions in a single line.
481 #define BUG_ON_OPT_NEG_NOARG(unset, arg) do { \
482 BUG_ON_OPT_NEG(unset); \
484 BUG("option callback expects an argument"); \
487 /*----- incremental advanced APIs -----*/
489 struct parse_opt_cmdmode_list
;
492 * It's okay for the caller to consume argv/argc in the usual way.
493 * Other fields of that structure are private to parse-options and should not
494 * be modified in any way.
496 struct parse_opt_ctx_t
{
499 int argc
, cpidx
, total
;
501 enum parse_opt_flags flags
;
502 unsigned has_subcommands
;
504 const char **alias_groups
; /* must be in groups of 3 elements! */
505 struct parse_opt_cmdmode_list
*cmdmode_list
;
508 void parse_options_start(struct parse_opt_ctx_t
*ctx
,
509 int argc
, const char **argv
, const char *prefix
,
510 const struct option
*options
,
511 enum parse_opt_flags flags
);
513 enum parse_opt_result
parse_options_step(struct parse_opt_ctx_t
*ctx
,
514 const struct option
*options
,
515 const char * const usagestr
[]);
517 int parse_options_end(struct parse_opt_ctx_t
*ctx
);
519 struct option
*parse_options_dup(const struct option
*a
);
520 struct option
*parse_options_concat(const struct option
*a
, const struct option
*b
);
522 /*----- some often used options -----*/
523 int parse_opt_abbrev_cb(const struct option
*, const char *, int);
524 int parse_opt_expiry_date_cb(const struct option
*, const char *, int);
525 int parse_opt_color_flag_cb(const struct option
*, const char *, int);
526 int parse_opt_verbosity_cb(const struct option
*, const char *, int);
527 /* value is struct oid_array* */
528 int parse_opt_object_name(const struct option
*, const char *, int);
529 /* value is struct object_id* */
530 int parse_opt_object_id(const struct option
*, const char *, int);
531 int parse_opt_commits(const struct option
*, const char *, int);
532 int parse_opt_commit(const struct option
*, const char *, int);
533 int parse_opt_tertiary(const struct option
*, const char *, int);
534 int parse_opt_string_list(const struct option
*, const char *, int);
535 int parse_opt_strvec(const struct option
*, const char *, int);
536 int parse_opt_noop_cb(const struct option
*, const char *, int);
537 int parse_opt_passthru(const struct option
*, const char *, int);
538 int parse_opt_passthru_argv(const struct option
*, const char *, int);
539 /* value is enum branch_track* */
540 int parse_opt_tracking_mode(const struct option
*, const char *, int);
542 #define OPT__VERBOSE(var, h) OPT_COUNTUP('v', "verbose", (var), (h))
543 #define OPT__QUIET(var, h) OPT_COUNTUP('q', "quiet", (var), (h))
544 #define OPT__VERBOSITY(var) { \
545 .type = OPTION_CALLBACK, \
547 .long_name = "verbose", \
549 .help = N_("be more verbose"), \
550 .flags = PARSE_OPT_NOARG, \
551 .callback = &parse_opt_verbosity_cb, \
553 .type = OPTION_CALLBACK, \
555 .long_name = "quiet", \
557 .help = N_("be more quiet"), \
558 .flags = PARSE_OPT_NOARG, \
559 .callback = &parse_opt_verbosity_cb, \
561 #define OPT__DRY_RUN(var, h) OPT_BOOL('n', "dry-run", (var), (h))
562 #define OPT__FORCE(var, h, f) OPT_COUNTUP_F('f', "force", (var), (h), (f))
563 #define OPT__ABBREV(var) { \
564 .type = OPTION_CALLBACK, \
565 .long_name = "abbrev", \
568 .help = N_("use <n> digits to display object names"), \
569 .flags = PARSE_OPT_OPTARG, \
570 .callback = &parse_opt_abbrev_cb, \
572 #define OPT__SUPER_PREFIX(var) \
573 OPT_STRING_F(0, "super-prefix", (var), N_("prefix"), \
574 N_("prefixed path to initial superproject"), PARSE_OPT_HIDDEN)
576 #define OPT__COLOR(var, h) \
577 OPT_COLOR_FLAG(0, "color", (var), (h))
578 #define OPT_COLUMN(s, l, v, h) { \
579 .type = OPTION_CALLBACK, \
583 .argh = N_("style"), \
585 .flags = PARSE_OPT_OPTARG, \
586 .callback = parseopt_column_callback, \
588 #define OPT_PASSTHRU(s, l, v, a, h, f) { \
589 .type = OPTION_CALLBACK, \
596 .callback = parse_opt_passthru, \
598 #define OPT_PASSTHRU_ARGV(s, l, v, a, h, f) { \
599 .type = OPTION_CALLBACK, \
606 .callback = parse_opt_passthru_argv, \
608 #define _OPT_CONTAINS_OR_WITH(l, v, h, f) { \
609 .type = OPTION_CALLBACK, \
612 .argh = N_("commit"), \
614 .flags = PARSE_OPT_LASTARG_DEFAULT | (f), \
615 .callback = parse_opt_commits, \
616 .defval = (intptr_t) "HEAD", \
618 #define OPT_CONTAINS(v, h) _OPT_CONTAINS_OR_WITH("contains", v, h, PARSE_OPT_NONEG)
619 #define OPT_NO_CONTAINS(v, h) _OPT_CONTAINS_OR_WITH("no-contains", v, h, PARSE_OPT_NONEG)
620 #define OPT_WITH(v, h) _OPT_CONTAINS_OR_WITH("with", v, h, PARSE_OPT_HIDDEN | PARSE_OPT_NONEG)
621 #define OPT_WITHOUT(v, h) _OPT_CONTAINS_OR_WITH("without", v, h, PARSE_OPT_HIDDEN | PARSE_OPT_NONEG)
622 #define OPT_CLEANUP(v) OPT_STRING(0, "cleanup", v, N_("mode"), N_("how to strip spaces and #comments from message"))
623 #define OPT_PATHSPEC_FROM_FILE(v) OPT_FILENAME(0, "pathspec-from-file", v, N_("read pathspec from file"))
624 #define OPT_PATHSPEC_FILE_NUL(v) OPT_BOOL(0, "pathspec-file-nul", v, N_("with --pathspec-from-file, pathspec elements are separated with NUL character"))
625 #define OPT_AUTOSTASH(v) OPT_BOOL(0, "autostash", v, N_("automatically stash/stash pop before and after"))
627 #define OPT_IPVERSION(v) \
628 OPT_SET_INT_F('4', "ipv4", (v), N_("use IPv4 addresses only"), \
629 TRANSPORT_FAMILY_IPV4, PARSE_OPT_NONEG), \
630 OPT_SET_INT_F('6', "ipv6", (v), N_("use IPv6 addresses only"), \
631 TRANSPORT_FAMILY_IPV6, PARSE_OPT_NONEG)