2008-05-15 23:34:41 +00:00
|
|
|
/***
|
|
|
|
|
This file is part of PulseAudio.
|
|
|
|
|
|
2008-08-04 18:55:50 +02:00
|
|
|
Copyright 2006-2008 Lennart Poettering
|
2011-06-07 12:18:17 +02:00
|
|
|
Copyright 2011 Colin Guthrie
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
2009-03-03 20:23:02 +00:00
|
|
|
by the Free Software Foundation; either version 2.1 of the License,
|
2008-05-15 23:34:41 +00:00
|
|
|
or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
|
along with PulseAudio; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <ctype.h>
|
|
|
|
|
|
|
|
|
|
#include <pulse/xmalloc.h>
|
|
|
|
|
#include <pulse/volume.h>
|
|
|
|
|
#include <pulse/timeval.h>
|
|
|
|
|
#include <pulse/util.h>
|
2009-04-05 02:13:43 +03:00
|
|
|
#include <pulse/rtclock.h>
|
2011-06-07 12:18:17 +02:00
|
|
|
#include <pulse/format.h>
|
|
|
|
|
#include <pulse/internal.h>
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
|
|
|
#include <pulsecore/core-error.h>
|
|
|
|
|
#include <pulsecore/module.h>
|
|
|
|
|
#include <pulsecore/core-util.h>
|
|
|
|
|
#include <pulsecore/modargs.h>
|
|
|
|
|
#include <pulsecore/log.h>
|
|
|
|
|
#include <pulsecore/core-subscribe.h>
|
|
|
|
|
#include <pulsecore/sink-input.h>
|
|
|
|
|
#include <pulsecore/source-output.h>
|
|
|
|
|
#include <pulsecore/namereg.h>
|
2011-06-07 12:18:17 +02:00
|
|
|
#include <pulsecore/protocol-native.h>
|
|
|
|
|
#include <pulsecore/pstream.h>
|
|
|
|
|
#include <pulsecore/pstream-util.h>
|
2009-05-14 01:24:26 +02:00
|
|
|
#include <pulsecore/database.h>
|
2011-06-07 23:21:04 +01:00
|
|
|
#include <pulsecore/tagstruct.h>
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
|
|
|
#include "module-device-restore-symdef.h"
|
|
|
|
|
|
|
|
|
|
PA_MODULE_AUTHOR("Lennart Poettering");
|
|
|
|
|
PA_MODULE_DESCRIPTION("Automatically restore the volume/mute state of devices");
|
|
|
|
|
PA_MODULE_VERSION(PACKAGE_VERSION);
|
|
|
|
|
PA_MODULE_LOAD_ONCE(TRUE);
|
2009-01-28 00:19:47 +01:00
|
|
|
PA_MODULE_USAGE(
|
2009-06-18 00:59:04 +02:00
|
|
|
"restore_port=<Save/restore port?> "
|
2009-01-28 00:19:47 +01:00
|
|
|
"restore_volume=<Save/restore volumes?> "
|
|
|
|
|
"restore_muted=<Save/restore muted states?>");
|
2008-05-15 23:34:41 +00:00
|
|
|
|
2009-04-05 02:13:43 +03:00
|
|
|
#define SAVE_INTERVAL (10 * PA_USEC_PER_SEC)
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
|
|
|
static const char* const valid_modargs[] = {
|
2008-08-03 23:22:38 +02:00
|
|
|
"restore_volume",
|
|
|
|
|
"restore_muted",
|
2009-06-18 00:59:04 +02:00
|
|
|
"restore_port",
|
2008-08-03 23:22:38 +02:00
|
|
|
NULL
|
2008-05-15 23:34:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct userdata {
|
|
|
|
|
pa_core *core;
|
2008-08-04 18:55:50 +02:00
|
|
|
pa_module *module;
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_subscription *subscription;
|
2008-08-03 23:22:38 +02:00
|
|
|
pa_hook_slot
|
2009-06-18 00:59:04 +02:00
|
|
|
*sink_new_hook_slot,
|
2008-08-03 23:22:38 +02:00
|
|
|
*sink_fixate_hook_slot,
|
2009-06-18 00:59:04 +02:00
|
|
|
*source_new_hook_slot,
|
2011-06-07 12:18:17 +02:00
|
|
|
*source_fixate_hook_slot,
|
|
|
|
|
*connection_unlink_hook_slot;
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_time_event *save_time_event;
|
2009-05-14 01:24:26 +02:00
|
|
|
pa_database *database;
|
2008-08-03 23:22:38 +02:00
|
|
|
|
2011-06-07 12:18:17 +02:00
|
|
|
pa_native_protocol *protocol;
|
|
|
|
|
pa_idxset *subscribed;
|
|
|
|
|
|
2008-08-03 23:22:38 +02:00
|
|
|
pa_bool_t restore_volume:1;
|
|
|
|
|
pa_bool_t restore_muted:1;
|
2009-06-18 00:59:04 +02:00
|
|
|
pa_bool_t restore_port:1;
|
2008-05-15 23:34:41 +00:00
|
|
|
};
|
|
|
|
|
|
2011-06-07 12:18:17 +02:00
|
|
|
/* Protocol extention commands */
|
|
|
|
|
enum {
|
|
|
|
|
SUBCOMMAND_TEST,
|
|
|
|
|
SUBCOMMAND_SUBSCRIBE,
|
|
|
|
|
SUBCOMMAND_EVENT,
|
|
|
|
|
SUBCOMMAND_READ_SINK_FORMATS_ALL,
|
|
|
|
|
SUBCOMMAND_READ_SINK_FORMATS,
|
|
|
|
|
SUBCOMMAND_SAVE_SINK_FORMATS
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
#define ENTRY_VERSION 3
|
2009-02-04 18:31:24 +01:00
|
|
|
|
2009-02-13 18:02:47 +01:00
|
|
|
struct entry {
|
2009-02-04 18:31:24 +01:00
|
|
|
uint8_t version;
|
2011-06-07 23:21:04 +01:00
|
|
|
pa_bool_t muted_valid, volume_valid, port_valid;
|
|
|
|
|
pa_bool_t muted;
|
2008-08-04 18:55:50 +02:00
|
|
|
pa_channel_map channel_map;
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_cvolume volume;
|
2011-06-07 23:21:04 +01:00
|
|
|
char *port;
|
2011-06-07 12:18:17 +02:00
|
|
|
pa_idxset *formats;
|
2011-06-07 23:21:04 +01:00
|
|
|
};
|
2008-05-15 23:34:41 +00:00
|
|
|
|
2009-04-05 02:13:43 +03:00
|
|
|
static void save_time_callback(pa_mainloop_api*a, pa_time_event* e, const struct timeval *t, void *userdata) {
|
2008-05-15 23:34:41 +00:00
|
|
|
struct userdata *u = userdata;
|
|
|
|
|
|
|
|
|
|
pa_assert(a);
|
|
|
|
|
pa_assert(e);
|
|
|
|
|
pa_assert(u);
|
|
|
|
|
|
|
|
|
|
pa_assert(e == u->save_time_event);
|
|
|
|
|
u->core->mainloop->time_free(u->save_time_event);
|
|
|
|
|
u->save_time_event = NULL;
|
|
|
|
|
|
2009-05-14 01:24:26 +02:00
|
|
|
pa_database_sync(u->database);
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_log_info("Synced.");
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
static struct entry* entry_new(void) {
|
|
|
|
|
struct entry *r = pa_xnew0(struct entry, 1);
|
|
|
|
|
r->version = ENTRY_VERSION;
|
2011-06-07 12:18:17 +02:00
|
|
|
r->formats = pa_idxset_new(NULL, NULL);
|
2011-06-07 23:21:04 +01:00
|
|
|
return r;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void entry_free(struct entry* e) {
|
|
|
|
|
pa_assert(e);
|
|
|
|
|
|
2011-06-07 12:18:17 +02:00
|
|
|
pa_idxset_free(e->formats, (pa_free2_cb_t) pa_format_info_free2, NULL);
|
2011-06-07 23:21:04 +01:00
|
|
|
pa_xfree(e->port);
|
|
|
|
|
pa_xfree(e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static struct entry* entry_read(struct userdata *u, const char *name) {
|
2009-05-14 01:24:26 +02:00
|
|
|
pa_datum key, data;
|
2011-06-07 23:21:04 +01:00
|
|
|
struct entry *e = NULL;
|
|
|
|
|
pa_tagstruct *t = NULL;
|
|
|
|
|
const char* port;
|
2011-06-07 12:18:17 +02:00
|
|
|
uint8_t i, n_formats;
|
2008-08-03 23:22:38 +02:00
|
|
|
|
|
|
|
|
pa_assert(u);
|
|
|
|
|
pa_assert(name);
|
|
|
|
|
|
2009-05-14 01:24:26 +02:00
|
|
|
key.data = (char*) name;
|
|
|
|
|
key.size = strlen(name);
|
2008-08-03 23:22:38 +02:00
|
|
|
|
2009-05-14 01:24:26 +02:00
|
|
|
pa_zero(data);
|
2008-08-03 23:22:38 +02:00
|
|
|
|
2009-05-14 01:24:26 +02:00
|
|
|
if (!pa_database_get(u->database, &key, &data))
|
2008-08-03 23:22:38 +02:00
|
|
|
goto fail;
|
|
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
t = pa_tagstruct_new(data.data, data.size);
|
|
|
|
|
e = entry_new();
|
2008-08-03 23:22:38 +02:00
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
if (pa_tagstruct_getu8(t, &e->version) < 0 ||
|
|
|
|
|
e->version > ENTRY_VERSION ||
|
|
|
|
|
pa_tagstruct_get_boolean(t, &e->volume_valid) < 0 ||
|
|
|
|
|
pa_tagstruct_get_channel_map(t, &e->channel_map) < 0 ||
|
|
|
|
|
pa_tagstruct_get_cvolume(t, &e->volume) < 0 ||
|
|
|
|
|
pa_tagstruct_get_boolean(t, &e->muted_valid) < 0 ||
|
|
|
|
|
pa_tagstruct_get_boolean(t, &e->muted) < 0 ||
|
|
|
|
|
pa_tagstruct_get_boolean(t, &e->port_valid) < 0 ||
|
2011-06-07 12:18:17 +02:00
|
|
|
pa_tagstruct_gets(t, &port) < 0 ||
|
|
|
|
|
pa_tagstruct_getu8(t, &n_formats) < 0) {
|
2008-08-03 23:22:38 +02:00
|
|
|
|
2009-02-04 18:31:24 +01:00
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
e->port = pa_xstrdup(port);
|
|
|
|
|
|
2011-06-07 12:18:17 +02:00
|
|
|
for (i = 0; i < n_formats; ++i) {
|
|
|
|
|
pa_format_info *f = pa_format_info_new();
|
|
|
|
|
if (pa_tagstruct_get_format_info(t, f) < 0) {
|
|
|
|
|
pa_format_info_free(f);
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
pa_idxset_put(e->formats, f, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
if (!pa_tagstruct_eof(t))
|
2008-08-03 23:22:38 +02:00
|
|
|
goto fail;
|
|
|
|
|
|
2009-06-18 00:59:04 +02:00
|
|
|
if (e->volume_valid && !pa_channel_map_valid(&e->channel_map)) {
|
2008-08-04 18:55:50 +02:00
|
|
|
pa_log_warn("Invalid channel map stored in database for device %s", name);
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-18 00:59:04 +02:00
|
|
|
if (e->volume_valid && (!pa_cvolume_valid(&e->volume) || !pa_cvolume_compatible_with_channel_map(&e->volume, &e->channel_map))) {
|
2008-08-04 18:55:50 +02:00
|
|
|
pa_log_warn("Volume and channel map don't match in database entry for device %s", name);
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
pa_tagstruct_free(t);
|
|
|
|
|
pa_datum_free(&data);
|
|
|
|
|
|
2008-08-03 23:22:38 +02:00
|
|
|
return e;
|
|
|
|
|
|
|
|
|
|
fail:
|
|
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
pa_log_debug("Database contains invalid data for key: %s (probably pre-v1.0 data)", name);
|
|
|
|
|
|
|
|
|
|
if (e)
|
|
|
|
|
entry_free(e);
|
|
|
|
|
if (t)
|
|
|
|
|
pa_tagstruct_free(t);
|
2009-05-14 01:24:26 +02:00
|
|
|
pa_datum_free(&data);
|
2008-08-03 23:22:38 +02:00
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
static pa_bool_t entry_write(struct userdata *u, const char *name, const struct entry *e) {
|
|
|
|
|
pa_tagstruct *t;
|
|
|
|
|
pa_datum key, data;
|
|
|
|
|
pa_bool_t r;
|
2011-06-07 12:18:17 +02:00
|
|
|
uint32_t i;
|
|
|
|
|
pa_format_info *f;
|
2011-06-07 23:21:04 +01:00
|
|
|
|
|
|
|
|
pa_assert(u);
|
|
|
|
|
pa_assert(name);
|
|
|
|
|
pa_assert(e);
|
|
|
|
|
|
|
|
|
|
t = pa_tagstruct_new(NULL, 0);
|
|
|
|
|
pa_tagstruct_putu8(t, e->version);
|
|
|
|
|
pa_tagstruct_put_boolean(t, e->volume_valid);
|
|
|
|
|
pa_tagstruct_put_channel_map(t, &e->channel_map);
|
|
|
|
|
pa_tagstruct_put_cvolume(t, &e->volume);
|
|
|
|
|
pa_tagstruct_put_boolean(t, e->muted_valid);
|
|
|
|
|
pa_tagstruct_put_boolean(t, e->muted);
|
|
|
|
|
pa_tagstruct_put_boolean(t, e->port_valid);
|
|
|
|
|
pa_tagstruct_puts(t, e->port);
|
2011-06-07 12:18:17 +02:00
|
|
|
pa_tagstruct_putu8(t, pa_idxset_size(e->formats));
|
|
|
|
|
|
|
|
|
|
PA_IDXSET_FOREACH(f, e->formats, i) {
|
|
|
|
|
pa_tagstruct_put_format_info(t, f);
|
|
|
|
|
}
|
2011-06-07 23:21:04 +01:00
|
|
|
|
|
|
|
|
key.data = (char *) name;
|
|
|
|
|
key.size = strlen(name);
|
|
|
|
|
|
|
|
|
|
data.data = (void*)pa_tagstruct_data(t, &data.size);
|
|
|
|
|
|
|
|
|
|
r = (pa_database_set(u->database, &key, &data, TRUE) == 0);
|
|
|
|
|
|
|
|
|
|
pa_tagstruct_free(t);
|
|
|
|
|
|
|
|
|
|
return r;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static struct entry* entry_copy(const struct entry *e) {
|
|
|
|
|
struct entry* r;
|
2011-06-07 12:18:17 +02:00
|
|
|
uint32_t idx;
|
|
|
|
|
pa_format_info *f;
|
2011-06-07 23:21:04 +01:00
|
|
|
|
|
|
|
|
pa_assert(e);
|
|
|
|
|
r = entry_new();
|
2011-06-07 12:18:17 +02:00
|
|
|
r->version = e->version;
|
|
|
|
|
r->muted_valid = e->muted_valid;
|
|
|
|
|
r->volume_valid = e->volume_valid;
|
|
|
|
|
r->port_valid = e->port_valid;
|
|
|
|
|
r->muted = e->muted;
|
|
|
|
|
r->channel_map = e->channel_map;
|
|
|
|
|
r->volume = e->volume;
|
2011-06-07 23:21:04 +01:00
|
|
|
r->port = pa_xstrdup(e->port);
|
2011-06-07 12:18:17 +02:00
|
|
|
|
|
|
|
|
PA_IDXSET_FOREACH(f, e->formats, idx) {
|
|
|
|
|
pa_idxset_put(r->formats, pa_format_info_copy(f), NULL);
|
|
|
|
|
}
|
2011-06-07 23:21:04 +01:00
|
|
|
return r;
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-04 18:56:12 +02:00
|
|
|
static void trigger_save(struct userdata *u) {
|
|
|
|
|
if (u->save_time_event)
|
|
|
|
|
return;
|
|
|
|
|
|
2009-04-05 02:13:43 +03:00
|
|
|
u->save_time_event = pa_core_rttime_new(u->core, pa_rtclock_now() + SAVE_INTERVAL, save_time_callback, u);
|
2008-08-04 18:56:12 +02:00
|
|
|
}
|
|
|
|
|
|
2009-06-18 00:59:04 +02:00
|
|
|
static pa_bool_t entries_equal(const struct entry *a, const struct entry *b) {
|
|
|
|
|
pa_cvolume t;
|
|
|
|
|
|
|
|
|
|
if (a->port_valid != b->port_valid ||
|
2011-06-07 23:21:04 +01:00
|
|
|
(a->port_valid && !pa_streq(a->port, b->port)))
|
2009-06-18 00:59:04 +02:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
if (a->muted_valid != b->muted_valid ||
|
|
|
|
|
(a->muted_valid && (a->muted != b->muted)))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
t = b->volume;
|
|
|
|
|
if (a->volume_valid != b->volume_valid ||
|
|
|
|
|
(a->volume_valid && !pa_cvolume_equal(pa_cvolume_remap(&t, &b->channel_map, &a->channel_map), &a->volume)))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
static void subscribe_callback(pa_core *c, pa_subscription_event_type_t t, uint32_t idx, void *userdata) {
|
|
|
|
|
struct userdata *u = userdata;
|
2011-06-07 23:21:04 +01:00
|
|
|
struct entry *entry, *old;
|
2008-05-15 23:34:41 +00:00
|
|
|
char *name;
|
|
|
|
|
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
pa_assert(u);
|
|
|
|
|
|
|
|
|
|
if (t != (PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_NEW) &&
|
|
|
|
|
t != (PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE) &&
|
|
|
|
|
t != (PA_SUBSCRIPTION_EVENT_SOURCE|PA_SUBSCRIPTION_EVENT_NEW) &&
|
|
|
|
|
t != (PA_SUBSCRIPTION_EVENT_SOURCE|PA_SUBSCRIPTION_EVENT_CHANGE))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if ((t & PA_SUBSCRIPTION_EVENT_FACILITY_MASK) == PA_SUBSCRIPTION_EVENT_SINK) {
|
|
|
|
|
pa_sink *sink;
|
|
|
|
|
|
|
|
|
|
if (!(sink = pa_idxset_get_by_index(c->sinks, idx)))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
name = pa_sprintf_malloc("sink:%s", sink->name);
|
2009-06-18 00:59:04 +02:00
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
if ((old = entry_read(u, name)))
|
|
|
|
|
entry = entry_copy(old);
|
|
|
|
|
else
|
|
|
|
|
entry = entry_new();
|
2009-06-18 00:59:04 +02:00
|
|
|
|
|
|
|
|
if (sink->save_volume) {
|
2011-06-07 23:21:04 +01:00
|
|
|
entry->channel_map = sink->channel_map;
|
|
|
|
|
entry->volume = *pa_sink_get_volume(sink, FALSE);
|
|
|
|
|
entry->volume_valid = TRUE;
|
2009-06-18 00:59:04 +02:00
|
|
|
}
|
|
|
|
|
|
2009-06-18 03:41:49 +02:00
|
|
|
if (sink->save_muted) {
|
2011-06-07 23:21:04 +01:00
|
|
|
entry->muted = pa_sink_get_mute(sink, FALSE);
|
|
|
|
|
entry->muted_valid = TRUE;
|
2009-06-18 00:59:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (sink->save_port) {
|
2011-06-07 23:21:04 +01:00
|
|
|
pa_xfree(entry->port);
|
|
|
|
|
entry->port = pa_xstrdup(sink->active_port ? sink->active_port->name : "");
|
|
|
|
|
entry->port_valid = TRUE;
|
2009-06-18 00:59:04 +02:00
|
|
|
}
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
pa_source *source;
|
|
|
|
|
|
|
|
|
|
pa_assert((t & PA_SUBSCRIPTION_EVENT_FACILITY_MASK) == PA_SUBSCRIPTION_EVENT_SOURCE);
|
|
|
|
|
|
|
|
|
|
if (!(source = pa_idxset_get_by_index(c->sources, idx)))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
name = pa_sprintf_malloc("source:%s", source->name);
|
|
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
if ((old = entry_read(u, name)))
|
|
|
|
|
entry = entry_copy(old);
|
|
|
|
|
else
|
|
|
|
|
entry = entry_new();
|
2008-05-15 23:34:41 +00:00
|
|
|
|
2009-06-18 00:59:04 +02:00
|
|
|
if (source->save_volume) {
|
2011-06-07 23:21:04 +01:00
|
|
|
entry->channel_map = source->channel_map;
|
|
|
|
|
entry->volume = *pa_source_get_volume(source, FALSE);
|
|
|
|
|
entry->volume_valid = TRUE;
|
2009-06-18 00:59:04 +02:00
|
|
|
}
|
2008-05-15 23:34:41 +00:00
|
|
|
|
2009-06-18 00:59:04 +02:00
|
|
|
if (source->save_muted) {
|
2011-06-07 23:21:04 +01:00
|
|
|
entry->muted = pa_source_get_mute(source, FALSE);
|
|
|
|
|
entry->muted_valid = TRUE;
|
2009-06-18 00:59:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (source->save_port) {
|
2011-06-07 23:21:04 +01:00
|
|
|
pa_xfree(entry->port);
|
|
|
|
|
entry->port = pa_xstrdup(source->active_port ? source->active_port->name : "");
|
|
|
|
|
entry->port_valid = TRUE;
|
2009-06-18 00:59:04 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
pa_assert(entry);
|
|
|
|
|
|
2009-06-18 00:59:04 +02:00
|
|
|
if (old) {
|
|
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
if (entries_equal(old, entry)) {
|
|
|
|
|
entry_free(old);
|
|
|
|
|
entry_free(entry);
|
2008-08-03 23:22:38 +02:00
|
|
|
pa_xfree(name);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2008-05-15 23:34:41 +00:00
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
entry_free(old);
|
2008-05-15 23:34:41 +00:00
|
|
|
}
|
|
|
|
|
|
2009-06-18 00:59:04 +02:00
|
|
|
pa_log_info("Storing volume/mute/port for device %s.", name);
|
2008-05-15 23:34:41 +00:00
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
if (entry_write(u, name, entry))
|
|
|
|
|
trigger_save(u);
|
2008-05-15 23:34:41 +00:00
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
entry_free(entry);
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_xfree(name);
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-18 00:59:04 +02:00
|
|
|
static pa_hook_result_t sink_new_hook_callback(pa_core *c, pa_sink_new_data *new_data, struct userdata *u) {
|
|
|
|
|
char *name;
|
|
|
|
|
struct entry *e;
|
|
|
|
|
|
2009-06-22 22:33:09 +02:00
|
|
|
pa_assert(c);
|
2009-06-18 00:59:04 +02:00
|
|
|
pa_assert(new_data);
|
2009-06-22 22:33:09 +02:00
|
|
|
pa_assert(u);
|
|
|
|
|
pa_assert(u->restore_port);
|
2009-06-18 00:59:04 +02:00
|
|
|
|
|
|
|
|
name = pa_sprintf_malloc("sink:%s", new_data->name);
|
|
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
if ((e = entry_read(u, name))) {
|
2009-06-18 00:59:04 +02:00
|
|
|
|
|
|
|
|
if (e->port_valid) {
|
|
|
|
|
if (!new_data->active_port) {
|
|
|
|
|
pa_log_info("Restoring port for sink %s.", name);
|
|
|
|
|
pa_sink_new_data_set_port(new_data, e->port);
|
2009-06-22 22:33:09 +02:00
|
|
|
new_data->save_port = TRUE;
|
2009-06-18 00:59:04 +02:00
|
|
|
} else
|
|
|
|
|
pa_log_debug("Not restoring port for sink %s, because already set.", name);
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
entry_free(e);
|
2009-06-18 00:59:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pa_xfree(name);
|
|
|
|
|
|
|
|
|
|
return PA_HOOK_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
static pa_hook_result_t sink_fixate_hook_callback(pa_core *c, pa_sink_new_data *new_data, struct userdata *u) {
|
|
|
|
|
char *name;
|
|
|
|
|
struct entry *e;
|
|
|
|
|
|
2009-06-22 22:33:09 +02:00
|
|
|
pa_assert(c);
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_assert(new_data);
|
2009-06-22 22:33:09 +02:00
|
|
|
pa_assert(u);
|
|
|
|
|
pa_assert(u->restore_volume || u->restore_muted);
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
|
|
|
name = pa_sprintf_malloc("sink:%s", new_data->name);
|
|
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
if ((e = entry_read(u, name))) {
|
2008-05-15 23:34:41 +00:00
|
|
|
|
2009-06-18 00:59:04 +02:00
|
|
|
if (u->restore_volume && e->volume_valid) {
|
2009-01-21 02:47:26 +01:00
|
|
|
|
|
|
|
|
if (!new_data->volume_is_set) {
|
2009-06-18 00:59:04 +02:00
|
|
|
pa_cvolume v;
|
|
|
|
|
|
2009-01-21 02:47:26 +01:00
|
|
|
pa_log_info("Restoring volume for sink %s.", new_data->name);
|
2009-06-18 00:59:04 +02:00
|
|
|
|
|
|
|
|
v = e->volume;
|
|
|
|
|
pa_cvolume_remap(&v, &e->channel_map, &new_data->channel_map);
|
|
|
|
|
pa_sink_new_data_set_volume(new_data, &v);
|
|
|
|
|
|
2009-06-22 22:33:09 +02:00
|
|
|
new_data->save_volume = TRUE;
|
2009-01-21 02:47:26 +01:00
|
|
|
} else
|
|
|
|
|
pa_log_debug("Not restoring volume for sink %s, because already set.", new_data->name);
|
2008-05-15 23:34:41 +00:00
|
|
|
}
|
|
|
|
|
|
2009-06-18 00:59:04 +02:00
|
|
|
if (u->restore_muted && e->muted_valid) {
|
2009-01-21 02:47:26 +01:00
|
|
|
|
|
|
|
|
if (!new_data->muted_is_set) {
|
|
|
|
|
pa_log_info("Restoring mute state for sink %s.", new_data->name);
|
|
|
|
|
pa_sink_new_data_set_muted(new_data, e->muted);
|
2009-06-22 22:33:09 +02:00
|
|
|
new_data->save_muted = TRUE;
|
2009-01-21 02:47:26 +01:00
|
|
|
} else
|
|
|
|
|
pa_log_debug("Not restoring mute state for sink %s, because already set.", new_data->name);
|
2008-08-03 23:22:38 +02:00
|
|
|
}
|
|
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
entry_free(e);
|
2008-05-15 23:34:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pa_xfree(name);
|
|
|
|
|
|
|
|
|
|
return PA_HOOK_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-18 00:59:04 +02:00
|
|
|
static pa_hook_result_t source_new_hook_callback(pa_core *c, pa_source_new_data *new_data, struct userdata *u) {
|
|
|
|
|
char *name;
|
|
|
|
|
struct entry *e;
|
|
|
|
|
|
2009-06-22 22:33:09 +02:00
|
|
|
pa_assert(c);
|
2009-06-18 00:59:04 +02:00
|
|
|
pa_assert(new_data);
|
2009-06-22 22:33:09 +02:00
|
|
|
pa_assert(u);
|
|
|
|
|
pa_assert(u->restore_port);
|
2009-06-18 00:59:04 +02:00
|
|
|
|
|
|
|
|
name = pa_sprintf_malloc("source:%s", new_data->name);
|
|
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
if ((e = entry_read(u, name))) {
|
2009-06-18 00:59:04 +02:00
|
|
|
|
|
|
|
|
if (e->port_valid) {
|
|
|
|
|
if (!new_data->active_port) {
|
|
|
|
|
pa_log_info("Restoring port for source %s.", name);
|
|
|
|
|
pa_source_new_data_set_port(new_data, e->port);
|
2009-06-22 22:33:09 +02:00
|
|
|
new_data->save_port = TRUE;
|
2009-06-18 00:59:04 +02:00
|
|
|
} else
|
|
|
|
|
pa_log_debug("Not restoring port for source %s, because already set.", name);
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
entry_free(e);
|
2009-06-18 00:59:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pa_xfree(name);
|
|
|
|
|
|
|
|
|
|
return PA_HOOK_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
static pa_hook_result_t source_fixate_hook_callback(pa_core *c, pa_source_new_data *new_data, struct userdata *u) {
|
|
|
|
|
char *name;
|
|
|
|
|
struct entry *e;
|
|
|
|
|
|
2009-06-22 22:33:09 +02:00
|
|
|
pa_assert(c);
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_assert(new_data);
|
2009-06-22 22:33:09 +02:00
|
|
|
pa_assert(u);
|
|
|
|
|
pa_assert(u->restore_volume || u->restore_muted);
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
|
|
|
name = pa_sprintf_malloc("source:%s", new_data->name);
|
|
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
if ((e = entry_read(u, name))) {
|
2008-05-15 23:34:41 +00:00
|
|
|
|
2009-06-18 00:59:04 +02:00
|
|
|
if (u->restore_volume && e->volume_valid) {
|
2009-01-21 02:47:26 +01:00
|
|
|
|
|
|
|
|
if (!new_data->volume_is_set) {
|
2009-06-18 00:59:04 +02:00
|
|
|
pa_cvolume v;
|
|
|
|
|
|
2009-01-21 02:47:26 +01:00
|
|
|
pa_log_info("Restoring volume for source %s.", new_data->name);
|
2009-06-18 00:59:04 +02:00
|
|
|
|
|
|
|
|
v = e->volume;
|
|
|
|
|
pa_cvolume_remap(&v, &e->channel_map, &new_data->channel_map);
|
|
|
|
|
pa_source_new_data_set_volume(new_data, &v);
|
|
|
|
|
|
2009-06-22 22:33:09 +02:00
|
|
|
new_data->save_volume = TRUE;
|
2009-01-21 02:47:26 +01:00
|
|
|
} else
|
|
|
|
|
pa_log_debug("Not restoring volume for source %s, because already set.", new_data->name);
|
2008-05-15 23:34:41 +00:00
|
|
|
}
|
|
|
|
|
|
2009-06-18 00:59:04 +02:00
|
|
|
if (u->restore_muted && e->muted_valid) {
|
2009-01-21 02:47:26 +01:00
|
|
|
|
|
|
|
|
if (!new_data->muted_is_set) {
|
|
|
|
|
pa_log_info("Restoring mute state for source %s.", new_data->name);
|
|
|
|
|
pa_source_new_data_set_muted(new_data, e->muted);
|
2009-06-22 22:33:09 +02:00
|
|
|
new_data->save_muted = TRUE;
|
2009-01-21 02:47:26 +01:00
|
|
|
} else
|
|
|
|
|
pa_log_debug("Not restoring mute state for source %s, because already set.", new_data->name);
|
2008-08-03 23:22:38 +02:00
|
|
|
}
|
|
|
|
|
|
2011-06-07 23:21:04 +01:00
|
|
|
entry_free(e);
|
2008-05-15 23:34:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pa_xfree(name);
|
|
|
|
|
|
|
|
|
|
return PA_HOOK_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-07 12:18:17 +02:00
|
|
|
#define EXT_VERSION 1
|
|
|
|
|
|
|
|
|
|
static void read_sink_format_reply(struct userdata *u, pa_tagstruct *reply, pa_sink *sink) {
|
|
|
|
|
struct entry *e;
|
|
|
|
|
char *name;
|
|
|
|
|
|
|
|
|
|
pa_assert(u);
|
|
|
|
|
pa_assert(reply);
|
|
|
|
|
pa_assert(sink);
|
|
|
|
|
|
|
|
|
|
pa_tagstruct_putu32(reply, sink->index);
|
|
|
|
|
|
|
|
|
|
/* Read or create an entry */
|
|
|
|
|
name = pa_sprintf_malloc("sink:%s", sink->name);
|
|
|
|
|
if (!(e = entry_read(u, name))) {
|
|
|
|
|
/* Fake a reply with PCM encoding supported */
|
|
|
|
|
pa_format_info *f = pa_format_info_new();
|
|
|
|
|
|
|
|
|
|
pa_tagstruct_putu8(reply, 1);
|
|
|
|
|
f->encoding = PA_ENCODING_PCM;
|
|
|
|
|
pa_tagstruct_put_format_info(reply, f);
|
|
|
|
|
|
|
|
|
|
pa_format_info_free(f);
|
|
|
|
|
} else {
|
|
|
|
|
uint32_t idx;
|
|
|
|
|
pa_format_info *f;
|
|
|
|
|
|
|
|
|
|
/* Write all the formats from the entry to the reply */
|
|
|
|
|
pa_tagstruct_putu8(reply, pa_idxset_size(e->formats));
|
|
|
|
|
PA_IDXSET_FOREACH(f, e->formats, idx) {
|
|
|
|
|
pa_tagstruct_put_format_info(reply, f);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
pa_xfree(name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int extension_cb(pa_native_protocol *p, pa_module *m, pa_native_connection *c, uint32_t tag, pa_tagstruct *t) {
|
|
|
|
|
struct userdata *u;
|
|
|
|
|
uint32_t command;
|
|
|
|
|
pa_tagstruct *reply = NULL;
|
|
|
|
|
|
|
|
|
|
pa_assert(p);
|
|
|
|
|
pa_assert(m);
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
pa_assert(t);
|
|
|
|
|
|
|
|
|
|
u = m->userdata;
|
|
|
|
|
|
|
|
|
|
if (pa_tagstruct_getu32(t, &command) < 0)
|
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
reply = pa_tagstruct_new(NULL, 0);
|
|
|
|
|
pa_tagstruct_putu32(reply, PA_COMMAND_REPLY);
|
|
|
|
|
pa_tagstruct_putu32(reply, tag);
|
|
|
|
|
|
|
|
|
|
switch (command) {
|
|
|
|
|
case SUBCOMMAND_TEST: {
|
|
|
|
|
if (!pa_tagstruct_eof(t))
|
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
pa_tagstruct_putu32(reply, EXT_VERSION);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case SUBCOMMAND_SUBSCRIBE: {
|
|
|
|
|
|
|
|
|
|
pa_bool_t enabled;
|
|
|
|
|
|
|
|
|
|
if (pa_tagstruct_get_boolean(t, &enabled) < 0 ||
|
|
|
|
|
!pa_tagstruct_eof(t))
|
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
if (enabled)
|
|
|
|
|
pa_idxset_put(u->subscribed, c, NULL);
|
|
|
|
|
else
|
|
|
|
|
pa_idxset_remove_by_data(u->subscribed, c, NULL);
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case SUBCOMMAND_READ_SINK_FORMATS_ALL: {
|
|
|
|
|
pa_sink *sink;
|
|
|
|
|
uint32_t idx;
|
|
|
|
|
|
|
|
|
|
if (!pa_tagstruct_eof(t))
|
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
PA_IDXSET_FOREACH(sink, u->core->sinks, idx) {
|
|
|
|
|
read_sink_format_reply(u, reply, sink);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case SUBCOMMAND_READ_SINK_FORMATS: {
|
|
|
|
|
uint32_t sink_index;
|
|
|
|
|
pa_sink *sink;
|
|
|
|
|
|
|
|
|
|
pa_assert(reply);
|
|
|
|
|
|
|
|
|
|
/* Get the sink index and the number of formats from the tagstruct */
|
|
|
|
|
if (pa_tagstruct_getu32(t, &sink_index) < 0)
|
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
if (!pa_tagstruct_eof(t))
|
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
/* Now find our sink */
|
|
|
|
|
if (!(sink = pa_idxset_get_by_index(u->core->sinks, sink_index)))
|
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
read_sink_format_reply(u, reply, sink);
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case SUBCOMMAND_SAVE_SINK_FORMATS: {
|
|
|
|
|
|
|
|
|
|
struct entry *e;
|
|
|
|
|
uint32_t sink_index;
|
|
|
|
|
char *name;
|
|
|
|
|
pa_sink *sink;
|
|
|
|
|
uint8_t i, n_formats;
|
|
|
|
|
|
|
|
|
|
/* Get the sink index and the number of formats from the tagstruct */
|
|
|
|
|
if (pa_tagstruct_getu32(t, &sink_index) < 0 ||
|
|
|
|
|
pa_tagstruct_getu8(t, &n_formats) < 0 || n_formats < 1) {
|
|
|
|
|
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Now find our sink */
|
|
|
|
|
if (!(sink = pa_idxset_get_by_index(u->core->sinks, sink_index)))
|
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
|
|
/* Read or create an entry */
|
|
|
|
|
name = pa_sprintf_malloc("sink:%s", sink->name);
|
|
|
|
|
if (!(e = entry_read(u, name)))
|
|
|
|
|
e = entry_new();
|
|
|
|
|
|
|
|
|
|
/* Read all the formats from our tagstruct */
|
|
|
|
|
for (i = 0; i < n_formats; ++i) {
|
|
|
|
|
pa_format_info *f = pa_format_info_new();
|
|
|
|
|
if (pa_tagstruct_get_format_info(t, f) < 0) {
|
|
|
|
|
pa_format_info_free(f);
|
|
|
|
|
pa_xfree(name);
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
pa_idxset_put(e->formats, f, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!pa_tagstruct_eof(t)) {
|
|
|
|
|
entry_free(e);
|
|
|
|
|
pa_xfree(name);
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (entry_write(u, name, e))
|
|
|
|
|
trigger_save(u);
|
|
|
|
|
else
|
|
|
|
|
pa_log_warn("Could not save format info for sink %s", sink->name);
|
|
|
|
|
|
|
|
|
|
pa_xfree(name);
|
|
|
|
|
entry_free(e);
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pa_pstream_send_tagstruct(pa_native_connection_get_pstream(c), reply);
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
fail:
|
|
|
|
|
|
|
|
|
|
if (reply)
|
|
|
|
|
pa_tagstruct_free(reply);
|
|
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static pa_hook_result_t connection_unlink_hook_cb(pa_native_protocol *p, pa_native_connection *c, struct userdata *u) {
|
|
|
|
|
pa_assert(p);
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
pa_assert(u);
|
|
|
|
|
|
|
|
|
|
pa_idxset_remove_by_data(u->subscribed, c, NULL);
|
|
|
|
|
return PA_HOOK_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
int pa__init(pa_module*m) {
|
|
|
|
|
pa_modargs *ma = NULL;
|
|
|
|
|
struct userdata *u;
|
2009-05-14 01:24:26 +02:00
|
|
|
char *fname;
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_sink *sink;
|
|
|
|
|
pa_source *source;
|
|
|
|
|
uint32_t idx;
|
2009-06-18 00:59:04 +02:00
|
|
|
pa_bool_t restore_volume = TRUE, restore_muted = TRUE, restore_port = TRUE;
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
|
|
|
pa_assert(m);
|
|
|
|
|
|
|
|
|
|
if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
|
|
|
|
|
pa_log("Failed to parse module arguments");
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-03 23:22:38 +02:00
|
|
|
if (pa_modargs_get_value_boolean(ma, "restore_volume", &restore_volume) < 0 ||
|
2009-06-18 00:59:04 +02:00
|
|
|
pa_modargs_get_value_boolean(ma, "restore_muted", &restore_muted) < 0 ||
|
|
|
|
|
pa_modargs_get_value_boolean(ma, "restore_port", &restore_port) < 0) {
|
|
|
|
|
pa_log("restore_port=, restore_volume= and restore_muted= expect boolean arguments");
|
2008-08-03 23:22:38 +02:00
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-18 00:59:04 +02:00
|
|
|
if (!restore_muted && !restore_volume && !restore_port)
|
|
|
|
|
pa_log_warn("Neither restoring volume, nor restoring muted, nor restoring port enabled!");
|
2008-08-03 23:22:38 +02:00
|
|
|
|
2009-06-18 00:59:04 +02:00
|
|
|
m->userdata = u = pa_xnew0(struct userdata, 1);
|
2008-05-15 23:34:41 +00:00
|
|
|
u->core = m->core;
|
2008-08-04 18:55:50 +02:00
|
|
|
u->module = m;
|
2008-08-03 23:22:38 +02:00
|
|
|
u->restore_volume = restore_volume;
|
|
|
|
|
u->restore_muted = restore_muted;
|
2009-06-18 00:59:04 +02:00
|
|
|
u->restore_port = restore_port;
|
2008-05-15 23:34:41 +00:00
|
|
|
|
2011-06-07 12:18:17 +02:00
|
|
|
u->subscribed = pa_idxset_new(pa_idxset_trivial_hash_func, pa_idxset_trivial_compare_func);
|
|
|
|
|
|
|
|
|
|
u->protocol = pa_native_protocol_get(m->core);
|
|
|
|
|
pa_native_protocol_install_ext(u->protocol, m, extension_cb);
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
u->subscription = pa_subscription_new(m->core, PA_SUBSCRIPTION_MASK_SINK|PA_SUBSCRIPTION_MASK_SOURCE, subscribe_callback, u);
|
|
|
|
|
|
2009-06-18 00:59:04 +02:00
|
|
|
if (restore_port) {
|
|
|
|
|
u->sink_new_hook_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_NEW], PA_HOOK_EARLY, (pa_hook_cb_t) sink_new_hook_callback, u);
|
|
|
|
|
u->source_new_hook_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_NEW], PA_HOOK_EARLY, (pa_hook_cb_t) source_new_hook_callback, u);
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-03 23:22:38 +02:00
|
|
|
if (restore_muted || restore_volume) {
|
|
|
|
|
u->sink_fixate_hook_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_FIXATE], PA_HOOK_EARLY, (pa_hook_cb_t) sink_fixate_hook_callback, u);
|
|
|
|
|
u->source_fixate_hook_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_FIXATE], PA_HOOK_EARLY, (pa_hook_cb_t) source_fixate_hook_callback, u);
|
|
|
|
|
}
|
2008-05-15 23:34:41 +00:00
|
|
|
|
2009-05-14 01:24:26 +02:00
|
|
|
if (!(fname = pa_state_path("device-volumes", TRUE)))
|
2008-05-21 22:47:07 +00:00
|
|
|
goto fail;
|
2008-05-15 23:34:41 +00:00
|
|
|
|
2009-05-14 01:24:26 +02:00
|
|
|
if (!(u->database = pa_database_open(fname, TRUE))) {
|
|
|
|
|
pa_log("Failed to open volume database '%s': %s", fname, pa_cstrerror(errno));
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_xfree(fname);
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-20 17:20:57 +08:00
|
|
|
pa_log_info("Successfully opened database file '%s'.", fname);
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_xfree(fname);
|
|
|
|
|
|
|
|
|
|
for (sink = pa_idxset_first(m->core->sinks, &idx); sink; sink = pa_idxset_next(m->core->sinks, &idx))
|
|
|
|
|
subscribe_callback(m->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_NEW, sink->index, u);
|
|
|
|
|
|
|
|
|
|
for (source = pa_idxset_first(m->core->sources, &idx); source; source = pa_idxset_next(m->core->sources, &idx))
|
|
|
|
|
subscribe_callback(m->core, PA_SUBSCRIPTION_EVENT_SOURCE|PA_SUBSCRIPTION_EVENT_NEW, source->index, u);
|
|
|
|
|
|
|
|
|
|
pa_modargs_free(ma);
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
fail:
|
|
|
|
|
pa__done(m);
|
|
|
|
|
|
|
|
|
|
if (ma)
|
|
|
|
|
pa_modargs_free(ma);
|
|
|
|
|
|
2011-03-12 19:45:02 +01:00
|
|
|
return -1;
|
2008-05-15 23:34:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void pa__done(pa_module*m) {
|
|
|
|
|
struct userdata* u;
|
|
|
|
|
|
|
|
|
|
pa_assert(m);
|
|
|
|
|
|
|
|
|
|
if (!(u = m->userdata))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (u->subscription)
|
|
|
|
|
pa_subscription_free(u->subscription);
|
|
|
|
|
|
|
|
|
|
if (u->sink_fixate_hook_slot)
|
|
|
|
|
pa_hook_slot_free(u->sink_fixate_hook_slot);
|
|
|
|
|
if (u->source_fixate_hook_slot)
|
|
|
|
|
pa_hook_slot_free(u->source_fixate_hook_slot);
|
2009-06-18 00:59:04 +02:00
|
|
|
if (u->sink_new_hook_slot)
|
|
|
|
|
pa_hook_slot_free(u->sink_new_hook_slot);
|
|
|
|
|
if (u->source_new_hook_slot)
|
|
|
|
|
pa_hook_slot_free(u->source_new_hook_slot);
|
2008-05-15 23:34:41 +00:00
|
|
|
|
2011-06-07 12:18:17 +02:00
|
|
|
if (u->connection_unlink_hook_slot)
|
|
|
|
|
pa_hook_slot_free(u->connection_unlink_hook_slot);
|
|
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
if (u->save_time_event)
|
|
|
|
|
u->core->mainloop->time_free(u->save_time_event);
|
|
|
|
|
|
2009-05-14 01:24:26 +02:00
|
|
|
if (u->database)
|
|
|
|
|
pa_database_close(u->database);
|
2008-05-15 23:34:41 +00:00
|
|
|
|
2011-06-07 12:18:17 +02:00
|
|
|
if (u->protocol) {
|
|
|
|
|
pa_native_protocol_remove_ext(u->protocol, m);
|
|
|
|
|
pa_native_protocol_unref(u->protocol);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (u->subscribed)
|
|
|
|
|
pa_idxset_free(u->subscribed, NULL, NULL);
|
|
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_xfree(u);
|
|
|
|
|
}
|