Samba 3: added Samba 3.0.24 sources
[tomato.git] / release / src / router / samba3 / source / iniparser / src / iniparser.c
blob0c06ab364b10fcd4037303a430a5d775cbe6e55e
2 /*-------------------------------------------------------------------------*/
3 /**
4 @file iniparser.c
5 @author N. Devillard
6 @date Mar 2000
7 @version $Revision: 2.14 $
8 @brief Parser for ini files.
9 */
10 /*--------------------------------------------------------------------------*/
13 $Id: iniparser.c,v 2.14 2002/12/12 10:49:01 ndevilla Exp $
14 $Author: ndevilla $
15 $Date: 2002/12/12 10:49:01 $
16 $Revision: 2.14 $
19 /*---------------------------------------------------------------------------
20 Includes
21 ---------------------------------------------------------------------------*/
23 #include "iniparser.h"
24 #include "strlib.h"
26 #define ASCIILINESZ 1024
27 #define INI_INVALID_KEY ((char*)-1)
29 /*---------------------------------------------------------------------------
30 Private to this module
31 ---------------------------------------------------------------------------*/
33 /* Private: add an entry to the dictionary */
34 static void iniparser_add_entry(
35 dictionary * d,
36 char * sec,
37 char * key,
38 char * val)
40 char longkey[2*ASCIILINESZ+1];
42 /* Make a key as section:keyword */
43 if (key!=NULL) {
44 sprintf(longkey, "%s:%s", sec, key);
45 } else {
46 strcpy(longkey, sec);
49 /* Add (key,val) to dictionary */
50 dictionary_set(d, longkey, val);
51 return ;
55 /*-------------------------------------------------------------------------*/
56 /**
57 @brief Get number of sections in a dictionary
58 @param d Dictionary to examine
59 @return int Number of sections found in dictionary
61 This function returns the number of sections found in a dictionary.
62 The test to recognize sections is done on the string stored in the
63 dictionary: a section name is given as "section" whereas a key is
64 stored as "section:key", thus the test looks for entries that do not
65 contain a colon.
67 This clearly fails in the case a section name contains a colon, but
68 this should simply be avoided.
70 This function returns -1 in case of error.
72 /*--------------------------------------------------------------------------*/
74 int iniparser_getnsec(dictionary * d)
76 int i ;
77 int nsec ;
79 if (d==NULL) return -1 ;
80 nsec=0 ;
81 for (i=0 ; i<d->size ; i++) {
82 if (d->key[i]==NULL)
83 continue ;
84 if (strchr(d->key[i], ':')==NULL) {
85 nsec ++ ;
88 return nsec ;
92 /*-------------------------------------------------------------------------*/
93 /**
94 @brief Get name for section n in a dictionary.
95 @param d Dictionary to examine
96 @param n Section number (from 0 to nsec-1).
97 @return Pointer to char string
99 This function locates the n-th section in a dictionary and returns
100 its name as a pointer to a string statically allocated inside the
101 dictionary. Do not free or modify the returned string!
103 This function returns NULL in case of error.
105 /*--------------------------------------------------------------------------*/
107 char * iniparser_getsecname(dictionary * d, int n)
109 int i ;
110 int foundsec ;
112 if (d==NULL || n<0) return NULL ;
113 foundsec=0 ;
114 for (i=0 ; i<d->size ; i++) {
115 if (d->key[i]==NULL)
116 continue ;
117 if (strchr(d->key[i], ':')==NULL) {
118 foundsec++ ;
119 if (foundsec>n)
120 break ;
123 if (foundsec<=n) {
124 return NULL ;
126 return d->key[i] ;
130 /*-------------------------------------------------------------------------*/
132 @brief Dump a dictionary to an opened file pointer.
133 @param d Dictionary to dump.
134 @param f Opened file pointer to dump to.
135 @return void
137 This function prints out the contents of a dictionary, one element by
138 line, onto the provided file pointer. It is OK to specify @c stderr
139 or @c stdout as output files. This function is meant for debugging
140 purposes mostly.
142 /*--------------------------------------------------------------------------*/
143 void iniparser_dump(dictionary * d, FILE * f)
145 int i ;
147 if (d==NULL || f==NULL) return ;
148 for (i=0 ; i<d->size ; i++) {
149 if (d->key[i]==NULL)
150 continue ;
151 if (d->val[i]!=NULL) {
152 fprintf(f, "[%s]=[%s]\n", d->key[i], d->val[i]);
153 } else {
154 fprintf(f, "[%s]=UNDEF\n", d->key[i]);
157 return ;
160 /*-------------------------------------------------------------------------*/
162 @brief Save a dictionary to a loadable ini file
163 @param d Dictionary to dump
164 @param f Opened file pointer to dump to
165 @return void
167 This function dumps a given dictionary into a loadable ini file.
168 It is Ok to specify @c stderr or @c stdout as output files.
170 /*--------------------------------------------------------------------------*/
172 void iniparser_dump_ini(dictionary * d, FILE * f)
174 int i, j ;
175 char keym[ASCIILINESZ+1];
176 int nsec ;
177 char * secname ;
178 int seclen ;
180 if (d==NULL || f==NULL) return ;
182 nsec = iniparser_getnsec(d);
183 if (nsec<1) {
184 /* No section in file: dump all keys as they are */
185 for (i=0 ; i<d->size ; i++) {
186 if (d->key[i]==NULL)
187 continue ;
188 fprintf(f, "%s = %s\n", d->key[i], d->val[i]);
190 return ;
192 for (i=0 ; i<nsec ; i++) {
193 secname = iniparser_getsecname(d, i) ;
194 seclen = (int)strlen(secname);
195 fprintf(f, "\n[%s]\n", secname);
196 sprintf(keym, "%s:", secname);
197 for (j=0 ; j<d->size ; j++) {
198 if (d->key[j]==NULL)
199 continue ;
200 if (!strncmp(d->key[j], keym, seclen+1)) {
201 fprintf(f,
202 "%-30s = %s\n",
203 d->key[j]+seclen+1,
204 d->val[j] ? d->val[j] : "");
208 fprintf(f, "\n");
209 return ;
215 /*-------------------------------------------------------------------------*/
217 @brief Get the string associated to a key, return NULL if not found
218 @param d Dictionary to search
219 @param key Key string to look for
220 @return pointer to statically allocated character string, or NULL.
222 This function queries a dictionary for a key. A key as read from an
223 ini file is given as "section:key". If the key cannot be found,
224 NULL is returned.
225 The returned char pointer is pointing to a string allocated in
226 the dictionary, do not free or modify it.
228 This function is only provided for backwards compatibility with
229 previous versions of iniparser. It is recommended to use
230 iniparser_getstring() instead.
232 /*--------------------------------------------------------------------------*/
233 char * iniparser_getstr(dictionary * d, char * key)
235 return iniparser_getstring(d, key, NULL);
239 /*-------------------------------------------------------------------------*/
241 @brief Get the string associated to a key
242 @param d Dictionary to search
243 @param key Key string to look for
244 @param def Default value to return if key not found.
245 @return pointer to statically allocated character string
247 This function queries a dictionary for a key. A key as read from an
248 ini file is given as "section:key". If the key cannot be found,
249 the pointer passed as 'def' is returned.
250 The returned char pointer is pointing to a string allocated in
251 the dictionary, do not free or modify it.
253 /*--------------------------------------------------------------------------*/
254 char * iniparser_getstring(dictionary * d, char * key, char * def)
256 char * lc_key ;
257 char * sval ;
259 if (d==NULL || key==NULL)
260 return def ;
262 lc_key = strdup(strlwc(key));
263 sval = dictionary_get(d, lc_key, def);
264 free(lc_key);
265 return sval ;
270 /*-------------------------------------------------------------------------*/
272 @brief Get the string associated to a key, convert to an int
273 @param d Dictionary to search
274 @param key Key string to look for
275 @param notfound Value to return in case of error
276 @return integer
278 This function queries a dictionary for a key. A key as read from an
279 ini file is given as "section:key". If the key cannot be found,
280 the notfound value is returned.
282 /*--------------------------------------------------------------------------*/
283 int iniparser_getint(dictionary * d, char * key, int notfound)
285 char * str ;
287 str = iniparser_getstring(d, key, INI_INVALID_KEY);
288 if (str==INI_INVALID_KEY) return notfound ;
289 return atoi(str);
293 /*-------------------------------------------------------------------------*/
295 @brief Get the string associated to a key, convert to a double
296 @param d Dictionary to search
297 @param key Key string to look for
298 @param notfound Value to return in case of error
299 @return double
301 This function queries a dictionary for a key. A key as read from an
302 ini file is given as "section:key". If the key cannot be found,
303 the notfound value is returned.
305 /*--------------------------------------------------------------------------*/
306 double iniparser_getdouble(dictionary * d, char * key, double notfound)
308 char * str ;
310 str = iniparser_getstring(d, key, INI_INVALID_KEY);
311 if (str==INI_INVALID_KEY) return notfound ;
312 return atof(str);
317 /*-------------------------------------------------------------------------*/
319 @brief Get the string associated to a key, convert to a boolean
320 @param d Dictionary to search
321 @param key Key string to look for
322 @param notfound Value to return in case of error
323 @return integer
325 This function queries a dictionary for a key. A key as read from an
326 ini file is given as "section:key". If the key cannot be found,
327 the notfound value is returned.
329 A true boolean is found if one of the following is matched:
331 - A string starting with 'y'
332 - A string starting with 'Y'
333 - A string starting with 't'
334 - A string starting with 'T'
335 - A string starting with '1'
337 A false boolean is found if one of the following is matched:
339 - A string starting with 'n'
340 - A string starting with 'N'
341 - A string starting with 'f'
342 - A string starting with 'F'
343 - A string starting with '0'
345 The notfound value returned if no boolean is identified, does not
346 necessarily have to be 0 or 1.
348 /*--------------------------------------------------------------------------*/
349 int iniparser_getboolean(dictionary * d, char * key, int notfound)
351 char * c ;
352 int ret ;
354 c = iniparser_getstring(d, key, INI_INVALID_KEY);
355 if (c==INI_INVALID_KEY) return notfound ;
356 if (c[0]=='y' || c[0]=='Y' || c[0]=='1' || c[0]=='t' || c[0]=='T') {
357 ret = 1 ;
358 } else if (c[0]=='n' || c[0]=='N' || c[0]=='0' || c[0]=='f' || c[0]=='F') {
359 ret = 0 ;
360 } else {
361 ret = notfound ;
363 return ret;
367 /*-------------------------------------------------------------------------*/
369 @brief Finds out if a given entry exists in a dictionary
370 @param ini Dictionary to search
371 @param entry Name of the entry to look for
372 @return integer 1 if entry exists, 0 otherwise
374 Finds out if a given entry exists in the dictionary. Since sections
375 are stored as keys with NULL associated values, this is the only way
376 of querying for the presence of sections in a dictionary.
378 /*--------------------------------------------------------------------------*/
380 int iniparser_find_entry(
381 dictionary * ini,
382 char * entry
385 int found=0 ;
386 if (iniparser_getstring(ini, entry, INI_INVALID_KEY)!=INI_INVALID_KEY) {
387 found = 1 ;
389 return found ;
394 /*-------------------------------------------------------------------------*/
396 @brief Set an entry in a dictionary.
397 @param ini Dictionary to modify.
398 @param entry Entry to modify (entry name)
399 @param val New value to associate to the entry.
400 @return int 0 if Ok, -1 otherwise.
402 If the given entry can be found in the dictionary, it is modified to
403 contain the provided value. If it cannot be found, -1 is returned.
404 It is Ok to set val to NULL.
406 /*--------------------------------------------------------------------------*/
408 int iniparser_setstr(dictionary * ini, char * entry, char * val)
410 dictionary_set(ini, strlwc(entry), val);
411 return 0 ;
414 /*-------------------------------------------------------------------------*/
416 @brief Delete an entry in a dictionary
417 @param ini Dictionary to modify
418 @param entry Entry to delete (entry name)
419 @return void
421 If the given entry can be found, it is deleted from the dictionary.
423 /*--------------------------------------------------------------------------*/
424 void iniparser_unset(dictionary * ini, char * entry)
426 dictionary_unset(ini, strlwc(entry));
430 /*-------------------------------------------------------------------------*/
432 @brief Parse an ini file and return an allocated dictionary object
433 @param ininame Name of the ini file to read.
434 @return Pointer to newly allocated dictionary
436 This is the parser for ini files. This function is called, providing
437 the name of the file to be read. It returns a dictionary object that
438 should not be accessed directly, but through accessor functions
439 instead.
441 The returned dictionary must be freed using iniparser_freedict().
443 /*--------------------------------------------------------------------------*/
445 dictionary * iniparser_load(char * ininame)
447 dictionary * d ;
448 char lin[ASCIILINESZ+1];
449 char sec[ASCIILINESZ+1];
450 char key[ASCIILINESZ+1];
451 char val[ASCIILINESZ+1];
452 char * where ;
453 FILE * ini ;
454 int lineno ;
456 if ((ini=fopen(ininame, "r"))==NULL) {
457 return NULL ;
460 sec[0]=0;
463 * Initialize a new dictionary entry
465 d = dictionary_new(0);
466 lineno = 0 ;
467 while (fgets(lin, ASCIILINESZ, ini)!=NULL) {
468 lineno++ ;
469 where = strskp(lin); /* Skip leading spaces */
470 if (*where==';' || *where=='#' || *where==0)
471 continue ; /* Comment lines */
472 else {
473 if (sscanf(where, "[%[^]]", sec)==1) {
474 /* Valid section name */
475 strcpy(sec, strlwc(sec));
476 iniparser_add_entry(d, sec, NULL, NULL);
477 } else if (sscanf (where, "%[^=] = \"%[^\"]\"", key, val) == 2
478 || sscanf (where, "%[^=] = '%[^\']'", key, val) == 2
479 || sscanf (where, "%[^=] = %[^;#]", key, val) == 2) {
480 strcpy(key, strlwc(strcrop(key)));
482 * sscanf cannot handle "" or '' as empty value,
483 * this is done here
485 if (!strcmp(val, "\"\"") || !strcmp(val, "''")) {
486 val[0] = (char)0;
487 } else {
488 strcpy(val, strcrop(val));
490 iniparser_add_entry(d, sec, key, val);
494 fclose(ini);
495 return d ;
500 /*-------------------------------------------------------------------------*/
502 @brief Free all memory associated to an ini dictionary
503 @param d Dictionary to free
504 @return void
506 Free all memory associated to an ini dictionary.
507 It is mandatory to call this function before the dictionary object
508 gets out of the current context.
510 /*--------------------------------------------------------------------------*/
512 void iniparser_freedict(dictionary * d)
514 dictionary_del(d);
517 /* vim: set ts=4 et sw=4 tw=75 */