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
29 #include <sys/types.h>
33 #if defined(HAVE_REGEX_H)
35 #elif defined(HAVE_PCREPOSIX_H)
36 #include <pcreposix.h>
39 #include <pulse/xmalloc.h>
41 #include <pulsecore/core-error.h>
42 #include <pulsecore/module.h>
43 #include <pulsecore/core-util.h>
44 #include <pulsecore/modargs.h>
45 #include <pulsecore/log.h>
46 #include <pulsecore/core-subscribe.h>
47 #include <pulsecore/sink-input.h>
48 #include <pulsecore/core-util.h>
50 #include "module-match-symdef.h"
52 PA_MODULE_AUTHOR("Lennart Poettering");
53 PA_MODULE_DESCRIPTION("Playback stream expression matching module");
54 PA_MODULE_VERSION(PACKAGE_VERSION);
55 PA_MODULE_LOAD_ONCE(TRUE);
56 PA_MODULE_USAGE("table=<filename> "
57 "key=<property_key>");
59 #define WHITESPACE "\n\r \t"
61 #define DEFAULT_MATCH_TABLE_FILE PA_DEFAULT_CONFIG_DIR"/match.table"
62 #define DEFAULT_MATCH_TABLE_FILE_USER "match.table"
64 static const char* const valid_modargs[] = {
73 pa_proplist *proplist;
80 pa_subscription *subscription;
83 static int load_rules(struct userdata *u, const char *filename) {
87 struct rule *end = NULL;
93 f = pa_fopen_cloexec(fn = pa_xstrdup(filename), "r");
95 f = pa_open_config_file(DEFAULT_MATCH_TABLE_FILE, DEFAULT_MATCH_TABLE_FILE_USER, NULL, &fn);
99 pa_log("Failed to open file config file: %s", pa_cstrerror(errno));
103 pa_lock_fd(fileno(f), 1);
107 pa_volume_t volume = PA_VOLUME_NORM;
112 pa_proplist *proplist = NULL;
114 if (!fgets(ln, sizeof(ln), f))
121 if (ln[0] == '#' || !*ln )
124 d = ln+strcspn(ln, WHITESPACE);
125 v = d+strspn(d, WHITESPACE);
129 pa_log(__FILE__ ": [%s:%u] failed to parse line - too few words", filename, n);
134 if (pa_atou(v, &k) >= 0) {
135 volume = (pa_volume_t) PA_CLAMP_VOLUME(k);
136 } else if (*v == '"') {
139 e = strchr(v+1, '"');
141 pa_log(__FILE__ ": [%s:%u] failed to parse line - missing role closing quote", filename, n);
146 e = pa_sprintf_malloc("media.role=\"%s\"", v+1);
147 proplist = pa_proplist_from_string(e);
152 e = v+strspn(v, WHITESPACE);
154 pa_log(__FILE__ ": [%s:%u] failed to parse line - missing end of property list", filename, n);
158 proplist = pa_proplist_from_string(v);
161 if (regcomp(®ex, ln, REG_EXTENDED|REG_NOSUB) != 0) {
162 pa_log("[%s:%u] invalid regular expression", filename, n);
166 rule = pa_xnew(struct rule, 1);
168 rule->proplist = proplist;
169 rule->volume = volume;
185 pa_lock_fd(fileno(f), 0);
195 static void callback(pa_core *c, pa_subscription_event_type_t t, uint32_t idx, void *userdata) {
196 struct userdata *u = userdata;
204 if (t != (PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_NEW))
207 if (!(si = pa_idxset_get_by_index(c->sink_inputs, idx)))
210 if (!(n = pa_proplist_gets(si->proplist, u->property_key)))
213 pa_log_debug("Matching with %s", n);
215 for (r = u->rules; r; r = r->next) {
216 if (!regexec(&r->regex, n, 0, NULL, 0)) {
218 pa_log_debug("updating proplist of sink input '%s'", n);
219 pa_proplist_update(si->proplist, PA_UPDATE_MERGE, r->proplist);
222 pa_log_debug("changing volume of sink input '%s' to 0x%03x", n, r->volume);
223 pa_cvolume_set(&cv, si->sample_spec.channels, r->volume);
224 pa_sink_input_set_volume(si, &cv, TRUE, FALSE);
230 int pa__init(pa_module*m) {
231 pa_modargs *ma = NULL;
236 if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
237 pa_log("Failed to parse module arguments");
241 u = pa_xnew(struct userdata, 1);
243 u->subscription = NULL;
246 u->property_key = pa_xstrdup(pa_modargs_get_value(ma, "key", PA_PROP_MEDIA_NAME));
248 if (load_rules(u, pa_modargs_get_value(ma, "table", NULL)) < 0)
251 /* FIXME: Doing this asynchronously is just broken. This needs to
254 u->subscription = pa_subscription_new(m->core, PA_SUBSCRIPTION_MASK_SINK_INPUT, callback, u);
267 void pa__done(pa_module*m) {
273 if (!(u = m->userdata))
277 pa_subscription_free(u->subscription);
280 pa_xfree(u->property_key);
282 for (r = u->rules; r; r = n) {
287 pa_proplist_free(r->proplist);