2 * Asterisk -- A telephony toolkit for Linux.
4 * Configuration File Parser
6 * Copyright (C) 1999, Mark Spencer
8 * Mark Spencer <markster@linux-support.net>
10 * This program is free software, distributed under the terms of
11 * the GNU General Public License
19 #include <asterisk/config.h>
20 #include <asterisk/options.h>
21 #include <asterisk/logger.h>
26 struct ast_variable *root;
27 struct ast_category *next;
31 /* Maybe this structure isn't necessary but we'll keep it
33 struct ast_category *root;
36 static char *strip(char *buf)
39 /* Strip off trailing whitespace, returns, etc */
40 while(strlen(buf) && (buf[strlen(buf)-1]<33))
41 buf[strlen(buf)-1] = '\0';
43 /* Strip off leading whitespace, returns, etc */
44 while(*start && (*start < 33))
49 void ast_destroy(struct ast_config *ast)
51 struct ast_category *cat, *catn;
52 struct ast_variable *v, *vn;
73 /* Determine if this is a true value */
74 if (!strcasecmp(s, "yes") ||
75 !strcasecmp(s, "true") ||
76 !strcasecmp(s, "y") ||
77 !strcasecmp(s, "t") ||
83 struct ast_variable *ast_variable_browse(struct ast_config *config, char *category)
85 struct ast_category *cat;
88 if (!strcasecmp(cat->name, category))
95 char *ast_variable_retrieve(struct ast_config *config, char *category, char *value)
97 struct ast_variable *v;
99 v = ast_variable_browse(config, category);
101 if (!strcasecmp(value, v->name))
106 struct ast_category *cat;
111 if (!strcasecmp(value, v->name))
121 struct ast_config *ast_load(char *configfile)
125 struct ast_config *tmp=NULL;
126 struct ast_category *tmpc=NULL;
127 struct ast_variable *v, *last=NULL;
131 if (configfile[0] == '/') {
132 strncpy(fn, configfile, sizeof(fn));
134 snprintf(fn, sizeof(fn), "%s/%s", AST_CONFIG_DIR, configfile);
136 if ((option_verbose > 1) && !option_debug) {
137 ast_verbose( VERBOSE_PREFIX_2 "Parsing '%s': ", fn);
140 if ((f = fopen(fn, "r"))) {
142 ast_log(LOG_DEBUG, "Parsing %s\n", fn);
143 else if (option_verbose > 1)
144 ast_verbose( "Found\n");
145 tmp = malloc(sizeof(struct ast_config));
147 ast_log(LOG_WARNING, "Out of memory\n");
153 fgets(buf, sizeof(buf), f);
156 /* Strip off lines using ; as comment */
157 c = strchr(buf, ';');
162 /* Actually parse the entry */
164 /* A category header */
165 /* XXX Don't let them use the same category twice XXX */
166 c = strchr(cur, ']');
169 tmpc = malloc(sizeof(struct ast_category));
173 "Out of memory, line %d\n", lineno);
177 strncpy(tmpc->name, cur+1, sizeof(tmpc->name));
179 tmpc->next = tmp->root;
184 "parse error: no closing ']', line %d\n", lineno);
190 /* Just a line (variable = value) */
193 "parse error: No category context for line %d\n", lineno);
198 c = strchr(cur, '=');
202 v = malloc(sizeof(struct ast_variable));
205 v->name = strdup(strip(cur));
206 v->value = strdup(strip(c));
213 ast_log(LOG_WARNING, "Out of memory, line %d\n", lineno);
218 ast_log(LOG_WARNING, "No = in line %d\n", lineno);
230 ast_log(LOG_DEBUG, "No file to parse: %s\n", fn);
231 else if (option_verbose > 1)
232 ast_verbose( "Not found (%s)", strerror(errno));
237 char *ast_category_browse(struct ast_config *config, char *prev)
239 struct ast_category *cat;
242 return config->root->name;
248 if (!strcasecmp(cat->name, prev)) {
250 return cat->next->name;