Coverage Report

Created: 2024-09-08 06:24

/src/git/parse-options.h
Line
Count
Source (jump to first uncovered line)
1
#ifndef PARSE_OPTIONS_H
2
#define PARSE_OPTIONS_H
3
4
#include "gettext.h"
5
6
/**
7
 * Refer to Documentation/technical/api-parse-options.txt for the API doc.
8
 */
9
10
enum parse_opt_type {
11
  /* special types */
12
  OPTION_END,
13
  OPTION_GROUP,
14
  OPTION_NUMBER,
15
  OPTION_ALIAS,
16
  OPTION_SUBCOMMAND,
17
  /* options with no arguments */
18
  OPTION_BIT,
19
  OPTION_NEGBIT,
20
  OPTION_BITOP,
21
  OPTION_COUNTUP,
22
  OPTION_SET_INT,
23
  /* options with arguments (usually) */
24
  OPTION_STRING,
25
  OPTION_INTEGER,
26
  OPTION_MAGNITUDE,
27
  OPTION_CALLBACK,
28
  OPTION_LOWLEVEL_CALLBACK,
29
  OPTION_FILENAME
30
};
31
32
enum parse_opt_flags {
33
  PARSE_OPT_KEEP_DASHDASH = 1 << 0,
34
  PARSE_OPT_STOP_AT_NON_OPTION = 1 << 1,
35
  PARSE_OPT_KEEP_ARGV0 = 1 << 2,
36
  PARSE_OPT_KEEP_UNKNOWN_OPT = 1 << 3,
37
  PARSE_OPT_NO_INTERNAL_HELP = 1 << 4,
38
  PARSE_OPT_ONE_SHOT = 1 << 5,
39
  PARSE_OPT_SHELL_EVAL = 1 << 6,
40
  PARSE_OPT_SUBCOMMAND_OPTIONAL = 1 << 7,
41
};
42
43
enum parse_opt_option_flags {
44
  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,
51
  PARSE_OPT_FROM_ALIAS = 1 << 7,
52
  PARSE_OPT_NOCOMPLETE = 1 << 9,
53
  PARSE_OPT_COMP_ARG = 1 << 10,
54
  PARSE_OPT_CMDMODE = 1 << 11,
55
};
56
57
enum 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,
63
  PARSE_OPT_SUBCOMMAND,
64
  PARSE_OPT_UNKNOWN
65
};
66
67
struct option;
68
typedef int parse_opt_cb(const struct option *, const char *arg, int unset);
69
70
struct parse_opt_ctx_t;
71
typedef enum parse_opt_result parse_opt_ll_cb(struct parse_opt_ctx_t *ctx,
72
                const struct option *opt,
73
                const char *arg, int unset);
74
75
typedef int parse_opt_subcommand_fn(int argc, const char **argv,
76
            const char *prefix);
77
78
/*
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`::
87
 *   the long option (without the leading dashes) or subcommand name,
88
 *   NULL if none.
89
 *
90
 * `value`::
91
 *   stores pointers to the values to be filled.
92
 *
93
 * `argh`::
94
 *   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.
97
 *   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.
102
 *
103
 * `help`::
104
 *   the short help associated to what the option does.
105
 *   Must never be NULL (except for OPTION_END and OPTION_SUBCOMMAND).
106
 *   OPTION_GROUP uses this pointer to store the group header.
107
 *   Should be wrapped by N_() for translation.
108
 *
109
 * `flags`::
110
 *   mask of parse_opt_option_flags.
111
 *   PARSE_OPT_OPTARG: says that the argument is optional (not for BOOLEANs)
112
 *   PARSE_OPT_NOARG: says that this option does not take an argument
113
 *   PARSE_OPT_NONEG: says that this option cannot be negated
114
 *   PARSE_OPT_HIDDEN: this option is skipped in the default usage, and
115
 *                     shown only in the full usage.
116
 *   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.
121
 *   PARSE_OPT_NODASH: this option doesn't start with a dash; can only be a
122
 *           short option and can't accept arguments.
123
 *   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.
126
 *   PARSE_OPT_NOCOMPLETE: by default all visible options are completable
127
 *         by git-completion.bash. This option suppresses that.
128
 *   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.
131
 *
132
 * `callback`::
133
 *   pointer to the callback to use for OPTION_CALLBACK
134
 *
135
 * `defval`::
136
 *   default value to fill (*->value) with for PARSE_OPT_OPTARG.
137
 *   OPTION_{BIT,SET_INT} store the {mask,integer} to put in the value when met.
138
 *   CALLBACKS can use it like they want.
139
 *
140
 * `ll_callback`::
141
 *   pointer to the callback to use for OPTION_LOWLEVEL_CALLBACK
142
 *
143
 * `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.
146
 */
