]> git.ipfire.org Git - thirdparty/git.git/blame - parse-options.h
Merge branch 'master' into sb/opt-filename
[thirdparty/git.git] / parse-options.h
CommitLineData
4a59fd13
PH
1#ifndef PARSE_OPTIONS_H
2#define PARSE_OPTIONS_H
3
4enum parse_opt_type {
db7244bd 5 /* special types */
4a59fd13 6 OPTION_END,
580d5bff 7 OPTION_ARGUMENT,
d7a38c54 8 OPTION_GROUP,
e0319ff5 9 OPTION_NUMBER,
db7244bd
PH
10 /* options with no arguments */
11 OPTION_BIT,
2f4b97f9 12 OPTION_NEGBIT,
db7244bd
PH
13 OPTION_BOOLEAN, /* _INCR would have been a better name */
14 OPTION_SET_INT,
15 OPTION_SET_PTR,
16 /* options with arguments (usually) */
4a59fd13
PH
17 OPTION_STRING,
18 OPTION_INTEGER,
ffe659f9 19 OPTION_CALLBACK,
4a59fd13
PH
20};
21
22enum parse_opt_flags {
23 PARSE_OPT_KEEP_DASHDASH = 1,
a0ec9d25 24 PARSE_OPT_STOP_AT_NON_OPTION = 2,
a32a4eaa 25 PARSE_OPT_KEEP_ARGV0 = 4,
b5ce3a54 26 PARSE_OPT_KEEP_UNKNOWN = 8,
b92891f9 27 PARSE_OPT_NO_INTERNAL_HELP = 16,
4a59fd13
PH
28};
29
ffe659f9
PH
30enum parse_opt_option_flags {
31 PARSE_OPT_OPTARG = 1,
f481e22a 32 PARSE_OPT_NOARG = 2,
db7244bd 33 PARSE_OPT_NONEG = 4,
dd3bf0f4 34 PARSE_OPT_HIDDEN = 8,
1cc6985c 35 PARSE_OPT_LASTARG_DEFAULT = 16,
51a9949e 36 PARSE_OPT_NODASH = 32,
ffe659f9
PH
37};
38
39struct option;
40typedef int parse_opt_cb(const struct option *, const char *arg, int unset);
41
9b3beb58
PH
42/*
43 * `type`::
44 * holds the type of the option, you must have an OPTION_END last in your
45 * array.
46 *
47 * `short_name`::
48 * the character to use as a short option name, '\0' if none.
49 *
50 * `long_name`::
51 * the long option name, without the leading dashes, NULL if none.
52 *
53 * `value`::
54 * stores pointers to the values to be filled.
55 *
56 * `argh`::
57 * token to explain the kind of argument this option wants. Keep it
3ea3c215 58 * homogeneous across the repository.
9b3beb58
PH
59 *
60 * `help`::
61 * the short help associated to what the option does.
62 * Must never be NULL (except for OPTION_END).
63 * OPTION_GROUP uses this pointer to store the group header.
64 *
65 * `flags`::
66 * mask of parse_opt_option_flags.
3ea3c215 67 * PARSE_OPT_OPTARG: says that the argument is optional (not for BOOLEANs)
9b3beb58 68 * PARSE_OPT_NOARG: says that this option takes no argument, for CALLBACKs
db7244bd 69 * PARSE_OPT_NONEG: says that this option cannot be negated
51a9949e
RS
70 * PARSE_OPT_HIDDEN: this option is skipped in the default usage, and
71 * shown only in the full usage.
72 * PARSE_OPT_LASTARG_DEFAULT: if no argument is given, the default value
73 * is used.
74 * PARSE_OPT_NODASH: this option doesn't start with a dash.
9b3beb58
PH
75 *
76 * `callback`::
77 * pointer to the callback to use for OPTION_CALLBACK.
78 *
79 * `defval`::
80 * default value to fill (*->value) with for PARSE_OPT_OPTARG.
db7244bd
PH
81 * OPTION_{BIT,SET_INT,SET_PTR} store the {mask,integer,pointer} to put in
82 * the value when met.
9b3beb58
PH
83 * CALLBACKS can use it like they want.
84 */
4a59fd13
PH
85struct option {
86 enum parse_opt_type type;
87 int short_name;
88 const char *long_name;
89 void *value;
d7a38c54
PH
90 const char *argh;
91 const char *help;
ffe659f9
PH
92
93 int flags;
94 parse_opt_cb *callback;
ffe659f9 95 intptr_t defval;
4a59fd13
PH
96};
97
98#define OPT_END() { OPTION_END }
580d5bff 99#define OPT_ARGUMENT(l, h) { OPTION_ARGUMENT, 0, (l), NULL, NULL, (h) }
d7a38c54 100#define OPT_GROUP(h) { OPTION_GROUP, 0, NULL, NULL, NULL, (h) }
db7244bd 101#define OPT_BIT(s, l, v, h, b) { OPTION_BIT, (s), (l), (v), NULL, (h), 0, NULL, (b) }
2f4b97f9 102#define OPT_NEGBIT(s, l, v, h, b) { OPTION_NEGBIT, (s), (l), (v), NULL, (h), 0, NULL, (b) }
d7a38c54 103#define OPT_BOOLEAN(s, l, v, h) { OPTION_BOOLEAN, (s), (l), (v), NULL, (h) }
db7244bd
PH
104#define OPT_SET_INT(s, l, v, h, i) { OPTION_SET_INT, (s), (l), (v), NULL, (h), 0, NULL, (i) }
105#define OPT_SET_PTR(s, l, v, h, p) { OPTION_SET_PTR, (s), (l), (v), NULL, (h), 0, NULL, (p) }
d7a38c54
PH
106#define OPT_INTEGER(s, l, v, h) { OPTION_INTEGER, (s), (l), (v), NULL, (h) }
107#define OPT_STRING(s, l, v, a, h) { OPTION_STRING, (s), (l), (v), (a), (h) }
1f4a711a
MB
108#define OPT_DATE(s, l, v, h) \
109 { OPTION_CALLBACK, (s), (l), (v), "time",(h), 0, \
110 parse_opt_approxidate_cb }
ffe659f9
PH
111#define OPT_CALLBACK(s, l, v, a, h, f) \
112 { OPTION_CALLBACK, (s), (l), (v), (a), (h), 0, (f) }
e0319ff5
RS
113#define OPT_NUMBER_CALLBACK(v, h, f) \
114 { OPTION_NUMBER, 0, NULL, (v), NULL, (h), \
115 PARSE_OPT_NOARG | PARSE_OPT_NONEG, (f) }
4a59fd13
PH
116
117/* parse_options() will filter out the processed options and leave the
3ea3c215 118 * non-option arguments in argv[].
4a59fd13
PH
119 * Returns the number of arguments left in argv[].
120 */
121extern int parse_options(int argc, const char **argv,
122 const struct option *options,
d7a38c54
PH
123 const char * const usagestr[], int flags);
124
125extern NORETURN void usage_with_options(const char * const *usagestr,
126 const struct option *options);
4a59fd13 127
3ea3c215 128/*----- incremental advanced APIs -----*/
7e7bbcb4 129
ee68b87a
PH
130enum {
131 PARSE_OPT_HELP = -1,
132 PARSE_OPT_DONE,
133 PARSE_OPT_UNKNOWN,
134};
135
26141b5b
PH
136/*
137 * It's okay for the caller to consume argv/argc in the usual way.
138 * Other fields of that structure are private to parse-options and should not
139 * be modified in any way.
140 */
7e7bbcb4
PH
141struct parse_opt_ctx_t {
142 const char **argv;
143 const char **out;
144 int argc, cpidx;
145 const char *opt;
146 int flags;
147};
148
ee68b87a
PH
149extern int parse_options_usage(const char * const *usagestr,
150 const struct option *opts);
151
7e7bbcb4
PH
152extern void parse_options_start(struct parse_opt_ctx_t *ctx,
153 int argc, const char **argv, int flags);
154
ff43ec3e
PH
155extern int parse_options_step(struct parse_opt_ctx_t *ctx,
156 const struct option *options,
157 const char * const usagestr[]);
158
7e7bbcb4
PH
159extern int parse_options_end(struct parse_opt_ctx_t *ctx);
160
161
0ce865b1
PH
162/*----- some often used options -----*/
163extern int parse_opt_abbrev_cb(const struct option *, const char *, int);
1f4a711a 164extern int parse_opt_approxidate_cb(const struct option *, const char *, int);
7f87aff2 165extern int parse_opt_verbosity_cb(const struct option *, const char *, int);
269defdf 166extern int parse_opt_with_commit(const struct option *, const char *, int);
0ce865b1
PH
167
168#define OPT__VERBOSE(var) OPT_BOOLEAN('v', "verbose", (var), "be verbose")
169#define OPT__QUIET(var) OPT_BOOLEAN('q', "quiet", (var), "be quiet")
7f87aff2
TA
170#define OPT__VERBOSITY(var) \
171 { OPTION_CALLBACK, 'v', "verbose", (var), NULL, "be more verbose", \
172 PARSE_OPT_NOARG, &parse_opt_verbosity_cb, 0 }, \
173 { OPTION_CALLBACK, 'q', "quiet", (var), NULL, "be more quiet", \
174 PARSE_OPT_NOARG, &parse_opt_verbosity_cb, 0 }
0ce865b1
PH
175#define OPT__DRY_RUN(var) OPT_BOOLEAN('n', "dry-run", (var), "dry run")
176#define OPT__ABBREV(var) \
177 { OPTION_CALLBACK, 0, "abbrev", (var), "n", \
178 "use <n> digits to display SHA-1s", \
179 PARSE_OPT_OPTARG, &parse_opt_abbrev_cb, 0 }
180
dbd0f5c7
JH
181extern const char *parse_options_fix_filename(const char *prefix, const char *file);
182
4a59fd13 183#endif