]> code.delx.au - pulseaudio/blob - src/modules/module-stream-restore.c
restore: change 'save' flag behaviour to reflect whether an entry shall and/or is...
[pulseaudio] / src / modules / module-stream-restore.c
1 /***
2 This file is part of PulseAudio.
3
4 Copyright 2008 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 <unistd.h>
27 #include <string.h>
28 #include <errno.h>
29 #include <sys/types.h>
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <ctype.h>
33
34 #include <pulse/xmalloc.h>
35 #include <pulse/volume.h>
36 #include <pulse/timeval.h>
37 #include <pulse/util.h>
38
39 #include <pulsecore/core-error.h>
40 #include <pulsecore/module.h>
41 #include <pulsecore/core-util.h>
42 #include <pulsecore/modargs.h>
43 #include <pulsecore/log.h>
44 #include <pulsecore/core-subscribe.h>
45 #include <pulsecore/sink-input.h>
46 #include <pulsecore/source-output.h>
47 #include <pulsecore/namereg.h>
48 #include <pulsecore/protocol-native.h>
49 #include <pulsecore/pstream.h>
50 #include <pulsecore/pstream-util.h>
51 #include <pulsecore/database.h>
52
53 #include "module-stream-restore-symdef.h"
54
55 PA_MODULE_AUTHOR("Lennart Poettering");
56 PA_MODULE_DESCRIPTION("Automatically restore the volume/mute/device state of streams");
57 PA_MODULE_VERSION(PACKAGE_VERSION);
58 PA_MODULE_LOAD_ONCE(TRUE);
59 PA_MODULE_USAGE(
60 "restore_device=<Save/restore sinks/sources?> "
61 "restore_volume=<Save/restore volumes?> "
62 "restore_muted=<Save/restore muted states?>");
63
64 #define SAVE_INTERVAL 10
65 #define IDENTIFICATION_PROPERTY "module-stream-restore.id"
66
67 static const char* const valid_modargs[] = {
68 "restore_device",
69 "restore_volume",
70 "restore_muted",
71 NULL
72 };
73
74 struct userdata {
75 pa_core *core;
76 pa_module *module;
77 pa_subscription *subscription;
78 pa_hook_slot
79 *sink_input_new_hook_slot,
80 *sink_input_fixate_hook_slot,
81 *source_output_new_hook_slot,
82 *connection_unlink_hook_slot;
83 pa_time_event *save_time_event;
84 pa_database* database;
85
86 pa_bool_t restore_device:1;
87 pa_bool_t restore_volume:1;
88 pa_bool_t restore_muted:1;
89
90 pa_native_protocol *protocol;
91 pa_idxset *subscribed;
92 };
93
94 #define ENTRY_VERSION 2
95
96 struct entry {
97 uint8_t version;
98 pa_bool_t muted_valid:1, volume_valid:1, device_valid:1;
99 pa_bool_t muted:1;
100 pa_channel_map channel_map;
101 pa_cvolume volume;
102 char device[PA_NAME_MAX];
103 } PA_GCC_PACKED;
104
105 enum {
106 SUBCOMMAND_TEST,
107 SUBCOMMAND_READ,
108 SUBCOMMAND_WRITE,
109 SUBCOMMAND_DELETE,
110 SUBCOMMAND_SUBSCRIBE,
111 SUBCOMMAND_EVENT
112 };
113
114 static void save_time_callback(pa_mainloop_api*a, pa_time_event* e, const struct timeval *tv, void *userdata) {
115 struct userdata *u = userdata;
116
117 pa_assert(a);
118 pa_assert(e);
119 pa_assert(tv);
120 pa_assert(u);
121
122 pa_assert(e == u->save_time_event);
123 u->core->mainloop->time_free(u->save_time_event);
124 u->save_time_event = NULL;
125
126 pa_database_sync(u->database);
127 pa_log_info("Synced.");
128 }
129
130 static char *get_name(pa_proplist *p, const char *prefix) {
131 const char *r;
132 char *t;
133
134 if (!p)
135 return NULL;
136
137 if ((r = pa_proplist_gets(p, IDENTIFICATION_PROPERTY)))
138 return pa_xstrdup(r);
139
140 if ((r = pa_proplist_gets(p, PA_PROP_MEDIA_ROLE)))
141 t = pa_sprintf_malloc("%s-by-media-role:%s", prefix, r);
142 else if ((r = pa_proplist_gets(p, PA_PROP_APPLICATION_ID)))
143 t = pa_sprintf_malloc("%s-by-application-id:%s", prefix, r);
144 else if ((r = pa_proplist_gets(p, PA_PROP_APPLICATION_NAME)))
145 t = pa_sprintf_malloc("%s-by-application-name:%s", prefix, r);
146 else if ((r = pa_proplist_gets(p, PA_PROP_MEDIA_NAME)))
147 t = pa_sprintf_malloc("%s-by-media-name:%s", prefix, r);
148 else
149 t = pa_sprintf_malloc("%s-fallback:%s", prefix, r);
150
151 pa_proplist_sets(p, IDENTIFICATION_PROPERTY, t);
152 return t;
153 }
154
155 static struct entry* read_entry(struct userdata *u, const char *name) {
156 pa_datum key, data;
157 struct entry *e;
158
159 pa_assert(u);
160 pa_assert(name);
161
162 key.data = (char*) name;
163 key.size = strlen(name);
164
165 pa_zero(data);
166
167 if (!pa_database_get(u->database, &key, &data))
168 goto fail;
169
170 if (data.size != sizeof(struct entry)) {
171 /* This is probably just a database upgrade, hence let's not
172 * consider this more than a debug message */
173 pa_log_debug("Database contains entry for stream %s of wrong size %lu != %lu. Probably due to uprade, ignoring.", name, (unsigned long) data.size, (unsigned long) sizeof(struct entry));
174 goto fail;
175 }
176
177 e = (struct entry*) data.data;
178
179 if (e->version != ENTRY_VERSION) {
180 pa_log_debug("Version of database entry for stream %s doesn't match our version. Probably due to upgrade, ignoring.", name);
181 goto fail;
182 }
183
184 if (!memchr(e->device, 0, sizeof(e->device))) {
185 pa_log_warn("Database contains entry for stream %s with missing NUL byte in device name", name);
186 goto fail;
187 }
188
189 if (e->device_valid && !pa_namereg_is_valid_name(e->device)) {
190 pa_log_warn("Invalid device name stored in database for stream %s", name);
191 goto fail;
192 }
193
194 if (e->volume_valid && !pa_channel_map_valid(&e->channel_map)) {
195 pa_log_warn("Invalid channel map stored in database for stream %s", name);
196 goto fail;
197 }
198
199 if (e->volume_valid && (!pa_cvolume_valid(&e->volume) || !pa_cvolume_compatible_with_channel_map(&e->volume, &e->channel_map))) {
200 pa_log_warn("Invalid volume stored in database for stream %s", name);
201 goto fail;
202 }
203
204 return e;
205
206 fail:
207
208 pa_datum_free(&data);
209 return NULL;
210 }
211
212 static void trigger_save(struct userdata *u) {
213 struct timeval tv;
214 pa_native_connection *c;
215 uint32_t idx;
216
217 for (c = pa_idxset_first(u->subscribed, &idx); c; c = pa_idxset_next(u->subscribed, &idx)) {
218 pa_tagstruct *t;
219
220 t = pa_tagstruct_new(NULL, 0);
221 pa_tagstruct_putu32(t, PA_COMMAND_EXTENSION);
222 pa_tagstruct_putu32(t, 0);
223 pa_tagstruct_putu32(t, u->module->index);
224 pa_tagstruct_puts(t, u->module->name);
225 pa_tagstruct_putu32(t, SUBCOMMAND_EVENT);
226
227 pa_pstream_send_tagstruct(pa_native_connection_get_pstream(c), t);
228 }
229
230 if (u->save_time_event)
231 return;
232
233 pa_gettimeofday(&tv);
234 tv.tv_sec += SAVE_INTERVAL;
235 u->save_time_event = u->core->mainloop->time_new(u->core->mainloop, &tv, save_time_callback, u);
236 }
237
238 static pa_bool_t entries_equal(const struct entry *a, const struct entry *b) {
239 pa_cvolume t;
240
241 pa_assert(a);
242 pa_assert(b);
243
244 if (a->device_valid != b->device_valid ||
245 (a->device_valid && strncmp(a->device, b->device, sizeof(a->device))))
246 return FALSE;
247
248 if (a->muted_valid != b->muted_valid ||
249 (a->muted_valid && (a->muted != b->muted)))
250 return FALSE;
251
252 t = b->volume;
253 if (a->volume_valid != b->volume_valid ||
254 (a->volume_valid && !pa_cvolume_equal(pa_cvolume_remap(&t, &b->channel_map, &a->channel_map), &a->volume)))
255 return FALSE;
256
257 return TRUE;
258 }
259
260 static void subscribe_callback(pa_core *c, pa_subscription_event_type_t t, uint32_t idx, void *userdata) {
261 struct userdata *u = userdata;
262 struct entry entry, *old;
263 char *name;
264 pa_datum key, data;
265
266 pa_assert(c);
267 pa_assert(u);
268
269 if (t != (PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_NEW) &&
270 t != (PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_CHANGE) &&
271 t != (PA_SUBSCRIPTION_EVENT_SOURCE_OUTPUT|PA_SUBSCRIPTION_EVENT_NEW) &&
272 t != (PA_SUBSCRIPTION_EVENT_SOURCE_OUTPUT|PA_SUBSCRIPTION_EVENT_CHANGE))
273 return;
274
275 pa_zero(entry);
276 entry.version = ENTRY_VERSION;
277
278 if ((t & PA_SUBSCRIPTION_EVENT_FACILITY_MASK) == PA_SUBSCRIPTION_EVENT_SINK_INPUT) {
279 pa_sink_input *sink_input;
280
281 if (!(sink_input = pa_idxset_get_by_index(c->sink_inputs, idx)))
282 return;
283
284 if (!(name = get_name(sink_input->proplist, "sink-input")))
285 return;
286
287 if ((old = read_entry(u, name)))
288 entry = *old;
289
290 if (sink_input->save_volume) {
291 entry.channel_map = sink_input->channel_map;
292 pa_sink_input_get_volume(sink_input, &entry.volume, FALSE);
293 entry.volume_valid = TRUE;
294 }
295
296 if (sink_input->save_muted) {
297 entry.muted = pa_sink_input_get_mute(sink_input);
298 entry.muted_valid = TRUE;
299 }
300
301 if (sink_input->save_sink) {
302 pa_strlcpy(entry.device, sink_input->sink->name, sizeof(entry.device));
303 entry.device_valid = TRUE;
304 }
305
306 } else {
307 pa_source_output *source_output;
308
309 pa_assert((t & PA_SUBSCRIPTION_EVENT_FACILITY_MASK) == PA_SUBSCRIPTION_EVENT_SOURCE_OUTPUT);
310
311 if (!(source_output = pa_idxset_get_by_index(c->source_outputs, idx)))
312 return;
313
314 if (!(name = get_name(source_output->proplist, "source-output")))
315 return;
316
317 if ((old = read_entry(u, name)))
318 entry = *old;
319
320 if (source_output->save_source) {
321 pa_strlcpy(entry.device, source_output->source->name, sizeof(entry.device));
322 entry.device_valid = source_output->save_source;
323 }
324 }
325
326 if (old) {
327
328 if (entries_equal(old, &entry)) {
329 pa_xfree(old);
330 pa_xfree(name);
331 return;
332 }
333
334 pa_xfree(old);
335 }
336
337 key.data = name;
338 key.size = strlen(name);
339
340 data.data = &entry;
341 data.size = sizeof(entry);
342
343 pa_log_info("Storing volume/mute/device for stream %s.", name);
344
345 pa_database_set(u->database, &key, &data, TRUE);
346
347 pa_xfree(name);
348
349 trigger_save(u);
350 }
351
352 static pa_hook_result_t sink_input_new_hook_callback(pa_core *c, pa_sink_input_new_data *new_data, struct userdata *u) {
353 char *name;
354 struct entry *e;
355
356 pa_assert(c);
357 pa_assert(new_data);
358 pa_assert(u);
359 pa_assert(u->restore_device);
360
361 if (!(name = get_name(new_data->proplist, "sink-input")))
362 return PA_HOOK_OK;
363
364 if ((e = read_entry(u, name))) {
365
366 if (e->device_valid) {
367 pa_sink *s;
368
369 if ((s = pa_namereg_get(c, e->device, PA_NAMEREG_SINK))) {
370 if (!new_data->sink) {
371 pa_log_info("Restoring device for stream %s.", name);
372 new_data->sink = s;
373 new_data->save_sink = TRUE;
374 } else
375 pa_log_debug("Not restoring device for stream %s, because already set.", name);
376 }
377 }
378
379 pa_xfree(e);
380 }
381
382 pa_xfree(name);
383
384 return PA_HOOK_OK;
385 }
386
387 static pa_hook_result_t sink_input_fixate_hook_callback(pa_core *c, pa_sink_input_new_data *new_data, struct userdata *u) {
388 char *name;
389 struct entry *e;
390
391 pa_assert(c);
392 pa_assert(new_data);
393 pa_assert(u);
394 pa_assert(u->restore_volume || u->restore_muted);
395
396 if (!(name = get_name(new_data->proplist, "sink-input")))
397 return PA_HOOK_OK;
398
399 if ((e = read_entry(u, name))) {
400
401 if (u->restore_volume && e->volume_valid) {
402
403 if (!new_data->volume_is_set) {
404 pa_cvolume v;
405
406 pa_log_info("Restoring volume for sink input %s.", name);
407
408 v = e->volume;
409 pa_cvolume_remap(&v, &e->channel_map, &new_data->channel_map);
410 pa_sink_input_new_data_set_volume(new_data, &v);
411
412 new_data->volume_is_absolute = FALSE;
413 new_data->save_volume = TRUE;
414 } else
415 pa_log_debug("Not restoring volume for sink input %s, because already set.", name);
416 }
417
418 if (u->restore_muted && e->muted_valid) {
419
420 if (!new_data->muted_is_set) {
421 pa_log_info("Restoring mute state for sink input %s.", name);
422 pa_sink_input_new_data_set_muted(new_data, e->muted);
423 new_data->save_muted = TRUE;
424 } else
425 pa_log_debug("Not restoring mute state for sink input %s, because already set.", name);
426 }
427
428 pa_xfree(e);
429 }
430
431 pa_xfree(name);
432
433 return PA_HOOK_OK;
434 }
435
436 static pa_hook_result_t source_output_new_hook_callback(pa_core *c, pa_source_output_new_data *new_data, struct userdata *u) {
437 char *name;
438 struct entry *e;
439
440 pa_assert(c);
441 pa_assert(new_data);
442 pa_assert(u);
443 pa_assert(u->restore_device);
444
445 if (new_data->direct_on_input)
446 return PA_HOOK_OK;
447
448 if (!(name = get_name(new_data->proplist, "source-output")))
449 return PA_HOOK_OK;
450
451 if ((e = read_entry(u, name))) {
452 pa_source *s;
453
454 if (e->device_valid) {
455 if ((s = pa_namereg_get(c, e->device, PA_NAMEREG_SOURCE))) {
456 if (!new_data->source) {
457 pa_log_info("Restoring device for stream %s.", name);
458 new_data->source = s;
459 new_data->save_source = TRUE;
460 } else
461 pa_log_debug("Not restoring device for stream %s, because already set", name);
462 }
463 }
464
465 pa_xfree(e);
466 }
467
468 pa_xfree(name);
469
470 return PA_HOOK_OK;
471 }
472
473 #define EXT_VERSION 1
474
475 static void apply_entry(struct userdata *u, const char *name, struct entry *e) {
476 pa_sink_input *si;
477 pa_source_output *so;
478 uint32_t idx;
479
480 pa_assert(u);
481 pa_assert(name);
482 pa_assert(e);
483
484 for (si = pa_idxset_first(u->core->sink_inputs, &idx); si; si = pa_idxset_next(u->core->sink_inputs, &idx)) {
485 char *n;
486 pa_sink *s;
487
488 if (!(n = get_name(si->proplist, "sink-input")))
489 continue;
490
491 if (!pa_streq(name, n)) {
492 pa_xfree(n);
493 continue;
494 }
495 pa_xfree(n);
496
497 if (u->restore_volume && e->volume_valid) {
498 pa_cvolume v;
499
500 v = e->volume;
501 pa_log_info("Restoring volume for sink input %s.", name);
502 pa_sink_input_set_volume(si, pa_cvolume_remap(&v, &e->channel_map, &si->channel_map), FALSE, FALSE);
503 }
504
505 if (u->restore_muted && e->muted_valid) {
506 pa_log_info("Restoring mute state for sink input %s.", name);
507 pa_sink_input_set_mute(si, e->muted, FALSE);
508 }
509
510 if (u->restore_device &&
511 e->device_valid &&
512 (s = pa_namereg_get(u->core, e->device, PA_NAMEREG_SINK))) {
513
514 pa_log_info("Restoring device for stream %s.", name);
515 pa_sink_input_move_to(si, s, FALSE);
516 }
517 }
518
519 for (so = pa_idxset_first(u->core->source_outputs, &idx); so; so = pa_idxset_next(u->core->source_outputs, &idx)) {
520 char *n;
521 pa_source *s;
522
523 if (!(n = get_name(so->proplist, "source-output")))
524 continue;
525
526 if (!pa_streq(name, n)) {
527 pa_xfree(n);
528 continue;
529 }
530 pa_xfree(n);
531
532 if (u->restore_device &&
533 e->device_valid &&
534 (s = pa_namereg_get(u->core, e->device, PA_NAMEREG_SOURCE))) {
535
536 pa_log_info("Restoring device for stream %s.", name);
537 pa_source_output_move_to(so, s, FALSE);
538 }
539 }
540 }
541
542 #if 0
543 static void dump_database(struct userdata *u) {
544 pa_datum key;
545 pa_bool_t done;
546
547 done = !pa_database_first(u->database, &key, NULL);
548
549 while (!done) {
550 pa_datum next_key;
551 struct entry *e;
552 char *name;
553
554 done = !pa_database_next(u->database, &key, &next_key, NULL);
555
556 name = pa_xstrndup(key.data, key.size);
557 pa_datum_free(&key);
558
559 if ((e = read_entry(u, name))) {
560 char t[256];
561 pa_log("name=%s", name);
562 pa_log("device=%s %s", e->device, pa_yes_no(e->device_valid));
563 pa_log("channel_map=%s", pa_channel_map_snprint(t, sizeof(t), &e->channel_map));
564 pa_log("volume=%s %s", pa_cvolume_snprint(t, sizeof(t), &e->volume), pa_yes_no(e->volume_valid));
565 pa_log("mute=%s %s", pa_yes_no(e->muted), pa_yes_no(e->volume_valid));
566 pa_xfree(e);
567 }
568
569 pa_xfree(name);
570
571 key = next_key;
572 }
573 }
574 #endif
575
576 static int extension_cb(pa_native_protocol *p, pa_module *m, pa_native_connection *c, uint32_t tag, pa_tagstruct *t) {
577 struct userdata *u;
578 uint32_t command;
579 pa_tagstruct *reply = NULL;
580
581 pa_assert(p);
582 pa_assert(m);
583 pa_assert(c);
584 pa_assert(t);
585
586 u = m->userdata;
587
588 if (pa_tagstruct_getu32(t, &command) < 0)
589 goto fail;
590
591 reply = pa_tagstruct_new(NULL, 0);
592 pa_tagstruct_putu32(reply, PA_COMMAND_REPLY);
593 pa_tagstruct_putu32(reply, tag);
594
595 switch (command) {
596 case SUBCOMMAND_TEST: {
597 if (!pa_tagstruct_eof(t))
598 goto fail;
599
600 pa_tagstruct_putu32(reply, EXT_VERSION);
601 break;
602 }
603
604 case SUBCOMMAND_READ: {
605 pa_datum key;
606 pa_bool_t done;
607
608 if (!pa_tagstruct_eof(t))
609 goto fail;
610
611 done = !pa_database_first(u->database, &key, NULL);
612
613 while (!done) {
614 pa_datum next_key;
615 struct entry *e;
616 char *name;
617
618 done = !pa_database_next(u->database, &key, &next_key, NULL);
619
620 name = pa_xstrndup(key.data, key.size);
621 pa_datum_free(&key);
622
623 if ((e = read_entry(u, name))) {
624 pa_cvolume r;
625 pa_channel_map cm;
626
627 pa_tagstruct_puts(reply, name);
628 pa_tagstruct_put_channel_map(reply, e->volume_valid ? &e->channel_map : pa_channel_map_init(&cm));
629 pa_tagstruct_put_cvolume(reply, e->volume_valid ? &e->volume : pa_cvolume_init(&r));
630 pa_tagstruct_puts(reply, e->device_valid ? e->device : NULL);
631 pa_tagstruct_put_boolean(reply, e->muted_valid ? e->muted : FALSE);
632
633 pa_xfree(e);
634 }
635
636 pa_xfree(name);
637
638 key = next_key;
639 }
640
641 break;
642 }
643
644 case SUBCOMMAND_WRITE: {
645 uint32_t mode;
646 pa_bool_t apply_immediately = FALSE;
647
648 if (pa_tagstruct_getu32(t, &mode) < 0 ||
649 pa_tagstruct_get_boolean(t, &apply_immediately) < 0)
650 goto fail;
651
652 if (mode != PA_UPDATE_MERGE &&
653 mode != PA_UPDATE_REPLACE &&
654 mode != PA_UPDATE_SET)
655 goto fail;
656
657 if (mode == PA_UPDATE_SET)
658 pa_database_clear(u->database);
659
660 while (!pa_tagstruct_eof(t)) {
661 const char *name, *device;
662 pa_bool_t muted;
663 struct entry entry;
664 pa_datum key, data;
665
666 pa_zero(entry);
667 entry.version = ENTRY_VERSION;
668
669 if (pa_tagstruct_gets(t, &name) < 0 ||
670 pa_tagstruct_get_channel_map(t, &entry.channel_map) ||
671 pa_tagstruct_get_cvolume(t, &entry.volume) < 0 ||
672 pa_tagstruct_gets(t, &device) < 0 ||
673 pa_tagstruct_get_boolean(t, &muted) < 0)
674 goto fail;
675
676 if (!name || !*name)
677 goto fail;
678
679 entry.volume_valid = entry.volume.channels > 0;
680
681 if (entry.volume_valid)
682 if (!pa_cvolume_compatible_with_channel_map(&entry.volume, &entry.channel_map))
683 goto fail;
684
685 entry.muted = muted;
686 entry.muted_valid = TRUE;
687
688 if (device)
689 pa_strlcpy(entry.device, device, sizeof(entry.device));
690 entry.device_valid = !!entry.device[0];
691
692 if (entry.device_valid &&
693 !pa_namereg_is_valid_name(entry.device))
694 goto fail;
695
696 key.data = (char*) name;
697 key.size = strlen(name);
698
699 data.data = &entry;
700 data.size = sizeof(entry);
701
702 if (pa_database_set(u->database, &key, &data, mode == PA_UPDATE_REPLACE) == 0)
703 if (apply_immediately)
704 apply_entry(u, name, &entry);
705 }
706
707 trigger_save(u);
708
709 break;
710 }
711
712 case SUBCOMMAND_DELETE:
713
714 while (!pa_tagstruct_eof(t)) {
715 const char *name;
716 pa_datum key;
717
718 if (pa_tagstruct_gets(t, &name) < 0)
719 goto fail;
720
721 key.data = (char*) name;
722 key.size = strlen(name);
723
724 pa_database_unset(u->database, &key);
725 }
726
727 trigger_save(u);
728
729 break;
730
731 case SUBCOMMAND_SUBSCRIBE: {
732
733 pa_bool_t enabled;
734
735 if (pa_tagstruct_get_boolean(t, &enabled) < 0 ||
736 !pa_tagstruct_eof(t))
737 goto fail;
738
739 if (enabled)
740 pa_idxset_put(u->subscribed, c, NULL);
741 else
742 pa_idxset_remove_by_data(u->subscribed, c, NULL);
743
744 break;
745 }
746
747 default:
748 goto fail;
749 }
750
751 pa_pstream_send_tagstruct(pa_native_connection_get_pstream(c), reply);
752 return 0;
753
754 fail:
755
756 if (reply)
757 pa_tagstruct_free(reply);
758
759 return -1;
760 }
761
762 static pa_hook_result_t connection_unlink_hook_cb(pa_native_protocol *p, pa_native_connection *c, struct userdata *u) {
763 pa_assert(p);
764 pa_assert(c);
765 pa_assert(u);
766
767 pa_idxset_remove_by_data(u->subscribed, c, NULL);
768 return PA_HOOK_OK;
769 }
770
771 int pa__init(pa_module*m) {
772 pa_modargs *ma = NULL;
773 struct userdata *u;
774 char *fname;
775 pa_sink_input *si;
776 pa_source_output *so;
777 uint32_t idx;
778 pa_bool_t restore_device = TRUE, restore_volume = TRUE, restore_muted = TRUE;
779
780 pa_assert(m);
781
782 if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
783 pa_log("Failed to parse module arguments");
784 goto fail;
785 }
786
787 if (pa_modargs_get_value_boolean(ma, "restore_device", &restore_device) < 0 ||
788 pa_modargs_get_value_boolean(ma, "restore_volume", &restore_volume) < 0 ||
789 pa_modargs_get_value_boolean(ma, "restore_muted", &restore_muted) < 0) {
790 pa_log("restore_device=, restore_volume= and restore_muted= expect boolean arguments");
791 goto fail;
792 }
793
794 if (!restore_muted && !restore_volume && !restore_device)
795 pa_log_warn("Neither restoring volume, nor restoring muted, nor restoring device enabled!");
796
797 m->userdata = u = pa_xnew0(struct userdata, 1);
798 u->core = m->core;
799 u->module = m;
800 u->restore_device = restore_device;
801 u->restore_volume = restore_volume;
802 u->restore_muted = restore_muted;
803 u->subscribed = pa_idxset_new(pa_idxset_trivial_hash_func, pa_idxset_trivial_compare_func);
804
805 u->protocol = pa_native_protocol_get(m->core);
806 pa_native_protocol_install_ext(u->protocol, m, extension_cb);
807
808 u->connection_unlink_hook_slot = pa_hook_connect(&pa_native_protocol_hooks(u->protocol)[PA_NATIVE_HOOK_CONNECTION_UNLINK], PA_HOOK_NORMAL, (pa_hook_cb_t) connection_unlink_hook_cb, u);
809
810 u->subscription = pa_subscription_new(m->core, PA_SUBSCRIPTION_MASK_SINK_INPUT|PA_SUBSCRIPTION_MASK_SOURCE_OUTPUT, subscribe_callback, u);
811
812 if (restore_device) {
813 u->sink_input_new_hook_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_INPUT_NEW], PA_HOOK_EARLY, (pa_hook_cb_t) sink_input_new_hook_callback, u);
814 u->source_output_new_hook_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_OUTPUT_NEW], PA_HOOK_EARLY, (pa_hook_cb_t) source_output_new_hook_callback, u);
815 }
816
817 if (restore_volume || restore_muted)
818 u->sink_input_fixate_hook_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_INPUT_FIXATE], PA_HOOK_EARLY, (pa_hook_cb_t) sink_input_fixate_hook_callback, u);
819
820 if (!(fname = pa_state_path("stream-volumes", TRUE)))
821 goto fail;
822
823 if (!(u->database = pa_database_open(fname, TRUE))) {
824 pa_log("Failed to open volume database '%s': %s", fname, pa_cstrerror(errno));
825 pa_xfree(fname);
826 goto fail;
827 }
828
829 pa_log_info("Sucessfully opened database file '%s'.", fname);
830 pa_xfree(fname);
831
832 PA_IDXSET_FOREACH(si, m->core->sink_inputs, idx)
833 subscribe_callback(m->core, PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_NEW, si->index, u);
834
835 PA_IDXSET_FOREACH(so, m->core->source_outputs, idx)
836 subscribe_callback(m->core, PA_SUBSCRIPTION_EVENT_SOURCE_OUTPUT|PA_SUBSCRIPTION_EVENT_NEW, so->index, u);
837
838 pa_modargs_free(ma);
839 return 0;
840
841 fail:
842 pa__done(m);
843
844 if (ma)
845 pa_modargs_free(ma);
846
847 return -1;
848 }
849
850 void pa__done(pa_module*m) {
851 struct userdata* u;
852
853 pa_assert(m);
854
855 if (!(u = m->userdata))
856 return;
857
858 if (u->subscription)
859 pa_subscription_free(u->subscription);
860
861 if (u->sink_input_new_hook_slot)
862 pa_hook_slot_free(u->sink_input_new_hook_slot);
863 if (u->sink_input_fixate_hook_slot)
864 pa_hook_slot_free(u->sink_input_fixate_hook_slot);
865 if (u->source_output_new_hook_slot)
866 pa_hook_slot_free(u->source_output_new_hook_slot);
867
868 if (u->connection_unlink_hook_slot)
869 pa_hook_slot_free(u->connection_unlink_hook_slot);
870
871 if (u->save_time_event)
872 u->core->mainloop->time_free(u->save_time_event);
873
874 if (u->database)
875 pa_database_close(u->database);
876
877 if (u->protocol) {
878 pa_native_protocol_remove_ext(u->protocol, m);
879 pa_native_protocol_unref(u->protocol);
880 }
881
882 if (u->subscribed)
883 pa_idxset_free(u->subscribed, NULL, NULL);
884
885 pa_xfree(u);
886 }