147
struct option {
148
  enum parse_opt_type type;
149
  int short_name;
150
  const char *long_name;
151
  void *value;
152
  const char *argh;
153
  const char *help;
154
155
  enum parse_opt_option_flags flags;
156
  parse_opt_cb *callback;
157
  intptr_t defval;
158
  parse_opt_ll_cb *ll_callback;
159
  intptr_t extra;
160
  parse_opt_subcommand_fn *subcommand_fn;
161
};
162
163
70.9k
#define OPT_BIT_F(s, l, v, h, b, f) { \
164
70.9k
  .type = OPTION_BIT, \
165
70.9k
  .short_name = (s), \
166
70.9k
  .long_name = (l), \
167
70.9k
  .value = (v), \
168
70.9k
  .help = (h), \
169
70.9k
  .flags = PARSE_OPT_NOARG|(f), \
170
70.9k
  .callback = NULL, \
171
70.9k
  .defval = (b), \
172
70.9k
}
173
22.4k
#define OPT_COUNTUP_F(s, l, v, h, f) { \
174
22.4k
  .type = OPTION_COUNTUP, \
175
22.4k
  .short_name = (s), \
176
22.4k
  .long_name = (l), \
177
22.4k
  .value = (v), \
178
22.4k
  .help = (h), \
179
22.4k
  .flags = PARSE_OPT_NOARG|(f), \
180
22.4k
}
181
283k
#define OPT_SET_INT_F(s, l, v, h, i, f) { \
182
283k
  .type = OPTION_SET_INT, \
183
283k
  .short_name = (s), \
184
283k
  .long_name = (l), \
185
283k
  .value = (v), \
186
283k
  .help = (h), \
187
283k
  .flags = PARSE_OPT_NOARG | (f), \
188
283k
  .defval = (i), \
189
283k
}
190
216k
#define OPT_BOOL_F(s, l, v, h, f)   OPT_SET_INT_F(s, l, v, h, 1, f)
191
249k
#define OPT_CALLBACK_F(s, l, v, a, h, f, cb) { \
192
249k
  .type = OPTION_CALLBACK, \
193
249k
  .short_name = (s), \
194
249k
  .long_name = (l), \
195
249k
  .value = (v), \
196
249k
  .argh = (a), \
197
249k
  .help = (h), \
198
249k
  .flags = (f), \
199
249k
  .callback = (cb), \
200
249k
}
201
87.1k
#define OPT_STRING_F(s, l, v, a, h, f) { \
202
87.1k
  .type = OPTION_STRING, \
203
87.1k
  .short_name = (s), \
204
87.1k
  .long_name = (l), \
205
87.1k
  .value = (v), \
206
87.1k
  .argh = (a), \
207
87.1k
  .help = (h), \
208
87.1k
  .flags = (f), \
209
87.1k
}
210
11.0k
#define OPT_INTEGER_F(s, l, v, h, f) { \
211
11.0k
  .type = OPTION_INTEGER, \
212
11.0k
  .short_name = (s), \
213
11.0k
  .long_name = (l), \
214
11.0k
  .value = (v), \
215
11.0k
  .argh = N_("n"), \
216
11.0k
  .help = (h), \
217
11.0k
  .flags = (f), \
218
11.0k
}
219
220
23.8k
#define OPT_END() { \
221
23.8k
  .type = OPTION_END, \
222
23.8k
}
223
43.2k
#define OPT_GROUP(h) { \
224
43.2k
  .type = OPTION_GROUP, \
225
43.2k
  .help = (h), \
226
43.2k
}
227
15.6k
#define OPT_BIT(s, l, v, h, b)      OPT_BIT_F(s, l, v, h, b, 0)
228
44.2k
#define OPT_BITOP(s, l, v, h, set, clear) { \
229
44.2k
  .type = OPTION_BITOP, \
230
44.2k
  .short_name = (s), \
