]> git.notmuchmail.org Git - notmuch/blob - command-line-arguments.c
cli: change api of parse_option
[notmuch] / command-line-arguments.c
1 #include <assert.h>
2 #include <string.h>
3 #include <stdio.h>
4 #include "error_util.h"
5 #include "command-line-arguments.h"
6
7 /*
8   Search the array of keywords for a given argument, assigning the
9   output variable to the corresponding value.  Return FALSE if nothing
10   matches.
11 */
12
13 static notmuch_bool_t
14 _process_keyword_arg (const notmuch_opt_desc_t *arg_desc, char next, const char *arg_str) {
15
16     const notmuch_keyword_t *keywords = arg_desc->keywords;
17
18     if (next == '\0') {
19         /* No keyword given */
20         arg_str = "";
21     }
22
23     while (keywords->name) {
24         if (strcmp (arg_str, keywords->name) == 0) {
25             if (arg_desc->output_var) {
26                 if (arg_desc->opt_type == NOTMUCH_OPT_KEYWORD_FLAGS)
27                     *((int *)arg_desc->output_var) |= keywords->value;
28                 else
29                     *((int *)arg_desc->output_var) = keywords->value;
30             }
31             return TRUE;
32         }
33         keywords++;
34     }
35     if (next != '\0')
36         fprintf (stderr, "Unknown keyword argument \"%s\" for option \"%s\".\n", arg_str, arg_desc->name);
37     else
38         fprintf (stderr, "Option \"%s\" needs a keyword argument.\n", arg_desc->name);
39     return FALSE;
40 }
41
42 static notmuch_bool_t
43 _process_boolean_arg (const notmuch_opt_desc_t *arg_desc, char next, const char *arg_str) {
44
45     if (next == '\0') {
46         *((notmuch_bool_t *)arg_desc->output_var) = TRUE;
47         return TRUE;
48     }
49     if (strcmp (arg_str, "false") == 0) {
50         *((notmuch_bool_t *)arg_desc->output_var) = FALSE;
51         return TRUE;
52     }
53     if (strcmp (arg_str, "true") == 0) {
54         *((notmuch_bool_t *)arg_desc->output_var) = TRUE;
55         return TRUE;
56     }
57     fprintf (stderr, "Unknown argument \"%s\" for (boolean) option \"%s\".\n", arg_str, arg_desc->name);
58     return FALSE;
59 }
60
61 static notmuch_bool_t
62 _process_int_arg (const notmuch_opt_desc_t *arg_desc, char next, const char *arg_str) {
63
64     char *endptr;
65     if (next == '\0' || arg_str[0] == '\0') {
66         fprintf (stderr, "Option \"%s\" needs an integer argument.\n", arg_desc->name);
67         return FALSE;
68     }
69
70     *((int *)arg_desc->output_var) = strtol (arg_str, &endptr, 10);
71     if (*endptr == '\0')
72         return TRUE;
73
74     fprintf (stderr, "Unable to parse argument \"%s\" for option \"%s\" as an integer.\n",
75              arg_str, arg_desc->name);
76     return FALSE;
77 }
78
79 static notmuch_bool_t
80 _process_string_arg (const notmuch_opt_desc_t *arg_desc, char next, const char *arg_str) {
81
82     if (next == '\0') {
83         fprintf (stderr, "Option \"%s\" needs a string argument.\n", arg_desc->name);
84         return FALSE;
85     }
86     if (arg_str[0] == '\0') {
87         fprintf (stderr, "String argument for option \"%s\" must be non-empty.\n", arg_desc->name);
88         return FALSE;
89     }
90     *((const char **)arg_desc->output_var) = arg_str;
91     return TRUE;
92 }
93
94 /*
95    Search for the {pos_arg_index}th position argument, return FALSE if
96    that does not exist.
97 */
98
99 notmuch_bool_t
100 parse_position_arg (const char *arg_str, int pos_arg_index,
101                     const notmuch_opt_desc_t *arg_desc) {
102
103     int pos_arg_counter = 0;
104     while (arg_desc->opt_type != NOTMUCH_OPT_END){
105         if (arg_desc->opt_type == NOTMUCH_OPT_POSITION) {
106             if (pos_arg_counter == pos_arg_index) {
107                 if (arg_desc->output_var) {
108                     *((const char **)arg_desc->output_var) = arg_str;
109                 }
110                 return TRUE;
111             }
112             pos_arg_counter++;
113         }
114         arg_desc++;
115     }
116     return FALSE;
117 }
118
119 /*
120  * Search for a non-positional (i.e. starting with --) argument matching arg,
121  * parse a possible value, and assign to *output_var
122  */
123
124 int
125 parse_option (int argc, char **argv, const notmuch_opt_desc_t *options, int opt_index)
126 {
127     assert(argv);
128
129     const char *_arg = argv[opt_index];
130
131     assert(_arg);
132     assert(options);
133
134     const char *arg = _arg + 2; /* _arg starts with -- */
135     const notmuch_opt_desc_t *try;
136     for (try = options; try->opt_type != NOTMUCH_OPT_END; try++) {
137         if (try->opt_type == NOTMUCH_OPT_INHERIT) {
138             int new_index = parse_option (argc, argv, try->output_var, opt_index);
139             if (new_index >= 0)
140                 return new_index;
141         }
142
143         if (! try->name)
144             continue;
145
146         if (strncmp (arg, try->name, strlen (try->name)) != 0)
147             continue;
148
149         char next = arg[strlen (try->name)];
150         const char *value = arg + strlen(try->name) + 1;
151
152         /*
153          * If we have not reached the end of the argument (i.e. the
154          * next character is not a space or delimiter) then the
155          * argument could still match a longer option name later in
156          * the option table.
157          */
158         if (next != '=' && next != ':' && next != '\0')
159             continue;
160
161         if (try->output_var == NULL)
162             INTERNAL_ERROR ("output pointer NULL for option %s", try->name);
163
164         notmuch_bool_t opt_status = FALSE;
165         switch (try->opt_type) {
166         case NOTMUCH_OPT_KEYWORD:
167         case NOTMUCH_OPT_KEYWORD_FLAGS:
168             opt_status = _process_keyword_arg (try, next, value);
169             break;
170         case NOTMUCH_OPT_BOOLEAN:
171             opt_status = _process_boolean_arg (try, next, value);
172             break;
173         case NOTMUCH_OPT_INT:
174             opt_status = _process_int_arg (try, next, value);
175             break;
176         case NOTMUCH_OPT_STRING:
177             opt_status = _process_string_arg (try, next, value);
178             break;
179         case NOTMUCH_OPT_POSITION:
180         case NOTMUCH_OPT_END:
181         default:
182             INTERNAL_ERROR ("unknown or unhandled option type %d", try->opt_type);
183             /*UNREACHED*/
184         }
185         if (opt_status)
186             return opt_index+1;
187         else
188             return -1;
189     }
190     return -1;
191 }
192
193 /* See command-line-arguments.h for description */
194 int
195 parse_arguments (int argc, char **argv,
196                  const notmuch_opt_desc_t *options, int opt_index) {
197
198     int pos_arg_index = 0;
199     notmuch_bool_t more_args = TRUE;
200
201     while (more_args && opt_index < argc) {
202         if (strncmp (argv[opt_index],"--",2) != 0) {
203
204             more_args = parse_position_arg (argv[opt_index], pos_arg_index, options);
205
206             if (more_args) {
207                 pos_arg_index++;
208                 opt_index++;
209             }
210
211         } else {
212             int prev_opt_index = opt_index;
213
214             if (strlen (argv[opt_index]) == 2)
215                 return opt_index+1;
216
217             opt_index = parse_option (argc, argv, options, opt_index);
218             if (opt_index < 0) {
219                 fprintf (stderr, "Unrecognized option: %s\n", argv[prev_opt_index]);
220                 more_args = FALSE;
221             }
222         }
223     }
224
225     return opt_index;
226 }