* notifications.el (notifications-unique-name): New defvar.
[bpt/emacs.git] / lisp / notifications.el
index 9f7576b..e081763 100644 (file)
 (defvar notifications-on-close-map nil
   "Mapping between notification and close callback functions.")
 
+(defvar notifications-unique-name ""
+  "Unique service name of notification daemon.
+This must be kept, because the notification daemon could be
+restarted, and the registered signals cannot be identified anymore.")
+
 (defun notifications-on-action-signal (id action)
   "Dispatch signals to callback functions from `notifications-on-action-map'."
   (let ((entry (assoc id notifications-on-action-map)))
-    (when entry
+    (when (and entry
+              (string-equal notifications-unique-name
+                            (dbus-event-service-name last-input-event)))
       (funcall (cadr entry) id action)
       (remove entry 'notifications-on-action-map))))
 
 (when (fboundp 'dbus-register-signal)
   (dbus-register-signal
    :session
-   notifications-service
+   nil
    notifications-path
    notifications-interface
    notifications-action-signal
   ;; make it optional, and assume `undefined' as default.
   (let ((entry (assoc id notifications-on-close-map))
        (reason (or reason 4)))
-    (when entry
+    (when (and entry
+              (string-equal notifications-unique-name
+                            (dbus-event-service-name last-input-event)))
       (funcall (cadr entry)
               id (cadr (assoc reason notifications-closed-reason)))
       (remove entry 'notifications-on-close-map))))
 (when (fboundp 'dbus-register-signal)
   (dbus-register-signal
    :session
-   notifications-service
+   nil
    notifications-path
    notifications-interface
    notifications-closed-signal
@@ -277,6 +286,10 @@ used to manipulate the notification item with
                             (or hints '(:array :signature "{sv}"))
                             :int32 (or timeout -1)))
 
+    ;; Remember daemon unique service name.
+    (setq notifications-unique-name
+         (dbus-get-name-owner :session notifications-service))
+
     ;; Register close/action callback function
     (let ((on-action (plist-get params :on-action))
           (on-close (plist-get params :on-close)))