better datastore API
[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 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.
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  * Macro defining the option to print the version of
149  * the application
150  *
151  * @param version string with the version number
152  */
153 #define GNUNET_GETOPT_OPTION_VERSION(version) \
154   { 'v', "version", (const char *) NULL, gettext_noop("print the version number"), 0, &GNUNET_GETOPT_print_version_, (void *) version }
155
156 /**
157  * Get the log level
158  */
159 #define GNUNET_GETOPT_OPTION_LOGFILE(logfn)                             \
160   { 'l', "logfile", "LOGFILE", gettext_noop("configure logging to write logs to LOGFILE"), 1, &GNUNET_GETOPT_set_string, (void *) logfn }
161
162 /**
163  * Set the configuration option for logging.
164  */
165 #define GNUNET_GETOPT_OPTION_LOGLEVEL(loglev)                           \
166   { 'L', "log", "LOGLEVEL", gettext_noop("configure logging to use LOGLEVEL"), 1, &GNUNET_GETOPT_set_string, (void *) loglev }
167
168 /**
169  * Get number of verbose flags
170  */
171 #define GNUNET_GETOPT_OPTION_VERBOSE(level)                             \
172   { 'V', "verbose", (const char *) NULL, gettext_noop("be verbose"), 0, &GNUNET_GETOPT_increment_value, (void *) level }
173
174 /**
175  * Get configuration file name
176  */
177 #define GNUNET_GETOPT_OPTION_CFG_FILE(fn)                               \
178   { 'c', "config", "FILENAME", gettext_noop("use configuration file FILENAME"), 1, &GNUNET_GETOPT_set_string, (void *) fn }
179
180 /**
181  * Marker to end the list of options.
182  */
183 #define GNUNET_GETOPT_OPTION_END \
184   { '\0', NULL, NULL, NULL, 0, NULL, NULL }
185
186 /**
187  * Parse the command line.
188  *
189  * @param binaryName name of the binary / application with options
190  * @param allOptions defined options and handlers
191  * @param argc number of arguments
192  * @param argv actual arguments
193  * @return index into argv with first non-option
194  *   argument, or GNUNET_SYSERR on error
195  */
196 int GNUNET_GETOPT_run (const char *binaryName,
197                        const struct GNUNET_GETOPT_CommandLineOption
198                        *allOptions, unsigned int argc, char *const *argv);
199
200 int GNUNET_GETOPT_set_ulong (struct GNUNET_GETOPT_CommandLineProcessorContext
201                              *ctx, void *scls, const char *option,
202                              const char *value);
203
204 int GNUNET_GETOPT_set_uint (struct GNUNET_GETOPT_CommandLineProcessorContext
205                             *ctx, void *scls, const char *option,
206                             const char *value);
207
208 int GNUNET_GETOPT_set_one (struct GNUNET_GETOPT_CommandLineProcessorContext
209                            *ctx, void *scls, const char *option,
210                            const char *value);
211
212 int GNUNET_GETOPT_set_string (struct GNUNET_GETOPT_CommandLineProcessorContext
213                               *ctx, void *scls, const char *option,
214                               const char *value);
215
216 int
217 GNUNET_GETOPT_increment_value (struct
218                                GNUNET_GETOPT_CommandLineProcessorContext *ctx,
219                                void *scls, const char *option,
220                                const char *value);
221
222 /* *************** internal prototypes - use macros above! ************* */
223
224 int GNUNET_GETOPT_format_help_ (struct
225                                 GNUNET_GETOPT_CommandLineProcessorContext
226                                 *ctx, void *scls, const char *option,
227                                 const char *value);
228
229 int GNUNET_GETOPT_print_version_ (struct
230                                   GNUNET_GETOPT_CommandLineProcessorContext
231                                   *ctx, void *scls, const char *option,
232                                   const char *value);
233
234 #if 0                           /* keep Emacsens' auto-indent happy */
235 {
236 #endif
237 #ifdef __cplusplus
238 }
239 #endif
240
241
242 /* ifndef GNUNET_GETOPT_LIB_H */
243 #endif
244 /* end of gnunet_getopt_lib.h */