]> mj.ucw.cz Git - libucw.git/blob - lib/conf.h
conf: comment out parsers before I get rid of the module whatsoever
[libucw.git] / lib / conf.h
1 /*
2  *      UCW Library -- Reading of configuration files
3  *
4  *      (c) 2001 Robert Spalek <robert@ucw.cz>
5  *      (c) 2003--2005 Martin Mares <mj@ucw.cz>
6  *
7  *      This software may be freely distributed and used according to the terms
8  *      of the GNU Lesser General Public License.
9  */
10
11 #ifndef _LIB_CONF_H
12 #define _LIB_CONF_H
13
14 #include <getopt.h>
15
16 /*
17  * Allocation in configuration memory pool.
18  */
19
20 extern struct mempool *cfpool;
21 void *cfg_malloc(uns size);
22 void *cfg_malloc_zero(uns size);
23 byte *cfg_strdup(byte *s);
24 byte *cfg_printf(char *fmt, ...) FORMAT_CHECK(printf,1,2);
25
26 /*
27  * Every module places its configuration setting into some section.  Section is
28  * an array of cfitem, whose first record is of type CT_SECTION and contains
29  * the name of the section.  The configuration sections are registered by
30  * calling cf_register().
31  *
32  * CT_INCOMPLETE_SECTION is identical to CT_SECTION, but when an unknown variable
33  * is spotted, we ignore it instead of bailing out with an error message.
34  *
35  * item->var is a pointer to the destination variable or to the special parsing
36  * function.
37  */
38
39 enum cftype { CT_STOP, CT_SECTION, CT_INCOMPLETE_SECTION, CT_INT, CT_STRING, CT_FUNCTION, CT_DOUBLE, CT_U64 };
40
41 struct cfitem {
42         byte *name;
43         enum cftype type;
44         void *var;
45 };
46
47 typedef byte *(*ci_func)(struct cfitem *, byte *);
48
49 void cf_register(struct cfitem *items);
50
51 /*
52  * Direct setting of configuration items and parsing the configuration file.
53  */
54
55 int cf_item_count(void);
56 struct cfitem *cf_get_item(byte *sect, byte *name);
57 byte *cf_set_item(byte *sect, byte *name, byte *value);
58 void cf_read(byte *filename);
59
60 /*
61  * Number parsing functions which could be useful in CT_FUNCTION callbacks.
62  */
63
64 #if 0
65 byte *cf_parse_int(byte *value, uns *varp);
66 byte *cf_parse_u64(byte *value, u64 *varp);
67 byte *cf_parse_double(byte *value, double *varp);
68
69 /* 
70  * Some useful parsing functions.
71  */
72
73 byte *cf_parse_ip(byte **value, u32 *varp);
74 #endif
75
76 /*
77  * When using cf_getopt, you must prefix your own short/long options by the
78  * CF_(SHORT|LONG)_OPTS.
79  *
80  * cfdeffile contains filename of config file automatically loaded before a
81  * first --set option is executed.  If none --set option occures, it will be
82  * loaded after getopt returns -1 (at the end of configuration options).  It
83  * will be ignored, if another config file is set by --config option at first.
84  * Its initial value is DEFAULT_CONFIG from config.h, but you can override it
85  * manually.
86  */
87
88 #define CF_SHORT_OPTS   "S:C:"
89 #define CF_LONG_OPTS    \
90         {"set",         1, 0, 'S'},\
91         {"config",      1, 0, 'C'},
92 #define CF_NO_LONG_OPTS (const struct option []){ CF_LONG_OPTS { NULL, 0, 0, 0 } }
93 #define CF_USAGE_TAB ""
94 #define CF_USAGE        \
95 "-S, --set sec.item=val\t" CF_USAGE_TAB "Manual setting of a configuration item\n\
96 -C, --config filename\t" CF_USAGE_TAB "Overwrite default config filename\n"
97
98 extern byte *cfdeffile;
99
100 int cf_getopt(int argc,char * const argv[],
101                 const char *shortopts,const struct option *longopts,
102                 int *longindex);
103
104 #endif