2 * UCW Library -- Parsing of configuration and command-line options
4 * (c) 2001--2006 Robert Spalek <robert@ucw.cz>
5 * (c) 2003--2006 Martin Mares <mj@ucw.cz>
7 * This software may be freely distributed and used according to the terms
8 * of the GNU Lesser General Public License.
14 #ifdef CONFIG_OWN_GETOPT
15 #include "ucw/getopt/getopt-sh.h"
20 void reset_getopt(void); /** If you want to start parsing of the arguments from the first one again. **/
24 * Safe configuration loading
25 * ~~~~~~~~~~~~~~~~~~~~~~~~~~
27 * These functions can be used to to safely load or reload configuration.
31 * The default config (DEFAULT_CONFIG config option) or NULL if already loaded.
32 * You can set it to something else manually.
34 extern char *cf_def_file;
36 * Name of environment variable that can override what configuration
39 extern char *cf_env_file;
40 int cf_reload(const char *file); /** Reload configuration from @file, replace the old one. **/
41 int cf_load(const char *file); /** Load configuration from @file. **/
43 * Parse some part of configuration passed in @string.
44 * The syntax is the same as in the <<config:,configuration file>>.
46 int cf_set(const char *string);
53 * Direct access to configuration items.
54 * You probably should not need this.
58 * List of operations used on items.
59 * This macro is used to generate internal source code,
60 * but you may be interested in the list of operations it creates.
62 * Each operation corresponds to the same-named operation
63 * described in <<config:operations,configuration syntax>>.
65 #define CF_OPERATIONS T(CLOSE) T(SET) T(CLEAR) T(ALL) \
66 T(APPEND) T(PREPEND) T(REMOVE) T(EDIT) T(AFTER) T(BEFORE) T(COPY)
67 /* Closing brace finishes previous block.
68 * Basic attributes (static, dynamic, parsed) can be used with SET.
69 * Dynamic arrays can be used with SET, APPEND, PREPEND.
70 * Sections can be used with SET.
71 * Lists can be used with everything. */
73 enum cf_operation { CF_OPERATIONS }; /** Allowed operations on items. See <<def_CF_OPERATIONS,`CF_OPERATIONS`>> for list (they have an `OP_` prefix -- it means you use `OP_SET` instead of just `SET`). **/
78 * Searches for a configuration item called @name.
79 * If it is found, it is copied into @item and NULL is returned.
80 * Otherwise, an error is returned and @item is zeroed.
82 char *cf_find_item(const char *name, struct cf_item *item);
84 * Performs a single operation on a given item.
86 char *cf_modify_item(struct cf_item *item, enum cf_operation op, int number, char **pars);
96 * Take everything and write it into @fb.
98 void cf_dump_sections(struct fastbuf *fb);
105 * The configuration system uses journaling to safely reload
106 * configuration. It begins a transaction and tries to load the
107 * configuration. If it fails, it restores the original state.
109 * The behaviour of journal is described in <<reload,reloading configuration>>.
112 struct cf_journal_item; /** Opaque identifier of the journal state. **/
114 * Starts a new transaction. It returns the current state so you can
115 * get back to it. The @new_pool parameter tells if a new memory pool
116 * should be created and used from now.
118 struct cf_journal_item *cf_journal_new_transaction(uns new_pool);
120 * Marks current state as a complete transaction. The @new_pool
121 * parameter tells if the transaction was created with new memory pool
122 * (the parameter must be the same as the one with
123 * @cf_journal_new_transaction() was called with). The @oldj parameter
124 * is the journal state returned from last
125 * @cf_journal_new_transaction() call.
127 void cf_journal_commit_transaction(uns new_pool, struct cf_journal_item *oldj);
129 * Returns to an old journal state, reverting anything the current
130 * transaction did. The @new_pool parameter must be the same as the
131 * one you used when you created the transaction. The @oldj parameter
132 * is the journal state you got from @cf_journal_new_transaction() --
133 * it is the state to return to.
135 void cf_journal_rollback_transaction(uns new_pool, struct cf_journal_item *oldj);
139 * Loading by @cf_getopt()
140 * ~~~~~~~~~~~~~~~~~~~~~~~
144 * Short options for loading configuration by @cf_getopt().
145 * Prepend to your own options.
147 #define CF_SHORT_OPTS "C:S:"
149 * Long options for loading configuration by @cf_getopt().
150 * Prepend to your own options.
152 #define CF_LONG_OPTS {"config", 1, 0, 'C'}, {"set", 1, 0, 'S'}, CF_LONG_OPTS_DEBUG
154 * Use this constant as @long_opts parameter of @cf_getopt() if you do
155 * not have any long options in your program.
157 #define CF_NO_LONG_OPTS (const struct option []) { CF_LONG_OPTS { NULL, 0, 0, 0 } }
159 #define CF_USAGE_TAB ""
162 * This macro provides text describing usage of the configuration
163 * loading options. Concatenate with description of your options and
164 * write to the user, if he/she provides invalid options.
167 "-C, --config filename\t" CF_USAGE_TAB "Override the default configuration file\n\
168 -S, --set sec.item=val\t" CF_USAGE_TAB "Manual setting of a configuration item\n" CF_USAGE_DEBUG
171 #define CF_LONG_OPTS_DEBUG { "dumpconfig", 0, 0, 0x64436667 } ,
172 #define CF_USAGE_DEBUG " --dumpconfig\t" CF_USAGE_TAB "Dump program configuration\n"
174 #define CF_LONG_OPTS_DEBUG
175 #define CF_USAGE_DEBUG
179 * Takes care of parsing the command-line arguments, loading the
180 * default configuration file (<<var_cf_def_file,`cf_def_file`>>) and processing
181 * configuration options. The calling convention is the same as with GNU getopt_long(),
182 * but you must prefix your own short/long options by the
183 * <<def_CF_LONG_OPTS,`CF_LONG_OPTS`>> or <<def_CF_SHORT_OPTS,`CF_SHORT_OPTS`>> or
184 * pass <<def_CF_NO_LONG_OPTS,`CF_NO_LONG_OPTS`>> if there are no long options.
186 * The default configuration file can be overwritten by the --config options,
187 * which must come first. During parsing of all other options, the configuration
188 * is already available.
190 int cf_getopt(int argc, char * const argv[], const char *short_opts, const struct option *long_opts, int *long_index);