2 This file is part of PulseAudio.
4 Copyright 2008-2009 Joao Paulo Rechi Vita
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.
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.
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
26 #include <pulsecore/core-util.h>
27 #include <pulsecore/shared.h>
28 #include <pulsecore/dbus-shared.h>
30 #include "bluetooth-util.h"
32 #include "a2dp-codecs.h"
34 #define HFP_AG_ENDPOINT "/MediaEndpoint/HFPAG"
35 #define A2DP_SOURCE_ENDPOINT "/MediaEndpoint/A2DPSource"
36 #define A2DP_SINK_ENDPOINT "/MediaEndpoint/A2DPSink"
38 #define ENDPOINT_INTROSPECT_XML \
39 DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE \
41 " <interface name=\"org.bluez.MediaEndpoint\">" \
42 " <method name=\"SetConfiguration\">" \
43 " <arg name=\"transport\" direction=\"in\" type=\"o\"/>" \
44 " <arg name=\"configuration\" direction=\"in\" type=\"ay\"/>" \
46 " <method name=\"SelectConfiguration\">" \
47 " <arg name=\"capabilities\" direction=\"in\" type=\"ay\"/>" \
48 " <arg name=\"configuration\" direction=\"out\" type=\"ay\"/>" \
50 " <method name=\"ClearConfiguration\">" \
52 " <method name=\"Release\">" \
55 " <interface name=\"org.freedesktop.DBus.Introspectable\">" \
56 " <method name=\"Introspect\">" \
57 " <arg name=\"data\" type=\"s\" direction=\"out\"/>" \
62 struct pa_bluetooth_discovery
{
66 pa_dbus_connection
*connection
;
67 PA_LLIST_HEAD(pa_dbus_pending
, pending
);
70 pa_bool_t filter_added
;
73 static void get_properties_reply(DBusPendingCall
*pending
, void *userdata
);
74 static pa_dbus_pending
* send_and_add_to_pending(pa_bluetooth_discovery
*y
, DBusMessage
*m
, DBusPendingCallNotifyFunction func
, void *call_data
);
76 static pa_bt_audio_state_t
pa_bt_audio_state_from_string(const char* value
) {
79 if (pa_streq(value
, "disconnected"))
80 return PA_BT_AUDIO_STATE_DISCONNECTED
;
81 else if (pa_streq(value
, "connecting"))
82 return PA_BT_AUDIO_STATE_CONNECTING
;
83 else if (pa_streq(value
, "connected"))
84 return PA_BT_AUDIO_STATE_CONNECTED
;
85 else if (pa_streq(value
, "playing"))
86 return PA_BT_AUDIO_STATE_PLAYING
;
88 return PA_BT_AUDIO_STATE_INVALID
;
91 static pa_bluetooth_uuid
*uuid_new(const char *uuid
) {
94 u
= pa_xnew(pa_bluetooth_uuid
, 1);
95 u
->uuid
= pa_xstrdup(uuid
);
96 PA_LLIST_INIT(pa_bluetooth_uuid
, u
);
101 static void uuid_free(pa_bluetooth_uuid
*u
) {
108 static pa_bluetooth_device
* device_new(const char *path
) {
109 pa_bluetooth_device
*d
;
111 d
= pa_xnew(pa_bluetooth_device
, 1);
115 d
->device_info_valid
= 0;
118 d
->path
= pa_xstrdup(path
);
119 d
->transports
= pa_hashmap_new(pa_idxset_string_hash_func
, pa_idxset_string_compare_func
);
122 d
->device_connected
= -1;
123 PA_LLIST_HEAD_INIT(pa_bluetooth_uuid
, d
->uuids
);
128 d
->audio_state
= PA_BT_AUDIO_STATE_INVALID
;
129 d
->audio_sink_state
= PA_BT_AUDIO_STATE_INVALID
;
130 d
->audio_source_state
= PA_BT_AUDIO_STATE_INVALID
;
131 d
->headset_state
= PA_BT_AUDIO_STATE_INVALID
;
132 d
->hfgw_state
= PA_BT_AUDIO_STATE_INVALID
;
137 static void transport_free(pa_bluetooth_transport
*t
) {
145 static void device_free(pa_bluetooth_device
*d
) {
146 pa_bluetooth_uuid
*u
;
147 pa_bluetooth_transport
*t
;
151 while ((t
= pa_hashmap_steal_first(d
->transports
)))
154 pa_hashmap_free(d
->transports
, NULL
, NULL
);
156 while ((u
= d
->uuids
)) {
157 PA_LLIST_REMOVE(pa_bluetooth_uuid
, d
->uuids
, u
);
164 pa_xfree(d
->address
);
168 static pa_bool_t
device_is_audio(pa_bluetooth_device
*d
) {
172 d
->device_info_valid
&& (d
->hfgw_state
!= PA_BT_AUDIO_STATE_INVALID
||
173 (d
->audio_state
!= PA_BT_AUDIO_STATE_INVALID
&&
174 (d
->audio_sink_state
!= PA_BT_AUDIO_STATE_INVALID
||
175 d
->audio_source_state
!= PA_BT_AUDIO_STATE_INVALID
||
176 d
->headset_state
!= PA_BT_AUDIO_STATE_INVALID
)));
179 static int parse_device_property(pa_bluetooth_discovery
*y
, pa_bluetooth_device
*d
, DBusMessageIter
*i
) {
181 DBusMessageIter variant_i
;
187 if (dbus_message_iter_get_arg_type(i
) != DBUS_TYPE_STRING
) {
188 pa_log("Property name not a string.");
192 dbus_message_iter_get_basic(i
, &key
);
194 if (!dbus_message_iter_next(i
)) {
195 pa_log("Property value missing");
199 if (dbus_message_iter_get_arg_type(i
) != DBUS_TYPE_VARIANT
) {
200 pa_log("Property value not a variant.");
204 dbus_message_iter_recurse(i
, &variant_i
);
206 /* pa_log_debug("Parsing property org.bluez.Device.%s", key); */
208 switch (dbus_message_iter_get_arg_type(&variant_i
)) {
210 case DBUS_TYPE_STRING
: {
213 dbus_message_iter_get_basic(&variant_i
, &value
);
215 if (pa_streq(key
, "Name")) {
217 d
->name
= pa_xstrdup(value
);
218 } else if (pa_streq(key
, "Alias")) {
220 d
->alias
= pa_xstrdup(value
);
221 } else if (pa_streq(key
, "Address")) {
222 pa_xfree(d
->address
);
223 d
->address
= pa_xstrdup(value
);
226 /* pa_log_debug("Value %s", value); */
231 case DBUS_TYPE_BOOLEAN
: {
234 dbus_message_iter_get_basic(&variant_i
, &value
);
236 if (pa_streq(key
, "Paired"))
238 else if (pa_streq(key
, "Connected"))
239 d
->device_connected
= !!value
;
240 else if (pa_streq(key
, "Trusted"))
241 d
->trusted
= !!value
;
243 /* pa_log_debug("Value %s", pa_yes_no(value)); */
248 case DBUS_TYPE_UINT32
: {
251 dbus_message_iter_get_basic(&variant_i
, &value
);
253 if (pa_streq(key
, "Class"))
254 d
->class = (int) value
;
256 /* pa_log_debug("Value %u", (unsigned) value); */
261 case DBUS_TYPE_ARRAY
: {
264 dbus_message_iter_recurse(&variant_i
, &ai
);
266 if (dbus_message_iter_get_arg_type(&ai
) == DBUS_TYPE_STRING
&&
267 pa_streq(key
, "UUIDs")) {
269 while (dbus_message_iter_get_arg_type(&ai
) != DBUS_TYPE_INVALID
) {
270 pa_bluetooth_uuid
*node
;
274 dbus_message_iter_get_basic(&ai
, &value
);
275 node
= uuid_new(value
);
276 PA_LLIST_PREPEND(pa_bluetooth_uuid
, d
->uuids
, node
);
278 /* Vudentz said the interfaces are here when the UUIDs are announced */
279 if (strcasecmp(HSP_AG_UUID
, value
) == 0 || strcasecmp(HFP_AG_UUID
, value
) == 0) {
280 pa_assert_se(m
= dbus_message_new_method_call("org.bluez", d
->path
, "org.bluez.HandsfreeGateway", "GetProperties"));
281 send_and_add_to_pending(y
, m
, get_properties_reply
, d
);
282 } else if (strcasecmp(HSP_HS_UUID
, value
) == 0 || strcasecmp(HFP_HS_UUID
, value
) == 0) {
283 pa_assert_se(m
= dbus_message_new_method_call("org.bluez", d
->path
, "org.bluez.Headset", "GetProperties"));
284 send_and_add_to_pending(y
, m
, get_properties_reply
, d
);
285 } else if (strcasecmp(A2DP_SINK_UUID
, value
) == 0) {
286 pa_assert_se(m
= dbus_message_new_method_call("org.bluez", d
->path
, "org.bluez.AudioSink", "GetProperties"));
287 send_and_add_to_pending(y
, m
, get_properties_reply
, d
);
288 } else if (strcasecmp(A2DP_SOURCE_UUID
, value
) == 0) {
289 pa_assert_se(m
= dbus_message_new_method_call("org.bluez", d
->path
, "org.bluez.AudioSource", "GetProperties"));
290 send_and_add_to_pending(y
, m
, get_properties_reply
, d
);
293 /* 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 */
294 pa_assert_se(m
= dbus_message_new_method_call("org.bluez", d
->path
, "org.bluez.Audio", "GetProperties"));
295 send_and_add_to_pending(y
, m
, get_properties_reply
, d
);
297 if (!dbus_message_iter_next(&ai
))
309 static int parse_audio_property(pa_bluetooth_discovery
*u
, int *state
, DBusMessageIter
*i
) {
311 DBusMessageIter variant_i
;
317 if (dbus_message_iter_get_arg_type(i
) != DBUS_TYPE_STRING
) {
318 pa_log("Property name not a string.");
322 dbus_message_iter_get_basic(i
, &key
);
324 if (!dbus_message_iter_next(i
)) {
325 pa_log("Property value missing");
329 if (dbus_message_iter_get_arg_type(i
) != DBUS_TYPE_VARIANT
) {
330 pa_log("Property value not a variant.");
334 dbus_message_iter_recurse(i
, &variant_i
);
336 /* pa_log_debug("Parsing property org.bluez.{Audio|AudioSink|AudioSource|Headset}.%s", key); */
338 switch (dbus_message_iter_get_arg_type(&variant_i
)) {
340 case DBUS_TYPE_STRING
: {
343 dbus_message_iter_get_basic(&variant_i
, &value
);
345 if (pa_streq(key
, "State")) {
346 *state
= pa_bt_audio_state_from_string(value
);
347 pa_log_debug("dbus: property 'State' changed to value '%s'", value
);
357 static void run_callback(pa_bluetooth_discovery
*y
, pa_bluetooth_device
*d
, pa_bool_t dead
) {
361 if (!device_is_audio(d
))
365 pa_hook_fire(&y
->hook
, d
);
368 static void remove_all_devices(pa_bluetooth_discovery
*y
) {
369 pa_bluetooth_device
*d
;
373 while ((d
= pa_hashmap_steal_first(y
->devices
))) {
374 run_callback(y
, d
, TRUE
);
379 static pa_bluetooth_device
*found_device(pa_bluetooth_discovery
*y
, const char* path
) {
381 pa_bluetooth_device
*d
;
386 d
= pa_hashmap_get(y
->devices
, path
);
390 d
= device_new(path
);
392 pa_hashmap_put(y
->devices
, d
->path
, d
);
394 pa_assert_se(m
= dbus_message_new_method_call("org.bluez", path
, "org.bluez.Device", "GetProperties"));
395 send_and_add_to_pending(y
, m
, get_properties_reply
, d
);
397 /* Before we read the other properties (Audio, AudioSink, AudioSource,
398 * Headset) we wait that the UUID is read */
402 static void get_properties_reply(DBusPendingCall
*pending
, void *userdata
) {
404 DBusMessageIter arg_i
, element_i
;
406 pa_bluetooth_device
*d
;
407 pa_bluetooth_discovery
*y
;
410 pa_assert_se(p
= userdata
);
411 pa_assert_se(y
= p
->context_data
);
412 pa_assert_se(r
= dbus_pending_call_steal_reply(pending
));
414 /* pa_log_debug("Got %s.GetProperties response for %s", */
415 /* dbus_message_get_interface(p->message), */
416 /* dbus_message_get_path(p->message)); */
418 /* We don't use p->call_data here right-away since the device
419 * might already be invalidated at this point */
421 if (!(d
= pa_hashmap_get(y
->devices
, dbus_message_get_path(p
->message
))))
424 pa_assert(p
->call_data
== d
);
426 valid
= dbus_message_get_type(r
) == DBUS_MESSAGE_TYPE_ERROR
? -1 : 1;
428 if (dbus_message_is_method_call(p
->message
, "org.bluez.Device", "GetProperties"))
429 d
->device_info_valid
= valid
;
431 if (dbus_message_is_error(r
, DBUS_ERROR_SERVICE_UNKNOWN
)) {
432 pa_log_debug("Bluetooth daemon is apparently not available.");
433 remove_all_devices(y
);
437 if (dbus_message_get_type(r
) == DBUS_MESSAGE_TYPE_ERROR
) {
439 if (!dbus_message_is_error(r
, DBUS_ERROR_UNKNOWN_METHOD
))
440 pa_log("Error from GetProperties reply: %s", dbus_message_get_error_name(r
));
445 if (!dbus_message_iter_init(r
, &arg_i
)) {
446 pa_log("GetProperties reply has no arguments.");
450 if (dbus_message_iter_get_arg_type(&arg_i
) != DBUS_TYPE_ARRAY
) {
451 pa_log("GetProperties argument is not an array.");
455 dbus_message_iter_recurse(&arg_i
, &element_i
);
456 while (dbus_message_iter_get_arg_type(&element_i
) != DBUS_TYPE_INVALID
) {
458 if (dbus_message_iter_get_arg_type(&element_i
) == DBUS_TYPE_DICT_ENTRY
) {
459 DBusMessageIter dict_i
;
461 dbus_message_iter_recurse(&element_i
, &dict_i
);
463 if (dbus_message_has_interface(p
->message
, "org.bluez.Device")) {
464 if (parse_device_property(y
, d
, &dict_i
) < 0)
467 } else if (dbus_message_has_interface(p
->message
, "org.bluez.Audio")) {
468 if (parse_audio_property(y
, &d
->audio_state
, &dict_i
) < 0)
471 } else if (dbus_message_has_interface(p
->message
, "org.bluez.Headset")) {
472 if (parse_audio_property(y
, &d
->headset_state
, &dict_i
) < 0)
475 } else if (dbus_message_has_interface(p
->message
, "org.bluez.AudioSink")) {
476 if (parse_audio_property(y
, &d
->audio_sink_state
, &dict_i
) < 0)
479 } else if (dbus_message_has_interface(p
->message
, "org.bluez.AudioSource")) {
480 if (parse_audio_property(y
, &d
->audio_source_state
, &dict_i
) < 0)
483 } else if (dbus_message_has_interface(p
->message
, "org.bluez.HandsfreeGateway")) {
484 if (parse_audio_property(y
, &d
->hfgw_state
, &arg_i
) < 0)
490 if (!dbus_message_iter_next(&element_i
))
495 run_callback(y
, d
, FALSE
);
498 dbus_message_unref(r
);
500 PA_LLIST_REMOVE(pa_dbus_pending
, y
->pending
, p
);
501 pa_dbus_pending_free(p
);
504 static pa_dbus_pending
* send_and_add_to_pending(pa_bluetooth_discovery
*y
, DBusMessage
*m
, DBusPendingCallNotifyFunction func
, void *call_data
) {
506 DBusPendingCall
*call
;
511 pa_assert_se(dbus_connection_send_with_reply(pa_dbus_connection_get(y
->connection
), m
, &call
, -1));
513 p
= pa_dbus_pending_new(pa_dbus_connection_get(y
->connection
), m
, call
, y
, call_data
);
514 PA_LLIST_PREPEND(pa_dbus_pending
, y
->pending
, p
);
515 dbus_pending_call_set_notify(call
, func
, p
, NULL
);
520 #ifdef DBUS_TYPE_UNIX_FD
521 static void register_endpoint_reply(DBusPendingCall
*pending
, void *userdata
) {
525 pa_bluetooth_discovery
*y
;
532 pa_assert_se(p
= userdata
);
533 pa_assert_se(y
= p
->context_data
);
534 pa_assert_se(endpoint
= p
->call_data
);
535 pa_assert_se(r
= dbus_pending_call_steal_reply(pending
));
537 if (dbus_message_is_error(r
, DBUS_ERROR_SERVICE_UNKNOWN
)) {
538 pa_log_debug("Bluetooth daemon is apparently not available.");
539 remove_all_devices(y
);
543 if (dbus_message_is_error(r
, PA_BLUETOOTH_ERROR_NOT_SUPPORTED
)) {
544 pa_log_info("Couldn't register endpoint %s, because BlueZ is configured to disable the endpoint type.", endpoint
);
548 if (dbus_message_get_type(r
) == DBUS_MESSAGE_TYPE_ERROR
) {
549 pa_log("Error from RegisterEndpoint reply: %s", dbus_message_get_error_name(r
));
554 dbus_message_unref(r
);
556 PA_LLIST_REMOVE(pa_dbus_pending
, y
->pending
, p
);
557 pa_dbus_pending_free(p
);
563 static void list_devices_reply(DBusPendingCall
*pending
, void *userdata
) {
569 pa_bluetooth_discovery
*y
;
575 pa_assert_se(p
= userdata
);
576 pa_assert_se(y
= p
->context_data
);
577 pa_assert_se(r
= dbus_pending_call_steal_reply(pending
));
579 if (dbus_message_is_error(r
, DBUS_ERROR_SERVICE_UNKNOWN
)) {
580 pa_log_debug("Bluetooth daemon is apparently not available.");
581 remove_all_devices(y
);
585 if (dbus_message_get_type(r
) == DBUS_MESSAGE_TYPE_ERROR
) {
586 pa_log("Error from ListDevices reply: %s", dbus_message_get_error_name(r
));
590 if (!dbus_message_get_args(r
, &e
, DBUS_TYPE_ARRAY
, DBUS_TYPE_OBJECT_PATH
, &paths
, &num
, DBUS_TYPE_INVALID
)) {
591 pa_log("org.bluez.Adapter.ListDevices returned an error: '%s'\n", e
.message
);
596 for (i
= 0; i
< num
; ++i
)
597 found_device(y
, paths
[i
]);
602 dbus_free_string_array(paths
);
604 dbus_message_unref(r
);
606 PA_LLIST_REMOVE(pa_dbus_pending
, y
->pending
, p
);
607 pa_dbus_pending_free(p
);
610 #ifdef DBUS_TYPE_UNIX_FD
611 static void register_endpoint(pa_bluetooth_discovery
*y
, const char *path
, const char *endpoint
, const char *uuid
) {
613 DBusMessageIter i
, d
;
616 pa_log_debug("Registering %s on adapter %s.", endpoint
, path
);
618 pa_assert_se(m
= dbus_message_new_method_call("org.bluez", path
, "org.bluez.Media", "RegisterEndpoint"));
620 dbus_message_iter_init_append(m
, &i
);
622 dbus_message_iter_append_basic(&i
, DBUS_TYPE_OBJECT_PATH
, &endpoint
);
624 dbus_message_iter_open_container(&i
, DBUS_TYPE_ARRAY
, DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
625 DBUS_TYPE_STRING_AS_STRING DBUS_TYPE_VARIANT_AS_STRING DBUS_DICT_ENTRY_END_CHAR_AS_STRING
,
628 pa_dbus_append_basic_variant_dict_entry(&d
, "UUID", DBUS_TYPE_STRING
, &uuid
);
630 pa_dbus_append_basic_variant_dict_entry(&d
, "Codec", DBUS_TYPE_BYTE
, &codec
);
632 if (pa_streq(uuid
, HFP_AG_UUID
)) {
633 uint8_t capability
= 0;
634 pa_dbus_append_basic_array_variant_dict_entry(&d
, "Capabilities", DBUS_TYPE_BYTE
, &capability
, 1);
636 a2dp_sbc_t capabilities
;
638 capabilities
.channel_mode
= BT_A2DP_CHANNEL_MODE_MONO
| BT_A2DP_CHANNEL_MODE_DUAL_CHANNEL
|
639 BT_A2DP_CHANNEL_MODE_STEREO
| BT_A2DP_CHANNEL_MODE_JOINT_STEREO
;
640 capabilities
.frequency
= BT_SBC_SAMPLING_FREQ_16000
| BT_SBC_SAMPLING_FREQ_32000
|
641 BT_SBC_SAMPLING_FREQ_44100
| BT_SBC_SAMPLING_FREQ_48000
;
642 capabilities
.allocation_method
= BT_A2DP_ALLOCATION_SNR
| BT_A2DP_ALLOCATION_LOUDNESS
;
643 capabilities
.subbands
= BT_A2DP_SUBBANDS_4
| BT_A2DP_SUBBANDS_8
;
644 capabilities
.block_length
= BT_A2DP_BLOCK_LENGTH_4
| BT_A2DP_BLOCK_LENGTH_8
|
645 BT_A2DP_BLOCK_LENGTH_12
| BT_A2DP_BLOCK_LENGTH_16
;
646 capabilities
.min_bitpool
= MIN_BITPOOL
;
647 capabilities
.max_bitpool
= MAX_BITPOOL
;
649 pa_dbus_append_basic_array_variant_dict_entry(&d
, "Capabilities", DBUS_TYPE_BYTE
, &capabilities
, sizeof(capabilities
));
652 dbus_message_iter_close_container(&i
, &d
);
654 send_and_add_to_pending(y
, m
, register_endpoint_reply
, pa_xstrdup(endpoint
));
658 static void found_adapter(pa_bluetooth_discovery
*y
, const char *path
) {
661 pa_assert_se(m
= dbus_message_new_method_call("org.bluez", path
, "org.bluez.Adapter", "ListDevices"));
662 send_and_add_to_pending(y
, m
, list_devices_reply
, NULL
);
664 #ifdef DBUS_TYPE_UNIX_FD
665 register_endpoint(y
, path
, HFP_AG_ENDPOINT
, HFP_AG_UUID
);
666 register_endpoint(y
, path
, A2DP_SOURCE_ENDPOINT
, A2DP_SOURCE_UUID
);
667 register_endpoint(y
, path
, A2DP_SINK_ENDPOINT
, A2DP_SINK_UUID
);
671 static void list_adapters_reply(DBusPendingCall
*pending
, void *userdata
) {
677 pa_bluetooth_discovery
*y
;
683 pa_assert_se(p
= userdata
);
684 pa_assert_se(y
= p
->context_data
);
685 pa_assert_se(r
= dbus_pending_call_steal_reply(pending
));
687 if (dbus_message_is_error(r
, DBUS_ERROR_SERVICE_UNKNOWN
)) {
688 pa_log_debug("Bluetooth daemon is apparently not available.");
689 remove_all_devices(y
);
693 if (dbus_message_get_type(r
) == DBUS_MESSAGE_TYPE_ERROR
) {
694 pa_log("Error from ListAdapters reply: %s", dbus_message_get_error_name(r
));
698 if (!dbus_message_get_args(r
, &e
, DBUS_TYPE_ARRAY
, DBUS_TYPE_OBJECT_PATH
, &paths
, &num
, DBUS_TYPE_INVALID
)) {
699 pa_log("org.bluez.Manager.ListAdapters returned an error: %s", e
.message
);
704 for (i
= 0; i
< num
; ++i
)
705 found_adapter(y
, paths
[i
]);
710 dbus_free_string_array(paths
);
712 dbus_message_unref(r
);
714 PA_LLIST_REMOVE(pa_dbus_pending
, y
->pending
, p
);
715 pa_dbus_pending_free(p
);
718 static void list_adapters(pa_bluetooth_discovery
*y
) {
722 pa_assert_se(m
= dbus_message_new_method_call("org.bluez", "/", "org.bluez.Manager", "ListAdapters"));
723 send_and_add_to_pending(y
, m
, list_adapters_reply
, NULL
);
726 int pa_bluetooth_transport_parse_property(pa_bluetooth_transport
*t
, DBusMessageIter
*i
)
729 DBusMessageIter variant_i
;
731 if (dbus_message_iter_get_arg_type(i
) != DBUS_TYPE_STRING
) {
732 pa_log("Property name not a string.");
736 dbus_message_iter_get_basic(i
, &key
);
738 if (!dbus_message_iter_next(i
)) {
739 pa_log("Property value missing");
743 if (dbus_message_iter_get_arg_type(i
) != DBUS_TYPE_VARIANT
) {
744 pa_log("Property value not a variant.");
748 dbus_message_iter_recurse(i
, &variant_i
);
750 switch (dbus_message_iter_get_arg_type(&variant_i
)) {
752 case DBUS_TYPE_BOOLEAN
: {
755 dbus_message_iter_get_basic(&variant_i
, &value
);
757 if (pa_streq(key
, "NREC"))
767 static DBusHandlerResult
filter_cb(DBusConnection
*bus
, DBusMessage
*m
, void *userdata
) {
769 pa_bluetooth_discovery
*y
;
774 pa_assert_se(y
= userdata
);
776 dbus_error_init(&err
);
778 pa_log_debug("dbus: interface=%s, path=%s, member=%s\n",
779 dbus_message_get_interface(m
),
780 dbus_message_get_path(m
),
781 dbus_message_get_member(m
));
783 if (dbus_message_is_signal(m
, "org.bluez.Adapter", "DeviceRemoved")) {
785 pa_bluetooth_device
*d
;
787 if (!dbus_message_get_args(m
, &err
, DBUS_TYPE_OBJECT_PATH
, &path
, DBUS_TYPE_INVALID
)) {
788 pa_log("Failed to parse org.bluez.Adapter.DeviceRemoved: %s", err
.message
);
792 pa_log_debug("Device %s removed", path
);
794 if ((d
= pa_hashmap_remove(y
->devices
, path
))) {
795 run_callback(y
, d
, TRUE
);
799 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED
;
801 } else if (dbus_message_is_signal(m
, "org.bluez.Adapter", "DeviceCreated")) {
804 if (!dbus_message_get_args(m
, &err
, DBUS_TYPE_OBJECT_PATH
, &path
, DBUS_TYPE_INVALID
)) {
805 pa_log("Failed to parse org.bluez.Adapter.DeviceCreated: %s", err
.message
);
809 pa_log_debug("Device %s created", path
);
811 found_device(y
, path
);
812 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED
;
814 } else if (dbus_message_is_signal(m
, "org.bluez.Manager", "AdapterAdded")) {
817 if (!dbus_message_get_args(m
, &err
, DBUS_TYPE_OBJECT_PATH
, &path
, DBUS_TYPE_INVALID
)) {
818 pa_log("Failed to parse org.bluez.Manager.AdapterAdded: %s", err
.message
);
822 pa_log_debug("Adapter %s created", path
);
824 found_adapter(y
, path
);
825 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED
;
827 } else if (dbus_message_is_signal(m
, "org.bluez.Audio", "PropertyChanged") ||
828 dbus_message_is_signal(m
, "org.bluez.Headset", "PropertyChanged") ||
829 dbus_message_is_signal(m
, "org.bluez.AudioSink", "PropertyChanged") ||
830 dbus_message_is_signal(m
, "org.bluez.AudioSource", "PropertyChanged") ||
831 dbus_message_is_signal(m
, "org.bluez.HandsfreeGateway", "PropertyChanged") ||
832 dbus_message_is_signal(m
, "org.bluez.Device", "PropertyChanged")) {
834 pa_bluetooth_device
*d
;
836 if ((d
= pa_hashmap_get(y
->devices
, dbus_message_get_path(m
)))) {
837 DBusMessageIter arg_i
;
839 if (!dbus_message_iter_init(m
, &arg_i
)) {
840 pa_log("Failed to parse PropertyChanged: %s", err
.message
);
844 if (dbus_message_has_interface(m
, "org.bluez.Device")) {
845 if (parse_device_property(y
, d
, &arg_i
) < 0)
848 } else if (dbus_message_has_interface(m
, "org.bluez.Audio")) {
849 if (parse_audio_property(y
, &d
->audio_state
, &arg_i
) < 0)
852 } else if (dbus_message_has_interface(m
, "org.bluez.Headset")) {
853 if (parse_audio_property(y
, &d
->headset_state
, &arg_i
) < 0)
856 } else if (dbus_message_has_interface(m
, "org.bluez.AudioSink")) {
857 if (parse_audio_property(y
, &d
->audio_sink_state
, &arg_i
) < 0)
860 } else if (dbus_message_has_interface(m
, "org.bluez.AudioSource")) {
861 if (parse_audio_property(y
, &d
->audio_source_state
, &arg_i
) < 0)
864 } else if (dbus_message_has_interface(m
, "org.bluez.HandsfreeGateway")) {
865 if (parse_audio_property(y
, &d
->hfgw_state
, &arg_i
) < 0)
869 run_callback(y
, d
, FALSE
);
872 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED
;
874 } else if (dbus_message_is_signal(m
, "org.bluez.Device", "DisconnectRequested")) {
875 pa_bluetooth_device
*d
;
877 if ((d
= pa_hashmap_get(y
->devices
, dbus_message_get_path(m
)))) {
878 /* Device will disconnect in 2 sec */
879 d
->audio_state
= PA_BT_AUDIO_STATE_DISCONNECTED
;
880 d
->audio_sink_state
= PA_BT_AUDIO_STATE_DISCONNECTED
;
881 d
->audio_source_state
= PA_BT_AUDIO_STATE_DISCONNECTED
;
882 d
->headset_state
= PA_BT_AUDIO_STATE_DISCONNECTED
;
883 d
->hfgw_state
= PA_BT_AUDIO_STATE_DISCONNECTED
;
885 run_callback(y
, d
, FALSE
);
888 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED
;
890 } else if (dbus_message_is_signal(m
, "org.freedesktop.DBus", "NameOwnerChanged")) {
891 const char *name
, *old_owner
, *new_owner
;
893 if (!dbus_message_get_args(m
, &err
,
894 DBUS_TYPE_STRING
, &name
,
895 DBUS_TYPE_STRING
, &old_owner
,
896 DBUS_TYPE_STRING
, &new_owner
,
897 DBUS_TYPE_INVALID
)) {
898 pa_log("Failed to parse org.freedesktop.DBus.NameOwnerChanged: %s", err
.message
);
902 if (pa_streq(name
, "org.bluez")) {
903 if (old_owner
&& *old_owner
) {
904 pa_log_debug("Bluetooth daemon disappeared.");
905 remove_all_devices(y
);
908 if (new_owner
&& *new_owner
) {
909 pa_log_debug("Bluetooth daemon appeared.");
914 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED
;
915 } else if (dbus_message_is_signal(m
, "org.bluez.MediaTransport", "PropertyChanged")) {
916 pa_bluetooth_device
*d
;
917 pa_bluetooth_transport
*t
;
919 DBusMessageIter arg_i
;
921 while ((d
= pa_hashmap_iterate(y
->devices
, &state
, NULL
)))
922 if ((t
= pa_hashmap_get(d
->transports
, dbus_message_get_path(m
))))
928 if (!dbus_message_iter_init(m
, &arg_i
)) {
929 pa_log("Failed to parse PropertyChanged: %s", err
.message
);
933 if (pa_bluetooth_transport_parse_property(t
, &arg_i
) < 0)
936 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED
;
940 dbus_error_free(&err
);
942 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED
;
945 const pa_bluetooth_device
* pa_bluetooth_discovery_get_by_address(pa_bluetooth_discovery
*y
, const char* address
) {
946 pa_bluetooth_device
*d
;
950 pa_assert(PA_REFCNT_VALUE(y
) > 0);
953 if (!pa_hook_is_firing(&y
->hook
))
954 pa_bluetooth_discovery_sync(y
);
956 while ((d
= pa_hashmap_iterate(y
->devices
, &state
, NULL
)))
957 if (pa_streq(d
->address
, address
))
958 return device_is_audio(d
) ? d
: NULL
;
963 const pa_bluetooth_device
* pa_bluetooth_discovery_get_by_path(pa_bluetooth_discovery
*y
, const char* path
) {
964 pa_bluetooth_device
*d
;
967 pa_assert(PA_REFCNT_VALUE(y
) > 0);
970 if (!pa_hook_is_firing(&y
->hook
))
971 pa_bluetooth_discovery_sync(y
);
973 if ((d
= pa_hashmap_get(y
->devices
, path
)))
974 if (device_is_audio(d
))
980 const pa_bluetooth_transport
* pa_bluetooth_discovery_get_transport(pa_bluetooth_discovery
*y
, const char *path
) {
981 pa_bluetooth_device
*d
;
982 pa_bluetooth_transport
*t
;
986 pa_assert(PA_REFCNT_VALUE(y
) > 0);
989 while ((d
= pa_hashmap_iterate(y
->devices
, &state
, NULL
)))
990 if ((t
= pa_hashmap_get(d
->transports
, path
)))
996 const pa_bluetooth_transport
* pa_bluetooth_device_get_transport(const pa_bluetooth_device
*d
, enum profile profile
) {
997 pa_bluetooth_transport
*t
;
1002 while ((t
= pa_hashmap_iterate(d
->transports
, &state
, NULL
)))
1003 if (t
->profile
== profile
)
1009 int pa_bluetooth_transport_acquire(const pa_bluetooth_transport
*t
, const char *accesstype
, size_t *imtu
, size_t *omtu
) {
1018 dbus_error_init(&err
);
1020 pa_assert_se(m
= dbus_message_new_method_call("org.bluez", t
->path
, "org.bluez.MediaTransport", "Acquire"));
1021 pa_assert_se(dbus_message_append_args(m
, DBUS_TYPE_STRING
, &accesstype
, DBUS_TYPE_INVALID
));
1022 r
= dbus_connection_send_with_reply_and_block(pa_dbus_connection_get(t
->y
->connection
), m
, -1, &err
);
1024 if (dbus_error_is_set(&err
) || !r
) {
1025 pa_log("Failed to acquire transport fd: %s", err
.message
);
1026 dbus_error_free(&err
);
1030 #ifdef DBUS_TYPE_UNIX_FD
1031 if (!dbus_message_get_args(r
, &err
, DBUS_TYPE_UNIX_FD
, &ret
, DBUS_TYPE_UINT16
, &i
, DBUS_TYPE_UINT16
, &o
, DBUS_TYPE_INVALID
)) {
1032 pa_log("Failed to parse org.bluez.MediaTransport.Acquire(): %s", err
.message
);
1034 dbus_error_free(&err
);
1045 #ifdef DBUS_TYPE_UNIX_FD
1048 dbus_message_unref(r
);
1052 void pa_bluetooth_transport_release(const pa_bluetooth_transport
*t
, const char *accesstype
) {
1059 dbus_error_init(&err
);
1061 pa_assert_se(m
= dbus_message_new_method_call("org.bluez", t
->path
, "org.bluez.MediaTransport", "Release"));
1062 pa_assert_se(dbus_message_append_args(m
, DBUS_TYPE_STRING
, &accesstype
, DBUS_TYPE_INVALID
));
1063 dbus_connection_send_with_reply_and_block(pa_dbus_connection_get(t
->y
->connection
), m
, -1, &err
);
1065 if (dbus_error_is_set(&err
)) {
1066 pa_log("Failed to release transport %s: %s", t
->path
, err
.message
);
1067 dbus_error_free(&err
);
1069 pa_log_info("Transport %s released", t
->path
);
1072 static int setup_dbus(pa_bluetooth_discovery
*y
) {
1075 dbus_error_init(&err
);
1077 y
->connection
= pa_dbus_bus_get(y
->core
, DBUS_BUS_SYSTEM
, &err
);
1079 if (dbus_error_is_set(&err
) || !y
->connection
) {
1080 pa_log("Failed to get D-Bus connection: %s", err
.message
);
1081 dbus_error_free(&err
);
1088 #ifdef DBUS_TYPE_UNIX_FD
1089 static pa_bluetooth_transport
*transport_new(pa_bluetooth_discovery
*y
, const char *path
, enum profile p
, const uint8_t *config
, int size
) {
1090 pa_bluetooth_transport
*t
;
1092 t
= pa_xnew0(pa_bluetooth_transport
, 1);
1094 t
->path
= pa_xstrdup(path
);
1096 t
->config_size
= size
;
1099 t
->config
= pa_xnew(uint8_t, size
);
1100 memcpy(t
->config
, config
, size
);
1106 static DBusMessage
*endpoint_set_configuration(DBusConnection
*conn
, DBusMessage
*m
, void *userdata
) {
1107 pa_bluetooth_discovery
*y
= userdata
;
1108 pa_bluetooth_device
*d
;
1109 pa_bluetooth_transport
*t
;
1110 const char *path
, *dev_path
= NULL
, *uuid
= NULL
;
1111 uint8_t *config
= NULL
;
1115 DBusMessageIter args
, props
;
1118 dbus_message_iter_init(m
, &args
);
1120 dbus_message_iter_get_basic(&args
, &path
);
1121 if (!dbus_message_iter_next(&args
))
1124 dbus_message_iter_recurse(&args
, &props
);
1125 if (dbus_message_iter_get_arg_type(&props
) != DBUS_TYPE_DICT_ENTRY
)
1128 /* Read transport properties */
1129 while (dbus_message_iter_get_arg_type(&props
) == DBUS_TYPE_DICT_ENTRY
) {
1131 DBusMessageIter value
, entry
;
1134 dbus_message_iter_recurse(&props
, &entry
);
1135 dbus_message_iter_get_basic(&entry
, &key
);
1137 dbus_message_iter_next(&entry
);
1138 dbus_message_iter_recurse(&entry
, &value
);
1140 var
= dbus_message_iter_get_arg_type(&value
);
1141 if (strcasecmp(key
, "UUID") == 0) {
1142 if (var
!= DBUS_TYPE_STRING
)
1144 dbus_message_iter_get_basic(&value
, &uuid
);
1145 } else if (strcasecmp(key
, "Device") == 0) {
1146 if (var
!= DBUS_TYPE_OBJECT_PATH
)
1148 dbus_message_iter_get_basic(&value
, &dev_path
);
1149 } else if (strcasecmp(key
, "NREC") == 0) {
1150 if (var
!= DBUS_TYPE_BOOLEAN
)
1152 dbus_message_iter_get_basic(&value
, &nrec
);
1153 } else if (strcasecmp(key
, "Configuration") == 0) {
1154 DBusMessageIter array
;
1155 if (var
!= DBUS_TYPE_ARRAY
)
1157 dbus_message_iter_recurse(&value
, &array
);
1158 dbus_message_iter_get_fixed_array(&array
, &config
, &size
);
1161 dbus_message_iter_next(&props
);
1164 d
= found_device(y
, dev_path
);
1168 if (dbus_message_has_path(m
, HFP_AG_ENDPOINT
))
1170 else if (dbus_message_has_path(m
, A2DP_SOURCE_ENDPOINT
))
1173 p
= PROFILE_A2DP_SOURCE
;
1175 t
= transport_new(y
, path
, p
, config
, size
);
1178 pa_hashmap_put(d
->transports
, t
->path
, t
);
1180 pa_log_debug("Transport %s profile %d available", t
->path
, t
->profile
);
1182 pa_assert_se(r
= dbus_message_new_method_return(m
));
1187 pa_log("org.bluez.MediaEndpoint.SetConfiguration: invalid arguments");
1188 pa_assert_se(r
= (dbus_message_new_error(m
, "org.bluez.MediaEndpoint.Error.InvalidArguments",
1189 "Unable to set configuration")));
1193 static DBusMessage
*endpoint_clear_configuration(DBusConnection
*c
, DBusMessage
*m
, void *userdata
) {
1194 pa_bluetooth_discovery
*y
= userdata
;
1195 pa_bluetooth_device
*d
;
1196 pa_bluetooth_transport
*t
;
1202 dbus_error_init(&e
);
1204 if (!dbus_message_get_args(m
, &e
, DBUS_TYPE_OBJECT_PATH
, &path
, DBUS_TYPE_INVALID
)) {
1205 pa_log("org.bluez.MediaEndpoint.ClearConfiguration: %s", e
.message
);
1206 dbus_error_free(&e
);
1210 while ((d
= pa_hashmap_iterate(y
->devices
, &state
, NULL
))) {
1211 if ((t
= pa_hashmap_get(d
->transports
, path
))) {
1212 pa_log_debug("Clearing transport %s profile %d", t
->path
, t
->profile
);
1213 pa_hashmap_remove(d
->transports
, t
->path
);
1219 pa_assert_se(r
= dbus_message_new_method_return(m
));
1224 pa_assert_se(r
= (dbus_message_new_error(m
, "org.bluez.MediaEndpoint.Error.InvalidArguments",
1225 "Unable to clear configuration")));
1229 static uint8_t a2dp_default_bitpool(uint8_t freq
, uint8_t mode
) {
1232 case BT_SBC_SAMPLING_FREQ_16000
:
1233 case BT_SBC_SAMPLING_FREQ_32000
:
1236 case BT_SBC_SAMPLING_FREQ_44100
:
1239 case BT_A2DP_CHANNEL_MODE_MONO
:
1240 case BT_A2DP_CHANNEL_MODE_DUAL_CHANNEL
:
1243 case BT_A2DP_CHANNEL_MODE_STEREO
:
1244 case BT_A2DP_CHANNEL_MODE_JOINT_STEREO
:
1248 pa_log_warn("Invalid channel mode %u", mode
);
1252 case BT_SBC_SAMPLING_FREQ_48000
:
1255 case BT_A2DP_CHANNEL_MODE_MONO
:
1256 case BT_A2DP_CHANNEL_MODE_DUAL_CHANNEL
:
1259 case BT_A2DP_CHANNEL_MODE_STEREO
:
1260 case BT_A2DP_CHANNEL_MODE_JOINT_STEREO
:
1264 pa_log_warn("Invalid channel mode %u", mode
);
1269 pa_log_warn("Invalid sampling freq %u", freq
);
1274 static DBusMessage
*endpoint_select_configuration(DBusConnection
*c
, DBusMessage
*m
, void *userdata
) {
1275 pa_bluetooth_discovery
*y
= userdata
;
1276 a2dp_sbc_t
*cap
, config
;
1277 uint8_t *pconf
= (uint8_t *) &config
;
1282 static const struct {
1286 { 16000U, BT_SBC_SAMPLING_FREQ_16000
},
1287 { 32000U, BT_SBC_SAMPLING_FREQ_32000
},
1288 { 44100U, BT_SBC_SAMPLING_FREQ_44100
},
1289 { 48000U, BT_SBC_SAMPLING_FREQ_48000
}
1292 dbus_error_init(&e
);
1294 if (!dbus_message_get_args(m
, &e
, DBUS_TYPE_ARRAY
, DBUS_TYPE_BYTE
, &cap
, &size
, DBUS_TYPE_INVALID
)) {
1295 pa_log("org.bluez.MediaEndpoint.SelectConfiguration: %s", e
.message
);
1296 dbus_error_free(&e
);
1300 if (dbus_message_has_path(m
, HFP_AG_ENDPOINT
))
1303 pa_assert(size
== sizeof(config
));
1305 memset(&config
, 0, sizeof(config
));
1307 /* Find the lowest freq that is at least as high as the requested
1309 for (i
= 0; (unsigned) i
< PA_ELEMENTSOF(freq_table
); i
++)
1310 if (freq_table
[i
].rate
>= y
->core
->default_sample_spec
.rate
&& (cap
->frequency
& freq_table
[i
].cap
)) {
1311 config
.frequency
= freq_table
[i
].cap
;
1315 if ((unsigned) i
== PA_ELEMENTSOF(freq_table
)) {
1316 for (--i
; i
>= 0; i
--) {
1317 if (cap
->frequency
& freq_table
[i
].cap
) {
1318 config
.frequency
= freq_table
[i
].cap
;
1324 pa_log("Not suitable sample rate");
1329 pa_assert((unsigned) i
< PA_ELEMENTSOF(freq_table
));
1331 if (y
->core
->default_sample_spec
.channels
<= 1) {
1332 if (cap
->channel_mode
& BT_A2DP_CHANNEL_MODE_MONO
)
1333 config
.channel_mode
= BT_A2DP_CHANNEL_MODE_MONO
;
1336 if (y
->core
->default_sample_spec
.channels
>= 2) {
1337 if (cap
->channel_mode
& BT_A2DP_CHANNEL_MODE_JOINT_STEREO
)
1338 config
.channel_mode
= BT_A2DP_CHANNEL_MODE_JOINT_STEREO
;
1339 else if (cap
->channel_mode
& BT_A2DP_CHANNEL_MODE_STEREO
)
1340 config
.channel_mode
= BT_A2DP_CHANNEL_MODE_STEREO
;
1341 else if (cap
->channel_mode
& BT_A2DP_CHANNEL_MODE_DUAL_CHANNEL
)
1342 config
.channel_mode
= BT_A2DP_CHANNEL_MODE_DUAL_CHANNEL
;
1343 else if (cap
->channel_mode
& BT_A2DP_CHANNEL_MODE_MONO
) {
1344 config
.channel_mode
= BT_A2DP_CHANNEL_MODE_MONO
;
1346 pa_log("No supported channel modes");
1351 if (cap
->block_length
& BT_A2DP_BLOCK_LENGTH_16
)
1352 config
.block_length
= BT_A2DP_BLOCK_LENGTH_16
;
1353 else if (cap
->block_length
& BT_A2DP_BLOCK_LENGTH_12
)
1354 config
.block_length
= BT_A2DP_BLOCK_LENGTH_12
;
1355 else if (cap
->block_length
& BT_A2DP_BLOCK_LENGTH_8
)
1356 config
.block_length
= BT_A2DP_BLOCK_LENGTH_8
;
1357 else if (cap
->block_length
& BT_A2DP_BLOCK_LENGTH_4
)
1358 config
.block_length
= BT_A2DP_BLOCK_LENGTH_4
;
1360 pa_log_error("No supported block lengths");
1364 if (cap
->subbands
& BT_A2DP_SUBBANDS_8
)
1365 config
.subbands
= BT_A2DP_SUBBANDS_8
;
1366 else if (cap
->subbands
& BT_A2DP_SUBBANDS_4
)
1367 config
.subbands
= BT_A2DP_SUBBANDS_4
;
1369 pa_log_error("No supported subbands");
1373 if (cap
->allocation_method
& BT_A2DP_ALLOCATION_LOUDNESS
)
1374 config
.allocation_method
= BT_A2DP_ALLOCATION_LOUDNESS
;
1375 else if (cap
->allocation_method
& BT_A2DP_ALLOCATION_SNR
)
1376 config
.allocation_method
= BT_A2DP_ALLOCATION_SNR
;
1378 config
.min_bitpool
= (uint8_t) PA_MAX(MIN_BITPOOL
, cap
->min_bitpool
);
1379 config
.max_bitpool
= (uint8_t) PA_MIN(a2dp_default_bitpool(config
.frequency
, config
.channel_mode
), cap
->max_bitpool
);
1382 pa_assert_se(r
= dbus_message_new_method_return(m
));
1384 pa_assert_se(dbus_message_append_args(
1386 DBUS_TYPE_ARRAY
, DBUS_TYPE_BYTE
, &pconf
, size
,
1387 DBUS_TYPE_INVALID
));
1392 pa_assert_se(r
= (dbus_message_new_error(m
, "org.bluez.MediaEndpoint.Error.InvalidArguments",
1393 "Unable to select configuration")));
1397 static DBusHandlerResult
endpoint_handler(DBusConnection
*c
, DBusMessage
*m
, void *userdata
) {
1398 struct pa_bluetooth_discovery
*y
= userdata
;
1399 DBusMessage
*r
= NULL
;
1405 pa_log_debug("dbus: interface=%s, path=%s, member=%s\n",
1406 dbus_message_get_interface(m
),
1407 dbus_message_get_path(m
),
1408 dbus_message_get_member(m
));
1410 path
= dbus_message_get_path(m
);
1411 dbus_error_init(&e
);
1413 if (!pa_streq(path
, A2DP_SOURCE_ENDPOINT
) && !pa_streq(path
, A2DP_SINK_ENDPOINT
) && !pa_streq(path
, HFP_AG_ENDPOINT
))
1414 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED
;
1416 if (dbus_message_is_method_call(m
, "org.freedesktop.DBus.Introspectable", "Introspect")) {
1417 const char *xml
= ENDPOINT_INTROSPECT_XML
;
1419 pa_assert_se(r
= dbus_message_new_method_return(m
));
1420 pa_assert_se(dbus_message_append_args(
1422 DBUS_TYPE_STRING
, &xml
,
1423 DBUS_TYPE_INVALID
));
1425 } else if (dbus_message_is_method_call(m
, "org.bluez.MediaEndpoint", "SetConfiguration")) {
1426 r
= endpoint_set_configuration(c
, m
, userdata
);
1427 } else if (dbus_message_is_method_call(m
, "org.bluez.MediaEndpoint", "SelectConfiguration")) {
1428 r
= endpoint_select_configuration(c
, m
, userdata
);
1429 } else if (dbus_message_is_method_call(m
, "org.bluez.MediaEndpoint", "ClearConfiguration"))
1430 r
= endpoint_clear_configuration(c
, m
, userdata
);
1432 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED
;
1435 pa_assert_se(dbus_connection_send(pa_dbus_connection_get(y
->connection
), r
, NULL
));
1436 dbus_message_unref(r
);
1439 return DBUS_HANDLER_RESULT_HANDLED
;
1441 #endif /* DBUS_TYPE_UNIX_FD */
1443 pa_bluetooth_discovery
* pa_bluetooth_discovery_get(pa_core
*c
) {
1445 pa_bluetooth_discovery
*y
;
1446 #ifdef DBUS_TYPE_UNIX_FD
1447 static const DBusObjectPathVTable vtable_endpoint
= {
1448 .message_function
= endpoint_handler
,
1454 dbus_error_init(&err
);
1456 if ((y
= pa_shared_get(c
, "bluetooth-discovery")))
1457 return pa_bluetooth_discovery_ref(y
);
1459 y
= pa_xnew0(pa_bluetooth_discovery
, 1);
1462 y
->devices
= pa_hashmap_new(pa_idxset_string_hash_func
, pa_idxset_string_compare_func
);
1463 PA_LLIST_HEAD_INIT(pa_dbus_pending
, y
->pending
);
1464 pa_hook_init(&y
->hook
, y
);
1465 pa_shared_set(c
, "bluetooth-discovery", y
);
1467 if (setup_dbus(y
) < 0)
1470 /* dynamic detection of bluetooth audio devices */
1471 if (!dbus_connection_add_filter(pa_dbus_connection_get(y
->connection
), filter_cb
, y
, NULL
)) {
1472 pa_log_error("Failed to add filter function");
1475 y
->filter_added
= TRUE
;
1477 if (pa_dbus_add_matches(
1478 pa_dbus_connection_get(y
->connection
), &err
,
1479 "type='signal',sender='org.freedesktop.DBus',interface='org.freedesktop.DBus',member='NameOwnerChanged',arg0='org.bluez'",
1480 "type='signal',sender='org.bluez',interface='org.bluez.Manager',member='AdapterAdded'",
1481 "type='signal',sender='org.bluez',interface='org.bluez.Adapter',member='DeviceRemoved'",
1482 "type='signal',sender='org.bluez',interface='org.bluez.Adapter',member='DeviceCreated'",
1483 "type='signal',sender='org.bluez',interface='org.bluez.Device',member='PropertyChanged'",
1484 "type='signal',sender='org.bluez',interface='org.bluez.Device',member='DisconnectRequested'",
1485 "type='signal',sender='org.bluez',interface='org.bluez.Audio',member='PropertyChanged'",
1486 "type='signal',sender='org.bluez',interface='org.bluez.Headset',member='PropertyChanged'",
1487 "type='signal',sender='org.bluez',interface='org.bluez.AudioSink',member='PropertyChanged'",
1488 "type='signal',sender='org.bluez',interface='org.bluez.AudioSource',member='PropertyChanged'",
1489 "type='signal',sender='org.bluez',interface='org.bluez.HandsfreeGateway',member='PropertyChanged'",
1490 "type='signal',sender='org.bluez',interface='org.bluez.MediaTransport',member='PropertyChanged'",
1492 pa_log("Failed to add D-Bus matches: %s", err
.message
);
1496 #ifdef DBUS_TYPE_UNIX_FD
1497 pa_assert_se(dbus_connection_register_object_path(pa_dbus_connection_get(y
->connection
), HFP_AG_ENDPOINT
, &vtable_endpoint
, y
));
1498 pa_assert_se(dbus_connection_register_object_path(pa_dbus_connection_get(y
->connection
), A2DP_SOURCE_ENDPOINT
, &vtable_endpoint
, y
));
1499 pa_assert_se(dbus_connection_register_object_path(pa_dbus_connection_get(y
->connection
), A2DP_SINK_ENDPOINT
, &vtable_endpoint
, y
));
1509 pa_bluetooth_discovery_unref(y
);
1511 dbus_error_free(&err
);
1516 pa_bluetooth_discovery
* pa_bluetooth_discovery_ref(pa_bluetooth_discovery
*y
) {
1518 pa_assert(PA_REFCNT_VALUE(y
) > 0);
1525 void pa_bluetooth_discovery_unref(pa_bluetooth_discovery
*y
) {
1527 pa_assert(PA_REFCNT_VALUE(y
) > 0);
1529 if (PA_REFCNT_DEC(y
) > 0)
1532 pa_dbus_free_pending_list(&y
->pending
);
1535 remove_all_devices(y
);
1536 pa_hashmap_free(y
->devices
, NULL
, NULL
);
1539 if (y
->connection
) {
1540 #ifdef DBUS_TYPE_UNIX_FD
1541 dbus_connection_unregister_object_path(pa_dbus_connection_get(y
->connection
), HFP_AG_ENDPOINT
);
1542 dbus_connection_unregister_object_path(pa_dbus_connection_get(y
->connection
), A2DP_SOURCE_ENDPOINT
);
1543 dbus_connection_unregister_object_path(pa_dbus_connection_get(y
->connection
), A2DP_SINK_ENDPOINT
);
1545 pa_dbus_remove_matches(pa_dbus_connection_get(y
->connection
),
1546 "type='signal',sender='org.freedesktop.DBus',interface='org.freedesktop.DBus',member='NameOwnerChanged',arg0='org.bluez'",
1547 "type='signal',sender='org.bluez',interface='org.bluez.Manager',member='AdapterAdded'",
1548 "type='signal',sender='org.bluez',interface='org.bluez.Manager',member='AdapterRemoved'",
1549 "type='signal',sender='org.bluez',interface='org.bluez.Adapter',member='DeviceRemoved'",
1550 "type='signal',sender='org.bluez',interface='org.bluez.Adapter',member='DeviceCreated'",
1551 "type='signal',sender='org.bluez',interface='org.bluez.Device',member='PropertyChanged'",
1552 "type='signal',sender='org.bluez',interface='org.bluez.Device',member='DisconnectRequested'",
1553 "type='signal',sender='org.bluez',interface='org.bluez.Audio',member='PropertyChanged'",
1554 "type='signal',sender='org.bluez',interface='org.bluez.Headset',member='PropertyChanged'",
1555 "type='signal',sender='org.bluez',interface='org.bluez.AudioSink',member='PropertyChanged'",
1556 "type='signal',sender='org.bluez',interface='org.bluez.AudioSource',member='PropertyChanged'",
1557 "type='signal',sender='org.bluez',interface='org.bluez.HandsfreeGateway',member='PropertyChanged'",
1558 "type='signal',sender='org.bluez',interface='org.bluez.MediaTransport',member='PropertyChanged'",
1561 if (y
->filter_added
)
1562 dbus_connection_remove_filter(pa_dbus_connection_get(y
->connection
), filter_cb
, y
);
1564 pa_dbus_connection_unref(y
->connection
);
1567 pa_hook_done(&y
->hook
);
1570 pa_shared_remove(y
->core
, "bluetooth-discovery");
1575 void pa_bluetooth_discovery_sync(pa_bluetooth_discovery
*y
) {
1577 pa_assert(PA_REFCNT_VALUE(y
) > 0);
1579 pa_dbus_sync_pending_list(&y
->pending
);
1582 pa_hook
* pa_bluetooth_discovery_hook(pa_bluetooth_discovery
*y
) {
1584 pa_assert(PA_REFCNT_VALUE(y
) > 0);
1589 const char*pa_bluetooth_get_form_factor(uint32_t class) {
1593 static const char * const table
[] = {
1604 if (((class >> 8) & 31) != 4)
1607 if ((i
= (class >> 2) & 63) > PA_ELEMENTSOF(table
))
1613 pa_log_debug("Unknown Bluetooth minor device class %u", i
);
1618 char *pa_bluetooth_cleanup_name(const char *name
) {
1620 pa_bool_t space
= FALSE
;
1624 while ((*name
>= 1 && *name
<= 32) || *name
>= 127)
1627 t
= pa_xstrdup(name
);
1629 for (s
= d
= t
; *s
; s
++) {
1631 if (*s
<= 32 || *s
>= 127 || *s
== '_') {
1649 pa_bool_t
pa_bluetooth_uuid_has(pa_bluetooth_uuid
*uuids
, const char *uuid
) {
1653 if (strcasecmp(uuids
->uuid
, uuid
) == 0)
1656 uuids
= uuids
->next
;