231
44.2k
  .long_name = (l), \
232
44.2k
  .value = (v), \
233
44.2k
  .help = (h), \
234
44.2k
  .flags = PARSE_OPT_NOARG|PARSE_OPT_NONEG, \
235
44.2k
  .defval = (set), \
236
44.2k
  .extra = (clear), \
237
44.2k
}
238
0
#define OPT_NEGBIT(s, l, v, h, b) { \
239
0
  .type = OPTION_NEGBIT, \
240
0
  .short_name = (s), \
241
0
  .long_name = (l), \
242
0
  .value = (v), \
243
0
  .help = (h), \
244
0
  .flags = PARSE_OPT_NOARG, \
245
0
  .defval = (b), \
246
0
}
247
21.0k
#define OPT_COUNTUP(s, l, v, h)     OPT_COUNTUP_F(s, l, v, h, 0)
248
40.3k
#define OPT_SET_INT(s, l, v, h, i)  OPT_SET_INT_F(s, l, v, h, i, 0)
249
216k
#define OPT_BOOL(s, l, v, h)        OPT_BOOL_F(s, l, v, h, 0)
250
18.3k
#define OPT_HIDDEN_BOOL(s, l, v, h) { \
251
18.3k
  .type = OPTION_SET_INT, \
252
18.3k
  .short_name = (s), \
253
18.3k
  .long_name = (l), \
254
18.3k
  .value = (v), \
255
18.3k
  .help = (h), \
256
18.3k
  .flags = PARSE_OPT_NOARG | PARSE_OPT_HIDDEN, \
257
18.3k
  .defval = 1, \
258
18.3k
}
259
0
#define OPT_CMDMODE_F(s, l, v, h, i, f) { \
260
0
  .type = OPTION_SET_INT, \
261
0
  .short_name = (s), \
262
0
  .long_name = (l), \
263
0
  .value = (v), \
264
0
  .help = (h), \
265
0
  .flags = PARSE_OPT_CMDMODE|PARSE_OPT_NOARG|PARSE_OPT_NONEG | (f), \
266
0
  .defval = (i), \
267
0
}
268
0
#define OPT_CMDMODE(s, l, v, h, i)  OPT_CMDMODE_F(s, l, v, h, i, 0)
269
270
5.52k
#define OPT_INTEGER(s, l, v, h)     OPT_INTEGER_F(s, l, v, h, 0)
271
0
#define OPT_MAGNITUDE(s, l, v, h) { \
272
0
  .type = OPTION_MAGNITUDE, \
273
0
  .short_name = (s), \
274
0
  .long_name = (l), \
275
0
  .value = (v), \
276
0
  .argh = N_("n"), \
277
0
  .help = (h), \
278
0
  .flags = PARSE_OPT_NONEG, \
279
0
}
280
76.1k
#define OPT_STRING(s, l, v, a, h)   OPT_STRING_F(s, l, v, a, h, 0)
281
1.38k
#define OPT_STRING_LIST(s, l, v, a, h) { \
282
1.38k
  .type = OPTION_CALLBACK, \
283
1.38k
  .short_name = (s), \
284
1.38k
  .long_name = (l), \
285
1.38k
  .value = (v), \
286
1.38k
  .argh = (a), \
287
1.38k
  .help = (h), \
288
1.38k
  .callback = &parse_opt_string_list, \
289
1.38k
}
290
0
#define OPT_STRVEC(s, l, v, a, h) { \
291
0
  .type = OPTION_CALLBACK, \
292
0
  .short_name = (s), \
293
0
  .long_name = (l), \
294
0
  .value = (v), \
295
0
  .argh = (a), \
296
0
  .help = (h), \
297
0
  .callback = &parse_opt_strvec, \
298
0
}
299
0
#define OPT_UYN(s, l, v, h) { \
300
0
  .type = OPTION_CALLBACK, \
301
0
  .short_name = (s), \
302
0
  .long_name = (l), \
303
0
  .value = (v), \
304
0
  .help = (h), \
305
0
  .flags = PARSE_OPT_NOARG, \
306
0
  .callback = &parse_opt_tertiary, \
307
0
}
308
0
#define OPT_EXPIRY_DATE(s, l, v, h) { \
309
0
  .type = OPTION_CALLBACK, \
310
0
  .short_name = (s), \
