parseopt: move definition of enum parse_opt_result up
[git] / parse-options.h
1 #ifndef PARSE_OPTIONS_H
2 #define PARSE_OPTIONS_H
3
4 enum parse_opt_type {
5         /* special types */
6         OPTION_END,
7         OPTION_ARGUMENT,
8         OPTION_GROUP,
9         OPTION_NUMBER,
10         /* options with no arguments */
11         OPTION_BIT,
12         OPTION_NEGBIT,
13         OPTION_BITOP,
14         OPTION_COUNTUP,
15         OPTION_SET_INT,
16         OPTION_CMDMODE,
17         /* options with arguments (usually) */
18         OPTION_STRING,
19         OPTION_INTEGER,
20         OPTION_MAGNITUDE,
21         OPTION_CALLBACK,
22         OPTION_LOWLEVEL_CALLBACK,
23         OPTION_FILENAME
24 };
25
26 enum parse_opt_flags {
27         PARSE_OPT_KEEP_DASHDASH = 1,
28         PARSE_OPT_STOP_AT_NON_OPTION = 2,
29         PARSE_OPT_KEEP_ARGV0 = 4,
30         PARSE_OPT_KEEP_UNKNOWN = 8,
31         PARSE_OPT_NO_INTERNAL_HELP = 16,
32         PARSE_OPT_ONE_SHOT = 32
33 };
34
35 enum parse_opt_option_flags {
36         PARSE_OPT_OPTARG  = 1,
37         PARSE_OPT_NOARG   = 2,
38         PARSE_OPT_NONEG   = 4,
39         PARSE_OPT_HIDDEN  = 8,
40         PARSE_OPT_LASTARG_DEFAULT = 16,
41         PARSE_OPT_NODASH = 32,
42         PARSE_OPT_LITERAL_ARGHELP = 64,
43         PARSE_OPT_SHELL_EVAL = 256,
44         PARSE_OPT_NOCOMPLETE = 512,
45         PARSE_OPT_COMP_ARG = 1024
46 };
47
48 enum parse_opt_result {
49         PARSE_OPT_COMPLETE = -3,
50         PARSE_OPT_HELP = -2,
51         PARSE_OPT_ERROR = -1,   /* must be the same as error() */
52         PARSE_OPT_DONE = 0,     /* fixed so that "return 0" works */
53         PARSE_OPT_NON_OPTION,
54         PARSE_OPT_UNKNOWN
55 };
56
57 struct option;
58 typedef int parse_opt_cb(const struct option *, const char *arg, int unset);
59
60 struct parse_opt_ctx_t;
61 typedef enum parse_opt_result parse_opt_ll_cb(struct parse_opt_ctx_t *ctx,
62                                               const struct option *opt,
63                                               const char *arg, int unset);
64
65 /*
66  * `type`::
67  *   holds the type of the option, you must have an OPTION_END last in your
68  *   array.
69  *
70  * `short_name`::
71  *   the character to use as a short option name, '\0' if none.
72  *
73  * `long_name`::
74  *   the long option name, without the leading dashes, NULL if none.
75  *
76  * `value`::
77  *   stores pointers to the values to be filled.
78  *
79  * `argh`::
80  *   token to explain the kind of argument this option wants. Keep it
81  *   homogeneous across the repository. Should be wrapped by N_() for
82  *   translation.
83  *
84  * `help`::
85  *   the short help associated to what the option does.
86  *   Must never be NULL (except for OPTION_END).
87  *   OPTION_GROUP uses this pointer to store the group header.
88  *   Should be wrapped by N_() for translation.
89  *
90  * `flags`::
91  *   mask of parse_opt_option_flags.
92  *   PARSE_OPT_OPTARG: says that the argument is optional (not for BOOLEANs)
93  *   PARSE_OPT_NOARG: says that this option does not take an argument
94  *   PARSE_OPT_NONEG: says that this option cannot be negated
95  *   PARSE_OPT_HIDDEN: this option is skipped in the default usage, and
96  *                     shown only in the full usage.
97  *   PARSE_OPT_LASTARG_DEFAULT: says that this option will take the default
98  *                              value if no argument is given when the option
99  *                              is last on the command line. If the option is
100  *                              not last it will require an argument.
101  *                              Should not be used with PARSE_OPT_OPTARG.
102  *   PARSE_OPT_NODASH: this option doesn't start with a dash.
103  *   PARSE_OPT_LITERAL_ARGHELP: says that argh shouldn't be enclosed in brackets
104  *                              (i.e. '<argh>') in the help message.
105  *                              Useful for options with multiple parameters.
106  *   PARSE_OPT_NOCOMPLETE: by default all visible options are completable
107  *                         by git-completion.bash. This option suppresses that.
108  *   PARSE_OPT_COMP_ARG: this option forces to git-completion.bash to
109  *                       complete an option as --name= not --name even if
110  *                       the option takes optional argument.
111  *
112  * `callback`::
113  *   pointer to the callback to use for OPTION_CALLBACK
114  *
115  * `defval`::
116  *   default value to fill (*->value) with for PARSE_OPT_OPTARG.
117  *   OPTION_{BIT,SET_INT} store the {mask,integer} to put in the value when met.
118  *   CALLBACKS can use it like they want.
119  *
120  * `ll_callback`::
121  *   pointer to the callback to use for OPTION_LOWLEVEL_CALLBACK
122  *
123  */
124 struct option {
125         enum parse_opt_type type;
126         int short_name;
127         const char *long_name;
128         void *value;
129         const char *argh;
130         const char *help;
131
132         int flags;
133         parse_opt_cb *callback;
134         intptr_t defval;
135         parse_opt_ll_cb *ll_callback;
136         intptr_t extra;
137 };
138
139 #define OPT_BIT_F(s, l, v, h, b, f) { OPTION_BIT, (s), (l), (v), NULL, (h), \
140                                       PARSE_OPT_NOARG|(f), NULL, (b) }
141 #define OPT_COUNTUP_F(s, l, v, h, f) { OPTION_COUNTUP, (s), (l), (v), NULL, \
142                                        (h), PARSE_OPT_NOARG|(f) }
143 #define OPT_SET_INT_F(s, l, v, h, i, f) { OPTION_SET_INT, (s), (l), (v), NULL, \
144                                           (h), PARSE_OPT_NOARG | (f), NULL, (i) }
145 #define OPT_BOOL_F(s, l, v, h, f)   OPT_SET_INT_F(s, l, v, h, 1, f)
146 #define OPT_CALLBACK_F(s, l, v, a, h, f, cb)                    \
147         { OPTION_CALLBACK, (s), (l), (v), (a), (h), (f), (cb) }
148
149 #define OPT_END()                   { OPTION_END }
150 #define OPT_ARGUMENT(l, h)          { OPTION_ARGUMENT, 0, (l), NULL, NULL, \
151                                       (h), PARSE_OPT_NOARG}
152 #define OPT_GROUP(h)                { OPTION_GROUP, 0, NULL, NULL, NULL, (h) }
153 #define OPT_BIT(s, l, v, h, b)      OPT_BIT_F(s, l, v, h, b, 0)
154 #define OPT_BITOP(s, l, v, h, set, clear) { OPTION_BITOP, (s), (l), (v), NULL, (h), \
155                                             PARSE_OPT_NOARG|PARSE_OPT_NONEG, NULL, \
156                                             (set), NULL, (clear) }
157 #define OPT_NEGBIT(s, l, v, h, b)   { OPTION_NEGBIT, (s), (l), (v), NULL, \
158                                       (h), PARSE_OPT_NOARG, NULL, (b) }
159 #define OPT_COUNTUP(s, l, v, h)     OPT_COUNTUP_F(s, l, v, h, 0)
160 #define OPT_SET_INT(s, l, v, h, i)  OPT_SET_INT_F(s, l, v, h, i, 0)
161 #define OPT_BOOL(s, l, v, h)        OPT_BOOL_F(s, l, v, h, 0)
162 #define OPT_HIDDEN_BOOL(s, l, v, h) { OPTION_SET_INT, (s), (l), (v), NULL, \
163                                       (h), PARSE_OPT_NOARG | PARSE_OPT_HIDDEN, NULL, 1}
164 #define OPT_CMDMODE(s, l, v, h, i)  { OPTION_CMDMODE, (s), (l), (v), NULL, \
165                                       (h), PARSE_OPT_NOARG|PARSE_OPT_NONEG, NULL, (i) }
166 #define OPT_INTEGER(s, l, v, h)     { OPTION_INTEGER, (s), (l), (v), N_("n"), (h) }
167 #define OPT_MAGNITUDE(s, l, v, h)   { OPTION_MAGNITUDE, (s), (l), (v), \
168                                       N_("n"), (h), PARSE_OPT_NONEG }
169 #define OPT_STRING(s, l, v, a, h)   { OPTION_STRING,  (s), (l), (v), (a), (h) }
170 #define OPT_STRING_LIST(s, l, v, a, h) \
171                                     { OPTION_CALLBACK, (s), (l), (v), (a), \
172                                       (h), 0, &parse_opt_string_list }
173 #define OPT_UYN(s, l, v, h)         { OPTION_CALLBACK, (s), (l), (v), NULL, \
174                                       (h), PARSE_OPT_NOARG, &parse_opt_tertiary }
175 #define OPT_EXPIRY_DATE(s, l, v, h) \
176         { OPTION_CALLBACK, (s), (l), (v), N_("expiry-date"),(h), 0,     \
177           parse_opt_expiry_date_cb }
178 #define OPT_CALLBACK(s, l, v, a, h, f) OPT_CALLBACK_F(s, l, v, a, h, 0, f)
179 #define OPT_NUMBER_CALLBACK(v, h, f) \
180         { OPTION_NUMBER, 0, NULL, (v), NULL, (h), \
181           PARSE_OPT_NOARG | PARSE_OPT_NONEG, (f) }
182 #define OPT_FILENAME(s, l, v, h)    { OPTION_FILENAME, (s), (l), (v), \
183                                        N_("file"), (h) }
184 #define OPT_COLOR_FLAG(s, l, v, h) \
185         { OPTION_CALLBACK, (s), (l), (v), N_("when"), (h), PARSE_OPT_OPTARG, \
186                 parse_opt_color_flag_cb, (intptr_t)"always" }
187
188 #define OPT_NOOP_NOARG(s, l) \
189         { OPTION_CALLBACK, (s), (l), NULL, NULL, \
190           N_("no-op (backward compatibility)"),         \
191           PARSE_OPT_HIDDEN | PARSE_OPT_NOARG, parse_opt_noop_cb }
192
193 /*
194  * parse_options() will filter out the processed options and leave the
195  * non-option arguments in argv[]. argv0 is assumed program name and
196  * skipped.
197  *
198  * usagestr strings should be marked for translation with N_().
199  *
200  * Returns the number of arguments left in argv[].
201  *
202  * In one-shot mode, argv0 is not a program name, argv[] is left
203  * untouched and parse_options() returns the number of options
204  * processed.
205  */
206 int parse_options(int argc, const char **argv, const char *prefix,
207                   const struct option *options,
208                   const char * const usagestr[], int flags);
209
210 NORETURN void usage_with_options(const char * const *usagestr,
211                                  const struct option *options);
212
213 NORETURN void usage_msg_opt(const char *msg,
214                             const char * const *usagestr,
215                             const struct option *options);
216
217 int optbug(const struct option *opt, const char *reason);
218 const char *optname(const struct option *opt, int flags);
219
220 /*
221  * Use these assertions for callbacks that expect to be called with NONEG and
222  * NOARG respectively, and do not otherwise handle the "unset" and "arg"
223  * parameters.
224  */
225 #define BUG_ON_OPT_NEG(unset) do { \
226         if ((unset)) \
227                 BUG("option callback does not expect negation"); \
228 } while (0)
229 #define BUG_ON_OPT_ARG(arg) do { \
230         if ((arg)) \
231                 BUG("option callback does not expect an argument"); \
232 } while (0)
233
234 /*----- incremental advanced APIs -----*/
235
236 /*
237  * It's okay for the caller to consume argv/argc in the usual way.
238  * Other fields of that structure are private to parse-options and should not
239  * be modified in any way.
240  */
241 struct parse_opt_ctx_t {
242         const char **argv;
243         const char **out;
244         int argc, cpidx, total;
245         const char *opt;
246         int flags;
247         const char *prefix;
248 };
249
250 void parse_options_start(struct parse_opt_ctx_t *ctx,
251                          int argc, const char **argv, const char *prefix,
252                          const struct option *options, int flags);
253
254 int parse_options_step(struct parse_opt_ctx_t *ctx,
255                        const struct option *options,
256                        const char * const usagestr[]);
257
258 int parse_options_end(struct parse_opt_ctx_t *ctx);
259
260 struct option *parse_options_concat(struct option *a, struct option *b);
261
262 /*----- some often used options -----*/
263 int parse_opt_abbrev_cb(const struct option *, const char *, int);
264 int parse_opt_expiry_date_cb(const struct option *, const char *, int);
265 int parse_opt_color_flag_cb(const struct option *, const char *, int);
266 int parse_opt_verbosity_cb(const struct option *, const char *, int);
267 int parse_opt_object_name(const struct option *, const char *, int);
268 int parse_opt_commits(const struct option *, const char *, int);
269 int parse_opt_tertiary(const struct option *, const char *, int);
270 int parse_opt_string_list(const struct option *, const char *, int);
271 int parse_opt_noop_cb(const struct option *, const char *, int);
272 int parse_opt_unknown_cb(struct parse_opt_ctx_t *ctx, const struct option *, const char *, int);
273 int parse_opt_passthru(const struct option *, const char *, int);
274 int parse_opt_passthru_argv(const struct option *, const char *, int);
275
276 #define OPT__VERBOSE(var, h)  OPT_COUNTUP('v', "verbose", (var), (h))
277 #define OPT__QUIET(var, h)    OPT_COUNTUP('q', "quiet",   (var), (h))
278 #define OPT__VERBOSITY(var) \
279         { OPTION_CALLBACK, 'v', "verbose", (var), NULL, N_("be more verbose"), \
280           PARSE_OPT_NOARG, &parse_opt_verbosity_cb, 0 }, \
281         { OPTION_CALLBACK, 'q', "quiet", (var), NULL, N_("be more quiet"), \
282           PARSE_OPT_NOARG, &parse_opt_verbosity_cb, 0 }
283 #define OPT__DRY_RUN(var, h)  OPT_BOOL('n', "dry-run", (var), (h))
284 #define OPT__FORCE(var, h, f) OPT_COUNTUP_F('f', "force",   (var), (h), (f))
285 #define OPT__ABBREV(var)  \
286         { OPTION_CALLBACK, 0, "abbrev", (var), N_("n"), \
287           N_("use <n> digits to display SHA-1s"),       \
288           PARSE_OPT_OPTARG, &parse_opt_abbrev_cb, 0 }
289 #define OPT__COLOR(var, h) \
290         OPT_COLOR_FLAG(0, "color", (var), (h))
291 #define OPT_COLUMN(s, l, v, h) \
292         { OPTION_CALLBACK, (s), (l), (v), N_("style"), (h), PARSE_OPT_OPTARG, parseopt_column_callback }
293 #define OPT_PASSTHRU(s, l, v, a, h, f) \
294         { OPTION_CALLBACK, (s), (l), (v), (a), (h), (f), parse_opt_passthru }
295 #define OPT_PASSTHRU_ARGV(s, l, v, a, h, f) \
296         { OPTION_CALLBACK, (s), (l), (v), (a), (h), (f), parse_opt_passthru_argv }
297 #define _OPT_CONTAINS_OR_WITH(name, variable, help, flag) \
298         { OPTION_CALLBACK, 0, name, (variable), N_("commit"), (help), \
299           PARSE_OPT_LASTARG_DEFAULT | flag, \
300           parse_opt_commits, (intptr_t) "HEAD" \
301         }
302 #define OPT_CONTAINS(v, h) _OPT_CONTAINS_OR_WITH("contains", v, h, PARSE_OPT_NONEG)
303 #define OPT_NO_CONTAINS(v, h) _OPT_CONTAINS_OR_WITH("no-contains", v, h, PARSE_OPT_NONEG)
304 #define OPT_WITH(v, h) _OPT_CONTAINS_OR_WITH("with", v, h, PARSE_OPT_HIDDEN | PARSE_OPT_NONEG)
305 #define OPT_WITHOUT(v, h) _OPT_CONTAINS_OR_WITH("without", v, h, PARSE_OPT_HIDDEN | PARSE_OPT_NONEG)
306
307 #endif