[pulseaudio-discuss] [RFCv0 08/21] bluetooth: Create pa_bluetooth_dbus_send_and_add_to_pending() for oFono backend
jprvita at gmail.com
jprvita at gmail.com
Tue Feb 4 14:03:53 PST 2014
From: João Paulo Rechi Vita <jprvita at openbossa.org>
---
src/modules/bluetooth/hfaudioagent-ofono.c | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/src/modules/bluetooth/hfaudioagent-ofono.c b/src/modules/bluetooth/hfaudioagent-ofono.c
index 49dd53a..d0c7013 100644
--- a/src/modules/bluetooth/hfaudioagent-ofono.c
+++ b/src/modules/bluetooth/hfaudioagent-ofono.c
@@ -59,8 +59,27 @@ struct hf_audio_agent_data {
bool filter_added;
pa_hashmap *hf_audio_cards;
+
+ PA_LLIST_HEAD(pa_dbus_pending, pending);
};
+static pa_dbus_pending* pa_bluetooth_dbus_send_and_add_to_pending(hf_audio_agent_data *hfdata, DBusMessage *m,
+ DBusPendingCallNotifyFunction func, void *call_data) {
+ pa_dbus_pending *p;
+ DBusPendingCall *call;
+
+ pa_assert(hfdata);
+ pa_assert(m);
+
+ pa_assert_se(dbus_connection_send_with_reply(pa_dbus_connection_get(hfdata->connection), m, &call, -1));
+
+ p = pa_dbus_pending_new(pa_dbus_connection_get(hfdata->connection), m, call, hfdata, call_data);
+ PA_LLIST_PREPEND(pa_dbus_pending, hfdata->pending, p);
+ dbus_pending_call_set_notify(call, func, p, NULL);
+
+ return p;
+}
+
static DBusHandlerResult filter_cb(DBusConnection *bus, DBusMessage *m, void *data) {
pa_assert(bus);
pa_assert(m);
@@ -166,6 +185,8 @@ void hf_audio_agent_done(hf_audio_agent_data *data) {
pa_assert(hfdata);
+ pa_dbus_free_pending_list(&hfdata->pending);
+
if (hfdata->hf_audio_cards) {
pa_hashmap_free(hfdata->hf_audio_cards);
hfdata->hf_audio_cards = NULL;
--
1.8.3.1
More information about the pulseaudio-discuss
mailing list