]> code.delx.au - pulseaudio/blob - polyp/module-match.c
0398cede0e03af82edc7e0434d651def3e20794e
[pulseaudio] / polyp / module-match.c
1 /* $Id$ */
2
3 /***
4 This file is part of polypaudio.
5
6 polypaudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU 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.
10
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.
15
16 You should have received a copy of the GNU 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
19 USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <unistd.h>
27 #include <assert.h>
28 #include <string.h>
29 #include <errno.h>
30 #include <sys/types.h>
31 #include <regex.h>
32 #include <stdio.h>
33 #include <stdlib.h>
34
35 #include "module.h"
36 #include "util.h"
37 #include "modargs.h"
38 #include "log.h"
39 #include "subscribe.h"
40 #include "xmalloc.h"
41 #include "sink-input.h"
42 #include "module-match-symdef.h"
43
44 PA_MODULE_AUTHOR("Lennart Poettering")
45 PA_MODULE_DESCRIPTION("Sink input matching module")
46 PA_MODULE_USAGE("table=<filename>")
47 PA_MODULE_VERSION(PACKAGE_VERSION)
48
49 #define WHITESPACE "\n\r \t"
50
51 #ifndef DEFAULT_CONFIG_DIR
52 #define DEFAULT_CONFIG_DIR "/etc/polypaudio"
53 #endif
54
55 #define DEFAULT_MATCH_TABLE_FILE DEFAULT_CONFIG_DIR"/match.table"
56 #define DEFAULT_MATCH_TABLE_FILE_USER ".polypaudio/match.table"
57
58 static const char* const valid_modargs[] = {
59 "table",
60 NULL,
61 };
62
63 struct rule {
64 regex_t regex;
65 pa_volume_t volume;
66 struct rule *next;
67 };
68
69 struct userdata {
70 struct rule *rules;
71 struct pa_subscription *subscription;
72 };
73
74 static int load_rules(struct userdata *u, const char *filename) {
75 FILE *f;
76 int n = 0;
77 int ret = -1;
78 struct rule *end = NULL;
79 char *fn = NULL;
80
81 f = filename ?
82 fopen(fn = pa_xstrdup(filename), "r") :
83 pa_open_config_file(DEFAULT_MATCH_TABLE_FILE, DEFAULT_MATCH_TABLE_FILE_USER, NULL, &fn);
84
85 if (!f) {
86 pa_log(__FILE__": failed to open file '%s': %s\n", fn, strerror(errno));
87 goto finish;
88 }
89
90 while (!feof(f)) {
91 char *d, *v, *e = NULL;
92 pa_volume_t volume;
93 regex_t regex;
94 char ln[256];
95 struct rule *rule;
96
97 if (!fgets(ln, sizeof(ln), f))
98 break;
99
100 n++;
101
102 pa_strip_nl(ln);
103
104 if (ln[0] == '#' || !*ln )
105 continue;
106
107 d = ln+strcspn(ln, WHITESPACE);
108 v = d+strspn(d, WHITESPACE);
109
110
111 if (!*v) {
112 pa_log(__FILE__ ": [%s:%u] failed to parse line - too few words\n", filename, n);
113 goto finish;
114 }
115
116 *d = 0;
117
118 volume = (pa_volume_t) strtol(v, &e, 0);
119
120 if (!e || *e) {
121 pa_log(__FILE__": [%s:%u] failed to parse volume\n", filename, n);
122 goto finish;
123 }
124
125 if (regcomp(&regex, ln, REG_EXTENDED|REG_NOSUB) != 0) {
126 pa_log(__FILE__": [%s:%u] invalid regular expression\n", filename, n);
127 goto finish;
128 }
129
130 rule = pa_xmalloc(sizeof(struct rule));
131 rule->regex = regex;
132 rule->volume = volume;
133 rule->next = NULL;
134
135 if (end)
136 end->next = rule;
137 else
138 u->rules = rule;
139 end = rule;
140
141 *d = 0;
142 }
143
144 ret = 0;
145
146 finish:
147 if (f)
148 fclose(f);
149
150 if (fn)
151 pa_xfree(fn);
152
153 return ret;
154 }
155
156 static void callback(struct pa_core *c, enum pa_subscription_event_type t, uint32_t index, void *userdata) {
157 struct userdata *u = userdata;
158 struct pa_sink_input *si;
159 struct rule *r;
160 assert(c && u);
161
162 if (t != (PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_NEW))
163 return;
164
165 if (!(si = pa_idxset_get_by_index(c->sink_inputs, index))) {
166 pa_log(__FILE__": WARNING: failed to get sink input\n");
167 return;
168 }
169
170 if (!si->name)
171 return;
172
173 for (r = u->rules; r; r = r->next) {
174 if (!regexec(&r->regex, si->name, 0, NULL, 0)) {
175 pa_log(__FILE__": changing volume of sink input '%s' to 0x%03x\n", si->name, r->volume);
176 pa_sink_input_set_volume(si, r->volume);
177 }
178 }
179 }
180
181 int pa__init(struct pa_core *c, struct pa_module*m) {
182 struct pa_modargs *ma = NULL;
183 const char *table_file;
184 struct userdata *u;
185 assert(c && m);
186
187 if (!(ma = pa_modargs_new(m->argument, valid_modargs)) ||
188 !(table_file = pa_modargs_get_value(ma, "table", NULL))) {
189 pa_log(__FILE__": Failed to parse module arguments\n");
190 goto fail;
191 }
192
193 u = pa_xmalloc(sizeof(struct userdata));
194 u->rules = NULL;
195 u->subscription = NULL;
196 m->userdata = u;
197
198 if (load_rules(u, table_file) < 0)
199 goto fail;
200
201 u->subscription = pa_subscription_new(c, PA_SUBSCRIPTION_MASK_SINK_INPUT, callback, u);
202
203 pa_modargs_free(ma);
204 return 0;
205
206 fail:
207 pa__done(c, m);
208
209 if (ma)
210 pa_modargs_free(ma);
211 return -1;
212 }
213
214 void pa__done(struct pa_core *c, struct pa_module*m) {
215 struct userdata* u;
216 struct rule *r, *n;
217 assert(c && m);
218
219 if (!(u = m->userdata))
220 return;
221
222 if (u->subscription)
223 pa_subscription_free(u->subscription);
224
225 for (r = u->rules; r; r = n) {
226 n = r->next;
227
228 regfree(&r->regex);
229 pa_xfree(r);
230 }
231
232 pa_xfree(u);
233 }
234
235