blob: bd62e20268d01d0e9d7afbcb300c440bb3adaa9f [file] [log] [blame]
Pierre Habouzit4a59fd12007-10-15 01:35:37 +02001#ifndef PARSE_OPTIONS_H
2#define PARSE_OPTIONS_H
3
Elijah Newrenf394e092023-03-21 06:25:54 +00004#include "gettext.h"
5
Heba Waly7db03052019-11-17 21:04:54 +00006/**
7 * Refer to Documentation/technical/api-parse-options.txt for the API doc.
8 */
9
Pierre Habouzit4a59fd12007-10-15 01:35:37 +020010enum parse_opt_type {
Pierre Habouzitdb7244b2007-11-07 11:20:27 +010011 /* special types */
Pierre Habouzit4a59fd12007-10-15 01:35:37 +020012 OPTION_END,
Pierre Habouzitd7a38c52007-10-15 01:38:30 +020013 OPTION_GROUP,
René Scharfee0319ff2009-05-07 21:45:08 +020014 OPTION_NUMBER,
Nguyễn Thái Ngọc Duy5c387422019-04-29 17:05:25 +070015 OPTION_ALIAS,
SZEDER Gáborfa83cc82022-08-19 18:04:00 +020016 OPTION_SUBCOMMAND,
Pierre Habouzitdb7244b2007-11-07 11:20:27 +010017 /* options with no arguments */
18 OPTION_BIT,
René Scharfe2f4b97f2009-05-07 21:44:17 +020019 OPTION_NEGBIT,
Nguyễn Thái Ngọc Duyf62470c2019-01-27 07:35:25 +070020 OPTION_BITOP,
Junio C Hamanob04ba2b2011-09-27 16:56:49 -070021 OPTION_COUNTUP,
Pierre Habouzitdb7244b2007-11-07 11:20:27 +010022 OPTION_SET_INT,
Pierre Habouzitdb7244b2007-11-07 11:20:27 +010023 /* options with arguments (usually) */
Pierre Habouzit4a59fd12007-10-15 01:35:37 +020024 OPTION_STRING,
25 OPTION_INTEGER,
Charles Bailey2a514ed2015-06-21 19:25:44 +010026 OPTION_MAGNITUDE,
Pierre Habouzitffe659f2007-10-15 01:45:45 +020027 OPTION_CALLBACK,
Jonathan Niederb0b3a8b2010-12-01 17:32:16 -060028 OPTION_LOWLEVEL_CALLBACK,
Stephen Boyddf217ed2009-05-23 11:53:13 -070029 OPTION_FILENAME
Pierre Habouzit4a59fd12007-10-15 01:35:37 +020030};
31
32enum parse_opt_flags {
Andrzej Hunt0171dbc2021-03-21 16:58:35 +000033 PARSE_OPT_KEEP_DASHDASH = 1 << 0,
34 PARSE_OPT_STOP_AT_NON_OPTION = 1 << 1,
35 PARSE_OPT_KEEP_ARGV0 = 1 << 2,
SZEDER Gábor99d86d62022-08-19 18:03:57 +020036 PARSE_OPT_KEEP_UNKNOWN_OPT = 1 << 3,
Andrzej Hunt0171dbc2021-03-21 16:58:35 +000037 PARSE_OPT_NO_INTERNAL_HELP = 1 << 4,
38 PARSE_OPT_ONE_SHOT = 1 << 5,
Ævar Arnfjörð Bjarmason3b723f72021-09-28 15:14:22 +020039 PARSE_OPT_SHELL_EVAL = 1 << 6,
SZEDER Gáborfa83cc82022-08-19 18:04:00 +020040 PARSE_OPT_SUBCOMMAND_OPTIONAL = 1 << 7,
Pierre Habouzit4a59fd12007-10-15 01:35:37 +020041};
42
Pierre Habouzitffe659f2007-10-15 01:45:45 +020043enum parse_opt_option_flags {
Andrzej Hunt0171dbc2021-03-21 16:58:35 +000044 PARSE_OPT_OPTARG = 1 << 0,
45 PARSE_OPT_NOARG = 1 << 1,
46 PARSE_OPT_NONEG = 1 << 2,
47 PARSE_OPT_HIDDEN = 1 << 3,
48 PARSE_OPT_LASTARG_DEFAULT = 1 << 4,
49 PARSE_OPT_NODASH = 1 << 5,
50 PARSE_OPT_LITERAL_ARGHELP = 1 << 6,
Andrzej Hunt64cc5392021-03-21 16:58:36 +000051 PARSE_OPT_FROM_ALIAS = 1 << 7,
Andrzej Hunt0171dbc2021-03-21 16:58:35 +000052 PARSE_OPT_NOCOMPLETE = 1 << 9,
53 PARSE_OPT_COMP_ARG = 1 << 10,
54 PARSE_OPT_CMDMODE = 1 << 11,
Pierre Habouzitffe659f2007-10-15 01:45:45 +020055};
56
René Scharfe19800bd2019-08-20 20:49:07 +020057enum parse_opt_result {
58 PARSE_OPT_COMPLETE = -3,
59 PARSE_OPT_HELP = -2,
60 PARSE_OPT_ERROR = -1, /* must be the same as error() */
61 PARSE_OPT_DONE = 0, /* fixed so that "return 0" works */
62 PARSE_OPT_NON_OPTION,
SZEDER Gáborfa83cc82022-08-19 18:04:00 +020063 PARSE_OPT_SUBCOMMAND,
René Scharfe19800bd2019-08-20 20:49:07 +020064 PARSE_OPT_UNKNOWN
65};
66
Pierre Habouzitffe659f2007-10-15 01:45:45 +020067struct option;
68typedef int parse_opt_cb(const struct option *, const char *arg, int unset);
69
Jonathan Niederb0b3a8b2010-12-01 17:32:16 -060070struct parse_opt_ctx_t;
Nguyễn Thái Ngọc Duyf41179f2019-01-27 07:35:27 +070071typedef enum parse_opt_result parse_opt_ll_cb(struct parse_opt_ctx_t *ctx,
Nguyễn Thái Ngọc Duy3ebbe282019-01-27 07:35:28 +070072 const struct option *opt,
73 const char *arg, int unset);
Jonathan Niederb0b3a8b2010-12-01 17:32:16 -060074
SZEDER Gáborfa83cc82022-08-19 18:04:00 +020075typedef int parse_opt_subcommand_fn(int argc, const char **argv,
76 const char *prefix);
77
Pierre Habouzit9b3beb52007-11-05 13:03:22 +010078/*
79 * `type`::
80 * holds the type of the option, you must have an OPTION_END last in your
81 * array.
82 *
83 * `short_name`::
84 * the character to use as a short option name, '\0' if none.
85 *
86 * `long_name`::
SZEDER Gáborfa83cc82022-08-19 18:04:00 +020087 * the long option (without the leading dashes) or subcommand name,
88 * NULL if none.
Pierre Habouzit9b3beb52007-11-05 13:03:22 +010089 *
90 * `value`::
91 * stores pointers to the values to be filled.
92 *
93 * `argh`::
Junio C Hamano4ca79942021-01-06 14:44:02 +000094 * token to explain the kind of argument this option wants. Does not
95 * begin in capital letter, and does not end with a full stop.
96 * Should be wrapped by N_() for translation.
René Scharfe518e15d2022-01-20 11:30:15 +010097 * Is automatically enclosed in brackets when printed, unless it
98 * contains any of the following characters: ()<>[]|
99 * E.g. "name" is shown as "<name>" to indicate that a name value
100 * needs to be supplied, not the literal string "name", but
101 * "<start>,<end>" and "(this|that)" are printed verbatim.
Pierre Habouzit9b3beb52007-11-05 13:03:22 +0100102 *
103 * `help`::
104 * the short help associated to what the option does.
SZEDER Gáborfa83cc82022-08-19 18:04:00 +0200105 * Must never be NULL (except for OPTION_END and OPTION_SUBCOMMAND).
Pierre Habouzit9b3beb52007-11-05 13:03:22 +0100106 * OPTION_GROUP uses this pointer to store the group header.
Nguyễn Thái Ngọc Duy54e6dc72012-05-06 21:23:51 +0700107 * Should be wrapped by N_() for translation.
Pierre Habouzit9b3beb52007-11-05 13:03:22 +0100108 *
109 * `flags`::
110 * mask of parse_opt_option_flags.
Mike Ralphson3ea3c212009-04-17 19:13:30 +0100111 * PARSE_OPT_OPTARG: says that the argument is optional (not for BOOLEANs)
Jonathan Niederef45e4d2010-08-22 21:56:38 +0530112 * PARSE_OPT_NOARG: says that this option does not take an argument
Pierre Habouzitdb7244b2007-11-07 11:20:27 +0100113 * PARSE_OPT_NONEG: says that this option cannot be negated
René Scharfe51a99492009-05-07 21:45:42 +0200114 * PARSE_OPT_HIDDEN: this option is skipped in the default usage, and
115 * shown only in the full usage.
Stephen Boyde169b972009-06-07 16:39:15 -0700116 * PARSE_OPT_LASTARG_DEFAULT: says that this option will take the default
117 * value if no argument is given when the option
118 * is last on the command line. If the option is
119 * not last it will require an argument.
120 * Should not be used with PARSE_OPT_OPTARG.
SZEDER Gábora9126b92022-08-19 18:03:58 +0200121 * PARSE_OPT_NODASH: this option doesn't start with a dash; can only be a
122 * short option and can't accept arguments.
Stephen Boyd29f25d42009-05-21 00:33:17 -0700123 * PARSE_OPT_LITERAL_ARGHELP: says that argh shouldn't be enclosed in brackets
124 * (i.e. '<argh>') in the help message.
125 * Useful for options with multiple parameters.
Nguyễn Thái Ngọc Duyb9d7f4b2018-02-09 18:01:40 +0700126 * PARSE_OPT_NOCOMPLETE: by default all visible options are completable
127 * by git-completion.bash. This option suppresses that.
Nguyễn Thái Ngọc Duyebc4a042018-02-09 18:02:12 +0700128 * PARSE_OPT_COMP_ARG: this option forces to git-completion.bash to
129 * complete an option as --name= not --name even if
130 * the option takes optional argument.
Pierre Habouzit9b3beb52007-11-05 13:03:22 +0100131 *
132 * `callback`::
Nguyễn Thái Ngọc Duybf3ff332019-01-27 07:35:26 +0700133 * pointer to the callback to use for OPTION_CALLBACK
Pierre Habouzit9b3beb52007-11-05 13:03:22 +0100134 *
135 * `defval`::
136 * default value to fill (*->value) with for PARSE_OPT_OPTARG.
Ivan Ukhovd3c08112015-03-29 10:32:55 +0200137 * OPTION_{BIT,SET_INT} store the {mask,integer} to put in the value when met.
Pierre Habouzit9b3beb52007-11-05 13:03:22 +0100138 * CALLBACKS can use it like they want.
Nguyễn Thái Ngọc Duybf3ff332019-01-27 07:35:26 +0700139 *
140 * `ll_callback`::
141 * pointer to the callback to use for OPTION_LOWLEVEL_CALLBACK
142 *
SZEDER Gáborfa83cc82022-08-19 18:04:00 +0200143 * `subcommand_fn`::
144 * pointer to a function to use for OPTION_SUBCOMMAND.
145 * It will be put in value when the subcommand is given on the command line.
Pierre Habouzit9b3beb52007-11-05 13:03:22 +0100146 */
Pierre Habouzit4a59fd12007-10-15 01:35:37 +0200147struct option {
148 enum parse_opt_type type;
149 int short_name;
150 const char *long_name;
151 void *value;
Pierre Habouzitd7a38c52007-10-15 01:38:30 +0200152 const char *argh;
153 const char *help;
Pierre Habouzitffe659f2007-10-15 01:45:45 +0200154
Ævar Arnfjörð Bjarmason7bf7f0b2021-10-08 21:07:41 +0200155 enum parse_opt_option_flags flags;
Pierre Habouzitffe659f2007-10-15 01:45:45 +0200156 parse_opt_cb *callback;
Pierre Habouzitffe659f2007-10-15 01:45:45 +0200157 intptr_t defval;
Nguyễn Thái Ngọc Duybf3ff332019-01-27 07:35:26 +0700158 parse_opt_ll_cb *ll_callback;
Nguyễn Thái Ngọc Duyf62470c2019-01-27 07:35:25 +0700159 intptr_t extra;
SZEDER Gáborfa83cc82022-08-19 18:04:00 +0200160 parse_opt_subcommand_fn *subcommand_fn;
Pierre Habouzit4a59fd12007-10-15 01:35:37 +0200161};
162
SZEDER Gábor353e6d42023-03-19 17:56:48 +0100163#define OPT_BIT_F(s, l, v, h, b, f) { \
164 .type = OPTION_BIT, \
165 .short_name = (s), \
166 .long_name = (l), \
167 .value = (v), \
168 .help = (h), \
169 .flags = PARSE_OPT_NOARG|(f), \
170 .callback = NULL, \
171 .defval = (b), \
172}
173#define OPT_COUNTUP_F(s, l, v, h, f) { \
174 .type = OPTION_COUNTUP, \
175 .short_name = (s), \
176 .long_name = (l), \
177 .value = (v), \
178 .help = (h), \
179 .flags = PARSE_OPT_NOARG|(f), \
180}
181#define OPT_SET_INT_F(s, l, v, h, i, f) { \
182 .type = OPTION_SET_INT, \
183 .short_name = (s), \
184 .long_name = (l), \
185 .value = (v), \
186 .help = (h), \
187 .flags = PARSE_OPT_NOARG | (f), \
188 .defval = (i), \
189}
Nguyễn Thái Ngọc Duy2de37342018-02-09 18:01:41 +0700190#define OPT_BOOL_F(s, l, v, h, f) OPT_SET_INT_F(s, l, v, h, 1, f)
SZEDER Gábor353e6d42023-03-19 17:56:48 +0100191#define OPT_CALLBACK_F(s, l, v, a, h, f, cb) { \
192 .type = OPTION_CALLBACK, \
193 .short_name = (s), \
194 .long_name = (l), \
195 .value = (v), \
196 .argh = (a), \
197 .help = (h), \
198 .flags = (f), \
199 .callback = (cb), \
200}
201#define OPT_STRING_F(s, l, v, a, h, f) { \
202 .type = OPTION_STRING, \
203 .short_name = (s), \
204 .long_name = (l), \
205 .value = (v), \
206 .argh = (a), \
207 .help = (h), \
208 .flags = (f), \
209}
210#define OPT_INTEGER_F(s, l, v, h, f) { \
211 .type = OPTION_INTEGER, \
212 .short_name = (s), \
213 .long_name = (l), \
214 .value = (v), \
215 .argh = N_("n"), \
216 .help = (h), \
217 .flags = (f), \
218}
Nguyễn Thái Ngọc Duy2de37342018-02-09 18:01:41 +0700219
SZEDER Gábor353e6d42023-03-19 17:56:48 +0100220#define OPT_END() { \
221 .type = OPTION_END, \
222}
223#define OPT_GROUP(h) { \
224 .type = OPTION_GROUP, \
225 .help = (h), \
226}
Nguyễn Thái Ngọc Duy2de37342018-02-09 18:01:41 +0700227#define OPT_BIT(s, l, v, h, b) OPT_BIT_F(s, l, v, h, b, 0)
SZEDER Gábor353e6d42023-03-19 17:56:48 +0100228#define OPT_BITOP(s, l, v, h, set, clear) { \
229 .type = OPTION_BITOP, \
230 .short_name = (s), \
231 .long_name = (l), \
232 .value = (v), \
233 .help = (h), \
234 .flags = PARSE_OPT_NOARG|PARSE_OPT_NONEG, \
235 .defval = (set), \
236 .extra = (clear), \
237}
238#define OPT_NEGBIT(s, l, v, h, b) { \
239 .type = OPTION_NEGBIT, \
240 .short_name = (s), \
241 .long_name = (l), \
242 .value = (v), \
243 .help = (h), \
244 .flags = PARSE_OPT_NOARG, \
245 .defval = (b), \
246}
Nguyễn Thái Ngọc Duy2de37342018-02-09 18:01:41 +0700247#define OPT_COUNTUP(s, l, v, h) OPT_COUNTUP_F(s, l, v, h, 0)
248#define OPT_SET_INT(s, l, v, h, i) OPT_SET_INT_F(s, l, v, h, i, 0)
249#define OPT_BOOL(s, l, v, h) OPT_BOOL_F(s, l, v, h, 0)
SZEDER Gábor353e6d42023-03-19 17:56:48 +0100250#define OPT_HIDDEN_BOOL(s, l, v, h) { \
251 .type = OPTION_SET_INT, \
252 .short_name = (s), \
253 .long_name = (l), \
254 .value = (v), \
255 .help = (h), \
256 .flags = PARSE_OPT_NOARG | PARSE_OPT_HIDDEN, \
257 .defval = 1, \
258}
259#define OPT_CMDMODE_F(s, l, v, h, i, f) { \
260 .type = OPTION_SET_INT, \
261 .short_name = (s), \
262 .long_name = (l), \
263 .value = (v), \
264 .help = (h), \
265 .flags = PARSE_OPT_CMDMODE|PARSE_OPT_NOARG|PARSE_OPT_NONEG | (f), \
266 .defval = (i), \
267}
Ævar Arnfjörð Bjarmasond35d03c2021-09-22 00:40:36 +0200268#define OPT_CMDMODE(s, l, v, h, i) OPT_CMDMODE_F(s, l, v, h, i, 0)
269
Nguyễn Thái Ngọc Duy16ed6c92019-03-24 15:20:08 +0700270#define OPT_INTEGER(s, l, v, h) OPT_INTEGER_F(s, l, v, h, 0)
SZEDER Gábor353e6d42023-03-19 17:56:48 +0100271#define OPT_MAGNITUDE(s, l, v, h) { \
272 .type = OPTION_MAGNITUDE, \
273 .short_name = (s), \
274 .long_name = (l), \
275 .value = (v), \
276 .argh = N_("n"), \
277 .help = (h), \
278 .flags = PARSE_OPT_NONEG, \
279}
Nguyễn Thái Ngọc Duy31fba9d2019-03-24 15:20:05 +0700280#define OPT_STRING(s, l, v, a, h) OPT_STRING_F(s, l, v, a, h, 0)
SZEDER Gábor353e6d42023-03-19 17:56:48 +0100281#define OPT_STRING_LIST(s, l, v, a, h) { \
282 .type = OPTION_CALLBACK, \
283 .short_name = (s), \
284 .long_name = (l), \
285 .value = (v), \
286 .argh = (a), \
287 .help = (h), \
288 .callback = &parse_opt_string_list, \
289}
Phillip Woodfb60b9f2023-04-10 10:08:28 +0100290#define OPT_STRVEC(s, l, v, a, h) { \
291 .type = OPTION_CALLBACK, \
292 .short_name = (s), \
293 .long_name = (l), \
294 .value = (v), \
295 .argh = (a), \
296 .help = (h), \
297 .callback = &parse_opt_strvec, \
298}
SZEDER Gábor353e6d42023-03-19 17:56:48 +0100299#define OPT_UYN(s, l, v, h) { \
300 .type = OPTION_CALLBACK, \
301 .short_name = (s), \
302 .long_name = (l), \
303 .value = (v), \
304 .help = (h), \
305 .flags = PARSE_OPT_NOARG, \
306 .callback = &parse_opt_tertiary, \
307}
308#define OPT_EXPIRY_DATE(s, l, v, h) { \
309 .type = OPTION_CALLBACK, \
310 .short_name = (s), \
311 .long_name = (l), \
312 .value = (v), \
313 .argh = N_("expiry-date"), \
314 .help = (h), \
315 .callback = parse_opt_expiry_date_cb, \
316}
SZEDER Gáborab0845b2023-03-19 17:56:46 +0100317#define OPT_CALLBACK(s, l, v, a, h, cb) OPT_CALLBACK_F(s, l, v, a, h, 0, cb)
SZEDER Gábor353e6d42023-03-19 17:56:48 +0100318#define OPT_NUMBER_CALLBACK(v, h, cb) { \
319 .type = OPTION_NUMBER, \
320 .value = (v), \
321 .help = (h), \
322 .flags = PARSE_OPT_NOARG | PARSE_OPT_NONEG, \
323 .callback = (cb), \
324}
325#define OPT_FILENAME(s, l, v, h) { \
326 .type = OPTION_FILENAME, \
327 .short_name = (s), \
328 .long_name = (l), \
329 .value = (v), \
330 .argh = N_("file"), \
331 .help = (h), \
332}
333#define OPT_COLOR_FLAG(s, l, v, h) { \
334 .type = OPTION_CALLBACK, \
335 .short_name = (s), \
336 .long_name = (l), \
337 .value = (v), \
338 .argh = N_("when"), \
339 .help = (h), \
340 .flags = PARSE_OPT_OPTARG, \
341 .callback = parse_opt_color_flag_cb, \
342 .defval = (intptr_t)"always", \
343}
Mark Lodato73e9da02010-02-16 23:55:58 -0500344
SZEDER Gábor353e6d42023-03-19 17:56:48 +0100345#define OPT_NOOP_NOARG(s, l) { \
346 .type = OPTION_CALLBACK, \
347 .short_name = (s), \
348 .long_name = (l), \
349 .help = N_("no-op (backward compatibility)"), \
350 .flags = PARSE_OPT_HIDDEN | PARSE_OPT_NOARG, \
351 .callback = parse_opt_noop_cb, \
352}
René Scharfe6acec032011-09-28 19:44:30 +0200353
SZEDER Gábor353e6d42023-03-19 17:56:48 +0100354#define OPT_ALIAS(s, l, source_long_name) { \
355 .type = OPTION_ALIAS, \
356 .short_name = (s), \
357 .long_name = (l), \
358 .value = (source_long_name), \
359}
Nguyễn Thái Ngọc Duy5c387422019-04-29 17:05:25 +0700360
SZEDER Gáborfa83cc82022-08-19 18:04:00 +0200361#define OPT_SUBCOMMAND_F(l, v, fn, f) { \
362 .type = OPTION_SUBCOMMAND, \
363 .long_name = (l), \
364 .value = (v), \
365 .flags = (f), \
SZEDER Gábor353e6d42023-03-19 17:56:48 +0100366 .subcommand_fn = (fn), \
367}
SZEDER Gáborfa83cc82022-08-19 18:04:00 +0200368#define OPT_SUBCOMMAND(l, v, fn) OPT_SUBCOMMAND_F((l), (v), (fn), 0)
369
Nguyễn Thái Ngọc Duy202fbb32019-01-27 07:35:23 +0700370/*
371 * parse_options() will filter out the processed options and leave the
372 * non-option arguments in argv[]. argv0 is assumed program name and
373 * skipped.
374 *
375 * usagestr strings should be marked for translation with N_().
376 *
Pierre Habouzit4a59fd12007-10-15 01:35:37 +0200377 * Returns the number of arguments left in argv[].
Nguyễn Thái Ngọc Duy202fbb32019-01-27 07:35:23 +0700378 *
379 * In one-shot mode, argv0 is not a program name, argv[] is left
380 * untouched and parse_options() returns the number of options
381 * processed.
Pierre Habouzit4a59fd12007-10-15 01:35:37 +0200382 */
Ævar Arnfjörð Bjarmason06a199f2021-11-09 12:04:43 +0100383int parse_options(int argc, const char **argv, const char *prefix,
384 const struct option *options,
385 const char * const usagestr[],
386 enum parse_opt_flags flags);
Pierre Habouzitd7a38c52007-10-15 01:38:30 +0200387
Nguyễn Thái Ngọc Duy1987b0b2019-01-17 20:05:00 +0700388NORETURN void usage_with_options(const char * const *usagestr,
389 const struct option *options);
Pierre Habouzit4a59fd12007-10-15 01:35:37 +0200390
Nguyễn Thái Ngọc Duy1987b0b2019-01-17 20:05:00 +0700391NORETURN void usage_msg_opt(const char *msg,
392 const char * const *usagestr,
393 const struct option *options);
Christian Couder451bb212009-02-02 06:12:58 +0100394
Ævar Arnfjörð Bjarmasonfa476be2021-12-28 14:28:43 +0100395/**
396 * usage_msg_optf() is like usage_msg_opt() except that the first
397 * argument is a format string, and optional format arguments follow
398 * after the 3rd option.
399 */
400__attribute__((format (printf,1,4)))
401void NORETURN usage_msg_optf(const char *fmt,
402 const char * const *usagestr,
403 const struct option *options, ...);
404
Jean-Noël Avilaa6993672022-01-31 22:07:46 +0000405void die_for_incompatible_opt4(int opt1, const char *opt1_name,
406 int opt2, const char *opt2_name,
407 int opt3, const char *opt3_name,
408 int opt4, const char *opt4_name);
409
410
411static inline void die_for_incompatible_opt3(int opt1, const char *opt1_name,
412 int opt2, const char *opt2_name,
413 int opt3, const char *opt3_name)
414{
415 die_for_incompatible_opt4(opt1, opt1_name,
416 opt2, opt2_name,
417 opt3, opt3_name,
418 0, "");
419}
420
Jeff King517fe802018-11-05 01:45:42 -0500421/*
422 * Use these assertions for callbacks that expect to be called with NONEG and
423 * NOARG respectively, and do not otherwise handle the "unset" and "arg"
424 * parameters.
425 */
426#define BUG_ON_OPT_NEG(unset) do { \
427 if ((unset)) \
428 BUG("option callback does not expect negation"); \
429} while (0)
430#define BUG_ON_OPT_ARG(arg) do { \
431 if ((arg)) \
432 BUG("option callback does not expect an argument"); \
433} while (0)
434
Brandon Richardsoncbdeab92019-03-07 11:44:09 -0400435/*
436 * Similar to the assertions above, but checks that "arg" is always non-NULL.
437 * This assertion also implies BUG_ON_OPT_NEG(), letting you declare both
438 * assertions in a single line.
439 */
440#define BUG_ON_OPT_NEG_NOARG(unset, arg) do { \
441 BUG_ON_OPT_NEG(unset); \
442 if(!(arg)) \
443 BUG("option callback expects an argument"); \
444} while(0)
445
Mike Ralphson3ea3c212009-04-17 19:13:30 +0100446/*----- incremental advanced APIs -----*/
Pierre Habouzit7e7bbcb2008-06-23 21:59:37 +0200447
René Scharfe0025dde2023-10-28 13:53:01 +0200448struct parse_opt_cmdmode_list;
449
Pierre Habouzit26141b52008-06-23 22:55:11 +0200450/*
451 * It's okay for the caller to consume argv/argc in the usual way.
452 * Other fields of that structure are private to parse-options and should not
453 * be modified in any way.
454 */
Pierre Habouzit7e7bbcb2008-06-23 21:59:37 +0200455struct parse_opt_ctx_t {
456 const char **argv;
457 const char **out;
René Scharfe5ad0d3d2015-11-17 11:25:38 +0100458 int argc, cpidx, total;
Pierre Habouzit7e7bbcb2008-06-23 21:59:37 +0200459 const char *opt;
Ævar Arnfjörð Bjarmason3f9ab7c2021-10-08 21:07:38 +0200460 enum parse_opt_flags flags;
SZEDER Gáborfa83cc82022-08-19 18:04:00 +0200461 unsigned has_subcommands;
Stephen Boyd37782922009-05-23 11:53:12 -0700462 const char *prefix;
Nguyễn Thái Ngọc Duy5c387422019-04-29 17:05:25 +0700463 const char **alias_groups; /* must be in groups of 3 elements! */
René Scharfe0025dde2023-10-28 13:53:01 +0200464 struct parse_opt_cmdmode_list *cmdmode_list;
Pierre Habouzit7e7bbcb2008-06-23 21:59:37 +0200465};
466
Nguyễn Thái Ngọc Duy1987b0b2019-01-17 20:05:00 +0700467void parse_options_start(struct parse_opt_ctx_t *ctx,
468 int argc, const char **argv, const char *prefix,
Ævar Arnfjörð Bjarmason3f9ab7c2021-10-08 21:07:38 +0200469 const struct option *options,
470 enum parse_opt_flags flags);
Pierre Habouzit7e7bbcb2008-06-23 21:59:37 +0200471
Ævar Arnfjörð Bjarmason352e7612021-10-08 21:07:39 +0200472enum parse_opt_result parse_options_step(struct parse_opt_ctx_t *ctx,
473 const struct option *options,
474 const char * const usagestr[]);
Pierre Habouzitff43ec32008-06-23 22:38:58 +0200475
Nguyễn Thái Ngọc Duy1987b0b2019-01-17 20:05:00 +0700476int parse_options_end(struct parse_opt_ctx_t *ctx);
Pierre Habouzit7e7bbcb2008-06-23 21:59:37 +0200477
Nguyễn Thái Ngọc Duy20871822019-03-29 17:39:04 +0700478struct option *parse_options_dup(const struct option *a);
René Scharfec8407852020-02-09 16:57:56 +0100479struct option *parse_options_concat(const struct option *a, const struct option *b);
Pierre Habouzit7e7bbcb2008-06-23 21:59:37 +0200480
Pierre Habouzit0ce865b2007-10-14 11:05:12 +0200481/*----- some often used options -----*/
Nguyễn Thái Ngọc Duy1987b0b2019-01-17 20:05:00 +0700482int parse_opt_abbrev_cb(const struct option *, const char *, int);
483int parse_opt_expiry_date_cb(const struct option *, const char *, int);
484int parse_opt_color_flag_cb(const struct option *, const char *, int);
485int parse_opt_verbosity_cb(const struct option *, const char *, int);
Phillip Wood33898532019-04-17 15:30:40 +0100486/* value is struct oid_array* */
Nguyễn Thái Ngọc Duy1987b0b2019-01-17 20:05:00 +0700487int parse_opt_object_name(const struct option *, const char *, int);
Phillip Wood33898532019-04-17 15:30:40 +0100488/* value is struct object_id* */
489int parse_opt_object_id(const struct option *, const char *, int);
Nguyễn Thái Ngọc Duy1987b0b2019-01-17 20:05:00 +0700490int parse_opt_commits(const struct option *, const char *, int);
Phillip Wood7d3488e2019-04-17 15:30:39 +0100491int parse_opt_commit(const struct option *, const char *, int);
Nguyễn Thái Ngọc Duy1987b0b2019-01-17 20:05:00 +0700492int parse_opt_tertiary(const struct option *, const char *, int);
493int parse_opt_string_list(const struct option *, const char *, int);
Phillip Woodfb60b9f2023-04-10 10:08:28 +0100494int parse_opt_strvec(const struct option *, const char *, int);
Nguyễn Thái Ngọc Duy1987b0b2019-01-17 20:05:00 +0700495int parse_opt_noop_cb(const struct option *, const char *, int);
Nguyễn Thái Ngọc Duy1987b0b2019-01-17 20:05:00 +0700496int parse_opt_passthru(const struct option *, const char *, int);
497int parse_opt_passthru_argv(const struct option *, const char *, int);
Josh Steadmond3115662021-12-20 19:30:23 -0800498/* value is enum branch_track* */
499int parse_opt_tracking_mode(const struct option *, const char *, int);
Pierre Habouzit0ce865b2007-10-14 11:05:12 +0200500
Nguyễn Thái Ngọc Duy212c0a62013-12-07 12:02:53 +0700501#define OPT__VERBOSE(var, h) OPT_COUNTUP('v', "verbose", (var), (h))
502#define OPT__QUIET(var, h) OPT_COUNTUP('q', "quiet", (var), (h))
SZEDER Gábor353e6d42023-03-19 17:56:48 +0100503#define OPT__VERBOSITY(var) { \
504 .type = OPTION_CALLBACK, \
505 .short_name = 'v', \
506 .long_name = "verbose", \
507 .value = (var), \
508 .help = N_("be more verbose"), \
509 .flags = PARSE_OPT_NOARG, \
510 .callback = &parse_opt_verbosity_cb, \
511}, { \
512 .type = OPTION_CALLBACK, \
513 .short_name = 'q', \
514 .long_name = "quiet", \
515 .value = (var), \
516 .help = N_("be more quiet"), \
517 .flags = PARSE_OPT_NOARG, \
518 .callback = &parse_opt_verbosity_cb, \
519}
Nguyễn Thái Ngọc Duy212c0a62013-12-07 12:02:53 +0700520#define OPT__DRY_RUN(var, h) OPT_BOOL('n', "dry-run", (var), (h))
Nguyễn Thái Ngọc Duy12247812018-02-09 18:01:42 +0700521#define OPT__FORCE(var, h, f) OPT_COUNTUP_F('f', "force", (var), (h), (f))
SZEDER Gábor353e6d42023-03-19 17:56:48 +0100522#define OPT__ABBREV(var) { \
523 .type = OPTION_CALLBACK, \
524 .long_name = "abbrev", \
525 .value = (var), \
526 .argh = N_("n"), \
527 .help = N_("use <n> digits to display object names"), \
528 .flags = PARSE_OPT_OPTARG, \
529 .callback = &parse_opt_abbrev_cb, \
530}
Ævar Arnfjörð Bjarmasonbb61a962022-12-20 13:39:51 +0100531#define OPT__SUPER_PREFIX(var) \
532 OPT_STRING_F(0, "super-prefix", (var), N_("prefix"), \
533 N_("prefixed path to initial superproject"), PARSE_OPT_HIDDEN)
534
Mark Lodato73e9da02010-02-16 23:55:58 -0500535#define OPT__COLOR(var, h) \
536 OPT_COLOR_FLAG(0, "color", (var), (h))
SZEDER Gábor353e6d42023-03-19 17:56:48 +0100537#define OPT_COLUMN(s, l, v, h) { \
538 .type = OPTION_CALLBACK, \
539 .short_name = (s), \
540 .long_name = (l), \
541 .value = (v), \
542 .argh = N_("style"), \
543 .help = (h), \
544 .flags = PARSE_OPT_OPTARG, \
545 .callback = parseopt_column_callback, \
546}
547#define OPT_PASSTHRU(s, l, v, a, h, f) { \
548 .type = OPTION_CALLBACK, \
549 .short_name = (s), \
550 .long_name = (l), \
551 .value = (v), \
552 .argh = (a), \
553 .help = (h), \
554 .flags = (f), \
555 .callback = parse_opt_passthru, \
556}
557#define OPT_PASSTHRU_ARGV(s, l, v, a, h, f) { \
558 .type = OPTION_CALLBACK, \
559 .short_name = (s), \
560 .long_name = (l), \
561 .value = (v), \
562 .argh = (a), \
563 .help = (h), \
564 .flags = (f), \
565 .callback = parse_opt_passthru_argv, \
566}
567#define _OPT_CONTAINS_OR_WITH(l, v, h, f) { \
568 .type = OPTION_CALLBACK, \
569 .long_name = (l), \
570 .value = (v), \
571 .argh = N_("commit"), \
572 .help = (h), \
573 .flags = PARSE_OPT_LASTARG_DEFAULT | (f), \
574 .callback = parse_opt_commits, \
575 .defval = (intptr_t) "HEAD", \
576}
Ævar Arnfjörð Bjarmasoneab98ee2017-03-24 18:40:53 +0000577#define OPT_CONTAINS(v, h) _OPT_CONTAINS_OR_WITH("contains", v, h, PARSE_OPT_NONEG)
Ævar Arnfjörð Bjarmasonac3f5a32017-03-24 18:40:57 +0000578#define OPT_NO_CONTAINS(v, h) _OPT_CONTAINS_OR_WITH("no-contains", v, h, PARSE_OPT_NONEG)
Ævar Arnfjörð Bjarmasoneab98ee2017-03-24 18:40:53 +0000579#define OPT_WITH(v, h) _OPT_CONTAINS_OR_WITH("with", v, h, PARSE_OPT_HIDDEN | PARSE_OPT_NONEG)
Ævar Arnfjörð Bjarmasonac3f5a32017-03-24 18:40:57 +0000580#define OPT_WITHOUT(v, h) _OPT_CONTAINS_OR_WITH("without", v, h, PARSE_OPT_HIDDEN | PARSE_OPT_NONEG)
Denton Liuca04dc92019-04-17 11:23:26 +0100581#define OPT_CLEANUP(v) OPT_STRING(0, "cleanup", v, N_("mode"), N_("how to strip spaces and #comments from message"))
Alexandr Miloslavskiyadd97702019-11-06 15:51:13 +0000582#define OPT_PATHSPEC_FROM_FILE(v) OPT_FILENAME(0, "pathspec-from-file", v, N_("read pathspec from file"))
583#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"))
Denton Liua03b5552020-04-07 10:28:07 -0400584#define OPT_AUTOSTASH(v) OPT_BOOL(0, "autostash", v, N_("automatically stash/stash pop before and after"))
Pierre Habouzit0ce865b2007-10-14 11:05:12 +0200585
Junio C Hamanoae2c9122023-07-18 14:34:33 -0700586#define OPT_IPVERSION(v) \
Junio C Hamanoa2dad482023-07-18 14:45:59 -0700587 OPT_SET_INT_F('4', "ipv4", (v), N_("use IPv4 addresses only"), \
588 TRANSPORT_FAMILY_IPV4, PARSE_OPT_NONEG), \
589 OPT_SET_INT_F('6', "ipv6", (v), N_("use IPv6 addresses only"), \
590 TRANSPORT_FAMILY_IPV6, PARSE_OPT_NONEG)
Junio C Hamanoae2c9122023-07-18 14:34:33 -0700591
Pierre Habouzit4a59fd12007-10-15 01:35:37 +0200592#endif