* net/dbus.el (dbus-unregister-object): Release service, if no
authorMichael Albinus <michael.albinus@gmx.de>
Mon, 9 Nov 2009 22:05:25 +0000 (22:05 +0000)
committerMichael Albinus <michael.albinus@gmx.de>
Mon, 9 Nov 2009 22:05:25 +0000 (22:05 +0000)
other method is registered for it.

lisp/ChangeLog
lisp/net/dbus.el

index 96d72ae..7a3777b 100644 (file)
@@ -1,3 +1,8 @@
+2009-11-09  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/dbus.el (dbus-unregister-object): Release service, if no
+       other method is registered for it.
+
 2009-11-08  Markus Rost <rost@math.uni-bielefeld.de>
 
        * bookmark.el (bookmark-completing-read): Sort bookmark names if
index 6f829c6..306d497 100644 (file)
@@ -139,23 +139,42 @@ been unregistered, `nil' otherwise."
 
   ;; Find the corresponding entry in the hash table.
   (let* ((key (car object))
-        (value (gethash key dbus-registered-functions-table)))
+        (value (gethash key dbus-registered-functions-table))
+        (bus (car key))
+        ret)
     ;; Loop over the registered functions.
-    (while (consp value)
-      ;; (car value) has the structure (UNAME SERVICE PATH HANDLER).
+    (dolist (val value)
+      ;; val has the structure (UNAME SERVICE PATH HANDLER).
       ;; (cdr object) has the structure ((SERVICE PATH HANDLER) ...).
-      (if (not (equal (cdr (car value)) (car (cdr object))))
-         (setq value (cdr value))
+      (when (equal (cdr val) (car (cdr object)))
        ;; Compute new hash value.  If it is empty, remove it from
        ;; hash table.
        (unless
            (puthash
             key
-            (delete (car value) (gethash key dbus-registered-functions-table))
+            (delete val (gethash key dbus-registered-functions-table))
             dbus-registered-functions-table)
          (remhash key dbus-registered-functions-table))
-       (setq value t)))
-    value))
+       (setq ret t)))
+    ;; Check, whether there is still a registered function for the
+    ;; given service.  If not, unregister the service from the bus.
+    (dolist (val value)
+      (let ((service (cadr val))
+           found)
+       (maphash
+        (lambda (k v)
+          (dolist (val v)
+            (ignore-errors
+              (when (and (equal bus (car k))
+                         (string-equal service (cadr val))))
+              (setq found t))))
+        dbus-registered-functions-table)
+       (unless found
+         (dbus-call-method
+          bus dbus-service-dbus dbus-path-dbus dbus-interface-dbus
+          "ReleaseName" service))))
+    ;; Return.
+    ret))
 
 (defun dbus-call-method-non-blocking-handler (&rest args)
   "Handler for reply messages of asynchronous D-Bus message calls.