pulseaudio/src/modules/module-card-restore.c

369 lines
8.9 KiB
C
Raw Normal View History

2009-01-21 02:49:42 +01:00
/***
This file is part of PulseAudio.
Copyright 2006-2008 Lennart Poettering
PulseAudio is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published
by the Free Software Foundation; either version 2.1 of the License,
2009-01-21 02:49:42 +01: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>
2011-06-13 15:04:33 +02:00
#include <pulse/gccmacro.h>
2009-01-21 02:49:42 +01:00
#include <pulse/xmalloc.h>
#include <pulse/timeval.h>
#include <pulse/rtclock.h>
2009-01-21 02:49:42 +01: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/card.h>
#include <pulsecore/namereg.h>
#include <pulsecore/database.h>
#include <pulsecore/tagstruct.h>
2009-01-21 02:49:42 +01:00
#include "module-card-restore-symdef.h"
PA_MODULE_AUTHOR("Lennart Poettering");
PA_MODULE_DESCRIPTION("Automatically restore profile of cards");
PA_MODULE_VERSION(PACKAGE_VERSION);
PA_MODULE_LOAD_ONCE(TRUE);
#define SAVE_INTERVAL (10 * PA_USEC_PER_SEC)
2009-01-21 02:49:42 +01:00
static const char* const valid_modargs[] = {
NULL
};
struct userdata {
pa_core *core;
pa_module *module;
pa_subscription *subscription;
pa_hook_slot *card_new_hook_slot;
pa_time_event *save_time_event;
pa_database *database;
2009-01-21 02:49:42 +01:00
};
#define ENTRY_VERSION 1
2009-02-04 18:31:24 +01:00
struct entry {
2009-02-04 18:31:24 +01:00
uint8_t version;
char *profile;
};
2009-01-21 02:49:42 +01:00
static void save_time_callback(pa_mainloop_api*a, pa_time_event* e, const struct timeval *t, void *userdata) {
2009-01-21 02:49:42 +01: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;
pa_database_sync(u->database);
2009-01-21 02:49:42 +01:00
pa_log_info("Synced.");
}
static void trigger_save(struct userdata *u) {
if (u->save_time_event)
return;
u->save_time_event = pa_core_rttime_new(u->core, pa_rtclock_now() + SAVE_INTERVAL, save_time_callback, u);
}
static struct entry* entry_new(void) {
struct entry *r = pa_xnew0(struct entry, 1);
r->version = ENTRY_VERSION;
return r;
}
static void entry_free(struct entry* e) {
pa_assert(e);
pa_xfree(e->profile);
pa_xfree(e);
}
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;
pa_assert(u);
pa_assert(name);
pa_assert(e);
t = pa_tagstruct_new(NULL, 0);
pa_tagstruct_putu8(t, e->version);
pa_tagstruct_puts(t, e->profile);
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;
}
#ifdef ENABLE_LEGACY_DATABASE_ENTRY_FORMAT
#define LEGACY_ENTRY_VERSION 1
static struct entry* legacy_entry_read(struct userdata *u, pa_datum *data) {
struct legacy_entry {
uint8_t version;
char profile[PA_NAME_MAX];
} PA_GCC_PACKED ;
struct legacy_entry *le;
struct entry *e;
pa_assert(u);
pa_assert(data);
if (data->size != sizeof(struct legacy_entry)) {
pa_log_debug("Size does not match.");
return NULL;
}
le = (struct legacy_entry*)data->data;
if (le->version != LEGACY_ENTRY_VERSION) {
pa_log_debug("Version mismatch.");
return NULL;
}
if (!memchr(le->profile, 0, sizeof(le->profile))) {
pa_log_warn("Profile has missing NUL byte.");
return NULL;
}
e = entry_new();
e->profile = pa_xstrdup(le->profile);
return e;
}
#endif
static struct entry* entry_read(struct userdata *u, const char *name) {
pa_datum key, data;
struct entry *e = NULL;
pa_tagstruct *t = NULL;
const char* profile;
2009-01-21 02:49:42 +01:00
pa_assert(u);
pa_assert(name);
key.data = (char*) name;
key.size = strlen(name);
2009-01-21 02:49:42 +01:00
pa_zero(data);
2009-01-21 02:49:42 +01:00
if (!pa_database_get(u->database, &key, &data))
2009-01-21 02:49:42 +01:00
goto fail;
t = pa_tagstruct_new(data.data, data.size);
e = entry_new();
2009-01-21 02:49:42 +01:00
if (pa_tagstruct_getu8(t, &e->version) < 0 ||
e->version > ENTRY_VERSION ||
pa_tagstruct_gets(t, &profile) < 0) {
2009-01-21 02:49:42 +01:00
2009-02-04 18:31:24 +01:00
goto fail;
}
e->profile = pa_xstrdup(profile);
if (!pa_tagstruct_eof(t))
2009-01-21 02:49:42 +01:00
goto fail;
pa_tagstruct_free(t);
pa_datum_free(&data);
2009-01-21 02:49:42 +01:00
return e;
fail:
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-01-21 02:49:42 +01:00
#ifdef ENABLE_LEGACY_DATABASE_ENTRY_FORMAT
pa_log_debug("Attempting to load legacy (pre-v1.0) data for key: %s", name);
if ((e = legacy_entry_read(u, &data))) {
pa_log_debug("Success. Saving new format for key: %s", name);
if (entry_write(u, name, e))
trigger_save(u);
pa_datum_free(&data);
return e;
} else
pa_log_debug("Unable to load legacy (pre-v1.0) data for key: %s. Ignoring.", name);
#endif
2009-01-21 02:49:42 +01:00
pa_datum_free(&data);
return NULL;
2009-01-21 02:49:42 +01:00
}
static void subscribe_callback(pa_core *c, pa_subscription_event_type_t t, uint32_t idx, void *userdata) {
struct userdata *u = userdata;
struct entry *entry, *old;
2009-01-21 02:49:42 +01:00
pa_card *card;
pa_assert(c);
pa_assert(u);
if (t != (PA_SUBSCRIPTION_EVENT_CARD|PA_SUBSCRIPTION_EVENT_NEW) &&
t != (PA_SUBSCRIPTION_EVENT_CARD|PA_SUBSCRIPTION_EVENT_CHANGE))
return;
entry = entry_new();
2009-01-21 02:49:42 +01:00
if (!(card = pa_idxset_get_by_index(c->cards, idx)))
return;
if (!card->save_profile)
return;
entry->profile = pa_xstrdup(card->active_profile ? card->active_profile->name : "");
2009-01-21 02:49:42 +01:00
if ((old = entry_read(u, card->name))) {
2009-01-21 02:49:42 +01:00
if (pa_streq(old->profile, entry->profile)) {
entry_free(old);
entry_free(entry);
2009-01-21 02:49:42 +01:00
return;
}
entry_free(old);
2009-01-21 02:49:42 +01:00
}
pa_log_info("Storing profile for card %s.", card->name);
if (entry_write(u, card->name, entry))
trigger_save(u);
2009-01-21 02:49:42 +01:00
entry_free(entry);
2009-01-21 02:49:42 +01:00
}
static pa_hook_result_t card_new_hook_callback(pa_core *c, pa_card_new_data *new_data, struct userdata *u) {
struct entry *e;
pa_assert(new_data);
if ((e = entry_read(u, new_data->name)) && e->profile[0]) {
2009-01-21 02:49:42 +01:00
if (!new_data->active_profile) {
pa_log_info("Restoring profile for card %s.", new_data->name);
pa_card_new_data_set_profile(new_data, e->profile);
new_data->save_profile = TRUE;
2009-01-21 02:49:42 +01:00
} else
pa_log_debug("Not restoring profile for card %s, because already set.", new_data->name);
entry_free(e);
2009-01-21 02:49:42 +01:00
}
return PA_HOOK_OK;
}
int pa__init(pa_module*m) {
pa_modargs *ma = NULL;
struct userdata *u;
char *fname;
2009-01-21 02:49:42 +01:00
pa_card *card;
uint32_t idx;
pa_assert(m);
if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
pa_log("Failed to parse module arguments");
goto fail;
}
2009-06-18 00:59:33 +02:00
m->userdata = u = pa_xnew0(struct userdata, 1);
2009-01-21 02:49:42 +01:00
u->core = m->core;
u->module = m;
u->subscription = pa_subscription_new(m->core, PA_SUBSCRIPTION_MASK_CARD, subscribe_callback, u);
u->card_new_hook_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_CARD_NEW], PA_HOOK_EARLY, (pa_hook_cb_t) card_new_hook_callback, u);
if (!(fname = pa_state_path("card-database", TRUE)))
2009-01-21 02:49:42 +01:00
goto fail;
if (!(u->database = pa_database_open(fname, TRUE))) {
pa_log("Failed to open volume database '%s': %s", fname, pa_cstrerror(errno));
2009-01-21 02:49:42 +01:00
pa_xfree(fname);
goto fail;
}
2010-12-20 17:20:57 +08:00
pa_log_info("Successfully opened database file '%s'.", fname);
2009-01-21 02:49:42 +01:00
pa_xfree(fname);
for (card = pa_idxset_first(m->core->cards, &idx); card; card = pa_idxset_next(m->core->cards, &idx))
subscribe_callback(m->core, PA_SUBSCRIPTION_EVENT_CARD|PA_SUBSCRIPTION_EVENT_NEW, card->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;
2009-01-21 02:49:42 +01: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->card_new_hook_slot)
pa_hook_slot_free(u->card_new_hook_slot);
if (u->save_time_event)
u->core->mainloop->time_free(u->save_time_event);
if (u->database)
pa_database_close(u->database);
2009-01-21 02:49:42 +01:00
pa_xfree(u);
}