2008-07-17 16:29:49 -03:00
|
|
|
/***
|
2009-01-29 16:27:27 +01:00
|
|
|
This file is part of PulseAudio.
|
2008-07-17 16:29:49 -03:00
|
|
|
|
2009-01-29 16:27:27 +01:00
|
|
|
Copyright 2008 Joao Paulo Rechi Vita
|
2008-07-17 16:29:49 -03:00
|
|
|
|
2009-01-29 16:27:27 +01:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU Lesser General Public License as
|
2009-03-03 20:23:02 +00:00
|
|
|
published by the Free Software Foundation; either version 2.1 of the
|
2009-01-29 16:27:27 +01:00
|
|
|
License, or (at your option) any later version.
|
2008-07-17 16:29:49 -03:00
|
|
|
|
2009-01-29 16:27:27 +01:00
|
|
|
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.
|
2008-07-17 16:29:49 -03:00
|
|
|
|
2009-01-29 16:27:27 +01:00
|
|
|
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.
|
2008-07-17 16:29:49 -03:00
|
|
|
***/
|
|
|
|
|
|
2008-07-31 16:17:03 -03:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2008-07-17 16:29:49 -03:00
|
|
|
#include <config.h>
|
2008-07-31 16:17:03 -03:00
|
|
|
#endif
|
2008-07-17 16:29:49 -03:00
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
#include <pulse/xmalloc.h>
|
|
|
|
|
#include <pulsecore/module.h>
|
2009-01-29 16:27:27 +01:00
|
|
|
#include <pulsecore/core-util.h>
|
2008-07-17 16:29:49 -03:00
|
|
|
#include <pulsecore/modargs.h>
|
2008-07-22 10:37:34 -03:00
|
|
|
#include <pulsecore/macro.h>
|
2008-07-23 11:12:57 -03:00
|
|
|
#include <pulsecore/llist.h>
|
2008-09-29 21:45:00 +02:00
|
|
|
#include <pulsecore/core-util.h>
|
2009-01-29 16:27:27 +01:00
|
|
|
#include <modules/dbus-util.h>
|
2008-07-17 16:29:49 -03:00
|
|
|
|
2008-08-29 20:22:14 -03:00
|
|
|
#include "module-bluetooth-discover-symdef.h"
|
2009-01-29 16:27:27 +01:00
|
|
|
#include "bluetooth-util.h"
|
2008-07-17 16:29:49 -03:00
|
|
|
|
|
|
|
|
PA_MODULE_AUTHOR("Joao Paulo Rechi Vita");
|
|
|
|
|
PA_MODULE_DESCRIPTION("Detect available bluetooth audio devices and load bluetooth audio drivers");
|
|
|
|
|
PA_MODULE_VERSION(PACKAGE_VERSION);
|
2009-03-21 01:31:38 +01:00
|
|
|
PA_MODULE_USAGE("async=<Asynchronous initialization?>");
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
#ifdef NOKIA
|
|
|
|
|
"sco_sink=<name of sink> "
|
|
|
|
|
"sco_source=<name of source>"
|
|
|
|
|
#endif
|
|
|
|
|
*/
|
2008-07-17 16:29:49 -03:00
|
|
|
|
2009-01-29 16:27:27 +01:00
|
|
|
static const char* const valid_modargs[] = {
|
2009-03-21 01:31:38 +01:00
|
|
|
#ifdef NOKIA
|
2009-02-03 17:15:41 +02:00
|
|
|
"sco_sink",
|
|
|
|
|
"sco_source",
|
2009-03-21 01:31:38 +01:00
|
|
|
#endif
|
2009-01-29 16:27:27 +01:00
|
|
|
"async",
|
|
|
|
|
NULL
|
2008-07-17 16:29:49 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct userdata {
|
|
|
|
|
pa_module *module;
|
2009-02-12 04:00:40 +01:00
|
|
|
pa_modargs *modargs;
|
2009-01-29 16:27:27 +01:00
|
|
|
pa_core *core;
|
|
|
|
|
pa_bluetooth_discovery *discovery;
|
2009-03-21 01:19:49 +01:00
|
|
|
pa_hook_slot *slot;
|
|
|
|
|
pa_hashmap *hashmap;
|
2008-07-17 16:29:49 -03:00
|
|
|
};
|
|
|
|
|
|
2009-03-24 21:42:33 +01:00
|
|
|
struct module_info {
|
|
|
|
|
char *path;
|
|
|
|
|
uint32_t module;
|
|
|
|
|
};
|
|
|
|
|
|
2009-03-21 01:19:49 +01:00
|
|
|
static pa_hook_result_t load_module_for_device(pa_bluetooth_discovery *y, const pa_bluetooth_device *d, struct userdata *u) {
|
2009-03-24 21:42:33 +01:00
|
|
|
struct module_info *mi;
|
2009-03-21 01:19:49 +01:00
|
|
|
|
2008-10-01 01:16:43 +02:00
|
|
|
pa_assert(u);
|
|
|
|
|
pa_assert(d);
|
|
|
|
|
|
2009-03-24 21:42:33 +01:00
|
|
|
mi = pa_hashmap_get(u->hashmap, d->path);
|
2009-03-21 01:19:49 +01:00
|
|
|
|
|
|
|
|
if (!d->dead &&
|
2009-01-29 16:27:27 +01:00
|
|
|
d->device_connected > 0 &&
|
|
|
|
|
(d->audio_sink_connected > 0 || d->headset_connected > 0)) {
|
2008-10-01 01:16:43 +02:00
|
|
|
|
2009-03-24 21:42:33 +01:00
|
|
|
if (!mi) {
|
2009-01-29 16:27:27 +01:00
|
|
|
pa_module *m = NULL;
|
|
|
|
|
char *args;
|
2008-10-01 01:16:43 +02:00
|
|
|
|
2009-01-29 16:27:27 +01:00
|
|
|
/* Oh, awesome, a new device has shown up and been connected! */
|
2008-10-01 01:16:43 +02:00
|
|
|
|
2009-03-19 14:15:38 +02:00
|
|
|
args = pa_sprintf_malloc("address=\"%s\" path=\"%s\" profile=\"%s\"", d->address, d->path, d->headset_connected ? "hsp" : "a2dp");
|
2009-02-03 17:15:41 +02:00
|
|
|
|
2009-03-21 01:31:38 +01:00
|
|
|
#ifdef NOKIA
|
2009-02-12 04:00:40 +01:00
|
|
|
if (pa_modargs_get_value(u->modargs, "sco_sink", NULL) &&
|
|
|
|
|
pa_modargs_get_value(u->modargs, "sco_source", NULL)) {
|
2009-02-03 17:15:41 +02:00
|
|
|
char *tmp;
|
|
|
|
|
|
2009-02-12 04:00:40 +01:00
|
|
|
tmp = pa_sprintf_malloc("%s sco_sink=\"%s\" sco_source=\"%s\"", args,
|
|
|
|
|
pa_modargs_get_value(u->modargs, "sco_sink", NULL),
|
|
|
|
|
pa_modargs_get_value(u->modargs, "sco_source", NULL));
|
2009-02-03 17:15:41 +02:00
|
|
|
pa_xfree(args);
|
|
|
|
|
args = tmp;
|
|
|
|
|
}
|
2009-03-21 01:31:38 +01:00
|
|
|
#endif
|
2009-02-03 17:15:41 +02:00
|
|
|
|
2009-01-29 16:27:27 +01:00
|
|
|
pa_log_debug("Loading module-bluetooth-device %s", args);
|
2009-02-02 00:25:02 +01:00
|
|
|
m = pa_module_load(u->module->core, "module-bluetooth-device", args);
|
2009-01-29 16:27:27 +01:00
|
|
|
pa_xfree(args);
|
2008-10-01 01:16:43 +02:00
|
|
|
|
2009-03-24 21:42:33 +01:00
|
|
|
if (m) {
|
|
|
|
|
mi = pa_xnew(struct module_info, 1);
|
|
|
|
|
mi->module = m->index;
|
|
|
|
|
mi->path = pa_xstrdup(d->path);
|
|
|
|
|
|
|
|
|
|
pa_hashmap_put(u->hashmap, mi->path, mi);
|
|
|
|
|
} else
|
2009-01-29 16:27:27 +01:00
|
|
|
pa_log_debug("Failed to load module for device %s", d->path);
|
2008-10-01 01:16:43 +02:00
|
|
|
}
|
|
|
|
|
|
2009-01-29 16:27:27 +01:00
|
|
|
} else {
|
2008-10-01 01:16:43 +02:00
|
|
|
|
2009-03-24 21:42:33 +01:00
|
|
|
if (mi) {
|
2008-10-01 01:16:43 +02:00
|
|
|
|
2009-01-29 16:27:27 +01:00
|
|
|
/* Hmm, disconnection? Then let's unload our module */
|
2008-10-01 01:16:43 +02:00
|
|
|
|
2009-01-29 16:27:27 +01:00
|
|
|
pa_log_debug("Unloading module for %s", d->path);
|
2009-03-24 21:42:33 +01:00
|
|
|
pa_module_unload_request_by_index(u->core, mi->module, TRUE);
|
2008-10-01 01:16:43 +02:00
|
|
|
|
2009-03-24 21:42:33 +01:00
|
|
|
pa_hashmap_remove(u->hashmap, mi->path);
|
|
|
|
|
pa_xfree(mi->path);
|
|
|
|
|
pa_xfree(mi);
|
2009-03-21 01:19:49 +01:00
|
|
|
}
|
2009-01-19 19:58:41 +02:00
|
|
|
}
|
|
|
|
|
|
2009-03-21 01:19:49 +01:00
|
|
|
return PA_HOOK_OK;
|
2009-01-19 19:58:41 +02:00
|
|
|
}
|
|
|
|
|
|
2009-01-29 16:27:27 +01:00
|
|
|
int pa__init(pa_module* m) {
|
2009-01-19 19:58:41 +02:00
|
|
|
struct userdata *u;
|
2009-02-12 04:00:40 +01:00
|
|
|
pa_modargs *ma = NULL;
|
2009-01-29 16:27:27 +01:00
|
|
|
pa_bool_t async = FALSE;
|
2009-01-19 19:58:41 +02:00
|
|
|
|
2009-01-29 16:27:27 +01:00
|
|
|
pa_assert(m);
|
2009-01-19 19:58:41 +02:00
|
|
|
|
2009-01-29 16:27:27 +01:00
|
|
|
if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
|
|
|
|
|
pa_log("Failed to parse module arguments");
|
|
|
|
|
goto fail;
|
2009-01-19 19:58:41 +02:00
|
|
|
}
|
|
|
|
|
|
2009-01-29 16:27:27 +01:00
|
|
|
if (pa_modargs_get_value_boolean(ma, "async", &async) < 0) {
|
2009-02-02 11:06:31 +02:00
|
|
|
pa_log("Failed to parse async argument.");
|
2009-01-29 16:27:27 +01:00
|
|
|
goto fail;
|
2009-01-19 19:58:41 +02:00
|
|
|
}
|
|
|
|
|
|
2009-01-29 16:27:27 +01:00
|
|
|
m->userdata = u = pa_xnew0(struct userdata, 1);
|
|
|
|
|
u->module = m;
|
|
|
|
|
u->core = m->core;
|
2009-02-12 04:00:40 +01:00
|
|
|
u->modargs = ma;
|
|
|
|
|
ma = NULL;
|
2009-03-21 01:19:49 +01:00
|
|
|
u->hashmap = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func);
|
2009-01-19 19:58:41 +02:00
|
|
|
|
2009-03-21 01:19:49 +01:00
|
|
|
if (!(u->discovery = pa_bluetooth_discovery_get(u->core)))
|
2009-01-29 16:27:27 +01:00
|
|
|
goto fail;
|
2009-01-19 19:58:41 +02:00
|
|
|
|
2009-03-21 01:19:49 +01:00
|
|
|
u->slot = pa_hook_connect(pa_bluetooth_discovery_hook(u->discovery), PA_HOOK_NORMAL, (pa_hook_cb_t) load_module_for_device, u);
|
2009-01-19 19:58:41 +02:00
|
|
|
|
2009-01-29 16:27:27 +01:00
|
|
|
if (!async)
|
|
|
|
|
pa_bluetooth_discovery_sync(u->discovery);
|
2009-01-19 19:58:41 +02:00
|
|
|
|
2009-01-29 16:27:27 +01:00
|
|
|
return 0;
|
2009-01-19 19:58:41 +02:00
|
|
|
|
2009-01-29 16:27:27 +01:00
|
|
|
fail:
|
|
|
|
|
pa__done(m);
|
2009-01-19 19:58:41 +02:00
|
|
|
|
2009-02-12 04:00:40 +01:00
|
|
|
if (ma)
|
|
|
|
|
pa_modargs_free(ma);
|
|
|
|
|
|
2009-01-29 16:27:27 +01:00
|
|
|
return -1;
|
2009-01-19 19:58:41 +02:00
|
|
|
}
|
|
|
|
|
|
2008-07-17 16:29:49 -03:00
|
|
|
void pa__done(pa_module* m) {
|
|
|
|
|
struct userdata *u;
|
|
|
|
|
|
|
|
|
|
pa_assert(m);
|
|
|
|
|
|
|
|
|
|
if (!(u = m->userdata))
|
|
|
|
|
return;
|
|
|
|
|
|
2009-03-21 01:19:49 +01:00
|
|
|
if (u->slot)
|
|
|
|
|
pa_hook_slot_free(u->slot);
|
|
|
|
|
|
2009-01-29 16:27:27 +01:00
|
|
|
if (u->discovery)
|
2009-03-21 01:19:49 +01:00
|
|
|
pa_bluetooth_discovery_unref(u->discovery);
|
2008-10-13 19:52:02 +02:00
|
|
|
|
2009-03-24 21:42:33 +01:00
|
|
|
if (u->hashmap) {
|
|
|
|
|
struct module_info *mi;
|
|
|
|
|
|
|
|
|
|
while ((mi = pa_hashmap_steal_first(u->hashmap))) {
|
|
|
|
|
pa_xfree(mi->path);
|
|
|
|
|
pa_xfree(mi);
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-21 01:19:49 +01:00
|
|
|
pa_hashmap_free(u->hashmap, NULL, NULL);
|
2009-03-24 21:42:33 +01:00
|
|
|
}
|
2008-09-29 21:45:00 +02:00
|
|
|
|
2009-02-12 04:00:40 +01:00
|
|
|
if (u->modargs)
|
|
|
|
|
pa_modargs_free(u->modargs);
|
2009-02-03 17:15:41 +02:00
|
|
|
|
2008-07-17 16:29:49 -03:00
|
|
|
pa_xfree(u);
|
|
|
|
|
}
|