X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Fconf.h;h=ef727512b2b08f1d97706dd3ad9614f9434d2843;hb=d1a5b69d490ce61a0f41db08263580487720bf2f;hp=b58224d34bb97ba4afe5d8afa5af6763014d3191;hpb=69656a0b0716dbbd88a4881246d3c73990b7df29;p=libucw.git diff --git a/lib/conf.h b/lib/conf.h index b58224d3..ef727512 100644 --- a/lib/conf.h +++ b/lib/conf.h @@ -1,7 +1,11 @@ /* - * Sherlock Library -- Reading configuration files + * UCW Library -- Reading of configuration files * * (c) 2001 Robert Spalek + * (c) 2003--2005 Martin Mares + * + * This software may be freely distributed and used according to the terms + * of the GNU Lesser General Public License. */ #ifndef _LIB_CONF_H @@ -13,8 +17,11 @@ * Allocation in configuration memory pool. */ +extern struct mempool *cfpool; void *cfg_malloc(uns size); -byte *cfg_stralloc(byte *s); +void *cfg_malloc_zero(uns size); +byte *cfg_strdup(byte *s); +byte *cfg_printf(char *fmt, ...) FORMAT_CHECK(printf,1,2); /* * Every module places its configuration setting into some section. Section is @@ -29,7 +36,7 @@ byte *cfg_stralloc(byte *s); * function. */ -enum cftype { CT_STOP, CT_SECTION, CT_INCOMPLETE_SECTION, CT_INT, CT_STRING, CT_FUNCTION }; +enum cftype { CT_STOP, CT_SECTION, CT_INCOMPLETE_SECTION, CT_INT, CT_STRING, CT_FUNCTION, CT_DOUBLE, CT_U64 }; struct cfitem { byte *name; @@ -50,6 +57,14 @@ struct cfitem *cf_get_item(byte *sect, byte *name); byte *cf_set_item(byte *sect, byte *name, byte *value); void cf_read(byte *filename); +/* + * Number parsing functions which could be useful in CT_FUNCTION callbacks. + */ + +byte *cf_parse_int(byte *value, uns *varp); +byte *cf_parse_u64(byte *value, u64 *varp); +byte *cf_parse_double(byte *value, double *varp); + /* * When using cf_getopt, you must prefix your own short/long options by the * CF_(SHORT|LONG)_OPTS. @@ -67,9 +82,10 @@ void cf_read(byte *filename); {"set", 1, 0, 'S'},\ {"config", 1, 0, 'C'}, #define CF_NO_LONG_OPTS (const struct option []){ CF_LONG_OPTS { NULL, 0, 0, 0 } } +#define CF_USAGE_TAB "" #define CF_USAGE \ -"-S, --set sec.item=val\tManual setting of a configuration item\n\ --C, --config filename\tOverwrite default config filename\n" +"-S, --set sec.item=val\t" CF_USAGE_TAB "Manual setting of a configuration item\n\ +-C, --config filename\t" CF_USAGE_TAB "Overwrite default config filename\n" extern byte *cfdeffile;