311
0
  .long_name = (l), \
312
0
  .value = (v), \
313
0
  .argh = N_("expiry-date"), \
314
0
  .help = (h), \
315
0
  .callback = parse_opt_expiry_date_cb, \
316
0
}
317
10.5k
#define OPT_CALLBACK(s, l, v, a, h, cb) OPT_CALLBACK_F(s, l, v, a, h, 0, cb)
318
0
#define OPT_NUMBER_CALLBACK(v, h, cb) { \
319
0
  .type = OPTION_NUMBER, \
320
0
  .value = (v), \
321
0
  .help = (h), \
322
0
  .flags = PARSE_OPT_NOARG | PARSE_OPT_NONEG, \
323
0
  .callback = (cb), \
324
0
}
325
33.0k
#define OPT_FILENAME(s, l, v, h) { \
326
33.0k
  .type = OPTION_FILENAME, \
327
33.0k
  .short_name = (s), \
328
33.0k
  .long_name = (l), \
329
33.0k
  .value = (v), \
330
33.0k
  .argh = N_("file"), \
331
33.0k
  .help = (h), \
332
33.0k
}
333
6.91k
#define OPT_COLOR_FLAG(s, l, v, h) { \
334
6.91k
  .type = OPTION_CALLBACK, \
335
6.91k
  .short_name = (s), \
336
6.91k
  .long_name = (l), \
337
6.91k
  .value = (v), \
338
6.91k
  .argh = N_("when"), \
339
6.91k
  .help = (h), \
340
6.91k
  .flags = PARSE_OPT_OPTARG, \
341
6.91k
  .callback = parse_opt_color_flag_cb, \
342
6.91k
  .defval = (intptr_t)"always", \
343
6.91k
}
344
345
0
#define OPT_NOOP_NOARG(s, l) { \
346
0
  .type = OPTION_CALLBACK, \
347
0
  .short_name = (s), \
348
0
  .long_name = (l), \
349
0
  .help = N_("no-op (backward compatibility)"), \
350
0
  .flags = PARSE_OPT_HIDDEN | PARSE_OPT_NOARG, \
351
0
  .callback = parse_opt_noop_cb, \
352
0
}
353
354
0
#define OPT_ALIAS(s, l, source_long_name) { \
355
0
  .type = OPTION_ALIAS, \
356
0
  .short_name = (s), \
357
0
  .long_name = (l), \
358
0
  .value = (char *)(source_long_name), \
359
0
}
360
361
0
#define OPT_SUBCOMMAND_F(l, v, fn, f) { \
362
0
  .type = OPTION_SUBCOMMAND, \
363
0
  .long_name = (l), \
364
0
  .value = (v), \
365
0
  .flags = (f), \
366
0
  .subcommand_fn = (fn), \
367
0
}
368
0
#define OPT_SUBCOMMAND(l, v, fn)    OPT_SUBCOMMAND_F((l), (v), (fn), 0)
369
370
/*
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
 *
377
 * Returns the number of arguments left in argv[].
378
 *
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.
382
 */
383
int 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);
387
388
NORETURN void usage_with_options(const char * const *usagestr,
389
         const struct option *options);
390
391
NORETURN void usage_msg_opt(const char *msg,
392
          const char * const *usagestr,
393
          const struct option *options);
