2004-08-17 19:47:42 +00:00
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-02-13 15:35:19 +00:00
|
|
|
Copyright 2004-2006 Lennart Poettering
|
|
|
|
|
Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2004-11-14 14:58:54 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
2004-08-17 19:47:42 +00:00
|
|
|
by the Free Software Foundation; either version 2 of the License,
|
|
|
|
|
or (at your option) any later version.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2004-08-17 19:47:42 +00:00
|
|
|
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.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-11-14 14:58:54 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2006-06-19 21:53:48 +00:00
|
|
|
along with PulseAudio; if not, write to the Free Software
|
2004-08-17 19:47:42 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-08-04 16:42:37 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/xmalloc.h>
|
2006-05-17 16:34:18 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulsecore/module.h>
|
|
|
|
|
#include <pulsecore/memchunk.h>
|
|
|
|
|
#include <pulsecore/sound-file.h>
|
|
|
|
|
#include <pulsecore/log.h>
|
2007-10-28 19:13:50 +00:00
|
|
|
#include <pulsecore/macro.h>
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulsecore/core-scache.h>
|
|
|
|
|
#include <pulsecore/core-subscribe.h>
|
2006-02-17 12:10:58 +00:00
|
|
|
|
2004-08-04 16:42:37 +00:00
|
|
|
#include "autoload.h"
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void entry_free(pa_autoload_entry *e) {
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(e);
|
2004-09-16 22:07:41 +00:00
|
|
|
pa_subscription_post(e->core, PA_SUBSCRIPTION_EVENT_AUTOLOAD|PA_SUBSCRIPTION_EVENT_REMOVE, PA_INVALID_INDEX);
|
2004-08-04 16:42:37 +00:00
|
|
|
pa_xfree(e->name);
|
|
|
|
|
pa_xfree(e->module);
|
|
|
|
|
pa_xfree(e->argument);
|
|
|
|
|
pa_xfree(e);
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void entry_remove_and_free(pa_autoload_entry *e) {
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(e);
|
|
|
|
|
pa_assert(e->core);
|
2004-10-27 16:23:23 +00:00
|
|
|
|
|
|
|
|
pa_idxset_remove_by_data(e->core->autoload_idxset, e, NULL);
|
|
|
|
|
pa_hashmap_remove(e->core->autoload_hashmap, e->name);
|
|
|
|
|
entry_free(e);
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static pa_autoload_entry* entry_new(pa_core *c, const char *name) {
|
|
|
|
|
pa_autoload_entry *e = NULL;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
pa_core_assert_ref(c);
|
|
|
|
|
pa_assert(name);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-14 23:08:39 +00:00
|
|
|
if (c->autoload_hashmap && (e = pa_hashmap_get(c->autoload_hashmap, name)))
|
|
|
|
|
return NULL;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
e = pa_xnew(pa_autoload_entry, 1);
|
2004-09-16 22:07:41 +00:00
|
|
|
e->core = c;
|
2004-09-14 23:08:39 +00:00
|
|
|
e->name = pa_xstrdup(name);
|
2004-09-15 14:05:28 +00:00
|
|
|
e->module = e->argument = NULL;
|
2004-09-14 23:08:39 +00:00
|
|
|
e->in_action = 0;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-14 23:08:39 +00:00
|
|
|
if (!c->autoload_hashmap)
|
|
|
|
|
c->autoload_hashmap = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func);
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(c->autoload_hashmap);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-14 23:08:39 +00:00
|
|
|
pa_hashmap_put(c->autoload_hashmap, e->name, e);
|
2004-08-04 16:42:37 +00:00
|
|
|
|
2004-10-27 16:23:23 +00:00
|
|
|
if (!c->autoload_idxset)
|
|
|
|
|
c->autoload_idxset = pa_idxset_new(pa_idxset_trivial_hash_func, pa_idxset_trivial_compare_func);
|
|
|
|
|
pa_idxset_put(c->autoload_idxset, e, &e->index);
|
|
|
|
|
|
|
|
|
|
pa_subscription_post(c, PA_SUBSCRIPTION_EVENT_AUTOLOAD|PA_SUBSCRIPTION_EVENT_NEW, e->index);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-14 23:08:39 +00:00
|
|
|
return e;
|
|
|
|
|
}
|
2004-08-04 16:42:37 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
int pa_autoload_add(pa_core *c, const char*name, pa_namereg_type_t type, const char*module, const char *argument, uint32_t *idx) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_autoload_entry *e = NULL;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
pa_assert(name);
|
|
|
|
|
pa_assert(module);
|
|
|
|
|
pa_assert(type == PA_NAMEREG_SINK || type == PA_NAMEREG_SOURCE);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-14 23:08:39 +00:00
|
|
|
if (!(e = entry_new(c, name)))
|
|
|
|
|
return -1;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-08-04 16:42:37 +00:00
|
|
|
e->module = pa_xstrdup(module);
|
|
|
|
|
e->argument = pa_xstrdup(argument);
|
|
|
|
|
e->type = type;
|
2004-10-27 16:23:23 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if (idx)
|
|
|
|
|
*idx = e->index;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-14 23:08:39 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
int pa_autoload_remove_by_name(pa_core *c, const char*name, pa_namereg_type_t type) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_autoload_entry *e;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
pa_assert(name);
|
|
|
|
|
pa_assert(type == PA_NAMEREG_SINK || type == PA_NAMEREG_SOURCE);
|
2004-08-04 16:42:37 +00:00
|
|
|
|
2004-10-27 16:23:23 +00:00
|
|
|
if (!c->autoload_hashmap || !(e = pa_hashmap_get(c->autoload_hashmap, name)) || e->type != type)
|
2004-08-04 16:42:37 +00:00
|
|
|
return -1;
|
|
|
|
|
|
2004-10-27 16:23:23 +00:00
|
|
|
entry_remove_and_free(e);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
int pa_autoload_remove_by_index(pa_core *c, uint32_t idx) {
|
|
|
|
|
pa_autoload_entry *e;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
pa_assert(idx != PA_IDXSET_INVALID);
|
2004-10-27 16:23:23 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if (!c->autoload_idxset || !(e = pa_idxset_get_by_index(c->autoload_idxset, idx)))
|
2004-10-27 16:23:23 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
entry_remove_and_free(e);
|
2004-08-04 16:42:37 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
void pa_autoload_request(pa_core *c, const char *name, pa_namereg_type_t type) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_autoload_entry *e;
|
|
|
|
|
pa_module *m;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
pa_assert(name);
|
2004-08-04 16:42:37 +00:00
|
|
|
|
|
|
|
|
if (!c->autoload_hashmap || !(e = pa_hashmap_get(c->autoload_hashmap, name)) || (e->type != type))
|
|
|
|
|
return;
|
|
|
|
|
|
2004-09-14 23:08:39 +00:00
|
|
|
if (e->in_action)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
e->in_action = 1;
|
|
|
|
|
|
|
|
|
|
if (type == PA_NAMEREG_SINK || type == PA_NAMEREG_SOURCE) {
|
|
|
|
|
if ((m = pa_module_load(c, e->module, e->argument)))
|
|
|
|
|
m->auto_unload = 1;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-14 23:08:39 +00:00
|
|
|
e->in_action = 0;
|
2004-08-04 16:42:37 +00:00
|
|
|
}
|
|
|
|
|
|
2008-08-09 16:20:29 +02:00
|
|
|
static void free_func(void *p, void *userdata) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_autoload_entry *e = p;
|
2004-10-27 16:23:23 +00:00
|
|
|
pa_idxset_remove_by_data(e->core->autoload_idxset, e, NULL);
|
2004-08-04 16:42:37 +00:00
|
|
|
entry_free(e);
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_autoload_free(pa_core *c) {
|
2007-10-28 19:13:50 +00:00
|
|
|
|
2004-10-27 16:23:23 +00:00
|
|
|
if (c->autoload_hashmap) {
|
|
|
|
|
pa_hashmap_free(c->autoload_hashmap, free_func, NULL);
|
|
|
|
|
c->autoload_hashmap = NULL;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-10-27 16:23:23 +00:00
|
|
|
if (c->autoload_idxset) {
|
|
|
|
|
pa_idxset_free(c->autoload_idxset, NULL, NULL);
|
|
|
|
|
c->autoload_idxset = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
const pa_autoload_entry* pa_autoload_get_by_name(pa_core *c, const char*name, pa_namereg_type_t type) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_autoload_entry *e;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
pa_core_assert_ref(c);
|
|
|
|
|
pa_assert(name);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-10-27 16:23:23 +00:00
|
|
|
if (!c->autoload_hashmap || !(e = pa_hashmap_get(c->autoload_hashmap, name)) || e->type != type)
|
|
|
|
|
return NULL;
|
2004-08-04 16:42:37 +00:00
|
|
|
|
2004-10-27 16:23:23 +00:00
|
|
|
return e;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
const pa_autoload_entry* pa_autoload_get_by_index(pa_core *c, uint32_t idx) {
|
|
|
|
|
pa_autoload_entry *e;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
pa_core_assert_ref(c);
|
|
|
|
|
pa_assert(idx != PA_IDXSET_INVALID);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if (!c->autoload_idxset || !(e = pa_idxset_get_by_index(c->autoload_idxset, idx)))
|
2004-10-27 16:23:23 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
return e;
|
2004-08-04 16:42:37 +00:00
|
|
|
}
|