]> code.delx.au - pulseaudio/blob - src/modules/module-match.c
Yes, yet another evil all-in-one commit of intervowen changes. I suck.
[pulseaudio] / src / modules / module-match.c
1 /* $Id$ */
2
3 /***
4 This file is part of PulseAudio.
5
6 Copyright 2004-2006 Lennart Poettering
7
8 PulseAudio is free software; you can redistribute it and/or modify
9 it under the terms of the GNU Lesser General Public License as published
10 by the Free Software Foundation; either version 2 of the License,
11 or (at your option) any later version.
12
13 PulseAudio is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with PulseAudio; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 USA.
22 ***/
23
24 #ifdef HAVE_CONFIG_H
25 #include <config.h>
26 #endif
27
28 #include <unistd.h>
29 #include <string.h>
30 #include <errno.h>
31 #include <sys/types.h>
32 #include <regex.h>
33 #include <stdio.h>
34 #include <stdlib.h>
35
36 #include <pulse/xmalloc.h>
37
38 #include <pulsecore/core-error.h>
39 #include <pulsecore/module.h>
40 #include <pulsecore/core-util.h>
41 #include <pulsecore/modargs.h>
42 #include <pulsecore/log.h>
43 #include <pulsecore/core-subscribe.h>
44 #include <pulsecore/sink-input.h>
45 #include <pulsecore/core-util.h>
46
47 #include "module-match-symdef.h"
48
49 PA_MODULE_AUTHOR("Lennart Poettering");
50 PA_MODULE_DESCRIPTION("Playback stream expression matching module");
51 PA_MODULE_VERSION(PACKAGE_VERSION);
52 PA_MODULE_LOAD_ONCE(TRUE);
53 PA_MODULE_USAGE("table=<filename>");
54
55 #define WHITESPACE "\n\r \t"
56
57 #define DEFAULT_MATCH_TABLE_FILE PA_DEFAULT_CONFIG_DIR"/match.table"
58 #define DEFAULT_MATCH_TABLE_FILE_USER "match.table"
59
60 static const char* const valid_modargs[] = {
61 "table",
62 NULL,
63 };
64
65 struct rule {
66 regex_t regex;
67 pa_volume_t volume;
68 struct rule *next;
69 };
70
71 struct userdata {
72 struct rule *rules;
73 pa_subscription *subscription;
74 };
75
76 static int load_rules(struct userdata *u, const char *filename) {
77 FILE *f;
78 int n = 0;
79 int ret = -1;
80 struct rule *end = NULL;
81 char *fn = NULL;
82
83 pa_assert(u);
84
85 if (filename)
86 f = fopen(fn = pa_xstrdup(filename), "r");
87 else
88 f = pa_open_config_file(DEFAULT_MATCH_TABLE_FILE, DEFAULT_MATCH_TABLE_FILE_USER, NULL, &fn);
89
90 if (!f) {
91 pa_xfree(fn);
92 pa_log("Failed to open file config file: %s", pa_cstrerror(errno));
93 goto finish;
94 }
95
96 pa_lock_fd(fileno(f), 1);
97
98 while (!feof(f)) {
99 char *d, *v;
100 pa_volume_t volume;
101 uint32_t k;
102 regex_t regex;
103 char ln[256];
104 struct rule *rule;
105
106 if (!fgets(ln, sizeof(ln), f))
107 break;
108
109 n++;
110
111 pa_strip_nl(ln);
112
113 if (ln[0] == '#' || !*ln )
114 continue;
115
116 d = ln+strcspn(ln, WHITESPACE);
117 v = d+strspn(d, WHITESPACE);
118
119
120 if (!*v) {
121 pa_log(__FILE__ ": [%s:%u] failed to parse line - too few words", filename, n);
122 goto finish;
123 }
124
125 *d = 0;
126 if (pa_atou(v, &k) < 0) {
127 pa_log("[%s:%u] failed to parse volume", filename, n);
128 goto finish;
129 }
130
131 volume = (pa_volume_t) k;
132
133
134 if (regcomp(&regex, ln, REG_EXTENDED|REG_NOSUB) != 0) {
135 pa_log("[%s:%u] invalid regular expression", filename, n);
136 goto finish;
137 }
138
139 rule = pa_xnew(struct rule, 1);
140 rule->regex = regex;
141 rule->volume = volume;
142 rule->next = NULL;
143
144 if (end)
145 end->next = rule;
146 else
147 u->rules = rule;
148 end = rule;
149
150 *d = 0;
151 }
152
153 ret = 0;
154
155 finish:
156 if (f) {
157 pa_lock_fd(fileno(f), 0);
158 fclose(f);
159 }
160
161 if (fn)
162 pa_xfree(fn);
163
164 return ret;
165 }
166
167 static void callback(pa_core *c, pa_subscription_event_type_t t, uint32_t idx, void *userdata) {
168 struct userdata *u = userdata;
169 pa_sink_input *si;
170 struct rule *r;
171 const char *n;
172
173 pa_assert(c);
174 pa_assert(u);
175
176 if (t != (PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_NEW))
177 return;
178
179 if (!(si = pa_idxset_get_by_index(c->sink_inputs, idx)))
180 return;
181
182 if (!(n = pa_proplist_gets(si->proplist, PA_PROP_MEDIA_NAME)))
183 return;
184
185 for (r = u->rules; r; r = r->next) {
186 if (!regexec(&r->regex, n, 0, NULL, 0)) {
187 pa_cvolume cv;
188 pa_log_debug("changing volume of sink input '%s' to 0x%03x", n, r->volume);
189 pa_cvolume_set(&cv, si->sample_spec.channels, r->volume);
190 pa_sink_input_set_volume(si, &cv);
191 }
192 }
193 }
194
195 int pa__init(pa_module*m) {
196 pa_modargs *ma = NULL;
197 struct userdata *u;
198
199 pa_assert(m);
200
201 if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
202 pa_log("Failed to parse module arguments");
203 goto fail;
204 }
205
206 u = pa_xnew(struct userdata, 1);
207 u->rules = NULL;
208 u->subscription = NULL;
209 m->userdata = u;
210
211 if (load_rules(u, pa_modargs_get_value(ma, "table", NULL)) < 0)
212 goto fail;
213
214 u->subscription = pa_subscription_new(m->core, PA_SUBSCRIPTION_MASK_SINK_INPUT, callback, u);
215
216 pa_modargs_free(ma);
217 return 0;
218
219 fail:
220 pa__done(m);
221
222 if (ma)
223 pa_modargs_free(ma);
224 return -1;
225 }
226
227 void pa__done(pa_module*m) {
228 struct userdata* u;
229 struct rule *r, *n;
230
231 pa_assert(m);
232
233 if (!(u = m->userdata))
234 return;
235
236 if (u->subscription)
237 pa_subscription_free(u->subscription);
238
239 for (r = u->rules; r; r = n) {
240 n = r->next;
241
242 regfree(&r->regex);
243 pa_xfree(r);
244 }
245
246 pa_xfree(u);
247 }