]> mj.ucw.cz Git - libucw.git/blob - ucw/opt.h
Opt: Fixed a typo in OPT_UINT.
[libucw.git] / ucw / opt.h
1 /*
2  *      UCW Library -- Parsing of command line options
3  *
4  *      (c) 2013 Jan Moskyto Matejka <mq@ucw.cz>
5  *      (c) 2014 Martin Mares <mj@ucw.cz>
6  *      (c) 2014 Pavel Charvat <pchar@ucw.cz>
7  *
8  *      This software may be freely distributed and used according to the terms
9  *      of the GNU Lesser General Public License.
10  */
11
12 #ifndef _UCW_OPT_H
13 #define _UCW_OPT_H
14
15 #include <ucw/lib.h>
16 #include <ucw/conf.h>
17
18 #include <stdlib.h>
19 #include <stdio.h>
20
21 #ifdef CONFIG_UCW_CLEAN_ABI
22 #define cf_def_file ucw_cf_def_file
23 #define cf_env_file ucw_cf_env_file
24 #define opt_conf_hook_internal ucw_opt_conf_hook_internal
25 #define opt_failure ucw_opt_failure
26 #define opt_handle_config ucw_opt_handle_config
27 #define opt_handle_dumpconfig ucw_opt_handle_dumpconfig
28 #define opt_handle_help ucw_opt_handle_help
29 #define opt_handle_set ucw_opt_handle_set
30 #define opt_help ucw_opt_help
31 #define opt_parse ucw_opt_parse
32 #endif
33
34 #define OPT_EXIT_BAD_ARGS 2
35
36 /***
37  * [[classes]]
38  * Option classes
39  * --------------
40  *
41  * Each option belongs to one of the following classes, which define
42  * the overall behavior of the option. In most cases, the classes
43  * are set automatically by <<macros,declaration macros>>.
44  *
45  * - `OPT_CL_END`: this is not a real option class, but a signal
46  *   that the list of options ends.
47  * - `OPT_CL_BOOL`: a boolean option. If specified without an argument,
48  *   it sets the corresponding variable to 1 (true). So does an argument of
49  *   `1`, `y`, `yes`, or `true`. Conversely, an argument of `0`, `n`, `no`,
50  *   or `false` sets the variable to 0 (false) and the same happens if
51  *   the option is given as `--no-`'option' with no argument.
52  * - `OPT_CL_STATIC`: options of this class just take a value and store
53  *   it in the variable.
54  * - `OPT_CL_MULTIPLE`: collect values from all occurrences of this
55  *   option in a growing array (see `gary.h`).
56  * - `OPT_CL_SWITCH`: a multiple-choice switch, which sets the variable
57  *   to a fixed value provided in option definition.
58  * - `OPT_CL_INC`: increments the variable (or decrements, if the
59  *   `OPT_NEGATIVE` flag is set).
60  * - `OPT_CL_CALL`: instead of setting a variable, call a function
61  *   and pass the value of the option to it.
62  * - `OPT_CL_SECTION`: not a real option, but an instruction to insert
63  *   contents of another list of options.
64  * - `OPT_CL_HELP`: no option, just print a help text.
65  * - `OPT_CL_HOOK`: no option, but a definition of a <<hooks,hook>>.
66  ***/
67
68 enum opt_class {
69   OPT_CL_END,
70   OPT_CL_BOOL,
71   OPT_CL_STATIC,
72   OPT_CL_MULTIPLE,
73   OPT_CL_SWITCH,
74   OPT_CL_INC,
75   OPT_CL_CALL,
76   OPT_CL_SECTION,
77   OPT_CL_HELP,
78   OPT_CL_HOOK,
79 };
80
81 /***
82  * [[opt_item]]
83  * Option definitions
84  * ------------------
85  *
86  * The list of options is represented by `struct opt_section`, which points to
87  * a sequence of `struct opt_item`s.
88  *
89  * These structures are seldom used directly -- instead, they are produced
90  * by <<macros,declaration macros>>.
91  ***/
92
93 /** A section of option list. **/
94 struct opt_section {
95   struct opt_item * opt;
96 };
97
98 /** A definition of a single option item. **/
99 struct opt_item {
100   const char * name;                    // long name (NULL if none)
101   int letter;                           // short name (0 if none)
102   void * ptr;                           // variable to store the value to
103   const char * help;                    // description in --help
104   union opt_union {
105     struct opt_section * section;       // subsection for OPT_CL_SECTION
106     int value;                          // value for OPT_CL_SWITCH
107     void (* call)(struct opt_item * opt, const char * value, void * data);              // function to call for OPT_CL_CALL
108     void (* hook)(struct opt_item * opt, uns event, const char * value, void * data);   // function to call for OPT_CL_HOOK
109     struct cf_user_type * utype;        // specification of the user-defined type for CT_USER
110   } u;
111   u16 flags;                            // as defined below (for hooks, event mask is stored instead)
112   byte cls;                             // enum opt_class
113   byte type;                            // enum cf_type
114 };
115
116 /***
117  * [[flags]]
118  * Option flags
119  * ------------
120  *
121  * Each option can specify a combination of the following flags.
122  ***/
123
124 #define OPT_REQUIRED        0x1         /** The option must be always present. **/
125 #define OPT_REQUIRED_VALUE  0x2         /** The option must have a value. **/
126 #define OPT_NO_VALUE        0x4         /** The option must have no value. **/
127 #define OPT_MAYBE_VALUE     0x8         /** The option may have a value. **/
128 #define OPT_NEGATIVE        0x10        /** Reversing the effect of OPT_INC or saving @false into OPT_BOOL. **/
129 #define OPT_NO_HELP         0x20        /** Exclude this option from the help. **/
130 #define OPT_LAST_ARG        0x40        /** Stop processing arguments after this line. **/
131 #define OPT_SINGLE          0x100       /** The option must appear at most once. **/
132 #define OPT_MULTIPLE        0x200       /** The option may appear multiple times; will save all the values into a simple list. **/
133 #define OPT_SEEN_AS_LONG    0x400       // Used internally to signal that we currently process the long form of the option
134 #define OPT_BEFORE_CONFIG   0x800       /** The option may appear before a config file is loaded. **/
135 #define OPT_INTERNAL        0x4000      // Used internally to ask for passing of struct opt_context to OPT_CALL
136
137 /**
138  * If none of these flags are specified, a default is chosen automatically
139  * according to option class:
140  *
141  * - `OPT_MAYBE_VALUE` for `OPT_CL_STATIC`
142  * - `OPT_REQUIRED_VALUE` for `OPT_CL_MULTIPLE`
143  * - `OPT_NO_VALUE` for `OPT_CL_BOOL`, `OPT_CL_SWITCH` and `OPT_CL_INC`
144  * - An error is reported in all other cases.
145  **/
146 #define OPT_VALUE_FLAGS     (OPT_REQUIRED_VALUE | OPT_NO_VALUE | OPT_MAYBE_VALUE)
147
148 /***
149  * [[macros]]
150  * Macros for declaration of options
151  * ---------------------------------
152  *
153  * In most cases, option definitions are built using these macros.
154  ***/
155
156 /** Used inside `struct opt_section` to start a list of items. **/
157 #define OPT_ITEMS       .opt = ( struct opt_item[] )
158
159 /** No option, just a piece of help text. **/
160 #define OPT_HELP(line) { .help = line, .cls = OPT_CL_HELP }
161
162 /** Standard `--help` option. **/
163 #define OPT_HELP_OPTION OPT_CALL(0, "help", opt_handle_help, NULL, OPT_BEFORE_CONFIG | OPT_INTERNAL | OPT_NO_VALUE, "\tShow this help")
164
165 /** Boolean option. @target should be a variable of type `int`. **/
166 #define OPT_BOOL(shortopt, longopt, target, fl, desc) { .letter = shortopt, .name = longopt, .ptr = CHECK_PTR_TYPE(&target, int *), .help = desc, .flags = fl, .cls = OPT_CL_BOOL, .type = CT_INT }
167
168 /** String option. @target should be a variable of type `char *`. **/
169 #define OPT_STRING(shortopt, longopt, target, fl, desc) { .letter = shortopt, .name = longopt, .ptr = CHECK_PTR_TYPE(&target, char **), .help = desc, .flags = fl, .cls = OPT_CL_STATIC, .type = CT_STRING }
170
171 /** Ordinary integer option. @target should be a variable of type `int`. **/
172 #define OPT_INT(shortopt, longopt, target, fl, desc) { .letter = shortopt, .name = longopt, .ptr = CHECK_PTR_TYPE(&target, int *), .help = desc, .flags = fl, .cls = OPT_CL_STATIC, .type = CT_INT }
173
174 /** Unsigned integer option. @target should be a variable of type `uint`. **/
175 #define OPT_UINT(shortopt, longopt, target, fl, desc) { .letter = shortopt, .name = longopt, .ptr = CHECK_PTR_TYPE(&target, uint *), .help = desc, .flags = fl, .cls = OPT_CL_STATIC, .type = CT_INT }
176
177 /** 64-bit integer option. @target should be a variable of type `u64`. **/
178 #define OPT_U64(shortopt, longopt, target, fl, desc) { .letter = shortopt, .name = longopt, .ptr = CHECK_PTR_TYPE(&target, u64 *), .help = desc, .flags = fl, .cls = OPT_CL_STATIC, .type = CT_U64 }
179
180 /** Floating-point option. @target should be a variable of type `double`. **/
181 #define OPT_DOUBLE(shortopt, longopt, target, fl, desc) { .letter = shortopt, .name = longopt, .ptr = CHECK_PTR_TYPE(&target, double *), .help = desc, .flags = fl, .cls = OPT_CL_STATIC, .type = CT_DOUBLE }
182
183 /** IP address option, currently IPv4 only. @target should be a variable of type `u32`. **/
184 #define OPT_IP(shortopt, longopt, target, fl, desc) { .letter = shortopt, .name = longopt, .ptr = CHECK_PTR_TYPE(&target, u32 *), .help = desc, .flags = fl, .cls = OPT_CL_STATIC, .type = CT_IP }
185
186 /** Multi-valued string option. @target should be a growing array of `int`s. **/
187 #define OPT_BOOL_MULTIPLE(shortopt, longopt, target, fl, desc) { .letter = shortopt, .name = longopt, .ptr = CHECK_PTR_TYPE(&target, char ***), .help = desc, .flags = fl, .cls = OPT_CL_MULTIPLE, .type = CT_STRING }
188
189 /** Multi-valued integer option. @target should be a growing array of `int`s. **/
190 #define OPT_INT_MULTIPLE(shortopt, longopt, target, fl, desc) { .letter = shortopt, .name = longopt, .ptr = CHECK_PTR_TYPE(&target, int **), .help = desc, .flags = fl, .cls = OPT_CL_MULTIPLE, .type = CT_INT }
191
192 /** Multi-valued unsigned integer option. @target should be a growing array of `uint`s. **/
193 #define OPT_UINT_MULTIPLE(shortopt, longopt, target, fl, desc) { .letter = shortopt, .name = longopt, .ptr = CHECK_PTR_TYPE(&target, uint **), .help = desc, .flags = fl, .cls = OPT_CL_MULTIPLE, .type = CT_INT }
194
195 /** Multi-valued 64-bit integer option. @target should be a growing array of `u64`s. **/
196 #define OPT_U64_MULTIPLE(shortopt, longopt, target, fl, desc) { .letter = shortopt, .name = longopt, .ptr = CHECK_PTR_TYPE(&target, u64 **), .help = desc, .flags = fl, .cls = OPT_CL_MULTIPLE, .type = CT_U64 }
197
198 /** Multi-valued floating-point option. @target should be a growing array of `double`s. **/
199 #define OPT_DOUBLE_MULTIPLE(shortopt, longopt, target, fl, desc) { .letter = shortopt, .name = longopt, .ptr = CHECK_PTR_TYPE(&target, double **), .help = desc, .flags = fl, .cls = OPT_CL_MULTIPLE, .type = CT_DOUBLE }
200
201 /** Multi-valued IPv4 address option. @target should be a growing array of `u32`s. **/
202 #define OPT_IP_MULTIPLE(shortopt, longopt, target, fl, desc) { .letter = shortopt, .name = longopt, .ptr = CHECK_PTR_TYPE(&target, u32 **), .help = desc, .flags = fl, .cls = OPT_CL_MULTIPLE, .type = CT_IP }
203
204 /** Switch option. @target should be a variable of type `int` and it will be set to the value @val. **/
205 #define OPT_SWITCH(shortopt, longopt, target, val, fl, desc) { .letter = shortopt, .name = longopt, .ptr = CHECK_PTR_TYPE(&target, int *), .help = desc, .flags = fl, .cls = OPT_CL_SWITCH, .type = CT_LOOKUP, .u.value = val }
206
207 /** Incrementing option. @target should be a variable of type `int`. **/
208 #define OPT_INC(shortopt, longopt, target, fl, desc) { .letter = shortopt, .name = longopt, .ptr = CHECK_PTR_TYPE(&target, int *), .flags = fl, .help = desc, .cls = OPT_CL_INC, .type = CT_INT }
209
210 /**
211  * When this option appears, call the function @fn with parameters @item, @value, @data,
212  * where @item points to the <<struct_opt_item,`struct opt_item`>> of this option,
213  * @value contains the current argument of the option (NULL if there is none),
214  * and @data is specified here.
215  **/
216 #define OPT_CALL(shortopt, longopt, fn, data, fl, desc) { .letter = shortopt, .name = longopt, .ptr = data, .help = desc, .u.call = fn, .flags = fl, .cls = OPT_CL_CALL, .type = CT_USER }
217
218 /**
219  * An option with user-defined syntax. @ttype is a <<conf:struct_cf_user_type,`cf_user_type`>>
220  * describing the syntax, @target is a variable of the corresponding type. If the @OPT_REQUIRED_VALUE
221  * flag is not set, the parser must be able to parse a NULL value.
222  **/
223 #define OPT_USER(shortopt, longopt, target, ttype, fl, desc) { .letter = shortopt, .name = longopt, .ptr = &target, .u.utype = &ttype, .flags = fl, .help = desc, .cls = OPT_CL_STATIC, .type = CT_USER }
224
225 /** Multi-valued option of user-defined type. @target should be a growing array of the right kind of items. **/
226 #define OPT_USER_MULTIPLE(shortopt, longopt, target, ttype, fl, desc) { .letter = shortopt, .name = longopt, .ptr = &target, .u.utype = &ttype, .flags = fl, .help = desc, .cls = OPT_CL_MULTIPLE, .type = CT_USER }
227
228 /** A sub-section. **/
229 #define OPT_SECTION(sec) { .cls = OPT_CL_SECTION, .u.section = &sec }
230
231 /** Declares a <<hooks,hook>> to call upon any event from the specified set. **/
232 #define OPT_HOOK(fn, data, events) { .cls = OPT_CL_HOOK, .u.hook = fn, .flags = events, .ptr = data }
233
234 /** A terminator signalling the end of the option list. **/
235 #define OPT_END { .cls = OPT_CL_END }
236
237 /***
238  * [[positional]]
239  * Positional arguments
240  * --------------------
241  *
242  * In addition to short and long options, the parser can also process 'positional
243  * arguments', which don't start with a dash and whose meaning depends solely on
244  * their position.
245  *
246  * Positional arguments are declared as options with short name `OPT_POSITIONAL(n)`
247  * (where `n` is the position of the argument, starting with 1) and long name
248  * NULL. To accept an arbitrary number of positional arguments, use
249  * `OPT_POSITIONAL_TAIL` instead, which matches all arguments, for which no
250  * `OPT_POSITIONAL` is defined. (In the latter case, you probably want to define
251  * the argument as `OPT_MULTIPLE` or `OPT_CALL`, so that the values do not
252  * overwrite each other.)
253  *
254  * Options and positional arguments can be mixed arbitrarily. When a `--` appears
255  * as an argument, it is understood as a signal that all other arguments are
256  * positional.
257  *
258  * `OPT_REQUIRED` can be used with positional arguments, but all required arguments
259  * must come before the non-required ones. When `OPT_POSITIONAL_TAIL` is declared
260  * required, it means that it must match at least once.
261  *
262  * Ordering of positional arguments within the list of options need not match
263  * their positions. Holes in position numbering are inadvisable.
264  ***/
265
266 #define OPT_POSITIONAL(n)   (OPT_POSITIONAL_TAIL+(n))
267 #define OPT_POSITIONAL_TAIL 128
268
269 /***
270  * [[func]]
271  * Functions
272  * ---------
273  ***/
274
275 /**
276  * Parse all arguments, given in a NULL-terminated array of strings.
277  *
278  * Typically, this is called from `main(argc, argv)` as `opt_parse(options, argv+1)`,
279  * skipping the 0th argument, which contains program name.
280  *
281  * Returns the number of arguments used (which need not be all of them
282  * if `OPT_LAST_ARG` was encountered).
283  *
284  * The argument array is left untouched.
285  * However, option values are not necessarily copied, the variables
286  * set by the parser may point to the argument array.
287  **/
288 int opt_parse(const struct opt_section * options, char ** argv);
289
290 /**
291  * Report parsing failure, suggest `--help`, and abort the program with
292  * exit code 2.
293  **/
294 void opt_failure(const char * mesg, ...) FORMAT_CHECK(printf,1,2) NONRET;
295
296 void opt_help(const struct opt_section * sec);
297 void opt_handle_help(struct opt_item * opt, const char * value, void * data);
298
299 /***
300  * [[conf]]
301  * Cooperating with config file parser
302  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
303  *
304  * Parsing of command-line options and configuration files are usually
305  * intertwined in a somewhat tricky way. We want to provide command-line
306  * options that control the name of the configuration file, or possibly to
307  * override configuration settings from the command line. On the other hand,
308  * regular command-line options can refer to values loaded from the
309  * program's configuration.
310  *
311  * To achieve this goal, the option parser is able to cooperate with the
312  * config file parser. This is enabled by listing the `OPT_CONF_OPTIONS`
313  * macro in the list of command-line options.
314  *
315  * The following options are defined for you:
316  *
317  * - `-C` (`--config`) to load a specific configuration file. This option
318  *   suppresses loading of the default configuration, but it can be given
319  *   multiple times to merge settings from several files.
320  *
321  * - `-S` (`--set`) to include a part of configuration inline. For example,
322  *   you can use `-Ssection.item=value` to change a single configuration item.
323  *
324  * - `--dumpconfig` to dump the configuration to standard output and exit.
325  *   (This is available only if the program is compiled with `CONFIG_UCW_DEBUG`.)
326  *
327  * The default configuration file (as specified by <<var_cf_def_file,`cf_def_file`>>) is loaded
328  * as soon as the first option different from `-C` is encountered, unless
329  * a different file has been already loaded. For this reason, `-C` must be
330  * the very first argument given to the program.
331  *
332  * This interface supersedes <<conf:getopt_h,`cf_getopt()`>>.
333  ***/
334
335 #ifdef CONFIG_UCW_DEBUG
336 #define OPT_CONF_OPTIONS    OPT_CONF_CONFIG, OPT_CONF_SET, OPT_CONF_DUMPCONFIG, OPT_CONF_HOOK
337 #else
338 #define OPT_CONF_OPTIONS    OPT_CONF_CONFIG, OPT_CONF_SET, OPT_CONF_HOOK
339 #endif
340
341 #define OPT_CONF_CONFIG     OPT_CALL('C', "config", opt_handle_config, NULL, OPT_BEFORE_CONFIG | OPT_INTERNAL | OPT_REQUIRED_VALUE, "<file>\tOverride the default configuration file")
342 #define OPT_CONF_SET        OPT_CALL('S', "set", opt_handle_set, NULL, OPT_BEFORE_CONFIG | OPT_INTERNAL | OPT_REQUIRED_VALUE, "<item>\tManual setting of a configuration item")
343 #define OPT_CONF_DUMPCONFIG OPT_CALL(0, "dumpconfig", opt_handle_dumpconfig, NULL, OPT_INTERNAL | OPT_NO_VALUE, "\tDump program configuration")
344 #define OPT_CONF_HOOK       OPT_HOOK(opt_conf_hook_internal, NULL, OPT_HOOK_BEFORE_VALUE | OPT_HOOK_FINAL | OPT_HOOK_INTERNAL)
345
346 void opt_handle_config(struct opt_item * opt, const char * value, void * data);
347 void opt_handle_set(struct opt_item * opt, const char * value, void * data);
348 void opt_handle_dumpconfig(struct opt_item * opt, const char * value, void * data);
349 void opt_conf_hook_internal(struct opt_item * opt, uns event, const char * value, void * data);
350
351 // XXX: This is duplicated with <ucw/getopt.h>, but that one will hopefully go away one day.
352 /**
353  * The name of the default configuration file (NULL if configuration has been
354  * already loaded). It is initialized to `CONFIG_UCW_DEFAULT_CONFIG`, but you
355  * usually want to replace it by your own config file.
356  */
357 extern char *cf_def_file;
358 /**
359  * Name of environment variable that can override what configuration is loaded.
360  * Defaults to the value of the `CONFIG_UCW_ENV_VAR_CONFIG` compile-time option.
361  **/
362 extern char *cf_env_file;
363
364 /***
365  * [[hooks]]
366  * Hooks
367  * -----
368  *
369  * You can supply hook functions, which will be called by the parser upon various
370  * events. Hooks are declared as option items of class `OPT_CL_HOOK`, whose @flags
371  * field specifies a mask of events the hook wants to receive.
372  *
373  * Please note that the hook interface is not considered stable yet,
374  * so it might change in future versions of libucw.
375  *
376  * The following events are defined:
377  ***/
378
379 #define OPT_HOOK_BEFORE_ARG     0x1     /** Call before option parsing **/
380 #define OPT_HOOK_BEFORE_VALUE   0x2     /** Call before value parsing **/
381 #define OPT_HOOK_AFTER_VALUE    0x4     /** Call after value parsing **/
382 #define OPT_HOOK_FINAL          0x8     /** Call just before @opt_parse() returns **/
383 #define OPT_HOOK_INTERNAL       0x4000  // Used internally to ask for passing of struct opt_context
384
385 #endif