394
395
/**
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)))
401
void NORETURN usage_msg_optf(const char *fmt,
402
           const char * const *usagestr,
403
           const struct option *options, ...);
404
405
void 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
411
static 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
49.6k
{
415
49.6k
  die_for_incompatible_opt4(opt1, opt1_name,
416
49.6k
          opt2, opt2_name,
417
49.6k
          opt3, opt3_name,
418
49.6k
          0, "");
419
49.6k
}
Unexecuted instantiation: add.c:die_for_incompatible_opt3
Unexecuted instantiation: am.c:die_for_incompatible_opt3
Unexecuted instantiation: archive.c:die_for_incompatible_opt3
Unexecuted instantiation: bisect.c:die_for_incompatible_opt3
Unexecuted instantiation: blame.c:die_for_incompatible_opt3
Unexecuted instantiation: branch.c:die_for_incompatible_opt3
Unexecuted instantiation: bugreport.c:die_for_incompatible_opt3
Unexecuted instantiation: bundle.c:die_for_incompatible_opt3
Unexecuted instantiation: cat-file.c:die_for_incompatible_opt3
Unexecuted instantiation: check-attr.c:die_for_incompatible_opt3
Unexecuted instantiation: check-ignore.c:die_for_incompatible_opt3
Unexecuted instantiation: check-mailmap.c:die_for_incompatible_opt3
Unexecuted instantiation: checkout--worker.c:die_for_incompatible_opt3
Unexecuted instantiation: checkout-index.c:die_for_incompatible_opt3
Unexecuted instantiation: checkout.c:die_for_incompatible_opt3
Unexecuted instantiation: clean.c:die_for_incompatible_opt3
Unexecuted instantiation: clone.c:die_for_incompatible_opt3
Unexecuted instantiation: column.c:die_for_incompatible_opt3
Unexecuted instantiation: commit-graph.c:die_for_incompatible_opt3
Unexecuted instantiation: commit-tree.c:die_for_incompatible_opt3
Unexecuted instantiation: commit.c:die_for_incompatible_opt3
Unexecuted instantiation: config.c:die_for_incompatible_opt3
Unexecuted instantiation: count-objects.c:die_for_incompatible_opt3
Unexecuted instantiation: credential-cache--daemon.c:die_for_incompatible_opt3
Unexecuted instantiation: credential-cache.c:die_for_incompatible_opt3
Unexecuted instantiation: credential-store.c:die_for_incompatible_opt3
Unexecuted instantiation: describe.c:die_for_incompatible_opt3
Unexecuted instantiation: diagnose.c:die_for_incompatible_opt3
Unexecuted instantiation: difftool.c:die_for_incompatible_opt3
Unexecuted instantiation: fast-export.c:die_for_incompatible_opt3
Unexecuted instantiation: fetch.c:die_for_incompatible_opt3
Unexecuted instantiation: fmt-merge-msg.c:die_for_incompatible_opt3
Unexecuted instantiation: for-each-ref.c:die_for_incompatible_opt3
Unexecuted instantiation: for-each-repo.c:die_for_incompatible_opt3
Unexecuted instantiation: fsck.c:die_for_incompatible_opt3
Unexecuted instantiation: fsmonitor--daemon.c:die_for_incompatible_opt3
Unexecuted instantiation: gc.c:die_for_incompatible_opt3
Unexecuted instantiation: grep.c:die_for_incompatible_opt3
Unexecuted instantiation: hash-object.c:die_for_incompatible_opt3
Unexecuted instantiation: help.c:die_for_incompatible_opt3
Unexecuted instantiation: hook.c:die_for_incompatible_opt3
Unexecuted instantiation: init-db.c:die_for_incompatible_opt3
Unexecuted instantiation: interpret-trailers.c:die_for_incompatible_opt3
Unexecuted instantiation: log.c:die_for_incompatible_opt3
Unexecuted instantiation: ls-files.c:die_for_incompatible_opt3
Unexecuted instantiation: ls-remote.c:die_for_incompatible_opt3
Unexecuted instantiation: ls-tree.c:die_for_incompatible_opt3
Unexecuted instantiation: mailinfo.c:die_for_incompatible_opt3
Unexecuted instantiation: merge-base.c:die_for_incompatible_opt3
Unexecuted instantiation: merge-file.c:die_for_incompatible_opt3
Unexecuted instantiation: merge-tree.c:die_for_incompatible_opt3
Unexecuted instantiation: merge.c:die_for_incompatible_opt3
Unexecuted instantiation: mktag.c:die_for_incompatible_opt3
Unexecuted instantiation: mktree.c:die_for_incompatible_opt3
Unexecuted instantiation: multi-pack-index.c:die_for_incompatible_opt3
Unexecuted instantiation: mv.c:die_for_incompatible_opt3
Unexecuted instantiation: name-rev.c:die_for_incompatible_opt3
Unexecuted instantiation: notes.c:die_for_incompatible_opt3
Unexecuted instantiation: pack-objects.c:die_for_incompatible_opt3
Unexecuted instantiation: pack-refs.c:die_for_incompatible_opt3
Unexecuted instantiation: patch-id.c:die_for_incompatible_opt3
Unexecuted instantiation: prune-packed.c:die_for_incompatible_opt3
Unexecuted instantiation: prune.c:die_for_incompatible_opt3
Unexecuted instantiation: pull.c:die_for_incompatible_opt3
Unexecuted instantiation: push.c:die_for_incompatible_opt3
Unexecuted instantiation: range-diff.c:die_for_incompatible_opt3
Unexecuted instantiation: read-tree.c:die_for_incompatible_opt3
Unexecuted instantiation: rebase.c:die_for_incompatible_opt3
Unexecuted instantiation: receive-pack.c:die_for_incompatible_opt3
Unexecuted instantiation: reflog.c:die_for_incompatible_opt3
Unexecuted instantiation: refs.c:die_for_incompatible_opt3
Unexecuted instantiation: remote.c:die_for_incompatible_opt3
Unexecuted instantiation: repack.c:die_for_incompatible_opt3
Unexecuted instantiation: replace.c:die_for_incompatible_opt3
Unexecuted instantiation: replay.c:die_for_incompatible_opt3
Unexecuted instantiation: rerere.c:die_for_incompatible_opt3
Unexecuted instantiation: reset.c:die_for_incompatible_opt3
Unexecuted instantiation: rev-parse.c:die_for_incompatible_opt3
Unexecuted instantiation: revert.c:die_for_incompatible_opt3
Unexecuted instantiation: rm.c:die_for_incompatible_opt3
Unexecuted instantiation: send-pack.c:die_for_incompatible_opt3
Unexecuted instantiation: shortlog.c:die_for_incompatible_opt3
Unexecuted instantiation: show-branch.c:die_for_incompatible_opt3
Unexecuted instantiation: show-index.c:die_for_incompatible_opt3
Unexecuted instantiation: show-ref.c:die_for_incompatible_opt3
Unexecuted instantiation: sparse-checkout.c:die_for_incompatible_opt3
Unexecuted instantiation: stash.c:die_for_incompatible_opt3
Unexecuted instantiation: stripspace.c:die_for_incompatible_opt3
Unexecuted instantiation: submodule--helper.c:die_for_incompatible_opt3
Unexecuted instantiation: symbolic-ref.c:die_for_incompatible_opt3
Unexecuted instantiation: tag.c:die_for_incompatible_opt3
Unexecuted instantiation: update-index.c:die_for_incompatible_opt3
Unexecuted instantiation: update-ref.c:die_for_incompatible_opt3
Unexecuted instantiation: update-server-info.c:die_for_incompatible_opt3
Unexecuted instantiation: upload-pack.c:die_for_incompatible_opt3
Unexecuted instantiation: verify-commit.c:die_for_incompatible_opt3
Unexecuted instantiation: verify-pack.c:die_for_incompatible_opt3
Unexecuted instantiation: verify-tag.c:die_for_incompatible_opt3
Unexecuted instantiation: worktree.c:die_for_incompatible_opt3
Unexecuted instantiation: write-tree.c:die_for_incompatible_opt3
Unexecuted instantiation: apply.c:die_for_incompatible_opt3
Unexecuted instantiation: diff-no-index.c:die_for_incompatible_opt3
Unexecuted instantiation: diff.c:die_for_incompatible_opt3
Unexecuted instantiation: list-objects-filter-options.c:die_for_incompatible_opt3
Unexecuted instantiation: parse-options-cb.c:die_for_incompatible_opt3
Unexecuted instantiation: parse-options.c:die_for_incompatible_opt3
Unexecuted instantiation: ref-filter.c:die_for_incompatible_opt3
revision.c:die_for_incompatible_opt3
Line
Count
Source
414
49.6k
{
415
49.6k
  die_for_incompatible_opt4(opt1, opt1_name,
416
49.6k
          opt2, opt2_name,
417
49.6k
          opt3, opt3_name,
418
49.6k
          0, "");
419
49.6k
}
Unexecuted instantiation: submodule-config.c:die_for_incompatible_opt3
Unexecuted instantiation: submodule.c:die_for_incompatible_opt3
420
421
/*
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
2.76k
#define BUG_ON_OPT_NEG(unset) do { \
427
2.76k
  if ((unset)) \
428
2.76k
    BUG("option callback does not expect negation"); \
429
2.76k
} while (0)
430
0
#define BUG_ON_OPT_ARG(arg) do { \
431
0
  if ((arg)) \
432
0
    BUG("option callback does not expect an argument"); \
433
0
} while (0)
434
435
/*
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
0
#define BUG_ON_OPT_NEG_NOARG(unset, arg) do { \
441
0
  BUG_ON_OPT_NEG(unset); \
442
0
  if(!(arg)) \
443
0
    BUG("option callback expects an argument"); \
444
0
} while(0)
445
446
/*----- incremental advanced APIs -----*/
447
448
struct parse_opt_cmdmode_list;
449
450
/*
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
 */
