2 This file is part of PulseAudio.
4 Copyright 2011 Colin Guthrie
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
26 #include <pulse/timeval.h>
27 #include <pulse/rtclock.h>
28 #include <pulse/i18n.h>
30 #include <pulsecore/macro.h>
31 #include <pulsecore/hashmap.h>
32 #include <pulsecore/hook-list.h>
33 #include <pulsecore/core.h>
34 #include <pulsecore/core-util.h>
35 #include <pulsecore/sink-input.h>
36 #include <pulsecore/modargs.h>
38 #include "module-filter-apply-symdef.h"
41 PA_MODULE_AUTHOR("Colin Guthrie");
42 PA_MODULE_DESCRIPTION("Load filter sinks automatically when needed");
43 PA_MODULE_VERSION(PACKAGE_VERSION
);
44 PA_MODULE_LOAD_ONCE(TRUE
);
45 PA_MODULE_USAGE(_("autoclean=<automatically unload unused filters?>"));
47 static const char* const valid_modargs
[] = {
52 #define DEFAULT_AUTOCLEAN TRUE
53 #define HOUSEKEEPING_INTERVAL (10 * PA_USEC_PER_SEC)
58 uint32_t module_index
;
67 *sink_input_proplist_slot
,
68 *sink_input_unlink_slot
,
71 pa_time_event
*housekeeping_time_event
;
74 static unsigned filter_hash(const void *p
) {
75 const struct filter
*f
= p
;
78 (unsigned) f
->parent_sink
->index
+
79 pa_idxset_string_hash_func(f
->name
);
82 static int filter_compare(const void *a
, const void *b
) {
83 const struct filter
*fa
= a
, *fb
= b
;
86 if (fa
->parent_sink
!= fb
->parent_sink
)
88 if ((r
= strcmp(fa
->name
, fb
->name
)))
94 static struct filter
*filter_new(const char *name
, pa_sink
* parent_sink
) {
97 f
= pa_xnew(struct filter
, 1);
98 f
->name
= pa_xstrdup(name
);
99 pa_assert_se(f
->parent_sink
= parent_sink
);
100 f
->module_index
= PA_INVALID_INDEX
;
105 static void filter_free(struct filter
*f
) {
112 static const char* should_filter(pa_sink_input
*i
) {
115 /* If the stream doesn't what any filter, then let it be. */
116 if ((want
= pa_proplist_gets(i
->proplist
, PA_PROP_FILTER_WANT
)) && !pa_streq(want
, "")) {
117 const char* suppress
= pa_proplist_gets(i
->proplist
, PA_PROP_FILTER_SUPPRESS
);
119 if (!suppress
|| !pa_streq(suppress
, want
))
126 static void housekeeping_time_callback(pa_mainloop_api
*a
, pa_time_event
* e
, const struct timeval
*t
, void *userdata
) {
127 struct userdata
*u
= userdata
;
128 struct filter
*filter
;
135 pa_assert(e
== u
->housekeeping_time_event
);
136 u
->core
->mainloop
->time_free(u
->housekeeping_time_event
);
137 u
->housekeeping_time_event
= NULL
;
139 PA_HASHMAP_FOREACH(filter
, u
->filters
, state
) {
140 if (filter
->sink
&& pa_idxset_size(filter
->sink
->inputs
) == 0) {
143 pa_log_debug("Detected filter %s as no longer used on sink %s. Unloading.", filter
->name
, filter
->sink
->name
);
144 idx
= filter
->module_index
;
145 pa_hashmap_remove(u
->filters
, filter
);
147 pa_module_unload_request_by_index(u
->core
, idx
, TRUE
);
151 pa_log_info("Housekeeping Done.");
154 static void trigger_housekeeping(struct userdata
*u
) {
160 if (u
->housekeeping_time_event
)
163 u
->housekeeping_time_event
= pa_core_rttime_new(u
->core
, pa_rtclock_now() + HOUSEKEEPING_INTERVAL
, housekeeping_time_callback
, u
);
166 static void move_input_for_filter(pa_sink_input
*i
, struct filter
* filter
, pa_bool_t restore
) {
172 pa_assert_se(sink
= (restore
? filter
->parent_sink
: filter
->sink
));
174 if (pa_sink_input_move_to(i
, sink
, FALSE
) < 0)
175 pa_log_info("Failed to move sink input %u \"%s\" to <%s>.", i
->index
,
176 pa_strnull(pa_proplist_gets(i
->proplist
, PA_PROP_APPLICATION_NAME
)), sink
->name
);
178 pa_log_info("Sucessfully moved sink input %u \"%s\" to <%s>.", i
->index
,
179 pa_strnull(pa_proplist_gets(i
->proplist
, PA_PROP_APPLICATION_NAME
)), sink
->name
);
182 static pa_hook_result_t
process(struct userdata
*u
, pa_sink_input
*i
) {
184 pa_bool_t done_something
= FALSE
;
187 pa_sink_input_assert_ref(i
);
189 /* If there is no sink yet, we can't do much */
193 /* If the stream doesn't what any filter, then let it be. */
194 if ((want
= should_filter(i
))) {
196 struct filter
*fltr
, *filter
;
198 /* We need to ensure the SI is playing on a sink of this type
199 * attached to the sink it's "officially" playing on */
201 if (!i
->sink
->module
)
204 module_name
= pa_sprintf_malloc("module-%s", want
);
205 if (pa_streq(i
->sink
->module
->name
, module_name
)) {
206 pa_log_debug("Stream appears to be playing on an appropriate sink already. Ignoring.");
207 pa_xfree(module_name
);
211 fltr
= filter_new(want
, i
->sink
);
213 if (!(filter
= pa_hashmap_get(u
->filters
, fltr
))) {
217 args
= pa_sprintf_malloc("sink_master=%s", i
->sink
->name
);
218 pa_log_debug("Loading %s with arguments '%s'", module_name
, args
);
220 if ((m
= pa_module_load(u
->core
, module_name
, args
))) {
224 fltr
->module_index
= m
->index
;
225 /* We cannot use the SINK_PUT hook here to detect our sink as it'll
226 * be called during the module load so we wont yet have put the filter
227 * in our hashmap to compare... so we have to search for it */
228 PA_IDXSET_FOREACH(sink
, u
->core
->sinks
, idx
) {
229 if (sink
->module
== m
) {
234 pa_hashmap_put(u
->filters
, fltr
, fltr
);
237 done_something
= TRUE
;
244 pa_log("Unable to load %s for sink <%s>", module_name
, i
->sink
->name
);
245 pa_xfree(module_name
);
248 pa_xfree(module_name
);
251 /* We can move the sink_input now as the know the destination.
252 * If this isn't true, we will do it later when the sink appears. */
253 move_input_for_filter(i
, filter
, FALSE
);
254 done_something
= TRUE
;
258 struct filter
*filter
= NULL
;
260 /* We do not want to filter... but are we already filtered?
261 * This can happen if an input's proplist changes */
262 PA_HASHMAP_FOREACH(filter
, u
->filters
, state
) {
263 if (i
->sink
== filter
->sink
) {
264 move_input_for_filter(i
, filter
, TRUE
);
265 done_something
= TRUE
;
272 trigger_housekeeping(u
);
277 static pa_hook_result_t
sink_input_put_cb(pa_core
*core
, pa_sink_input
*i
, struct userdata
*u
) {
278 pa_core_assert_ref(core
);
279 pa_sink_input_assert_ref(i
);
281 return process(u
, i
);
284 static pa_hook_result_t
sink_input_proplist_cb(pa_core
*core
, pa_sink_input
*i
, struct userdata
*u
) {
285 pa_core_assert_ref(core
);
286 pa_sink_input_assert_ref(i
);
288 return process(u
, i
);
291 static pa_hook_result_t
sink_input_unlink_cb(pa_core
*core
, pa_sink_input
*i
, struct userdata
*u
) {
292 pa_core_assert_ref(core
);
293 pa_sink_input_assert_ref(i
);
297 if (pa_hashmap_size(u
->filters
) > 0)
298 trigger_housekeeping(u
);
303 static pa_hook_result_t
sink_unlink_cb(pa_core
*core
, pa_sink
*sink
, struct userdata
*u
) {
305 struct filter
*filter
= NULL
;
307 pa_core_assert_ref(core
);
308 pa_sink_assert_ref(sink
);
311 /* If either the parent or the sink we've loaded disappears,
312 * we should remove it from our hashmap */
313 PA_HASHMAP_FOREACH(filter
, u
->filters
, state
) {
314 if (filter
->parent_sink
== sink
|| filter
->sink
== sink
) {
317 /* Attempt to rescue any streams to the parent sink as this is likely
318 * the best course of action (as opposed to a generic rescue via
319 * module-rescue-streams */
320 if (filter
->sink
== sink
) {
323 PA_IDXSET_FOREACH(i
, sink
->inputs
, idx
)
324 move_input_for_filter(i
, filter
, TRUE
);
327 idx
= filter
->module_index
;
328 pa_hashmap_remove(u
->filters
, filter
);
330 pa_module_unload_request_by_index(u
->core
, idx
, TRUE
);
338 int pa__init(pa_module
*m
) {
339 pa_modargs
*ma
= NULL
;
344 if (!(ma
= pa_modargs_new(m
->argument
, valid_modargs
))) {
345 pa_log("Failed to parse module arguments");
349 m
->userdata
= u
= pa_xnew0(struct userdata
, 1);
353 u
->autoclean
= DEFAULT_AUTOCLEAN
;
354 if (pa_modargs_get_value_boolean(ma
, "autoclean", &u
->autoclean
) < 0) {
355 pa_log("Failed to parse autoclean value");
359 u
->filters
= pa_hashmap_new(filter_hash
, filter_compare
);
361 u
->sink_input_put_slot
= pa_hook_connect(&m
->core
->hooks
[PA_CORE_HOOK_SINK_INPUT_PUT
], PA_HOOK_LATE
, (pa_hook_cb_t
) sink_input_put_cb
, u
);
362 u
->sink_input_proplist_slot
= pa_hook_connect(&m
->core
->hooks
[PA_CORE_HOOK_SINK_INPUT_PROPLIST_CHANGED
], PA_HOOK_LATE
, (pa_hook_cb_t
) sink_input_proplist_cb
, u
);
363 u
->sink_input_unlink_slot
= pa_hook_connect(&m
->core
->hooks
[PA_CORE_HOOK_SINK_INPUT_UNLINK
], PA_HOOK_LATE
, (pa_hook_cb_t
) sink_input_unlink_cb
, u
);
364 u
->sink_unlink_slot
= pa_hook_connect(&m
->core
->hooks
[PA_CORE_HOOK_SINK_UNLINK
], PA_HOOK_LATE
, (pa_hook_cb_t
) sink_unlink_cb
, u
);
379 void pa__done(pa_module
*m
) {
384 if (!(u
= m
->userdata
))
387 if (u
->sink_input_put_slot
)
388 pa_hook_slot_free(u
->sink_input_put_slot
);
389 if (u
->sink_input_proplist_slot
)
390 pa_hook_slot_free(u
->sink_input_proplist_slot
);
391 if (u
->sink_input_unlink_slot
)
392 pa_hook_slot_free(u
->sink_input_unlink_slot
);
393 if (u
->sink_unlink_slot
)
394 pa_hook_slot_free(u
->sink_unlink_slot
);
396 if (u
->housekeeping_time_event
)
397 u
->core
->mainloop
->time_free(u
->housekeeping_time_event
);
402 while ((f
= pa_hashmap_steal_first(u
->filters
))) {
403 pa_module_unload_request_by_index(u
->core
, f
->module_index
, TRUE
);
407 pa_hashmap_free(u
->filters
, NULL
, NULL
);