]> code.delx.au - pulseaudio/commitdiff
bluetooth: Self unload module-bluetooth-device
authorMikel Astiz <mikel.astiz@bmw-carit.de>
Mon, 22 Oct 2012 08:46:38 +0000 (10:46 +0200)
committerTanu Kaskinen <tanuk@iki.fi>
Mon, 22 Oct 2012 15:51:19 +0000 (18:51 +0300)
If the device has been removed, unload the module without depending on
module-bluetooth-discovery.

src/modules/bluetooth/module-bluetooth-device.c
src/modules/bluetooth/module-bluetooth-discover.c

index 30a1807c26f3a9e6b12769f3063988147a96377c..7167390f319db6fec7e469af6f40ab021754230c 100644 (file)
@@ -144,6 +144,7 @@ struct userdata {
     pa_bluetooth_transport *transport;
     char *accesstype;
     pa_hook_slot *transport_removed_slot;
+    pa_hook_slot *device_removed_slot;
 
     pa_bluetooth_discovery *discovery;
     pa_bool_t auto_connect;
@@ -2524,6 +2525,17 @@ static int setup_dbus(struct userdata *u) {
     return 0;
 }
 
+/* Run from main thread */
+static pa_hook_result_t device_removed_cb(pa_bluetooth_device *d, void *call_data, struct userdata *u) {
+    pa_assert(d);
+    pa_assert(u);
+
+    pa_log_debug("Device %s removed: unloading module", d->path);
+    pa_module_unload(u->core, u->module, TRUE);
+
+    return PA_HOOK_OK;
+}
+
 int pa__init(pa_module* m) {
     pa_modargs *ma;
     uint32_t channels;
@@ -2594,6 +2606,9 @@ int pa__init(pa_module* m) {
     if (!(device = find_device(u, address, path)))
         goto fail;
 
+    u->device_removed_slot = pa_hook_connect(&device->hooks[PA_BLUETOOTH_DEVICE_HOOK_REMOVED], PA_HOOK_NORMAL,
+                                             (pa_hook_cb_t) device_removed_cb, u);
+
     /* Add the card structure. This will also initialize the default profile */
     if (add_card(u, device) < 0)
         goto fail;
@@ -2681,6 +2696,11 @@ void pa__done(pa_module *m) {
 
     stop_thread(u);
 
+    if (u->device_removed_slot) {
+        pa_hook_slot_free(u->device_removed_slot);
+        u->device_removed_slot = NULL;
+    }
+
     if (USE_SCO_OVER_PCM(u))
         restore_sco_volume_callbacks(u);
 
index 1ec71ebf2159d46351a982f21ae9f7b7f8c6cee3..2dc7cf53543b85b435f18f27526c2c4b18def6fe 100644 (file)
@@ -116,11 +116,9 @@ static pa_hook_result_t load_module_for_device(pa_bluetooth_discovery *y, const
 
         if (mi) {
 
-            /* Hmm, disconnection? Then let's unload our module */
-
-            pa_log_debug("Unloading module for %s", d->path);
-            pa_module_unload_request_by_index(u->core, mi->module, TRUE);
+            /* Hmm, disconnection? Then the module unloads itself */
 
+            pa_log_debug("Unregistering module for %s", d->path);
             pa_hashmap_remove(u->hashmap, mi->path);
             pa_xfree(mi->path);
             pa_xfree(mi);