]> mj.ucw.cz Git - libucw.git/blob - ucw/opt.h
8e6994dfd81c3d708dee45bf6e886841570d1c63
[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  *
6  *      This software may be freely distributed and used according to the terms
7  *      of the GNU Lesser General Public License.
8  */
9
10 #ifndef _UCW_OPT_H
11 #define _UCW_OPT_H
12
13 #include <ucw/lib.h>
14 #include <ucw/conf.h>
15
16 #include <stdlib.h>
17 #include <stdio.h>
18
19 #define OPT_EXIT_BAD_ARGS 2
20
21 /***
22  * [[opt]]
23  ***/
24
25 enum opt_class {
26   OPT_CL_END,     // end of list
27   OPT_CL_BOOL,    // boolean value
28   OPT_CL_STATIC,  // static value
29   OPT_CL_SWITCH,  // lookup/switch
30   OPT_CL_INC,     // incremental value
31   OPT_CL_CALL,    // call a function
32   OPT_CL_USER,    // user defined value
33   OPT_CL_SECTION, // subsection
34   OPT_CL_HELP,    // help line
35 };
36
37 struct opt_section;
38 struct opt_item {
39   const char * name;                    // long-op
40   void * ptr;                           // where to save
41   const char * help;                    // description in --help
42   union opt_union {
43     struct opt_section * section;       // subsection for OPT_SECTION
44     int value;                          // value for OPT_SWITCH
45     const char * help2;                 // second value for OPT_HELP2
46     void (* call)(struct opt_item * opt, const char * value, void * data);  // function to call for OPT_CALL
47     struct cf_user_type * utype;        // specification of the user-defined type
48   } u;
49   const char letter;                    // short-op
50   byte flags;
51   byte cls;                             // enum opt_class
52   byte type;                            // enum cf_type
53 };
54
55 struct opt_section {
56   struct opt_item * opt;
57 };
58
59 #define OPT_ITEMS       .opt = ( struct opt_item[] )  /** List of sub-items. **/
60
61 /***
62  * Sub-items to be enclosed in OPT_ITEMS { } list
63  * ----------------------------------------------
64  *
65  *  OPT_HELP_OPTION declares --help and prints a line about that
66  *  OPT_HELP prints a line into help
67  *  OPT_HELP2 prints two strings onto a line using the same tab structure as the option listing
68  *  OPT_BOOL declares boolean option with an auto-negation (--sth and --no-sth). It's also possible to write --sth=y/yes/true/1/n/no/false/0.
69  *  OPT_STRING, OPT_UNS, OPT_INT declare simple string/uns/int option
70  *  OPT_SWITCH declares one choice of a switch statement; these have common target and different `value`s; last wins unless OPT_SINGLE is set;
71  *             parser fails if it matches an OPT_SWITCH with OPT_SINGLE set and also target set.
72  *             Target must be of signed integer type; it is set to -1 if no switch appears at the command-line.
73  *  OPT_CALL calls the given function with an argument, giving also the opt_item structure and some custom data.
74  *  OPT_USER declares a custom type of value defined by the given @cf_user_type in @ttype
75  *  OPT_INC declares an incremental value like -v/--verbose
76  *  OPT_SECTION declares a subsection
77  *
78  ***/
79
80 #define OPT_HELP_OPTION OPT_CALL(0, "help", opt_show_help_internal, NULL, OPT_NO_VALUE, "Show this help")
81 #define OPT_HELP(line) OPT_HELP2(line, NULL)
82 #define OPT_HELP2(first, second) { .help = first, .cls = OPT_CL_HELP, .u.help2 = second } // FIXME: remove this
83 #define OPT_BOOL(shortopt, longopt, target, fl, desc) { .letter = shortopt, .name = longopt, .ptr = &target, .help = desc, .flags = fl, .cls = OPT_CL_BOOL, .type = CT_INT }
84 #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 }
85 #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 }
86 #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 }
87 #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 }
88 #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 }
89 #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 }
90 #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 }
91 #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_USER, .type = CT_USER }
92 #define OPT_INC(shortopt, longopt, target, fl, desc) { .letter = shortopt, .name = longopt, .ptr = &target, .flags = fl, .help = desc, .cls = OPT_CL_INC, .type = CT_INT }
93 #define OPT_SECTION(sec) { .cls = OPT_CL_SECTION, .u.section = &sec }
94 #define OPT_END { .cls = OPT_CL_END }
95
96 /***
97  * Flags for the preceeding calls
98  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
99  ***/
100
101 #define OPT_REQUIRED        0x1         /** Argument must appear at the command line **/
102 #define OPT_REQUIRED_VALUE  0x2         /** Argument must have a value **/
103 #define OPT_NO_VALUE        0x4         /** Argument must have no value **/
104 #define OPT_MAYBE_VALUE     0x8         /** Argument may have a value **/
105 #define OPT_VALUE_FLAGS     (OPT_REQUIRED_VALUE | OPT_NO_VALUE | OPT_MAYBE_VALUE)
106 #define OPT_DECREMENT       0x10        /** Reversing the effect of OPT_INC **/
107 #define OPT_SINGLE          0x20        /** Argument must appear at most once **/
108 #define OPT_NO_HELP         0x40        /** Omit this line from help **/
109 #define OPT_LAST_ARG        0x80        /** Stop processing argv after this line **/
110
111 /***
112  * Value flags defaults
113  * ~~~~~~~~~~~~~~~~~~~~
114  *
115  * OPT_NO_VALUE for OPT_BOOL, OPT_SWITCH and OPT_INC
116  * OPT_MAYBE_VALUE for OPT_STRING, OPT_UNS, OPT_INT
117  * Some of the value flags (OPT_NO_VALUE, OPT_MAYBE_VALUE, OPT_REQUIRED_VALUE)
118  * must be specified for OPT_CALL and OPT_USER.
119  ***/
120
121 static uns opt_default_value_flags[] = {
122   [OPT_CL_BOOL] = OPT_NO_VALUE,
123   [OPT_CL_STATIC] = OPT_MAYBE_VALUE,
124   [OPT_CL_SWITCH] = OPT_NO_VALUE,
125   [OPT_CL_INC] = OPT_NO_VALUE,
126   [OPT_CL_CALL] = 0,
127   [OPT_CL_USER] = 0,
128   [OPT_CL_SECTION] = 0,
129   [OPT_CL_HELP] = 0
130 };
131
132 extern struct opt_section * opt_section_root;
133 void opt_help_noexit_internal(struct opt_section * help);
134
135 static void opt_help_noexit(void) {
136   opt_help_noexit_internal(opt_section_root);
137 }
138
139 static void opt_usage_noexit(void) {
140   fprintf(stderr, "Run with argument --help for more information.\n");
141 }
142
143 static void opt_show_help_internal(struct opt_item * opt UNUSED, const char * value UNUSED, void * data UNUSED) {
144   opt_help_noexit();
145   exit(0);
146 }
147
148 static void opt_help(void) {
149   opt_help_noexit();
150   exit(1);
151 }
152
153 static void opt_usage(void) {
154   opt_usage_noexit();
155   exit(1);
156 }
157
158 /**
159  * Positional argument handler to be given to opt_parse()
160  **/
161 typedef void opt_positional(const char * str);
162
163 /**
164  * Parse all the arguments. Run the @callback for each of the positional argument.
165  **/
166 void opt_parse(const struct opt_section * options, char ** argv, opt_positional * callback);
167
168 #endif