455
struct parse_opt_ctx_t {
456
  const char **argv;
457
  const char **out;
458
  int argc, cpidx, total;
459
  const char *opt;
460
  enum parse_opt_flags flags;
461
  unsigned has_subcommands;
462
  const char *prefix;
463
  const char **alias_groups; /* must be in groups of 3 elements! */
464
  struct parse_opt_cmdmode_list *cmdmode_list;
465
};
466
467
void parse_options_start(struct parse_opt_ctx_t *ctx,
468
       int argc, const char **argv, const char *prefix,
469
       const struct option *options,
470
       enum parse_opt_flags flags);
471
472
enum parse_opt_result parse_options_step(struct parse_opt_ctx_t *ctx,
473
           const struct option *options,
474
           const char * const usagestr[]);
475
476
int parse_options_end(struct parse_opt_ctx_t *ctx);
477
478
struct option *parse_options_dup(const struct option *a);
479
struct option *parse_options_concat(const struct option *a, const struct option *b);
480
481
/*----- some often used options -----*/
482
int parse_opt_abbrev_cb(const struct option *, const char *, int);
483
int parse_opt_expiry_date_cb(const struct option *, const char *, int);
484
int parse_opt_color_flag_cb(const struct option *, const char *, int);
485
int parse_opt_verbosity_cb(const struct option *, const char *, int);
486
/* value is struct oid_array* */
487
int parse_opt_object_name(const struct option *, const char *, int);
488
/* value is struct object_id* */
489
int parse_opt_object_id(const struct option *, const char *, int);
490
int parse_opt_commits(const struct option *, const char *, int);
491
int parse_opt_commit(const struct option *, const char *, int);
492
int parse_opt_tertiary(const struct option *, const char *, int);
493
int parse_opt_string_list(const struct option *, const char *, int);
494
int parse_opt_strvec(const struct option *, const char *, int);
495
int parse_opt_noop_cb(const struct option *, const char *, int);
496
int parse_opt_passthru(const struct option *, const char *, int);
497
int parse_opt_passthru_argv(const struct option *, const char *, int);
498
/* value is enum branch_track* */
499
int parse_opt_tracking_mode(const struct option *, const char *, int);
500
501
10.5k
#define OPT__VERBOSE(var, h)  OPT_COUNTUP('v', "verbose", (var), (h))
502
10.5k
#define OPT__QUIET(var, h)    OPT_COUNTUP('q', "quiet",   (var), (h))
503
0
#define OPT__VERBOSITY(var) { \
504
0
  .type = OPTION_CALLBACK, \
