more chat code from Mantis #1657
[oweals/gnunet.git] / src / include / gnunet_getopt_lib.h
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2003, 2004, 2005, 2006, 2009, 2011 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 2, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file include/gnunet_getopt_lib.h
23  * @brief command line parsing and --help formatting
24  *
25  * @author Christian Grothoff
26  */
27
28 #ifndef GNUNET_GETOPT_LIB_H
29 #define GNUNET_GETOPT_LIB_H
30
31 #ifdef __cplusplus
32 extern "C"
33 {
34 #if 0                           /* keep Emacsens' auto-indent happy */
35 }
36 #endif
37 #endif
38
39 #include "gnunet_configuration_lib.h"
40
41 /**
42  * @brief General context for command line processors.
43  */
44 struct GNUNET_GETOPT_CommandLineProcessorContext
45 {
46
47   /**
48    * Name of the application
49    */
50   const char *binaryName;
51
52   /**
53    * Name of application with option summary
54    */
55   const char *binaryOptions;
56
57   /**
58    * Array with all command line options.
59    */
60   const struct GNUNET_GETOPT_CommandLineOption *allOptions;
61
62   /**
63    * Original command line
64    */
65   char *const *argv;
66
67   /**
68    * Total number of argv's.
69    */
70   unsigned int argc;
71
72   /**
73    * Current argument.
74    */
75   unsigned int currentArgument;
76
77 };
78
79 /**
80  * @brief Process a command line option
81  *
82  * @param ctx context for all options
83  * @param scls specific closure (for this processor)
84  * @param option long name of the option (i.e. "config" for --config)
85  * @param value argument, NULL if none was given
86  * @return GNUNET_OK to continue processing other options, GNUNET_SYSERR to abort
87  */
88 typedef
89   int (*GNUNET_GETOPT_CommandLineOptionProcessor) (struct
90                                                    GNUNET_GETOPT_CommandLineProcessorContext
91                                                    * ctx, void *scls,
92                                                    const char *option,
93                                                    const char *value);
94
95 /**
96  * @brief Definition of a command line option.
97  */
98 struct GNUNET_GETOPT_CommandLineOption
99 {
100
101   /**
102    * Short name of the option (use '\\0' for none).
103    */
104   const char shortName;
105
106   /**
107    * Long name of the option (may not be NULL)
108    */
109   const char *name;
110
111   /**
112    * Name of the argument for the user in help text
113    */
114   const char *argumentHelp;
115
116   /**
117    * Help text for the option (description)
118    */
119   const char *description;
120
121   /**
122    * Is an argument required?  0: GNUNET_NO (includes optional), 1: GNUNET_YES.
123    */
124   int require_argument;
125
126   /**
127    * Handler for the option.
128    */
129   GNUNET_GETOPT_CommandLineOptionProcessor processor;
130
131   /**
132    * Specific closure to pass to the processor.
133    */
134   void *scls;
135
136 };
137
138 /**
139  * Macro defining the option to print the command line
140  * help text (-h option).
141  *
142  * @param about string with brief description of the application
143  */
144 #define GNUNET_GETOPT_OPTION_HELP(about) \
145   { 'h', "help", (const char *) NULL, gettext_noop("print this help"), 0, &GNUNET_GETOPT_format_help_, (void *) about }
146
147
148 /**
149  * Macro defining the option to print the version of
150  * the application (-v option)
151  *
152  * @param version string with the version number
153  */
154 #define GNUNET_GETOPT_OPTION_VERSION(version) \
155   { 'v', "version", (const char *) NULL, gettext_noop("print the version number"), 0, &GNUNET_GETOPT_print_version_, (void *) version }
156
157
158 /**
159  * Allow user to specify log file name (-l option)
160  *
161  * @param logfn set to the name of the logfile
162  */
163 #define GNUNET_GETOPT_OPTION_LOGFILE(logfn)                             \
164   { 'l', "logfile", "LOGFILE", gettext_noop("configure logging to write logs to LOGFILE"), 1, &GNUNET_GETOPT_set_string, (void *) logfn }
165
166
167 /**
168  * Allow user to specify log level (-L option)
169  *
170  * @param loglev set to the log level
171  */
172 #define GNUNET_GETOPT_OPTION_LOGLEVEL(loglev)                           \
173   { 'L', "log", "LOGLEVEL", gettext_noop("configure logging to use LOGLEVEL"), 1, &GNUNET_GETOPT_set_string, (void *) loglev }
174
175
176 /**
177  * Get number of verbose (-V) flags
178  *
179  * @param level where to store the verbosity level (should be an 'int')
180  */
181 #define GNUNET_GETOPT_OPTION_VERBOSE(level)                             \
182   { 'V', "verbose", (const char *) NULL, gettext_noop("be verbose"), 0, &GNUNET_GETOPT_increment_value, (void *) level }
183
184
185 /**
186  * Get configuration file name (-c option)
187  *
188  * @param fn set to the configuration file name
189  */
190 #define GNUNET_GETOPT_OPTION_CFG_FILE(fn)                               \
191   { 'c', "config", "FILENAME", gettext_noop("use configuration file FILENAME"), 1, &GNUNET_GETOPT_set_string, (void *) fn }
192
193
194 /**
195  * Marker for the end of the list of options.
196  */
197 #define GNUNET_GETOPT_OPTION_END \
198   { '\0', NULL, NULL, NULL, 0, NULL, NULL }
199
200
201 /**
202  * Parse the command line.
203  *
204  * @param binaryOptions Name of application with option summary
205  * @param allOptions defined options and handlers
206  * @param argc number of arguments
207  * @param argv actual arguments
208  * @return index into argv with first non-option
209  *   argument, or GNUNET_SYSERR on error
210  */
211 int GNUNET_GETOPT_run (const char *binaryOptions,
212                        const struct GNUNET_GETOPT_CommandLineOption
213                        *allOptions, unsigned int argc, char *const *argv);
214
215
216 /**
217  * Set an option of type 'unsigned long long' from the command line.
218  * A pointer to this function should be passed as part of the
219  * 'struct GNUNET_GETOPT_CommandLineOption' array to initialize options
220  * of this type.  It should be followed by a pointer to a value of
221  * type 'unsigned long long'.
222  *
223  * @param ctx command line processing context
224  * @param scls additional closure (will point to the 'unsigned long long')
225  * @param option name of the option
226  * @param value actual value of the option as a string.
227  * @return GNUNET_OK if parsing the value worked
228  */
229 int GNUNET_GETOPT_set_ulong (struct GNUNET_GETOPT_CommandLineProcessorContext
230                              *ctx, void *scls, const char *option,
231                              const char *value);
232
233
234 /**
235  * Set an option of type 'unsigned long long' from the command line.
236  * A pointer to this function should be passed as part of the
237  * 'struct GNUNET_GETOPT_CommandLineOption' array to initialize options
238  * of this type.  It should be followed by a pointer to a value of
239  * type 'unsigned int'.
240  *
241  * @param ctx command line processing context
242  * @param scls additional closure (will point to the 'unsigned int')
243  * @param option name of the option
244  * @param value actual value of the option as a string.
245  * @return GNUNET_OK if parsing the value worked
246  */
247 int GNUNET_GETOPT_set_uint (struct GNUNET_GETOPT_CommandLineProcessorContext
248                             *ctx, void *scls, const char *option,
249                             const char *value);
250
251
252 /**
253  * Set an option of type 'int' from the command line to 1 if the 
254  * given option is present.
255  * A pointer to this function should be passed as part of the
256  * 'struct GNUNET_GETOPT_CommandLineOption' array to initialize options
257  * of this type.  It should be followed by a pointer to a value of
258  * type 'int'.
259  *
260  * @param ctx command line processing context
261  * @param scls additional closure (will point to the 'int')
262  * @param option name of the option
263  * @param value not used (NULL)
264  * @return GNUNET_OK 
265  */
266 int GNUNET_GETOPT_set_one (struct GNUNET_GETOPT_CommandLineProcessorContext
267                            *ctx, void *scls, const char *option,
268                            const char *value);
269
270
271 /**
272  * Set an option of type 'char *' from the command line.
273  * A pointer to this function should be passed as part of the
274  * 'struct GNUNET_GETOPT_CommandLineOption' array to initialize options
275  * of this type.  It should be followed by a pointer to a value of
276  * type 'char *'.
277  *
278  * @param ctx command line processing context
279  * @param scls additional closure (will point to the 'char *',
280  *             which will be allocated)
281  * @param option name of the option
282  * @param value actual value of the option (a string)
283  * @return GNUNET_OK 
284  */
285 int GNUNET_GETOPT_set_string (struct GNUNET_GETOPT_CommandLineProcessorContext
286                               *ctx, void *scls, const char *option,
287                               const char *value);
288
289 /**
290  * Set an option of type 'unsigned int' from the command line. Each
291  * time the option flag is given, the value is incremented by one.
292  * A pointer to this function should be passed as part of the
293  * 'struct GNUNET_GETOPT_CommandLineOption' array to initialize options
294  * of this type.  It should be followed by a pointer to a value of
295  * type 'int'.
296  *
297  * @param ctx command line processing context
298  * @param scls additional closure (will point to the 'int')
299  * @param option name of the option
300  * @param value not used (NULL)
301  * @return GNUNET_OK 
302  */
303 int
304 GNUNET_GETOPT_increment_value (struct
305                                GNUNET_GETOPT_CommandLineProcessorContext *ctx,
306                                void *scls, const char *option,
307                                const char *value);
308
309
310 /* *************** internal prototypes - use macros above! ************* */
311
312 /**
313  * Print out details on command line options (implements --help).
314  *
315  * @param ctx command line processing context
316  * @param scls additional closure (points to about text)
317  * @param option name of the option
318  * @param value not used (NULL)
319  * @return GNUNET_SYSERR (do not continue)
320  */
321 int GNUNET_GETOPT_format_help_ (struct
322                                 GNUNET_GETOPT_CommandLineProcessorContext
323                                 *ctx, void *scls, const char *option,
324                                 const char *value);
325
326 /**
327  * Print out program version (implements --version).
328  *
329  * @param ctx command line processing context
330  * @param scls additional closure (points to version string)
331  * @param option name of the option
332  * @param value not used (NULL)
333  * @return GNUNET_SYSERR (do not continue)
334  */
335 int GNUNET_GETOPT_print_version_ (struct
336                                   GNUNET_GETOPT_CommandLineProcessorContext
337                                   *ctx, void *scls, const char *option,
338                                   const char *value);
339
340 #if 0                           /* keep Emacsens' auto-indent happy */
341 {
342 #endif
343 #ifdef __cplusplus
344 }
345 #endif
346
347
348 /* ifndef GNUNET_GETOPT_LIB_H */
349 #endif
350 /* end of gnunet_getopt_lib.h */