From 6ba1610b6f87b93793979f1def9ed63382c2a56f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Paulo=20Rechi=20Vita?= Date: Tue, 24 Sep 2013 19:45:42 -0300 Subject: [PATCH] bluetooth: Unload module-bluez5-device on device's disconnection --- src/modules/bluetooth/module-bluez5-device.c | 23 ++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/src/modules/bluetooth/module-bluez5-device.c b/src/modules/bluetooth/module-bluez5-device.c index 595e306c3..4bd7f345e 100644 --- a/src/modules/bluetooth/module-bluez5-device.c +++ b/src/modules/bluetooth/module-bluez5-device.c @@ -46,10 +46,26 @@ struct userdata { pa_module *module; pa_core *core; + pa_hook_slot *device_connection_changed_slot; + pa_bluetooth_discovery *discovery; pa_bluetooth_device *device; }; +/* Run from main thread */ +static pa_hook_result_t device_connection_changed_cb(pa_bluetooth_discovery *y, const pa_bluetooth_device *d, struct userdata *u) { + pa_assert(d); + pa_assert(u); + + if (d != u->device || pa_bluetooth_device_any_transport_connected(d)) + return PA_HOOK_OK; + + pa_log_debug("Unloading module for device %s", d->path); + pa_module_unload(u->core, u->module, true); + + return PA_HOOK_OK; +} + int pa__init(pa_module* m) { struct userdata *u; const char *path; @@ -81,6 +97,10 @@ int pa__init(pa_module* m) { pa_modargs_free(ma); + u->device_connection_changed_slot = + pa_hook_connect(pa_bluetooth_discovery_hook(u->discovery, PA_BLUETOOTH_HOOK_DEVICE_CONNECTION_CHANGED), + PA_HOOK_NORMAL, (pa_hook_cb_t) device_connection_changed_cb, u); + return 0; fail: @@ -101,6 +121,9 @@ void pa__done(pa_module *m) { if (!(u = m->userdata)) return; + if (u->device_connection_changed_slot) + pa_hook_slot_free(u->device_connection_changed_slot); + if (u->discovery) pa_bluetooth_discovery_unref(u->discovery);