sink-input: Check flat volume with pa_sink_flat_volume_enabled().
[pulseaudio-raopUDP/pulseaudio-raop-alac.git] / src / pulsecore / conf-parser.c
blob71529557dd7f788ce5a5a714ec53040e05480c1f
1 /***
2 This file is part of PulseAudio.
4 Copyright 2004-2006 Lennart Poettering
6 PulseAudio 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.1 of the License,
9 or (at your option) any later version.
11 PulseAudio 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 PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
26 #include <string.h>
27 #include <stdio.h>
28 #include <errno.h>
30 #include <pulse/xmalloc.h>
32 #include <pulsecore/core-error.h>
33 #include <pulsecore/log.h>
34 #include <pulsecore/core-util.h>
35 #include <pulsecore/macro.h>
37 #include "conf-parser.h"
39 #define WHITESPACE " \t\n"
40 #define COMMENTS "#;\n"
42 /* Run the user supplied parser for an assignment */
43 static int next_assignment(
44 const char *filename,
45 unsigned line,
46 const char *section,
47 const pa_config_item *t,
48 const char *lvalue,
49 const char *rvalue,
50 void *userdata) {
52 pa_assert(filename);
53 pa_assert(t);
54 pa_assert(lvalue);
55 pa_assert(rvalue);
57 for (; t->parse; t++) {
59 if (t->lvalue && !pa_streq(lvalue, t->lvalue))
60 continue;
62 if (t->section && !section)
63 continue;
65 if (t->section && !pa_streq(section, t->section))
66 continue;
68 return t->parse(filename, line, section, lvalue, rvalue, t->data, userdata);
71 pa_log("[%s:%u] Unknown lvalue '%s' in section '%s'.", filename, line, lvalue, pa_strna(section));
73 return -1;
76 /* Parse a variable assignment line */
77 static int parse_line(const char *filename, unsigned line, char **section, const pa_config_item *t, char *l, void *userdata) {
78 char *e, *c, *b;
80 b = l+strspn(l, WHITESPACE);
82 if ((c = strpbrk(b, COMMENTS)))
83 *c = 0;
85 if (!*b)
86 return 0;
88 if (pa_startswith(b, ".include ")) {
89 char *path = NULL, *fn;
90 int r;
92 fn = pa_strip(b+9);
93 if (!pa_is_path_absolute(fn)) {
94 const char *k;
95 if ((k = strrchr(filename, '/'))) {
96 char *dir = pa_xstrndup(filename, k-filename);
97 fn = path = pa_sprintf_malloc("%s" PA_PATH_SEP "%s", dir, fn);
98 pa_xfree(dir);
102 r = pa_config_parse(fn, NULL, t, userdata);
103 pa_xfree(path);
104 return r;
107 if (*b == '[') {
108 size_t k;
110 k = strlen(b);
111 pa_assert(k > 0);
113 if (b[k-1] != ']') {
114 pa_log("[%s:%u] Invalid section header.", filename, line);
115 return -1;
118 pa_xfree(*section);
119 *section = pa_xstrndup(b+1, k-2);
120 return 0;
123 if (!(e = strchr(b, '='))) {
124 pa_log("[%s:%u] Missing '='.", filename, line);
125 return -1;
128 *e = 0;
129 e++;
131 return next_assignment(filename, line, *section, t, pa_strip(b), pa_strip(e), userdata);
134 /* Go through the file and parse each line */
135 int pa_config_parse(const char *filename, FILE *f, const pa_config_item *t, void *userdata) {
136 int r = -1;
137 unsigned line = 0;
138 pa_bool_t do_close = !f;
139 char *section = NULL;
141 pa_assert(filename);
142 pa_assert(t);
144 if (!f && !(f = pa_fopen_cloexec(filename, "r"))) {
145 if (errno == ENOENT) {
146 pa_log_debug("Failed to open configuration file '%s': %s", filename, pa_cstrerror(errno));
147 r = 0;
148 goto finish;
151 pa_log_warn("Failed to open configuration file '%s': %s", filename, pa_cstrerror(errno));
152 goto finish;
155 while (!feof(f)) {
156 char l[4096];
158 if (!fgets(l, sizeof(l), f)) {
159 if (feof(f))
160 break;
162 pa_log_warn("Failed to read configuration file '%s': %s", filename, pa_cstrerror(errno));
163 goto finish;
166 if (parse_line(filename, ++line, &section, t, l, userdata) < 0)
167 goto finish;
170 r = 0;
172 finish:
173 pa_xfree(section);
175 if (do_close && f)
176 fclose(f);
178 return r;
181 int pa_config_parse_int(const char *filename, unsigned line, const char *section, const char *lvalue, const char *rvalue, void *data, void *userdata) {
182 int *i = data;
183 int32_t k;
185 pa_assert(filename);
186 pa_assert(lvalue);
187 pa_assert(rvalue);
188 pa_assert(data);
190 if (pa_atoi(rvalue, &k) < 0) {
191 pa_log("[%s:%u] Failed to parse numeric value: %s", filename, line, rvalue);
192 return -1;
195 *i = (int) k;
196 return 0;
199 int pa_config_parse_unsigned(const char *filename, unsigned line, const char *section, const char *lvalue, const char *rvalue, void *data, void *userdata) {
200 unsigned *u = data;
201 uint32_t k;
203 pa_assert(filename);
204 pa_assert(lvalue);
205 pa_assert(rvalue);
206 pa_assert(data);
208 if (pa_atou(rvalue, &k) < 0) {
209 pa_log("[%s:%u] Failed to parse numeric value: %s", filename, line, rvalue);
210 return -1;
213 *u = (unsigned) k;
214 return 0;
217 int pa_config_parse_size(const char *filename, unsigned line, const char *section, const char *lvalue, const char *rvalue, void *data, void *userdata) {
218 size_t *i = data;
219 uint32_t k;
221 pa_assert(filename);
222 pa_assert(lvalue);
223 pa_assert(rvalue);
224 pa_assert(data);
226 if (pa_atou(rvalue, &k) < 0) {
227 pa_log("[%s:%u] Failed to parse numeric value: %s", filename, line, rvalue);
228 return -1;
231 *i = (size_t) k;
232 return 0;
235 int pa_config_parse_bool(const char *filename, unsigned line, const char *section, const char *lvalue, const char *rvalue, void *data, void *userdata) {
236 int k;
237 pa_bool_t *b = data;
239 pa_assert(filename);
240 pa_assert(lvalue);
241 pa_assert(rvalue);
242 pa_assert(data);
244 if ((k = pa_parse_boolean(rvalue)) < 0) {
245 pa_log("[%s:%u] Failed to parse boolean value: %s", filename, line, rvalue);
246 return -1;
249 *b = !!k;
251 return 0;
254 int pa_config_parse_not_bool(
255 const char *filename, unsigned line,
256 const char *section,
257 const char *lvalue, const char *rvalue,
258 void *data, void *userdata) {
260 int k;
261 pa_bool_t *b = data;
263 pa_assert(filename);
264 pa_assert(lvalue);
265 pa_assert(rvalue);
266 pa_assert(data);
268 if ((k = pa_parse_boolean(rvalue)) < 0) {
269 pa_log("[%s:%u] Failed to parse boolean value: %s", filename, line, rvalue);
270 return -1;
273 *b = !k;
275 return 0;
278 int pa_config_parse_string(const char *filename, unsigned line, const char *section, const char *lvalue, const char *rvalue, void *data, void *userdata) {
279 char **s = data;
281 pa_assert(filename);
282 pa_assert(lvalue);
283 pa_assert(rvalue);
284 pa_assert(data);
286 pa_xfree(*s);
287 *s = *rvalue ? pa_xstrdup(rvalue) : NULL;
288 return 0;