]> code.delx.au - pulseaudio/blob - src/modules/bluetooth/bluetooth-util.c
get rid of old 'Connected' property parsing and make sure we don't execute two case...
[pulseaudio] / src / modules / bluetooth / bluetooth-util.c
1 /***
2 This file is part of PulseAudio.
3
4 Copyright 2008 Joao 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, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <pulsecore/core-util.h>
27 #include <pulsecore/shared.h>
28 #include <pulsecore/dbus-shared.h>
29
30 #include "bluetooth-util.h"
31
32 struct pa_bluetooth_discovery {
33 PA_REFCNT_DECLARE;
34
35 pa_core *core;
36 pa_dbus_connection *connection;
37 PA_LLIST_HEAD(pa_dbus_pending, pending);
38 pa_hashmap *devices;
39 pa_hook hook;
40 };
41
42 static void get_properties_reply(DBusPendingCall *pending, void *userdata);
43 static pa_dbus_pending* send_and_add_to_pending(pa_bluetooth_discovery *y, pa_bluetooth_device *d, DBusMessage *m, DBusPendingCallNotifyFunction func);
44
45 static pa_bt_audio_state_t pa_bt_audio_state_from_string(const char* value) {
46 pa_assert(value);
47
48 if (pa_streq(value, "disconnected"))
49 return PA_BT_AUDIO_STATE_DISCONNECTED;
50 else if (pa_streq(value, "connecting"))
51 return PA_BT_AUDIO_STATE_CONNECTING;
52 else if (pa_streq(value, "connected"))
53 return PA_BT_AUDIO_STATE_CONNECTED;
54 else if (pa_streq(value, "playing"))
55 return PA_BT_AUDIO_STATE_PLAYING;
56
57 return PA_BT_AUDIO_STATE_INVALID;
58 }
59
60 static pa_bluetooth_uuid *uuid_new(const char *uuid) {
61 pa_bluetooth_uuid *u;
62
63 u = pa_xnew(pa_bluetooth_uuid, 1);
64 u->uuid = pa_xstrdup(uuid);
65 PA_LLIST_INIT(pa_bluetooth_uuid, u);
66
67 return u;
68 }
69
70 static void uuid_free(pa_bluetooth_uuid *u) {
71 pa_assert(u);
72
73 pa_xfree(u->uuid);
74 pa_xfree(u);
75 }
76
77 static pa_bluetooth_device* device_new(const char *path) {
78 pa_bluetooth_device *d;
79
80 d = pa_xnew(pa_bluetooth_device, 1);
81
82 d->dead = FALSE;
83
84 d->device_info_valid = 0;
85
86 d->name = NULL;
87 d->path = pa_xstrdup(path);
88 d->paired = -1;
89 d->alias = NULL;
90 d->device_connected = -1;
91 PA_LLIST_HEAD_INIT(pa_bluetooth_uuid, d->uuids);
92 d->address = NULL;
93 d->class = -1;
94 d->trusted = -1;
95
96 d->audio_state = PA_BT_AUDIO_STATE_INVALID;
97 d->audio_sink_state = PA_BT_AUDIO_STATE_INVALID;
98 d->headset_state = PA_BT_AUDIO_STATE_INVALID;
99
100 return d;
101 }
102
103 static void device_free(pa_bluetooth_device *d) {
104 pa_bluetooth_uuid *u;
105
106 pa_assert(d);
107
108 while ((u = d->uuids)) {
109 PA_LLIST_REMOVE(pa_bluetooth_uuid, d->uuids, u);
110 uuid_free(u);
111 }
112
113 pa_xfree(d->name);
114 pa_xfree(d->path);
115 pa_xfree(d->alias);
116 pa_xfree(d->address);
117 pa_xfree(d);
118 }
119
120 static pa_bool_t device_is_audio(pa_bluetooth_device *d) {
121 pa_assert(d);
122
123 return
124 d->device_info_valid &&
125 (d->audio_state != PA_BT_AUDIO_STATE_INVALID ||
126 d->audio_sink_state != PA_BT_AUDIO_STATE_INVALID ||
127 d->headset_state != PA_BT_AUDIO_STATE_INVALID);
128 }
129
130 static int parse_device_property(pa_bluetooth_discovery *y, pa_bluetooth_device *d, DBusMessageIter *i) {
131 const char *key;
132 DBusMessageIter variant_i;
133
134 pa_assert(y);
135 pa_assert(d);
136 pa_assert(i);
137
138 if (dbus_message_iter_get_arg_type(i) != DBUS_TYPE_STRING) {
139 pa_log("Property name not a string.");
140 return -1;
141 }
142
143 dbus_message_iter_get_basic(i, &key);
144
145 if (!dbus_message_iter_next(i)) {
146 pa_log("Property value missing");
147 return -1;
148 }
149
150 if (dbus_message_iter_get_arg_type(i) != DBUS_TYPE_VARIANT) {
151 pa_log("Property value not a variant.");
152 return -1;
153 }
154
155 dbus_message_iter_recurse(i, &variant_i);
156
157 /* pa_log_debug("Parsing property org.bluez.Device.%s", key); */
158
159 switch (dbus_message_iter_get_arg_type(&variant_i)) {
160
161 case DBUS_TYPE_STRING: {
162
163 const char *value;
164 dbus_message_iter_get_basic(&variant_i, &value);
165
166 if (pa_streq(key, "Name")) {
167 pa_xfree(d->name);
168 d->name = pa_xstrdup(value);
169 } else if (pa_streq(key, "Alias")) {
170 pa_xfree(d->alias);
171 d->alias = pa_xstrdup(value);
172 } else if (pa_streq(key, "Address")) {
173 pa_xfree(d->address);
174 d->address = pa_xstrdup(value);
175 }
176
177 /* pa_log_debug("Value %s", value); */
178
179 break;
180 }
181
182 case DBUS_TYPE_BOOLEAN: {
183
184 dbus_bool_t value;
185 dbus_message_iter_get_basic(&variant_i, &value);
186
187 if (pa_streq(key, "Paired"))
188 d->paired = !!value;
189 else if (pa_streq(key, "Connected"))
190 d->device_connected = !!value;
191 else if (pa_streq(key, "Trusted"))
192 d->trusted = !!value;
193
194 /* pa_log_debug("Value %s", pa_yes_no(value)); */
195
196 break;
197 }
198
199 case DBUS_TYPE_UINT32: {
200
201 uint32_t value;
202 dbus_message_iter_get_basic(&variant_i, &value);
203
204 if (pa_streq(key, "Class"))
205 d->class = (int) value;
206
207 /* pa_log_debug("Value %u", (unsigned) value); */
208
209 break;
210 }
211
212 case DBUS_TYPE_ARRAY: {
213
214 DBusMessageIter ai;
215 dbus_message_iter_recurse(&variant_i, &ai);
216
217 if (dbus_message_iter_get_arg_type(&ai) == DBUS_TYPE_STRING &&
218 pa_streq(key, "UUIDs")) {
219
220 while (dbus_message_iter_get_arg_type(&ai) != DBUS_TYPE_INVALID) {
221 pa_bluetooth_uuid *node;
222 const char *value;
223 DBusMessage *m;
224
225 dbus_message_iter_get_basic(&ai, &value);
226 node = uuid_new(value);
227 PA_LLIST_PREPEND(pa_bluetooth_uuid, d->uuids, node);
228
229 /* this might eventually be racy if .Audio is not there yet, but the State change will come anyway later, so this call is for cold-detection mostly */
230 pa_assert_se(m = dbus_message_new_method_call("org.bluez", d->path, "org.bluez.Audio", "GetProperties"));
231 send_and_add_to_pending(y, d, m, get_properties_reply);
232
233 /* Vudentz said the interfaces are here when the UUIDs are announced */
234 if (strcasecmp(HSP_HS_UUID, value) == 0 || strcasecmp(HFP_HS_UUID, value) == 0) {
235 pa_assert_se(m = dbus_message_new_method_call("org.bluez", d->path, "org.bluez.Headset", "GetProperties"));
236 send_and_add_to_pending(y, d, m, get_properties_reply);
237 } else if (strcasecmp(A2DP_SINK_UUID, value) == 0) {
238 pa_assert_se(m = dbus_message_new_method_call("org.bluez", d->path, "org.bluez.AudioSink", "GetProperties"));
239 send_and_add_to_pending(y, d, m, get_properties_reply);
240 }
241
242 if (!dbus_message_iter_next(&ai))
243 break;
244 }
245 }
246
247 break;
248 }
249 }
250
251 return 0;
252 }
253
254 static int parse_audio_property(pa_bluetooth_discovery *u, int *state, DBusMessageIter *i) {
255 const char *key;
256 DBusMessageIter variant_i;
257
258 pa_assert(u);
259 pa_assert(state);
260 pa_assert(i);
261
262 if (dbus_message_iter_get_arg_type(i) != DBUS_TYPE_STRING) {
263 pa_log("Property name not a string.");
264 return -1;
265 }
266
267 dbus_message_iter_get_basic(i, &key);
268
269 if (!dbus_message_iter_next(i)) {
270 pa_log("Property value missing");
271 return -1;
272 }
273
274 if (dbus_message_iter_get_arg_type(i) != DBUS_TYPE_VARIANT) {
275 pa_log("Property value not a variant.");
276 return -1;
277 }
278
279 dbus_message_iter_recurse(i, &variant_i);
280
281 /* pa_log_debug("Parsing property org.bluez.{Audio|AudioSink|Headset}.%s", key); */
282
283 switch (dbus_message_iter_get_arg_type(&variant_i)) {
284
285 case DBUS_TYPE_STRING: {
286
287 const char *value;
288 dbus_message_iter_get_basic(&variant_i, &value);
289
290 if (pa_streq(key, "State"))
291 *state = pa_bt_audio_state_from_string(value);
292 /* pa_log_debug("Value %s", value); */
293
294 break;
295 }
296 }
297
298 return 0;
299 }
300
301 static void run_callback(pa_bluetooth_discovery *y, pa_bluetooth_device *d, pa_bool_t dead) {
302 pa_assert(y);
303 pa_assert(d);
304
305 if (!device_is_audio(d))
306 return;
307
308 d->dead = dead;
309 pa_hook_fire(&y->hook, d);
310 }
311
312 static void get_properties_reply(DBusPendingCall *pending, void *userdata) {
313 DBusMessage *r;
314 DBusMessageIter arg_i, element_i;
315 pa_dbus_pending *p;
316 pa_bluetooth_device *d;
317 pa_bluetooth_discovery *y;
318 int valid;
319
320 pa_assert_se(p = userdata);
321 pa_assert_se(y = p->context_data);
322 pa_assert_se(r = dbus_pending_call_steal_reply(pending));
323
324 /* pa_log_debug("Got %s.GetProperties response for %s", */
325 /* dbus_message_get_interface(p->message), */
326 /* dbus_message_get_path(p->message)); */
327
328 d = p->call_data;
329
330 valid = dbus_message_get_type(r) == DBUS_MESSAGE_TYPE_ERROR ? -1 : 1;
331
332 if (dbus_message_is_method_call(p->message, "org.bluez.Device", "GetProperties"))
333 d->device_info_valid = valid;
334
335 if (dbus_message_get_type(r) == DBUS_MESSAGE_TYPE_ERROR) {
336
337 if (!dbus_message_is_error(r, DBUS_ERROR_UNKNOWN_METHOD))
338 pa_log("Error from GetProperties reply: %s", dbus_message_get_error_name(r));
339
340 goto finish;
341 }
342
343 if (!dbus_message_iter_init(r, &arg_i)) {
344 pa_log("GetProperties reply has no arguments.");
345 goto finish;
346 }
347
348 if (dbus_message_iter_get_arg_type(&arg_i) != DBUS_TYPE_ARRAY) {
349 pa_log("GetProperties argument is not an array.");
350 goto finish;
351 }
352
353 dbus_message_iter_recurse(&arg_i, &element_i);
354 while (dbus_message_iter_get_arg_type(&element_i) != DBUS_TYPE_INVALID) {
355
356 if (dbus_message_iter_get_arg_type(&element_i) == DBUS_TYPE_DICT_ENTRY) {
357 DBusMessageIter dict_i;
358
359 dbus_message_iter_recurse(&element_i, &dict_i);
360
361 if (dbus_message_has_interface(p->message, "org.bluez.Device")) {
362 if (parse_device_property(y, d, &dict_i) < 0)
363 goto finish;
364
365 } else if (dbus_message_has_interface(p->message, "org.bluez.Audio")) {
366 if (parse_audio_property(y, &d->audio_state, &dict_i) < 0)
367 goto finish;
368
369 } else if (dbus_message_has_interface(p->message, "org.bluez.Headset")) {
370 if (parse_audio_property(y, &d->headset_state, &dict_i) < 0)
371 goto finish;
372
373 } else if (dbus_message_has_interface(p->message, "org.bluez.AudioSink")) {
374 if (parse_audio_property(y, &d->audio_sink_state, &dict_i) < 0)
375 goto finish;
376 }
377 }
378
379 if (!dbus_message_iter_next(&element_i))
380 break;
381 }
382
383 finish:
384 run_callback(y, d, FALSE);
385
386 dbus_message_unref(r);
387
388 PA_LLIST_REMOVE(pa_dbus_pending, y->pending, p);
389 pa_dbus_pending_free(p);
390 }
391
392 static pa_dbus_pending* send_and_add_to_pending(pa_bluetooth_discovery *y, pa_bluetooth_device *d, DBusMessage *m, DBusPendingCallNotifyFunction func) {
393 pa_dbus_pending *p;
394 DBusPendingCall *call;
395
396 pa_assert(y);
397 pa_assert(m);
398
399 pa_assert_se(dbus_connection_send_with_reply(pa_dbus_connection_get(y->connection), m, &call, -1));
400
401 p = pa_dbus_pending_new(pa_dbus_connection_get(y->connection), m, call, y, d);
402 PA_LLIST_PREPEND(pa_dbus_pending, y->pending, p);
403 dbus_pending_call_set_notify(call, func, p, NULL);
404
405 return p;
406 }
407
408 static void found_device(pa_bluetooth_discovery *y, const char* path) {
409 DBusMessage *m;
410 pa_bluetooth_device *d;
411
412 pa_assert(y);
413 pa_assert(path);
414
415 d = device_new(path);
416
417 pa_hashmap_put(y->devices, d->path, d);
418
419 pa_assert_se(m = dbus_message_new_method_call("org.bluez", path, "org.bluez.Device", "GetProperties"));
420 send_and_add_to_pending(y, d, m, get_properties_reply);
421 }
422
423 static void list_devices_reply(DBusPendingCall *pending, void *userdata) {
424 DBusError e;
425 DBusMessage *r;
426 char **paths = NULL;
427 int num = -1;
428 pa_dbus_pending *p;
429 pa_bluetooth_discovery *y;
430
431 pa_assert(pending);
432
433 dbus_error_init(&e);
434
435 pa_assert_se(p = userdata);
436 pa_assert_se(y = p->context_data);
437 pa_assert_se(r = dbus_pending_call_steal_reply(pending));
438
439 if (dbus_message_get_type(r) == DBUS_MESSAGE_TYPE_ERROR) {
440 pa_log("Error from ListDevices reply: %s", dbus_message_get_error_name(r));
441 goto end;
442 }
443
444 if (!dbus_message_get_args(r, &e, DBUS_TYPE_ARRAY, DBUS_TYPE_OBJECT_PATH, &paths, &num, DBUS_TYPE_INVALID)) {
445 pa_log("org.bluez.Adapter.ListDevices returned an error: '%s'\n", e.message);
446 dbus_error_free(&e);
447 } else {
448 int i;
449
450 for (i = 0; i < num; ++i)
451 found_device(y, paths[i]);
452 }
453
454 end:
455 if (paths)
456 dbus_free_string_array (paths);
457
458 dbus_message_unref(r);
459
460 PA_LLIST_REMOVE(pa_dbus_pending, y->pending, p);
461 pa_dbus_pending_free(p);
462 }
463
464 static void found_adapter(pa_bluetooth_discovery *y, const char *path) {
465 DBusMessage *m;
466
467 pa_assert_se(m = dbus_message_new_method_call("org.bluez", path, "org.bluez.Adapter", "ListDevices"));
468 send_and_add_to_pending(y, NULL, m, list_devices_reply);
469 }
470
471 static void list_adapters_reply(DBusPendingCall *pending, void *userdata) {
472 DBusError e;
473 DBusMessage *r;
474 char **paths = NULL;
475 int num = -1;
476 pa_dbus_pending *p;
477 pa_bluetooth_discovery *y;
478
479 pa_assert(pending);
480
481 dbus_error_init(&e);
482
483 pa_assert_se(p = userdata);
484 pa_assert_se(y = p->context_data);
485 pa_assert_se(r = dbus_pending_call_steal_reply(pending));
486
487 if (dbus_message_get_type(r) == DBUS_MESSAGE_TYPE_ERROR) {
488 pa_log("Error from ListAdapters reply: %s", dbus_message_get_error_name(r));
489 goto end;
490 }
491
492 if (!dbus_message_get_args(r, &e, DBUS_TYPE_ARRAY, DBUS_TYPE_OBJECT_PATH, &paths, &num, DBUS_TYPE_INVALID)) {
493 pa_log("org.bluez.Manager.ListAdapters returned an error: %s", e.message);
494 dbus_error_free(&e);
495 } else {
496 int i;
497
498 for (i = 0; i < num; ++i)
499 found_adapter(y, paths[i]);
500 }
501
502 end:
503 if (paths)
504 dbus_free_string_array (paths);
505
506 dbus_message_unref(r);
507
508 PA_LLIST_REMOVE(pa_dbus_pending, y->pending, p);
509 pa_dbus_pending_free(p);
510 }
511
512 static void list_adapters(pa_bluetooth_discovery *y) {
513 DBusMessage *m;
514 pa_assert(y);
515
516 pa_assert_se(m = dbus_message_new_method_call("org.bluez", "/", "org.bluez.Manager", "ListAdapters"));
517 send_and_add_to_pending(y, NULL, m, list_adapters_reply);
518 }
519
520 static DBusHandlerResult filter_cb(DBusConnection *bus, DBusMessage *m, void *userdata) {
521 DBusError err;
522 pa_bluetooth_discovery *y;
523
524 pa_assert(bus);
525 pa_assert(m);
526
527 pa_assert_se(y = userdata);
528
529 dbus_error_init(&err);
530
531 pa_log_debug("dbus: interface=%s, path=%s, member=%s\n",
532 dbus_message_get_interface(m),
533 dbus_message_get_path(m),
534 dbus_message_get_member(m));
535
536 if (dbus_message_is_signal(m, "org.bluez.Adapter", "DeviceRemoved")) {
537 const char *path;
538 pa_bluetooth_device *d;
539
540 if (!dbus_message_get_args(m, &err, DBUS_TYPE_OBJECT_PATH, &path, DBUS_TYPE_INVALID)) {
541 pa_log("Failed to parse org.bluez.Adapter.DeviceRemoved: %s", err.message);
542 goto fail;
543 }
544
545 pa_log_debug("Device %s removed", path);
546
547 if ((d = pa_hashmap_remove(y->devices, path))) {
548 run_callback(y, d, TRUE);
549 device_free(d);
550 }
551
552 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
553
554 } else if (dbus_message_is_signal(m, "org.bluez.Adapter", "DeviceCreated")) {
555 const char *path;
556
557 if (!dbus_message_get_args(m, &err, DBUS_TYPE_OBJECT_PATH, &path, DBUS_TYPE_INVALID)) {
558 pa_log("Failed to parse org.bluez.Adapter.DeviceCreated: %s", err.message);
559 goto fail;
560 }
561
562 pa_log_debug("Device %s created", path);
563
564 found_device(y, path);
565 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
566
567 } else if (dbus_message_is_signal(m, "org.bluez.Manager", "AdapterAdded")) {
568 const char *path;
569
570 if (!dbus_message_get_args(m, &err, DBUS_TYPE_OBJECT_PATH, &path, DBUS_TYPE_INVALID)) {
571 pa_log("Failed to parse org.bluez.Manager.AdapterAdded: %s", err.message);
572 goto fail;
573 }
574
575 pa_log_debug("Adapter %s created", path);
576
577 found_adapter(y, path);
578 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
579
580 } else if (dbus_message_is_signal(m, "org.bluez.Audio", "PropertyChanged") ||
581 dbus_message_is_signal(m, "org.bluez.Headset", "PropertyChanged") ||
582 dbus_message_is_signal(m, "org.bluez.AudioSink", "PropertyChanged") ||
583 dbus_message_is_signal(m, "org.bluez.Device", "PropertyChanged")) {
584
585 pa_bluetooth_device *d;
586
587 if ((d = pa_hashmap_get(y->devices, dbus_message_get_path(m)))) {
588 DBusMessageIter arg_i;
589
590 if (!dbus_message_iter_init(m, &arg_i)) {
591 pa_log("Failed to parse PropertyChanged: %s", err.message);
592 goto fail;
593 }
594
595 if (dbus_message_has_interface(m, "org.bluez.Device")) {
596 if (parse_device_property(y, d, &arg_i) < 0)
597 goto fail;
598
599 } else if (dbus_message_has_interface(m, "org.bluez.Audio")) {
600 if (parse_audio_property(y, &d->audio_state, &arg_i) < 0)
601 goto fail;
602
603 } else if (dbus_message_has_interface(m, "org.bluez.Headset")) {
604 if (parse_audio_property(y, &d->headset_state, &arg_i) < 0)
605 goto fail;
606
607 } else if (dbus_message_has_interface(m, "org.bluez.AudioSink")) {
608 if (parse_audio_property(y, &d->audio_sink_state, &arg_i) < 0)
609 goto fail;
610 }
611
612 run_callback(y, d, FALSE);
613 }
614
615 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
616 }
617
618 fail:
619 dbus_error_free(&err);
620
621 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
622 }
623
624 const pa_bluetooth_device* pa_bluetooth_discovery_get_by_address(pa_bluetooth_discovery *y, const char* address) {
625 pa_bluetooth_device *d;
626 void *state = NULL;
627
628 pa_assert(y);
629 pa_assert(PA_REFCNT_VALUE(y) > 0);
630 pa_assert(address);
631
632 if (!pa_hook_is_firing(&y->hook))
633 pa_bluetooth_discovery_sync(y);
634
635 while ((d = pa_hashmap_iterate(y->devices, &state, NULL)))
636 if (pa_streq(d->address, address))
637 return d;
638
639 return NULL;
640 }
641
642 const pa_bluetooth_device* pa_bluetooth_discovery_get_by_path(pa_bluetooth_discovery *y, const char* path) {
643 pa_assert(y);
644 pa_assert(PA_REFCNT_VALUE(y) > 0);
645 pa_assert(path);
646
647 if (!pa_hook_is_firing(&y->hook))
648 pa_bluetooth_discovery_sync(y);
649
650 return pa_hashmap_get(y->devices, path);
651 }
652
653 static int setup_dbus(pa_bluetooth_discovery *y) {
654 DBusError err;
655
656 dbus_error_init(&err);
657
658 y->connection = pa_dbus_bus_get(y->core, DBUS_BUS_SYSTEM, &err);
659
660 if (dbus_error_is_set(&err) || !y->connection) {
661 pa_log("Failed to get D-Bus connection: %s", err.message);
662 dbus_error_free(&err);
663 return -1;
664 }
665
666 return 0;
667 }
668
669 pa_bluetooth_discovery* pa_bluetooth_discovery_get(pa_core *c) {
670 DBusError err;
671 pa_bluetooth_discovery *y;
672
673 pa_assert(c);
674
675 dbus_error_init(&err);
676
677 if ((y = pa_shared_get(c, "bluetooth-discovery")))
678 return pa_bluetooth_discovery_ref(y);
679
680 y = pa_xnew0(pa_bluetooth_discovery, 1);
681 PA_REFCNT_INIT(y);
682 y->core = c;
683 y->devices = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func);
684 PA_LLIST_HEAD_INIT(pa_dbus_pending, y->pending);
685 pa_hook_init(&y->hook, y);
686 pa_shared_set(c, "bluetooth-discovery", y);
687
688 if (setup_dbus(y) < 0)
689 goto fail;
690
691 /* dynamic detection of bluetooth audio devices */
692 if (!dbus_connection_add_filter(pa_dbus_connection_get(y->connection), filter_cb, y, NULL)) {
693 pa_log_error("Failed to add filter function");
694 goto fail;
695 }
696
697 if (pa_dbus_add_matches(
698 pa_dbus_connection_get(y->connection), &err,
699 "type='signal',sender='org.bluez',interface='org.bluez.Manager',member='AdapterAdded'",
700 "type='signal',sender='org.bluez',interface='org.bluez.Adapter',member='DeviceRemoved'",
701 "type='signal',sender='org.bluez',interface='org.bluez.Adapter',member='DeviceCreated'",
702 "type='signal',sender='org.bluez',interface='org.bluez.Device',member='PropertyChanged'",
703 "type='signal',sender='org.bluez',interface='org.bluez.Audio',member='PropertyChanged'",
704 "type='signal',sender='org.bluez',interface='org.bluez.Headset',member='PropertyChanged'",
705 "type='signal',sender='org.bluez',interface='org.bluez.AudioSink',member='PropertyChanged'", NULL) < 0) {
706 pa_log("Failed to add D-Bus matches: %s", err.message);
707 goto fail;
708 }
709
710 list_adapters(y);
711
712 return y;
713
714 fail:
715
716 if (y)
717 pa_bluetooth_discovery_unref(y);
718
719 dbus_error_free(&err);
720
721 return NULL;
722 }
723
724 pa_bluetooth_discovery* pa_bluetooth_discovery_ref(pa_bluetooth_discovery *y) {
725 pa_assert(y);
726 pa_assert(PA_REFCNT_VALUE(y) > 0);
727
728 PA_REFCNT_INC(y);
729
730 return y;
731 }
732
733 void pa_bluetooth_discovery_unref(pa_bluetooth_discovery *y) {
734 pa_bluetooth_device *d;
735
736 pa_assert(y);
737 pa_assert(PA_REFCNT_VALUE(y) > 0);
738
739 if (PA_REFCNT_DEC(y) > 0)
740 return;
741
742 pa_dbus_free_pending_list(&y->pending);
743
744 if (y->devices) {
745 while ((d = pa_hashmap_steal_first(y->devices))) {
746 run_callback(y, d, TRUE);
747 device_free(d);
748 }
749
750 pa_hashmap_free(y->devices, NULL, NULL);
751 }
752
753 if (y->connection) {
754 pa_dbus_remove_matches(pa_dbus_connection_get(y->connection),
755 "type='signal',sender='org.bluez',interface='org.bluez.Manager',member='AdapterAdded'",
756 "type='signal',sender='org.bluez',interface='org.bluez.Manager',member='AdapterRemoved'",
757 "type='signal',sender='org.bluez',interface='org.bluez.Adapter',member='DeviceRemoved'",
758 "type='signal',sender='org.bluez',interface='org.bluez.Adapter',member='DeviceCreated'",
759 "type='signal',sender='org.bluez',interface='org.bluez.Device',member='PropertyChanged'",
760 "type='signal',sender='org.bluez',interface='org.bluez.Audio',member='PropertyChanged'",
761 "type='signal',sender='org.bluez',interface='org.bluez.Headset',member='PropertyChanged'",
762 "type='signal',sender='org.bluez',interface='org.bluez.AudioSink',member='PropertyChanged'", NULL);
763
764 dbus_connection_remove_filter(pa_dbus_connection_get(y->connection), filter_cb, y);
765
766 pa_dbus_connection_unref(y->connection);
767 }
768
769 pa_hook_done(&y->hook);
770
771 if (y->core)
772 pa_shared_remove(y->core, "bluetooth-discovery");
773 }
774
775 void pa_bluetooth_discovery_sync(pa_bluetooth_discovery *y) {
776 pa_assert(y);
777 pa_assert(PA_REFCNT_VALUE(y) > 0);
778
779 pa_dbus_sync_pending_list(&y->pending);
780 }
781
782 pa_hook* pa_bluetooth_discovery_hook(pa_bluetooth_discovery *y) {
783 pa_assert(y);
784 pa_assert(PA_REFCNT_VALUE(y) > 0);
785
786 return &y->hook;
787 }
788
789 const char*pa_bluetooth_get_form_factor(uint32_t class) {
790 unsigned i;
791 const char *r;
792
793 static const char * const table[] = {
794 [1] = "headset",
795 [2] = "hands-free",
796 [4] = "microphone",
797 [5] = "speaker",
798 [6] = "headphone",
799 [7] = "portable",
800 [8] = "car",
801 [10] = "hifi"
802 };
803
804 if (((class >> 8) & 31) != 4)
805 return NULL;
806
807 if ((i = (class >> 2) & 63) > PA_ELEMENTSOF(table))
808 r = NULL;
809 else
810 r = table[i];
811
812 if (!r)
813 pa_log_debug("Unknown Bluetooth minor device class %u", i);
814
815 return r;
816 }
817
818 char *pa_bluetooth_cleanup_name(const char *name) {
819 char *t, *s, *d;
820 pa_bool_t space = FALSE;
821
822 pa_assert(name);
823
824 while ((*name >= 1 && *name <= 32) || *name >= 127)
825 name++;
826
827 t = pa_xstrdup(name);
828
829 for (s = d = t; *s; s++) {
830
831 if (*s <= 32 || *s >= 127 || *s == '_') {
832 space = TRUE;
833 continue;
834 }
835
836 if (space) {
837 *(d++) = ' ';
838 space = FALSE;
839 }
840
841 *(d++) = *s;
842 }
843
844 *d = 0;
845
846 return t;
847 }
848
849 pa_bool_t pa_bluetooth_uuid_has(pa_bluetooth_uuid *uuids, const char *uuid) {
850 pa_assert(uuid);
851
852 while (uuids) {
853 if (strcasecmp(uuids->uuid, uuid) == 0)
854 return TRUE;
855
856 uuids = uuids->next;
857 }
858
859 return FALSE;
860 }