]> code.delx.au - pulseaudio/blob - src/modules/module-suspend-on-idle.c
959de432431ad0d843a337374eb86582043a08f5
[pulseaudio] / src / modules / module-suspend-on-idle.c
1 /***
2 This file is part of PulseAudio.
3
4 Copyright 2006 Lennart Poettering
5
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.
10
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.
15
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 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <pulse/xmalloc.h>
27 #include <pulse/timeval.h>
28 #include <pulse/rtclock.h>
29
30 #include <pulsecore/core.h>
31 #include <pulsecore/core-util.h>
32 #include <pulsecore/sink-input.h>
33 #include <pulsecore/source-output.h>
34 #include <pulsecore/modargs.h>
35 #include <pulsecore/log.h>
36
37 #include "module-suspend-on-idle-symdef.h"
38
39 PA_MODULE_AUTHOR("Lennart Poettering");
40 PA_MODULE_DESCRIPTION("When a sink/source is idle for too long, suspend it");
41 PA_MODULE_VERSION(PACKAGE_VERSION);
42 PA_MODULE_LOAD_ONCE(true);
43 PA_MODULE_USAGE("timeout=<timeout>");
44
45 static const char* const valid_modargs[] = {
46 "timeout",
47 NULL,
48 };
49
50 struct userdata {
51 pa_core *core;
52 pa_usec_t timeout;
53 pa_hashmap *device_infos;
54 pa_hook_slot
55 *sink_new_slot,
56 *source_new_slot,
57 *sink_unlink_slot,
58 *source_unlink_slot,
59 *sink_state_changed_slot,
60 *source_state_changed_slot;
61
62 pa_hook_slot
63 *sink_input_new_slot,
64 *source_output_new_slot,
65 *sink_input_unlink_slot,
66 *source_output_unlink_slot,
67 *sink_input_move_start_slot,
68 *source_output_move_start_slot,
69 *sink_input_move_finish_slot,
70 *source_output_move_finish_slot,
71 *sink_input_state_changed_slot,
72 *source_output_state_changed_slot;
73 };
74
75 struct device_info {
76 struct userdata *userdata;
77 pa_sink *sink;
78 pa_source *source;
79 pa_usec_t last_use;
80 pa_time_event *time_event;
81 pa_usec_t timeout;
82 };
83
84 static void timeout_cb(pa_mainloop_api*a, pa_time_event* e, const struct timeval *t, void *userdata) {
85 struct device_info *d = userdata;
86
87 pa_assert(d);
88
89 d->userdata->core->mainloop->time_restart(d->time_event, NULL);
90
91 if (d->sink && pa_sink_check_suspend(d->sink) <= 0 && !(d->sink->suspend_cause & PA_SUSPEND_IDLE)) {
92 pa_log_info("Sink %s idle for too long, suspending ...", d->sink->name);
93 pa_sink_suspend(d->sink, true, PA_SUSPEND_IDLE);
94 pa_core_maybe_vacuum(d->userdata->core);
95 }
96
97 if (d->source && pa_source_check_suspend(d->source) <= 0 && !(d->source->suspend_cause & PA_SUSPEND_IDLE)) {
98 pa_log_info("Source %s idle for too long, suspending ...", d->source->name);
99 pa_source_suspend(d->source, true, PA_SUSPEND_IDLE);
100 pa_core_maybe_vacuum(d->userdata->core);
101 }
102 }
103
104 static void restart(struct device_info *d) {
105 pa_usec_t now;
106
107 pa_assert(d);
108 pa_assert(d->sink || d->source);
109
110 d->last_use = now = pa_rtclock_now();
111 pa_core_rttime_restart(d->userdata->core, d->time_event, now + d->timeout);
112
113 if (d->sink)
114 pa_log_debug("Sink %s becomes idle, timeout in %" PRIu64 " seconds.", d->sink->name, d->timeout / PA_USEC_PER_SEC);
115 if (d->source)
116 pa_log_debug("Source %s becomes idle, timeout in %" PRIu64 " seconds.", d->source->name, d->timeout / PA_USEC_PER_SEC);
117 }
118
119 static void resume(struct device_info *d) {
120 pa_assert(d);
121
122 d->userdata->core->mainloop->time_restart(d->time_event, NULL);
123
124 if (d->sink) {
125 pa_log_debug("Sink %s becomes busy, resuming.", d->sink->name);
126 pa_sink_suspend(d->sink, false, PA_SUSPEND_IDLE);
127 }
128
129 if (d->source) {
130 pa_log_debug("Source %s becomes busy, resuming.", d->source->name);
131 pa_source_suspend(d->source, false, PA_SUSPEND_IDLE);
132 }
133 }
134
135 static pa_hook_result_t sink_input_fixate_hook_cb(pa_core *c, pa_sink_input_new_data *data, struct userdata *u) {
136 struct device_info *d;
137
138 pa_assert(c);
139 pa_assert(data);
140 pa_assert(u);
141
142 /* We need to resume the audio device here even for
143 * PA_SINK_INPUT_START_CORKED, since we need the device parameters
144 * to be fully available while the stream is set up. In that case,
145 * make sure we close the sink again after the timeout interval. */
146
147 if ((d = pa_hashmap_get(u->device_infos, data->sink))) {
148 resume(d);
149 if (pa_sink_check_suspend(d->sink) <= 0)
150 restart(d);
151 }
152
153 return PA_HOOK_OK;
154 }
155
156 static pa_hook_result_t source_output_fixate_hook_cb(pa_core *c, pa_source_output_new_data *data, struct userdata *u) {
157 struct device_info *d;
158
159 pa_assert(c);
160 pa_assert(data);
161 pa_assert(u);
162
163 if (data->source->monitor_of)
164 d = pa_hashmap_get(u->device_infos, data->source->monitor_of);
165 else
166 d = pa_hashmap_get(u->device_infos, data->source);
167
168 if (d) {
169 resume(d);
170 if (pa_source_check_suspend(d->source) <= 0)
171 restart(d);
172 }
173
174 return PA_HOOK_OK;
175 }
176
177 static pa_hook_result_t sink_input_unlink_hook_cb(pa_core *c, pa_sink_input *s, struct userdata *u) {
178 pa_assert(c);
179 pa_sink_input_assert_ref(s);
180 pa_assert(u);
181
182 if (!s->sink)
183 return PA_HOOK_OK;
184
185 if (pa_sink_check_suspend(s->sink) <= 0) {
186 struct device_info *d;
187 if ((d = pa_hashmap_get(u->device_infos, s->sink)))
188 restart(d);
189 }
190
191 return PA_HOOK_OK;
192 }
193
194 static pa_hook_result_t source_output_unlink_hook_cb(pa_core *c, pa_source_output *s, struct userdata *u) {
195 struct device_info *d = NULL;
196
197 pa_assert(c);
198 pa_source_output_assert_ref(s);
199 pa_assert(u);
200
201 if (!s->source)
202 return PA_HOOK_OK;
203
204 if (s->source->monitor_of) {
205 if (pa_sink_check_suspend(s->source->monitor_of) <= 0)
206 d = pa_hashmap_get(u->device_infos, s->source->monitor_of);
207 } else {
208 if (pa_source_check_suspend(s->source) <= 0)
209 d = pa_hashmap_get(u->device_infos, s->source);
210 }
211
212 if (d)
213 restart(d);
214
215 return PA_HOOK_OK;
216 }
217
218 static pa_hook_result_t sink_input_move_start_hook_cb(pa_core *c, pa_sink_input *s, struct userdata *u) {
219 struct device_info *d;
220
221 pa_assert(c);
222 pa_sink_input_assert_ref(s);
223 pa_assert(u);
224
225 if (pa_sink_check_suspend(s->sink) <= 1)
226 if ((d = pa_hashmap_get(u->device_infos, s->sink)))
227 restart(d);
228
229 return PA_HOOK_OK;
230 }
231
232 static pa_hook_result_t sink_input_move_finish_hook_cb(pa_core *c, pa_sink_input *s, struct userdata *u) {
233 struct device_info *d;
234 pa_sink_input_state_t state;
235
236 pa_assert(c);
237 pa_sink_input_assert_ref(s);
238 pa_assert(u);
239
240 state = pa_sink_input_get_state(s);
241 if (state != PA_SINK_INPUT_RUNNING && state != PA_SINK_INPUT_DRAINED)
242 return PA_HOOK_OK;
243
244 if ((d = pa_hashmap_get(u->device_infos, s->sink)))
245 resume(d);
246
247 return PA_HOOK_OK;
248 }
249
250 static pa_hook_result_t source_output_move_start_hook_cb(pa_core *c, pa_source_output *s, struct userdata *u) {
251 struct device_info *d = NULL;
252
253 pa_assert(c);
254 pa_source_output_assert_ref(s);
255 pa_assert(u);
256
257 if (s->source->monitor_of) {
258 if (pa_sink_check_suspend(s->source->monitor_of) <= 1)
259 d = pa_hashmap_get(u->device_infos, s->source->monitor_of);
260 } else {
261 if (pa_source_check_suspend(s->source) <= 1)
262 d = pa_hashmap_get(u->device_infos, s->source);
263 }
264
265 if (d)
266 restart(d);
267
268 return PA_HOOK_OK;
269 }
270
271 static pa_hook_result_t source_output_move_finish_hook_cb(pa_core *c, pa_source_output *s, struct userdata *u) {
272 struct device_info *d;
273
274 pa_assert(c);
275 pa_source_output_assert_ref(s);
276 pa_assert(u);
277
278 if (pa_source_output_get_state(s) != PA_SOURCE_OUTPUT_RUNNING)
279 return PA_HOOK_OK;
280
281 if (s->source->monitor_of)
282 d = pa_hashmap_get(u->device_infos, s->source->monitor_of);
283 else
284 d = pa_hashmap_get(u->device_infos, s->source);
285
286 if (d)
287 resume(d);
288
289 return PA_HOOK_OK;
290 }
291
292 static pa_hook_result_t sink_input_state_changed_hook_cb(pa_core *c, pa_sink_input *s, struct userdata *u) {
293 struct device_info *d;
294 pa_sink_input_state_t state;
295
296 pa_assert(c);
297 pa_sink_input_assert_ref(s);
298 pa_assert(u);
299
300 state = pa_sink_input_get_state(s);
301 if (state == PA_SINK_INPUT_RUNNING || state == PA_SINK_INPUT_DRAINED)
302 if ((d = pa_hashmap_get(u->device_infos, s->sink)))
303 resume(d);
304
305 return PA_HOOK_OK;
306 }
307
308 static pa_hook_result_t source_output_state_changed_hook_cb(pa_core *c, pa_source_output *s, struct userdata *u) {
309 pa_assert(c);
310 pa_source_output_assert_ref(s);
311 pa_assert(u);
312
313 if (pa_source_output_get_state(s) == PA_SOURCE_OUTPUT_RUNNING) {
314 struct device_info *d;
315
316 if (s->source->monitor_of)
317 d = pa_hashmap_get(u->device_infos, s->source->monitor_of);
318 else
319 d = pa_hashmap_get(u->device_infos, s->source);
320
321 if (d)
322 resume(d);
323 }
324
325 return PA_HOOK_OK;
326 }
327
328 static pa_hook_result_t device_new_hook_cb(pa_core *c, pa_object *o, struct userdata *u) {
329 struct device_info *d;
330 pa_source *source;
331 pa_sink *sink;
332 const char *timeout_str;
333 int32_t timeout;
334 bool timeout_valid;
335
336 pa_assert(c);
337 pa_object_assert_ref(o);
338 pa_assert(u);
339
340 source = pa_source_isinstance(o) ? PA_SOURCE(o) : NULL;
341 sink = pa_sink_isinstance(o) ? PA_SINK(o) : NULL;
342
343 /* Never suspend monitors */
344 if (source && source->monitor_of)
345 return PA_HOOK_OK;
346
347 pa_assert(source || sink);
348
349 timeout_str = pa_proplist_gets(sink ? sink->proplist : source->proplist, "module-suspend-on-idle.timeout");
350 if (timeout_str && pa_atoi(timeout_str, &timeout) >= 0)
351 timeout_valid = true;
352 else
353 timeout_valid = false;
354
355 if (timeout_valid && timeout < 0)
356 return PA_HOOK_OK;
357
358 d = pa_xnew(struct device_info, 1);
359 d->userdata = u;
360 d->source = source ? pa_source_ref(source) : NULL;
361 d->sink = sink ? pa_sink_ref(sink) : NULL;
362 d->time_event = pa_core_rttime_new(c, PA_USEC_INVALID, timeout_cb, d);
363
364 if (timeout_valid)
365 d->timeout = timeout * PA_USEC_PER_SEC;
366 else
367 d->timeout = d->userdata->timeout;
368
369 pa_hashmap_put(u->device_infos, o, d);
370
371 if ((d->sink && pa_sink_check_suspend(d->sink) <= 0) ||
372 (d->source && pa_source_check_suspend(d->source) <= 0))
373 restart(d);
374
375 return PA_HOOK_OK;
376 }
377
378 static void device_info_free(struct device_info *d) {
379 pa_assert(d);
380
381 if (d->source)
382 pa_source_unref(d->source);
383 if (d->sink)
384 pa_sink_unref(d->sink);
385
386 d->userdata->core->mainloop->time_free(d->time_event);
387
388 pa_xfree(d);
389 }
390
391 static pa_hook_result_t device_unlink_hook_cb(pa_core *c, pa_object *o, struct userdata *u) {
392 struct device_info *d;
393
394 pa_assert(c);
395 pa_object_assert_ref(o);
396 pa_assert(u);
397
398 if ((d = pa_hashmap_remove(u->device_infos, o)))
399 device_info_free(d);
400
401 return PA_HOOK_OK;
402 }
403
404 static pa_hook_result_t device_state_changed_hook_cb(pa_core *c, pa_object *o, struct userdata *u) {
405 struct device_info *d;
406
407 pa_assert(c);
408 pa_object_assert_ref(o);
409 pa_assert(u);
410
411 if (!(d = pa_hashmap_get(u->device_infos, o)))
412 return PA_HOOK_OK;
413
414 if (pa_sink_isinstance(o)) {
415 pa_sink *s = PA_SINK(o);
416 pa_sink_state_t state = pa_sink_get_state(s);
417
418 if (pa_sink_check_suspend(s) <= 0)
419 if (PA_SINK_IS_OPENED(state))
420 restart(d);
421
422 } else if (pa_source_isinstance(o)) {
423 pa_source *s = PA_SOURCE(o);
424 pa_source_state_t state = pa_source_get_state(s);
425
426 if (pa_source_check_suspend(s) <= 0)
427 if (PA_SOURCE_IS_OPENED(state))
428 restart(d);
429 }
430
431 return PA_HOOK_OK;
432 }
433
434 int pa__init(pa_module*m) {
435 pa_modargs *ma = NULL;
436 struct userdata *u;
437 uint32_t timeout = 5;
438 uint32_t idx;
439 pa_sink *sink;
440 pa_source *source;
441
442 pa_assert(m);
443
444 if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
445 pa_log("Failed to parse module arguments.");
446 goto fail;
447 }
448
449 if (pa_modargs_get_value_u32(ma, "timeout", &timeout) < 0) {
450 pa_log("Failed to parse timeout value.");
451 goto fail;
452 }
453
454 m->userdata = u = pa_xnew(struct userdata, 1);
455 u->core = m->core;
456 u->timeout = timeout * PA_USEC_PER_SEC;
457 u->device_infos = pa_hashmap_new_full(pa_idxset_trivial_hash_func, pa_idxset_trivial_compare_func, NULL, (pa_free_cb_t) device_info_free);
458
459 PA_IDXSET_FOREACH(sink, m->core->sinks, idx)
460 device_new_hook_cb(m->core, PA_OBJECT(sink), u);
461
462 PA_IDXSET_FOREACH(source, m->core->sources, idx)
463 device_new_hook_cb(m->core, PA_OBJECT(source), u);
464
465 u->sink_new_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_PUT], PA_HOOK_NORMAL, (pa_hook_cb_t) device_new_hook_cb, u);
466 u->source_new_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_PUT], PA_HOOK_NORMAL, (pa_hook_cb_t) device_new_hook_cb, u);
467 u->sink_unlink_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_UNLINK_POST], PA_HOOK_NORMAL, (pa_hook_cb_t) device_unlink_hook_cb, u);
468 u->source_unlink_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_UNLINK_POST], PA_HOOK_NORMAL, (pa_hook_cb_t) device_unlink_hook_cb, u);
469 u->sink_state_changed_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_STATE_CHANGED], PA_HOOK_NORMAL, (pa_hook_cb_t) device_state_changed_hook_cb, u);
470 u->source_state_changed_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_STATE_CHANGED], PA_HOOK_NORMAL, (pa_hook_cb_t) device_state_changed_hook_cb, u);
471
472 u->sink_input_new_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_INPUT_FIXATE], PA_HOOK_NORMAL, (pa_hook_cb_t) sink_input_fixate_hook_cb, u);
473 u->source_output_new_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_OUTPUT_FIXATE], PA_HOOK_NORMAL, (pa_hook_cb_t) source_output_fixate_hook_cb, u);
474 u->sink_input_unlink_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_INPUT_UNLINK_POST], PA_HOOK_NORMAL, (pa_hook_cb_t) sink_input_unlink_hook_cb, u);
475 u->source_output_unlink_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_OUTPUT_UNLINK_POST], PA_HOOK_NORMAL, (pa_hook_cb_t) source_output_unlink_hook_cb, u);
476 u->sink_input_move_start_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_INPUT_MOVE_START], PA_HOOK_NORMAL, (pa_hook_cb_t) sink_input_move_start_hook_cb, u);
477 u->source_output_move_start_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_OUTPUT_MOVE_START], PA_HOOK_NORMAL, (pa_hook_cb_t) source_output_move_start_hook_cb, u);
478 u->sink_input_move_finish_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_INPUT_MOVE_FINISH], PA_HOOK_NORMAL, (pa_hook_cb_t) sink_input_move_finish_hook_cb, u);
479 u->source_output_move_finish_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_OUTPUT_MOVE_FINISH], PA_HOOK_NORMAL, (pa_hook_cb_t) source_output_move_finish_hook_cb, u);
480 u->sink_input_state_changed_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_INPUT_STATE_CHANGED], PA_HOOK_NORMAL, (pa_hook_cb_t) sink_input_state_changed_hook_cb, u);
481 u->source_output_state_changed_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_OUTPUT_STATE_CHANGED], PA_HOOK_NORMAL, (pa_hook_cb_t) source_output_state_changed_hook_cb, u);
482
483 pa_modargs_free(ma);
484 return 0;
485
486 fail:
487
488 if (ma)
489 pa_modargs_free(ma);
490
491 return -1;
492 }
493
494 void pa__done(pa_module*m) {
495 struct userdata *u;
496
497 pa_assert(m);
498
499 if (!m->userdata)
500 return;
501
502 u = m->userdata;
503
504 if (u->sink_new_slot)
505 pa_hook_slot_free(u->sink_new_slot);
506 if (u->sink_unlink_slot)
507 pa_hook_slot_free(u->sink_unlink_slot);
508 if (u->sink_state_changed_slot)
509 pa_hook_slot_free(u->sink_state_changed_slot);
510
511 if (u->source_new_slot)
512 pa_hook_slot_free(u->source_new_slot);
513 if (u->source_unlink_slot)
514 pa_hook_slot_free(u->source_unlink_slot);
515 if (u->source_state_changed_slot)
516 pa_hook_slot_free(u->source_state_changed_slot);
517
518 if (u->sink_input_new_slot)
519 pa_hook_slot_free(u->sink_input_new_slot);
520 if (u->sink_input_unlink_slot)
521 pa_hook_slot_free(u->sink_input_unlink_slot);
522 if (u->sink_input_move_start_slot)
523 pa_hook_slot_free(u->sink_input_move_start_slot);
524 if (u->sink_input_move_finish_slot)
525 pa_hook_slot_free(u->sink_input_move_finish_slot);
526 if (u->sink_input_state_changed_slot)
527 pa_hook_slot_free(u->sink_input_state_changed_slot);
528
529 if (u->source_output_new_slot)
530 pa_hook_slot_free(u->source_output_new_slot);
531 if (u->source_output_unlink_slot)
532 pa_hook_slot_free(u->source_output_unlink_slot);
533 if (u->source_output_move_start_slot)
534 pa_hook_slot_free(u->source_output_move_start_slot);
535 if (u->source_output_move_finish_slot)
536 pa_hook_slot_free(u->source_output_move_finish_slot);
537 if (u->source_output_state_changed_slot)
538 pa_hook_slot_free(u->source_output_state_changed_slot);
539
540 pa_hashmap_free(u->device_infos);
541
542 pa_xfree(u);
543 }