4 This file is part of polypaudio.
6 polypaudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation; either version 2 of the License,
9 or (at your option) any later version.
11 polypaudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public License
17 along with polypaudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
31 #include <polyp/xmalloc.h>
33 #include <polypcore/log.h>
34 #include <polypcore/core-util.h>
36 #include "conf-parser.h"
38 #define WHITESPACE " \t\n"
39 #define COMMENTS "#;\n"
41 /* Run the user supplied parser for an assignment */
42 static int next_assignment(const char *filename, unsigned line, const pa_config_item *t, const char *lvalue, const char *rvalue, void *userdata) {
43 assert(filename && t && lvalue && rvalue);
46 if (!strcmp(lvalue, t->lvalue))
47 return t->parse(filename, line, lvalue, rvalue, t->data, userdata);
49 pa_log(__FILE__": [%s:%u] Unknown lvalue '%s'.", filename, line, lvalue);
54 /* Returns non-zero when c is contained in s */
55 static int in_string(char c, const char *s) {
65 /* Remove all whitepsapce from the beginning and the end of *s. *s may
67 static char *strip(char *s) {
68 char *b = s+strspn(s, WHITESPACE);
72 if (!in_string(*e, WHITESPACE))
81 /* Parse a variable assignment line */
82 static int parse_line(const char *filename, unsigned line, const pa_config_item *t, char *l, void *userdata) {
83 char *e, *c, *b = l+strspn(l, WHITESPACE);
85 if ((c = strpbrk(b, COMMENTS)))
91 if (!(e = strchr(b, '='))) {
92 pa_log(__FILE__": [%s:%u] Missing '='.", filename, line);
99 return next_assignment(filename, line, t, strip(b), strip(e), userdata);
102 /* Go through the file and parse each line */
103 int pa_config_parse(const char *filename, FILE *f, const pa_config_item *t, void *userdata) {
107 assert(filename && t);
109 if (!f && !(f = fopen(filename, "r"))) {
110 if (errno == ENOENT) {
115 pa_log(__FILE__": WARNING: failed to open configuration file '%s': %s", filename, strerror(errno));
121 if (!fgets(l, sizeof(l), f)) {
125 pa_log(__FILE__": WARNING: failed to read configuration file '%s': %s", filename, strerror(errno));
129 if (parse_line(filename, ++line, t, l, userdata) < 0)
143 int pa_config_parse_int(const char *filename, unsigned line, const char *lvalue, const char *rvalue, void *data, PA_GCC_UNUSED void *userdata) {
146 assert(filename && lvalue && rvalue && data);
148 if (pa_atoi(rvalue, &k) < 0) {
149 pa_log(__FILE__": [%s:%u] Failed to parse numeric value: %s", filename, line, rvalue);
157 int pa_config_parse_bool(const char *filename, unsigned line, const char *lvalue, const char *rvalue, void *data, PA_GCC_UNUSED void *userdata) {
159 assert(filename && lvalue && rvalue && data);
161 if ((k = pa_parse_boolean(rvalue)) < 0) {
162 pa_log(__FILE__": [%s:%u] Failed to parse boolean value: %s", filename, line, rvalue);
171 int pa_config_parse_string(const char *filename, PA_GCC_UNUSED unsigned line, const char *lvalue, const char *rvalue, void *data, PA_GCC_UNUSED void *userdata) {
173 assert(filename && lvalue && rvalue && data);
176 *s = *rvalue ? pa_xstrdup(rvalue) : NULL;