505
0
  .short_name = 'v', \
506
0
  .long_name = "verbose", \
507
0
  .value = (var), \
508
0
  .help = N_("be more verbose"), \
509
0
  .flags = PARSE_OPT_NOARG, \
510
0
  .callback = &parse_opt_verbosity_cb, \
511
0
}, { \
512
0
  .type = OPTION_CALLBACK, \
513
0
  .short_name = 'q', \
514
0
  .long_name = "quiet", \
515
0
  .value = (var), \
516
0
  .help = N_("be more quiet"), \
517
0
  .flags = PARSE_OPT_NOARG, \
518
0
  .callback = &parse_opt_verbosity_cb, \
519
0
}
520
0
#define OPT__DRY_RUN(var, h)  OPT_BOOL('n', "dry-run", (var), (h))
521
1.38k
#define OPT__FORCE(var, h, f) OPT_COUNTUP_F('f', "force",   (var), (h), (f))
522
6.91k
#define OPT__ABBREV(var) { \
523
6.91k
  .type = OPTION_CALLBACK, \
524
6.91k
  .long_name = "abbrev", \
525
6.91k
  .value = (var), \
526
6.91k
  .argh = N_("n"), \
527
6.91k
  .help = N_("use <n> digits to display object names"), \
528
6.91k
  .flags = PARSE_OPT_OPTARG, \
