2813cd54f970ef639475321f51508c2cb213cab6
[platform/upstream/pulseaudio.git] / src / modules / bluetooth / module-bluez4-discover.c
1 /***
2   This file is part of PulseAudio.
3
4   Copyright 2008-2013 João Paulo Rechi Vita
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
8   published by the Free Software Foundation; either version 2.1 of the
9   License, 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
17   License along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #ifdef HAVE_CONFIG_H
21 #include <config.h>
22 #endif
23
24 #include <stdio.h>
25 #include <stdlib.h>
26
27 #include <pulse/xmalloc.h>
28 #include <pulsecore/module.h>
29 #include <pulsecore/core-util.h>
30 #include <pulsecore/modargs.h>
31 #include <pulsecore/macro.h>
32 #include <pulsecore/core-util.h>
33 #include <pulsecore/dbus-shared.h>
34
35 #include "bluez4-util.h"
36
37 PA_MODULE_AUTHOR("João Paulo Rechi Vita");
38 PA_MODULE_DESCRIPTION("Detect available BlueZ 4 Bluetooth audio devices and load BlueZ 4 Bluetooth audio drivers");
39 PA_MODULE_VERSION(PACKAGE_VERSION);
40 PA_MODULE_USAGE("sco_sink=<name of sink> "
41                 "sco_source=<name of source> ");
42 PA_MODULE_LOAD_ONCE(true);
43
44 static const char* const valid_modargs[] = {
45     "sco_sink",
46     "sco_source",
47     "async", /* deprecated */
48     NULL
49 };
50
51 struct userdata {
52     pa_module *module;
53     pa_modargs *modargs;
54     pa_core *core;
55     pa_bluez4_discovery *discovery;
56     pa_hook_slot *slot;
57     pa_hashmap *hashmap;
58 };
59
60 struct pa_module_info {
61     char *path;
62     uint32_t module;
63 };
64
65 static pa_hook_result_t load_module_for_device(pa_bluez4_discovery *y, const pa_bluez4_device *d, struct userdata *u) {
66     struct pa_module_info *mi;
67
68     pa_assert(u);
69     pa_assert(d);
70
71     mi = pa_hashmap_get(u->hashmap, d->path);
72
73     if (pa_bluez4_device_any_audio_connected(d)) {
74
75         if (!mi) {
76             pa_module *m = NULL;
77             char *args;
78
79             /* Oh, awesome, a new device has shown up and been connected! */
80
81             args = pa_sprintf_malloc("address=\"%s\" path=\"%s\"", d->address, d->path);
82
83             if (pa_modargs_get_value(u->modargs, "sco_sink", NULL) &&
84                 pa_modargs_get_value(u->modargs, "sco_source", NULL)) {
85                 char *tmp;
86
87                 tmp = pa_sprintf_malloc("%s sco_sink=\"%s\" sco_source=\"%s\"", args,
88                                         pa_modargs_get_value(u->modargs, "sco_sink", NULL),
89                                         pa_modargs_get_value(u->modargs, "sco_source", NULL));
90                 pa_xfree(args);
91                 args = tmp;
92             }
93
94             pa_log_debug("Loading module-bluez4-device %s", args);
95             pa_module_load(&m, u->module->core, "module-bluez4-device", args);
96             pa_xfree(args);
97
98             if (m) {
99                 mi = pa_xnew(struct pa_module_info, 1);
100                 mi->module = m->index;
101                 mi->path = pa_xstrdup(d->path);
102
103                 pa_hashmap_put(u->hashmap, mi->path, mi);
104             } else
105                 pa_log_debug("Failed to load module for device %s", d->path);
106         }
107
108     } else {
109
110         if (mi) {
111
112             /* Hmm, disconnection? Then the module unloads itself */
113
114             pa_log_debug("Unregistering module for %s", d->path);
115             pa_hashmap_remove(u->hashmap, mi->path);
116             pa_xfree(mi->path);
117             pa_xfree(mi);
118         }
119     }
120
121     return PA_HOOK_OK;
122 }
123
124 int pa__init(pa_module* m) {
125     struct userdata *u;
126     pa_modargs *ma;
127
128     pa_assert(m);
129
130     if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
131         pa_log("Failed to parse module arguments");
132         goto fail;
133     }
134
135     if (pa_modargs_get_value(ma, "async", NULL))
136         pa_log_warn("The 'async' argument is deprecated and does nothing.");
137
138     m->userdata = u = pa_xnew0(struct userdata, 1);
139     u->module = m;
140     u->core = m->core;
141     u->modargs = ma;
142     u->hashmap = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func);
143
144     if (!(u->discovery = pa_bluez4_discovery_get(u->core)))
145         goto fail;
146
147     u->slot = pa_hook_connect(pa_bluez4_discovery_hook(u->discovery, PA_BLUEZ4_HOOK_DEVICE_CONNECTION_CHANGED),
148                               PA_HOOK_NORMAL, (pa_hook_cb_t) load_module_for_device, u);
149
150     return 0;
151
152 fail:
153     pa__done(m);
154
155     return -1;
156 }
157
158 void pa__done(pa_module* m) {
159     struct userdata *u;
160
161     pa_assert(m);
162
163     if (!(u = m->userdata))
164         return;
165
166     if (u->slot)
167         pa_hook_slot_free(u->slot);
168
169     if (u->discovery)
170         pa_bluez4_discovery_unref(u->discovery);
171
172     if (u->hashmap) {
173         struct pa_module_info *mi;
174
175         while ((mi = pa_hashmap_steal_first(u->hashmap))) {
176             pa_xfree(mi->path);
177             pa_xfree(mi);
178         }
179
180         pa_hashmap_free(u->hashmap);
181     }
182
183     if (u->modargs)
184         pa_modargs_free(u->modargs);
185
186     pa_xfree(u);
187 }