529
6.91k
  .callback = &parse_opt_abbrev_cb, \
530
6.91k
}
531
#define OPT__SUPER_PREFIX(var) \
532
0
  OPT_STRING_F(0, "super-prefix", (var), N_("prefix"), \
533
0
    N_("prefixed path to initial superproject"), PARSE_OPT_HIDDEN)
534
535
#define OPT__COLOR(var, h) \
536
1.38k
  OPT_COLOR_FLAG(0, "color", (var), (h))
537
1.38k
#define OPT_COLUMN(s, l, v, h) { \
538
1.38k
  .type = OPTION_CALLBACK, \
539
1.38k
  .short_name = (s), \
540
1.38k
  .long_name = (l), \
541
1.38k
  .value = (v), \
542
1.38k
  .argh = N_("style"), \
543
1.38k
  .help = (h), \
544
1.38k
  .flags = PARSE_OPT_OPTARG, \
545
1.38k
  .callback = parseopt_column_callback, \
546
1.38k
}
547
0
#define OPT_PASSTHRU(s, l, v, a, h, f) { \
548
0
  .type = OPTION_CALLBACK, \
549
0
  .short_name = (s), \
550
0
  .long_name = (l), \
551
0
  .value = (v), \
552
0
  .argh = (a), \
553
0
  .help = (h), \
554
0
  .flags = (f), \
555
0
  .callback = parse_opt_passthru, \
556
0
}
557
9.16k
#define OPT_PASSTHRU_ARGV(s, l, v, a, h, f) { \
558
9.16k
  .type = OPTION_CALLBACK, \
559
9.16k
  .short_name = (s), \
560
9.16k
  .long_name = (l), \
561
9.16k
  .value = (v), \
562
9.16k
  .argh = (a), \
563
9.16k
  .help = (h), \
564
9.16k
  .flags = (f), \
565
9.16k
  .callback = parse_opt_passthru_argv, \
566
9.16k
}
567
5.52k
#define _OPT_CONTAINS_OR_WITH(l, v, h, f) { \
568
5.52k
  .type = OPTION_CALLBACK, \
569
5.52k
  .long_name = (l), \
570
5.52k
  .value = (v), \
571
5.52k
  .argh = N_("commit"), \
572
5.52k
  .help = (h), \
573
5.52k
  .flags = PARSE_OPT_LASTARG_DEFAULT | (f), \
574
5.52k
  .callback = parse_opt_commits, \
575
5.52k
  .defval = (intptr_t) "HEAD", \
576
5.52k
}
577
1.38k
#define OPT_CONTAINS(v, h) _OPT_CONTAINS_OR_WITH("contains", v, h, PARSE_OPT_NONEG)
578
1.38k
#define OPT_NO_CONTAINS(v, h) _OPT_CONTAINS_OR_WITH("no-contains", v, h, PARSE_OPT_NONEG)
579
1.38k
#define OPT_WITH(v, h) _OPT_CONTAINS_OR_WITH("with", v, h, PARSE_OPT_HIDDEN | PARSE_OPT_NONEG)
580
1.38k
#define OPT_WITHOUT(v, h) _OPT_CONTAINS_OR_WITH("without", v, h, PARSE_OPT_HIDDEN | PARSE_OPT_NONEG)
581
9.16k
#define OPT_CLEANUP(v) OPT_STRING(0, "cleanup", v, N_("mode"), N_("how to strip spaces and #comments from message"))
582
9.16k
#define OPT_PATHSPEC_FROM_FILE(v) OPT_FILENAME(0, "pathspec-from-file", v, N_("read pathspec from file"))
583
9.16k
#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"))
584
0
#define OPT_AUTOSTASH(v) OPT_BOOL(0, "autostash", v, N_("automatically stash/stash pop before and after"))
585
586
#define OPT_IPVERSION(v) \
587
0
  OPT_SET_INT_F('4', "ipv4", (v), N_("use IPv4 addresses only"), \
588
0
    TRANSPORT_FAMILY_IPV4, PARSE_OPT_NONEG), \
589
0
  OPT_SET_INT_F('6', "ipv6", (v), N_("use IPv6 addresses only"), \
590
0
    TRANSPORT_FAMILY_IPV6, PARSE_OPT_NONEG)
591
592
#endif