Reduce use of (require 'cl).
[bpt/emacs.git] / lisp / net / dbus.el
CommitLineData
3a993e3d
MA
1;;; dbus.el --- Elisp bindings for D-Bus.
2
acaf905b 3;; Copyright (C) 2007-2012 Free Software Foundation, Inc.
3a993e3d
MA
4
5;; Author: Michael Albinus <michael.albinus@gmx.de>
6;; Keywords: comm, hardware
7
8;; This file is part of GNU Emacs.
9
874a927a 10;; GNU Emacs is free software: you can redistribute it and/or modify
3a993e3d 11;; it under the terms of the GNU General Public License as published by
874a927a
GM
12;; the Free Software Foundation, either version 3 of the License, or
13;; (at your option) any later version.
3a993e3d
MA
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
874a927a 21;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
3a993e3d
MA
22
23;;; Commentary:
24
25;; This package provides language bindings for the D-Bus API. D-Bus
26;; is a message bus system, a simple way for applications to talk to
27;; one another. See <http://dbus.freedesktop.org/> for details.
28
29;; Low-level language bindings are implemented in src/dbusbind.c.
30
dcbf5805
MA
31;; D-Bus support in the Emacs core can be disabled with configuration
32;; option "--without-dbus".
33
3a993e3d
MA
34;;; Code:
35
dcbf5805
MA
36;; Declare used subroutines and variables.
37(declare-function dbus-message-internal "dbusbind.c")
ba6f7d86 38(declare-function dbus-init-bus "dbusbind.c")
dcbf5805
MA
39(defvar dbus-message-type-invalid)
40(defvar dbus-message-type-method-call)
41(defvar dbus-message-type-method-return)
42(defvar dbus-message-type-error)
43(defvar dbus-message-type-signal)
6981d00a 44(defvar dbus-debug)
b172ed20 45(defvar dbus-registered-objects-table)
6981d00a
MA
46
47;; Pacify byte compiler.
f58e0fd5 48(eval-when-compile (require 'cl-lib))
7bb7efbd 49
3a993e3d
MA
50(require 'xml)
51
52(defconst dbus-service-dbus "org.freedesktop.DBus"
53 "The bus name used to talk to the bus itself.")
54
55(defconst dbus-path-dbus "/org/freedesktop/DBus"
56 "The object path used to talk to the bus itself.")
57
dcbf5805
MA
58;; Default D-Bus interfaces.
59
3a993e3d 60(defconst dbus-interface-dbus "org.freedesktop.DBus"
dcbf5805 61 "The interface exported by the service `dbus-service-dbus'.")
3a993e3d 62
4ba11bcb 63(defconst dbus-interface-peer (concat dbus-interface-dbus ".Peer")
dcbf5805
MA
64 "The interface for peer objects.
65See URL `http://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-peer'.")
66
67;; <interface name="org.freedesktop.DBus.Peer">
68;; <method name="Ping">
69;; </method>
70;; <method name="GetMachineId">
71;; <arg name="machine_uuid" type="s" direction="out"/>
72;; </method>
73;; </interface>
4ba11bcb
MA
74
75(defconst dbus-interface-introspectable
76 (concat dbus-interface-dbus ".Introspectable")
dcbf5805
MA
77 "The interface supported by introspectable objects.
78See URL `http://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-introspectable'.")
3a993e3d 79
dcbf5805
MA
80;; <interface name="org.freedesktop.DBus.Introspectable">
81;; <method name="Introspect">
82;; <arg name="data" type="s" direction="out"/>
83;; </method>
84;; </interface>
f636d3ca 85
dcbf5805
MA
86(defconst dbus-interface-properties (concat dbus-interface-dbus ".Properties")
87 "The interface for property objects.
88See URL `http://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-properties'.")
89
90;; <interface name="org.freedesktop.DBus.Properties">
91;; <method name="Get">
92;; <arg name="interface" type="s" direction="in"/>
93;; <arg name="propname" type="s" direction="in"/>
94;; <arg name="value" type="v" direction="out"/>
95;; </method>
96;; <method name="Set">
97;; <arg name="interface" type="s" direction="in"/>
98;; <arg name="propname" type="s" direction="in"/>
99;; <arg name="value" type="v" direction="in"/>
100;; </method>
101;; <method name="GetAll">
102;; <arg name="interface" type="s" direction="in"/>
103;; <arg name="props" type="a{sv}" direction="out"/>
104;; </method>
105;; <signal name="PropertiesChanged">
106;; <arg name="interface" type="s"/>
107;; <arg name="changed_properties" type="a{sv}"/>
108;; <arg name="invalidated_properties" type="as"/>
109;; </signal>
110;; </interface>
111
112(defconst dbus-interface-objectmanager
113 (concat dbus-interface-dbus ".ObjectManager")
114 "The object manager interface.
115See URL `http://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-objectmanager'.")
116
117;; <interface name="org.freedesktop.DBus.ObjectManager">
118;; <method name="GetManagedObjects">
119;; <arg name="object_paths_interfaces_and_properties"
120;; type="a{oa{sa{sv}}}" direction="out"/>
121;; </method>
122;; <signal name="InterfacesAdded">
123;; <arg name="object_path" type="o"/>
124;; <arg name="interfaces_and_properties" type="a{sa{sv}}"/>
125;; </signal>
126;; <signal name="InterfacesRemoved">
127;; <arg name="object_path" type="o"/>
128;; <arg name="interfaces" type="as"/>
129;; </signal>
130;; </interface>
131
132;; Emacs defaults.
65b7cb2c
MA
133(defconst dbus-service-emacs "org.gnu.Emacs"
134 "The well known service name of Emacs.")
135
136(defconst dbus-path-emacs "/org/gnu/Emacs"
dcbf5805
MA
137 "The object path namespace used by Emacs.
138All object paths provided by the service `dbus-service-emacs'
139shall be subdirectories of this path.")
65b7cb2c 140
dcbf5805
MA
141(defconst dbus-interface-emacs "org.gnu.Emacs"
142 "The interface namespace used by Emacs.")
98c38bfc 143
dcbf5805 144;; D-Bus constants.
98c38bfc 145
246a286b
MA
146(defmacro dbus-ignore-errors (&rest body)
147 "Execute BODY; signal D-Bus error when `dbus-debug' is non-nil.
148Otherwise, return result of last form in BODY, or all other errors."
f291fe60 149 (declare (indent 0) (debug t))
246a286b
MA
150 `(condition-case err
151 (progn ,@body)
152 (dbus-error (when dbus-debug (signal (car err) (cdr err))))))
246a286b
MA
153(font-lock-add-keywords 'emacs-lisp-mode '("\\<dbus-ignore-errors\\>"))
154
e12c189f
MA
155(defvar dbus-event-error-hooks nil
156 "Functions to be called when a D-Bus error happens in the event handler.
f213fc09 157Every function must accept two arguments, the event and the error variable
333f9019 158caught in `condition-case' by `dbus-error'.")
e12c189f 159
5363d8ea 160\f
dcbf5805 161;;; Basic D-Bus message functions.
5363d8ea 162
98c38bfc
MA
163(defvar dbus-return-values-table (make-hash-table :test 'equal)
164 "Hash table for temporary storing arguments of reply messages.
dcbf5805
MA
165A key in this hash table is a list (:serial BUS SERIAL), like in
166`dbus-registered-objects-table'. BUS is either a Lisp symbol,
167`:system' or `:session', or a string denoting the bus address.
168SERIAL is the serial number of the reply message.")
169
170(defun dbus-call-method-handler (&rest args)
171 "Handler for reply messages of asynchronous D-Bus message calls.
172It calls the function stored in `dbus-registered-objects-table'.
173The result will be made available in `dbus-return-values-table'."
174 (puthash (list :serial
175 (dbus-event-bus-name last-input-event)
176 (dbus-event-serial-number last-input-event))
177 (if (= (length args) 1) (car args) args)
178 dbus-return-values-table))
179
180(defun dbus-call-method (bus service path interface method &rest args)
181 "Call METHOD on the D-Bus BUS.
182
183BUS is either a Lisp symbol, `:system' or `:session', or a string
184denoting the bus address.
185
186SERVICE is the D-Bus service name to be used. PATH is the D-Bus
187object path SERVICE is registered at. INTERFACE is an interface
188offered by SERVICE. It must provide METHOD.
189
190If the parameter `:timeout' is given, the following integer TIMEOUT
191specifies the maximum number of milliseconds the method call must
192return. The default value is 25,000. If the method call doesn't
193return in time, a D-Bus error is raised.
194
195All other arguments ARGS are passed to METHOD as arguments. They are
196converted into D-Bus types via the following rules:
197
198 t and nil => DBUS_TYPE_BOOLEAN
199 number => DBUS_TYPE_UINT32
200 integer => DBUS_TYPE_INT32
201 float => DBUS_TYPE_DOUBLE
202 string => DBUS_TYPE_STRING
203 list => DBUS_TYPE_ARRAY
204
205All arguments can be preceded by a type symbol. For details about
206type symbols, see Info node `(dbus)Type Conversion'.
207
208`dbus-call-method' returns the resulting values of METHOD as a list of
209Lisp objects. The type conversion happens the other direction as for
210input arguments. It follows the mapping rules:
211
212 DBUS_TYPE_BOOLEAN => t or nil
213 DBUS_TYPE_BYTE => number
214 DBUS_TYPE_UINT16 => number
215 DBUS_TYPE_INT16 => integer
216 DBUS_TYPE_UINT32 => number or float
217 DBUS_TYPE_UNIX_FD => number or float
218 DBUS_TYPE_INT32 => integer or float
219 DBUS_TYPE_UINT64 => number or float
220 DBUS_TYPE_INT64 => integer or float
221 DBUS_TYPE_DOUBLE => float
222 DBUS_TYPE_STRING => string
223 DBUS_TYPE_OBJECT_PATH => string
224 DBUS_TYPE_SIGNATURE => string
225 DBUS_TYPE_ARRAY => list
226 DBUS_TYPE_VARIANT => list
227 DBUS_TYPE_STRUCT => list
228 DBUS_TYPE_DICT_ENTRY => list
229
230Example:
231
232\(dbus-call-method
233 :session \"org.gnome.seahorse\" \"/org/gnome/seahorse/keys/openpgp\"
234 \"org.gnome.seahorse.Keys\" \"GetKeyField\"
235 \"openpgp:657984B8C7A966DD\" \"simple-name\")
236
237 => (t (\"Philip R. Zimmermann\"))
238
239If the result of the METHOD call is just one value, the converted Lisp
240object is returned instead of a list containing this single Lisp object.
241
242\(dbus-call-method
243 :system \"org.freedesktop.Hal\" \"/org/freedesktop/Hal/devices/computer\"
244 \"org.freedesktop.Hal.Device\" \"GetPropertyString\"
245 \"system.kernel.machine\")
246
247 => \"i686\""
248
249 (or (memq bus '(:system :session)) (stringp bus)
250 (signal 'wrong-type-argument (list 'keywordp bus)))
251 (or (stringp service)
252 (signal 'wrong-type-argument (list 'stringp service)))
253 (or (stringp path)
254 (signal 'wrong-type-argument (list 'stringp path)))
255 (or (stringp interface)
256 (signal 'wrong-type-argument (list 'stringp interface)))
257 (or (stringp method)
258 (signal 'wrong-type-argument (list 'stringp method)))
259
260 (let ((timeout (plist-get args :timeout))
261 (key
262 (apply
263 'dbus-message-internal dbus-message-type-method-call
264 bus service path interface method 'dbus-call-method-handler args)))
205a7391 265
dcbf5805
MA
266 ;; Wait until `dbus-call-method-handler' has put the result into
267 ;; `dbus-return-values-table'. If no timeout is given, use the
205a7391 268 ;; default 25". Events which are not from D-Bus must be restored.
dcbf5805
MA
269 (with-timeout ((if timeout (/ timeout 1000.0) 25))
270 (while (eq (gethash key dbus-return-values-table :ignore) :ignore)
682cefaf 271 (let ((event (let (unread-command-events) (read-event nil nil 0.1))))
205a7391
MA
272 (when (and event (not (ignore-errors (dbus-check-event event))))
273 (setq unread-command-events
274 (append unread-command-events (list event)))))))
dcbf5805
MA
275
276 ;; Cleanup `dbus-return-values-table'. Return the result.
277 (prog1
278 (gethash key dbus-return-values-table)
279 (remhash key dbus-return-values-table))))
280
281;; `dbus-call-method' works non-blocking now.
282(defalias 'dbus-call-method-non-blocking 'dbus-call-method)
283(make-obsolete 'dbus-call-method-non-blocking 'dbus-call-method "24.2")
284
285(defun dbus-call-method-asynchronously
286 (bus service path interface method handler &rest args)
287 "Call METHOD on the D-Bus BUS asynchronously.
288
289BUS is either a Lisp symbol, `:system' or `:session', or a string
290denoting the bus address.
291
292SERVICE is the D-Bus service name to be used. PATH is the D-Bus
293object path SERVICE is registered at. INTERFACE is an interface
294offered by SERVICE. It must provide METHOD.
295
296HANDLER is a Lisp function, which is called when the corresponding
297return message has arrived. If HANDLER is nil, no return message
298will be expected.
299
300If the parameter `:timeout' is given, the following integer TIMEOUT
301specifies the maximum number of milliseconds the method call must
302return. The default value is 25,000. If the method call doesn't
303return in time, a D-Bus error is raised.
304
305All other arguments ARGS are passed to METHOD as arguments. They are
306converted into D-Bus types via the following rules:
307
308 t and nil => DBUS_TYPE_BOOLEAN
309 number => DBUS_TYPE_UINT32
310 integer => DBUS_TYPE_INT32
311 float => DBUS_TYPE_DOUBLE
312 string => DBUS_TYPE_STRING
313 list => DBUS_TYPE_ARRAY
314
315All arguments can be preceded by a type symbol. For details about
316type symbols, see Info node `(dbus)Type Conversion'.
317
318If HANDLER is a Lisp function, the function returns a key into the
319hash table `dbus-registered-objects-table'. The corresponding entry
320in the hash table is removed, when the return message has been arrived,
321and HANDLER is called.
322
323Example:
324
325\(dbus-call-method-asynchronously
326 :system \"org.freedesktop.Hal\" \"/org/freedesktop/Hal/devices/computer\"
327 \"org.freedesktop.Hal.Device\" \"GetPropertyString\" 'message
328 \"system.kernel.machine\")
329
330 => \(:serial :system 2)
331
332 -| i686"
333
334 (or (memq bus '(:system :session)) (stringp bus)
335 (signal 'wrong-type-argument (list 'keywordp bus)))
336 (or (stringp service)
337 (signal 'wrong-type-argument (list 'stringp service)))
338 (or (stringp path)
339 (signal 'wrong-type-argument (list 'stringp path)))
340 (or (stringp interface)
341 (signal 'wrong-type-argument (list 'stringp interface)))
342 (or (stringp method)
343 (signal 'wrong-type-argument (list 'stringp method)))
344 (or (null handler) (functionp handler)
345 (signal 'wrong-type-argument (list 'functionp handler)))
346
347 (apply 'dbus-message-internal dbus-message-type-method-call
348 bus service path interface method handler args))
349
350(defun dbus-send-signal (bus service path interface signal &rest args)
351 "Send signal SIGNAL on the D-Bus BUS.
352
353BUS is either a Lisp symbol, `:system' or `:session', or a string
354denoting the bus address. The signal is sent from the D-Bus object
355Emacs is registered at BUS.
356
357SERVICE is the D-Bus name SIGNAL is sent to. It can be either a known
358name or a unique name. If SERVICE is nil, the signal is sent as
359broadcast message. PATH is the D-Bus object path SIGNAL is sent from.
360INTERFACE is an interface available at PATH. It must provide signal
361SIGNAL.
362
363All other arguments ARGS are passed to SIGNAL as arguments. They are
364converted into D-Bus types via the following rules:
365
366 t and nil => DBUS_TYPE_BOOLEAN
367 number => DBUS_TYPE_UINT32
368 integer => DBUS_TYPE_INT32
369 float => DBUS_TYPE_DOUBLE
370 string => DBUS_TYPE_STRING
371 list => DBUS_TYPE_ARRAY
372
373All arguments can be preceded by a type symbol. For details about
374type symbols, see Info node `(dbus)Type Conversion'.
375
376Example:
377
378\(dbus-send-signal
379 :session nil \"/org/gnu/Emacs\" \"org.gnu.Emacs.FileManager\"
380 \"FileModified\" \"/home/albinus/.emacs\")"
381
382 (or (memq bus '(:system :session)) (stringp bus)
383 (signal 'wrong-type-argument (list 'keywordp bus)))
384 (or (null service) (stringp service)
385 (signal 'wrong-type-argument (list 'stringp service)))
386 (or (stringp path)
387 (signal 'wrong-type-argument (list 'stringp path)))
388 (or (stringp interface)
389 (signal 'wrong-type-argument (list 'stringp interface)))
390 (or (stringp signal)
391 (signal 'wrong-type-argument (list 'stringp signal)))
392
393 (apply 'dbus-message-internal dbus-message-type-signal
394 bus service path interface signal args))
395
396(defun dbus-method-return-internal (bus service serial &rest args)
397 "Return for message SERIAL on the D-Bus BUS.
398This is an internal function, it shall not be used outside dbus.el."
399
400 (or (memq bus '(:system :session)) (stringp bus)
401 (signal 'wrong-type-argument (list 'keywordp bus)))
402 (or (stringp service)
403 (signal 'wrong-type-argument (list 'stringp service)))
404 (or (natnump serial)
405 (signal 'wrong-type-argument (list 'natnump serial)))
406
407 (apply 'dbus-message-internal dbus-message-type-method-return
408 bus service serial args))
409
410(defun dbus-method-error-internal (bus service serial &rest args)
411 "Return error message for message SERIAL on the D-Bus BUS.
412This is an internal function, it shall not be used outside dbus.el."
413
414 (or (memq bus '(:system :session)) (stringp bus)
415 (signal 'wrong-type-argument (list 'keywordp bus)))
416 (or (stringp service)
417 (signal 'wrong-type-argument (list 'stringp service)))
418 (or (natnump serial)
419 (signal 'wrong-type-argument (list 'natnump serial)))
420
421 (apply 'dbus-message-internal dbus-message-type-error
422 bus service serial args))
423
424\f
425;;; Hash table of registered functions.
98c38bfc 426
ef6ce14c 427(defun dbus-list-hash-table ()
e49d337b 428 "Returns all registered member registrations to D-Bus.
ef6ce14c 429The return value is a list, with elements of kind (KEY . VALUE).
b172ed20 430See `dbus-registered-objects-table' for a description of the
ef6ce14c
MA
431hash table."
432 (let (result)
433 (maphash
4f91a816 434 (lambda (key value) (add-to-list 'result (cons key value) 'append))
b172ed20 435 dbus-registered-objects-table)
ef6ce14c
MA
436 result))
437
dcbf5805
MA
438(defun dbus-setenv (bus variable value)
439 "Set the value of the BUS environment variable named VARIABLE to VALUE.
b172ed20 440
dcbf5805
MA
441BUS is either a Lisp symbol, `:system' or `:session', or a string
442denoting the bus address. Both VARIABLE and VALUE should be strings.
246a286b 443
dcbf5805
MA
444Normally, services inherit the environment of the BUS daemon. This
445function adds to or modifies that environment when activating services.
b172ed20 446
dcbf5805
MA
447Some bus instances, such as `:system', may disable setting the environment."
448 (dbus-call-method
449 bus dbus-service-dbus dbus-path-dbus
450 dbus-interface-dbus "UpdateActivationEnvironment"
451 `(:array (:dict-entry ,variable ,value))))
452
453(defun dbus-register-service (bus service &rest flags)
454 "Register known name SERVICE on the D-Bus BUS.
455
456BUS is either a Lisp symbol, `:system' or `:session', or a string
457denoting the bus address.
458
459SERVICE is the D-Bus service name that should be registered. It must
460be a known name.
461
462FLAGS are keywords, which control how the service name is registered.
463The following keywords are recognized:
464
465`:allow-replacement': Allow another service to become the primary
466owner if requested.
467
468`:replace-existing': Request to replace the current primary owner.
469
470`:do-not-queue': If we can not become the primary owner do not place
471us in the queue.
472
473The function returns a keyword, indicating the result of the
474operation. One of the following keywords is returned:
475
476`:primary-owner': Service has become the primary owner of the
477requested name.
478
479`:in-queue': Service could not become the primary owner and has been
480placed in the queue.
481
482`:exists': Service is already in the queue.
483
484`:already-owner': Service is already the primary owner."
485
486 ;; Add ObjectManager handler.
487 (dbus-register-method
488 bus service nil dbus-interface-objectmanager "GetManagedObjects"
489 'dbus-managed-objects-handler 'dont-register)
490
491 (let ((arg 0)
492 reply)
493 (dolist (flag flags)
494 (setq arg
495 (+ arg
f58e0fd5 496 (pcase flag
dcbf5805
MA
497 (:allow-replacement 1)
498 (:replace-existing 2)
499 (:do-not-queue 4)
f58e0fd5 500 (_ (signal 'wrong-type-argument (list flag)))))))
dcbf5805
MA
501 (setq reply (dbus-call-method
502 bus dbus-service-dbus dbus-path-dbus dbus-interface-dbus
503 "RequestName" service arg))
f58e0fd5 504 (pcase reply
dcbf5805
MA
505 (1 :primary-owner)
506 (2 :in-queue)
507 (3 :exists)
508 (4 :already-owner)
f58e0fd5 509 (_ (signal 'dbus-error (list "Could not register service" service))))))
246a286b 510
c0a39702
MA
511(defun dbus-unregister-service (bus service)
512 "Unregister all objects related to SERVICE from D-Bus BUS.
e73f184c 513BUS is either a Lisp symbol, `:system' or `:session', or a string
5c0b4070
MA
514denoting the bus address. SERVICE must be a known service name.
515
516The function returns a keyword, indicating the result of the
517operation. One of the following keywords is returned:
518
519`:released': Service has become the primary owner of the name.
520
521`:non-existent': Service name does not exist on this bus.
522
523`:not-owner': We are neither the primary owner nor waiting in the
524queue of this service."
525
c0a39702
MA
526 (maphash
527 (lambda (key value)
528 (dolist (elt value)
529 (ignore-errors
dcbf5805 530 (when (and (equal bus (cadr key)) (string-equal service (cadr elt)))
c0a39702
MA
531 (unless
532 (puthash key (delete elt value) dbus-registered-objects-table)
533 (remhash key dbus-registered-objects-table))))))
534 dbus-registered-objects-table)
0a203b61
MA
535 (let ((reply (dbus-call-method
536 bus dbus-service-dbus dbus-path-dbus dbus-interface-dbus
537 "ReleaseName" service)))
f58e0fd5 538 (pcase reply
0a203b61
MA
539 (1 :released)
540 (2 :non-existent)
541 (3 :not-owner)
f58e0fd5 542 (_ (signal 'dbus-error (list "Could not unregister service" service))))))
c0a39702 543
dcbf5805
MA
544(defun dbus-register-signal
545 (bus service path interface signal handler &rest args)
546 "Register for a signal on the D-Bus BUS.
98c38bfc 547
dcbf5805
MA
548BUS is either a Lisp symbol, `:system' or `:session', or a string
549denoting the bus address.
98c38bfc 550
dcbf5805
MA
551SERVICE is the D-Bus service name used by the sending D-Bus object.
552It can be either a known name or the unique name of the D-Bus object
553sending the signal.
554
555PATH is the D-Bus object path SERVICE is registered. INTERFACE
556is an interface offered by SERVICE. It must provide SIGNAL.
557HANDLER is a Lisp function to be called when the signal is
558received. It must accept as arguments the values SIGNAL is
559sending.
560
561SERVICE, PATH, INTERFACE and SIGNAL can be nil. This is
562interpreted as a wildcard for the respective argument.
563
564The remaining arguments ARGS can be keywords or keyword string pairs.
565The meaning is as follows:
566
567`:argN' STRING:
568`:pathN' STRING: This stands for the Nth argument of the
569signal. `:pathN' arguments can be used for object path wildcard
0ba2624f 570matches as specified by D-Bus, while an `:argN' argument
dcbf5805
MA
571requires an exact match.
572
573`:arg-namespace' STRING: Register for the signals, which first
574argument defines the service or interface namespace STRING.
575
576`:path-namespace' STRING: Register for the object path namespace
577STRING. All signals sent from an object path, which has STRING as
578the preceding string, are matched. This requires PATH to be nil.
579
580`:eavesdrop': Register for unicast signals which are not directed
581to the D-Bus object Emacs is registered at D-Bus BUS, if the
582security policy of BUS allows this.
583
584Example:
585
586\(defun my-signal-handler (device)
587 (message \"Device %s added\" device))
588
589\(dbus-register-signal
590 :system \"org.freedesktop.Hal\" \"/org/freedesktop/Hal/Manager\"
591 \"org.freedesktop.Hal.Manager\" \"DeviceAdded\" 'my-signal-handler)
592
593 => \(\(:signal :system \"org.freedesktop.Hal.Manager\" \"DeviceAdded\")
594 \(\"org.freedesktop.Hal\" \"/org/freedesktop/Hal/Manager\" my-signal-handler))
595
596`dbus-register-signal' returns an object, which can be used in
597`dbus-unregister-object' for removing the registration."
598
599 (let ((counter 0)
600 (rule "type='signal'")
601 uname key key1 value)
602
603 ;; Retrieve unique name of service. If service is a known name,
604 ;; we will register for the corresponding unique name, if any.
605 ;; Signals are sent always with the unique name as sender. Note:
606 ;; the unique name of `dbus-service-dbus' is that string itself.
607 (if (and (stringp service)
608 (not (zerop (length service)))
609 (not (string-equal service dbus-service-dbus))
610 (not (string-match "^:" service)))
611 (setq uname (dbus-get-name-owner bus service))
612 (setq uname service))
613
614 (setq rule (concat rule
615 (when uname (format ",sender='%s'" uname))
616 (when interface (format ",interface='%s'" interface))
617 (when signal (format ",member='%s'" signal))
618 (when path (format ",path='%s'" path))))
619
620 ;; Add arguments to the rule.
621 (if (or (stringp (car args)) (null (car args)))
622 ;; As backward compatibility option, we allow just strings.
623 (dolist (arg args)
624 (if (stringp arg)
625 (setq rule (concat rule (format ",arg%d='%s'" counter arg)))
626 (if arg (signal 'wrong-type-argument (list "Wrong argument" arg))))
627 (setq counter (1+ counter)))
628
629 ;; Parse keywords.
630 (while args
631 (setq
632 key (car args)
633 rule (concat
634 rule
635 (cond
636 ;; `:arg0' .. `:arg63', `:path0' .. `:path63'.
637 ((and (keywordp key)
638 (string-match
639 "^:\\(arg\\|path\\)\\([[:digit:]]+\\)$"
640 (symbol-name key)))
641 (setq counter (match-string 2 (symbol-name key))
642 args (cdr args)
643 value (car args))
644 (unless (and (<= counter 63) (stringp value))
645 (signal 'wrong-type-argument
646 (list "Wrong argument" key value)))
647 (format
648 ",arg%s%s='%s'"
649 counter
650 (if (string-equal (match-string 1 (symbol-name key)) "path")
651 "path" "")
652 value))
653 ;; `:arg-namespace', `:path-namespace'.
654 ((and (keywordp key)
655 (string-match
656 "^:\\(arg\\|path\\)-namespace$" (symbol-name key)))
657 (setq args (cdr args)
658 value (car args))
659 (unless (stringp value)
660 (signal 'wrong-type-argument
661 (list "Wrong argument" key value)))
662 (format
663 ",%s='%s'"
664 (if (string-equal (match-string 1 (symbol-name key)) "path")
665 "path_namespace" "arg0namespace")
666 value))
667 ;; `:eavesdrop'.
668 ((eq key :eavesdrop)
669 ",eavesdrop='true'")
670 (t (signal 'wrong-type-argument (list "Wrong argument" key)))))
671 args (cdr args))))
672
673 ;; Add the rule to the bus.
674 (condition-case err
675 (dbus-call-method
676 bus dbus-service-dbus dbus-path-dbus dbus-interface-dbus
677 "AddMatch" rule)
678 (dbus-error
679 (if (not (string-match "eavesdrop" rule))
680 (signal (car err) (cdr err))
681 ;; The D-Bus spec says we shall fall back to a rule without eavesdrop.
682 (when dbus-debug (message "Removing eavesdrop from rule %s" rule))
683 (setq rule (replace-regexp-in-string ",eavesdrop='true'" "" rule))
684 (dbus-call-method
685 bus dbus-service-dbus dbus-path-dbus dbus-interface-dbus
686 "AddMatch" rule))))
98c38bfc 687
dcbf5805 688 (when dbus-debug (message "Matching rule \"%s\" created" rule))
98c38bfc 689
dcbf5805
MA
690 ;; Create a hash table entry.
691 (setq key (list :signal bus interface signal)
692 key1 (list uname service path handler rule)
693 value (gethash key dbus-registered-objects-table))
694 (unless (member key1 value)
695 (puthash key (cons key1 value) dbus-registered-objects-table))
98c38bfc 696
dcbf5805
MA
697 ;; Return the object.
698 (list key (list service path handler))))
98c38bfc 699
dcbf5805
MA
700(defun dbus-register-method
701 (bus service path interface method handler &optional dont-register-service)
702 "Register for method METHOD on the D-Bus BUS.
703
704BUS is either a Lisp symbol, `:system' or `:session', or a string
705denoting the bus address.
706
707SERVICE is the D-Bus service name of the D-Bus object METHOD is
708registered for. It must be a known name (See discussion of
709DONT-REGISTER-SERVICE below).
710
711PATH is the D-Bus object path SERVICE is registered (See discussion of
712DONT-REGISTER-SERVICE below). INTERFACE is the interface offered by
713SERVICE. It must provide METHOD.
714
715HANDLER is a Lisp function to be called when a method call is
716received. It must accept the input arguments of METHOD. The return
717value of HANDLER is used for composing the returning D-Bus message.
718In case HANDLER shall return a reply message with an empty argument
719list, HANDLER must return the symbol `:ignore'.
720
721When DONT-REGISTER-SERVICE is non-nil, the known name SERVICE is not
722registered. This means that other D-Bus clients have no way of
723noticing the newly registered method. When interfaces are constructed
724incrementally by adding single methods or properties at a time,
725DONT-REGISTER-SERVICE can be used to prevent other clients from
726discovering the still incomplete interface."
727
728 ;; Register SERVICE.
729 (unless (or dont-register-service
730 (member service (dbus-list-names bus)))
731 (dbus-register-service bus service))
732
733 ;; Create a hash table entry. We use nil for the unique name,
734 ;; because the method might be called from anybody.
735 (let* ((key (list :method bus interface method))
736 (key1 (list nil service path handler))
737 (value (gethash key dbus-registered-objects-table)))
738
739 (unless (member key1 value)
740 (puthash key (cons key1 value) dbus-registered-objects-table))
741
742 ;; Return the object.
743 (list key (list service path handler))))
744
745(defun dbus-unregister-object (object)
746 "Unregister OBJECT from D-Bus.
747OBJECT must be the result of a preceding `dbus-register-method',
748`dbus-register-property' or `dbus-register-signal' call. It
749returns `t' if OBJECT has been unregistered, `nil' otherwise.
750
751When OBJECT identifies the last method or property, which is
752registered for the respective service, Emacs releases its
753association to the service from D-Bus."
754 ;; Check parameter.
755 (unless (and (consp object) (not (null (car object))) (consp (cdr object)))
756 (signal 'wrong-type-argument (list 'D-Bus object)))
757
758 ;; Find the corresponding entry in the hash table.
759 (let* ((key (car object))
760 (type (car key))
761 (bus (cadr key))
762 (value (cadr object))
763 (service (car value))
764 (entry (gethash key dbus-registered-objects-table))
765 ret)
766 ;; key has the structure (TYPE BUS INTERFACE MEMBER).
767 ;; value has the structure (SERVICE PATH [HANDLER]).
768 ;; entry has the structure ((UNAME SERVICE PATH MEMBER [RULE]) ...).
769 ;; MEMBER is either a string (the handler), or a cons cell (a
770 ;; property value). UNAME and property values are not taken into
771 ;; account for comparison.
772
773 ;; Loop over the registered functions.
774 (dolist (elt entry)
775 (when (equal
776 value
777 (butlast (cdr elt) (- (length (cdr elt)) (length value))))
778 (setq ret t)
779 ;; Compute new hash value. If it is empty, remove it from the
780 ;; hash table.
781 (unless (puthash key (delete elt entry) dbus-registered-objects-table)
782 (remhash key dbus-registered-objects-table))
783 ;; Remove match rule of signals.
784 (when (eq type :signal)
785 (dbus-call-method
786 bus dbus-service-dbus dbus-path-dbus dbus-interface-dbus
787 "RemoveMatch" (nth 4 elt)))))
788
789 ;; Check, whether there is still a registered function or property
790 ;; for the given service. If not, unregister the service from the
791 ;; bus.
792 (when (and service (memq type '(:method :property))
793 (not (catch :found
794 (progn
795 (maphash
796 (lambda (k v)
797 (dolist (e v)
798 (ignore-errors
799 (and
800 ;; Bus.
801 (equal bus (cadr k))
802 ;; Service.
803 (string-equal service (cadr e))
804 ;; Non-empty object path.
f58e0fd5 805 (cl-caddr e)
dcbf5805
MA
806 (throw :found t)))))
807 dbus-registered-objects-table)
808 nil))))
809 (dbus-unregister-service bus service))
810 ;; Return.
811 ret))
ef6ce14c 812
5363d8ea 813\f
82697a45
MA
814;;; D-Bus type conversion.
815
816(defun dbus-string-to-byte-array (string)
817 "Transforms STRING to list (:array :byte c1 :byte c2 ...).
818STRING shall be UTF8 coded."
d665fff0
MA
819 (if (zerop (length string))
820 '(:array :signature "y")
821 (let (result)
822 (dolist (elt (string-to-list string) (append '(:array) result))
823 (setq result (append result (list :byte elt)))))))
82697a45
MA
824
825(defun dbus-byte-array-to-string (byte-array)
826 "Transforms BYTE-ARRAY into UTF8 coded string.
827BYTE-ARRAY must be a list of structure (c1 c2 ...)."
828 (apply 'string byte-array))
829
830(defun dbus-escape-as-identifier (string)
831 "Escape an arbitrary STRING so it follows the rules for a C identifier.
832The escaped string can be used as object path component, interface element
833component, bus name component or member name in D-Bus.
834
835The escaping consists of replacing all non-alphanumerics, and the
836first character if it's a digit, with an underscore and two
837lower-case hex digits:
838
839 \"0123abc_xyz\\x01\\xff\" -> \"_30123abc_5fxyz_01_ff\"
840
841i.e. similar to URI encoding, but with \"_\" taking the role of \"%\",
842and a smaller allowed set. As a special case, \"\" is escaped to
843\"_\".
844
845Returns the escaped string. Algorithm taken from
846telepathy-glib's `tp-escape-as-identifier'."
847 (if (zerop (length string))
848 "_"
849 (replace-regexp-in-string
850 "^[0-9]\\|[^A-Za-z0-9]"
851 (lambda (x) (format "_%2x" (aref x 0)))
852 string)))
853
854(defun dbus-unescape-from-identifier (string)
855 "Retrieve the original string from the encoded STRING.
856STRING must have been coded with `dbus-escape-as-identifier'"
857 (if (string-equal string "_")
858 ""
859 (replace-regexp-in-string
860 "_.."
861 (lambda (x) (format "%c" (string-to-number (substring x 1) 16)))
862 string)))
863
864\f
5363d8ea
MA
865;;; D-Bus events.
866
3a993e3d
MA
867(defun dbus-check-event (event)
868 "Checks whether EVENT is a well formed D-Bus event.
869EVENT is a list which starts with symbol `dbus-event':
870
98c38bfc 871 (dbus-event BUS TYPE SERIAL SERVICE PATH INTERFACE MEMBER HANDLER &rest ARGS)
3a993e3d 872
e49d337b 873BUS identifies the D-Bus the message is coming from. It is
e73f184c
MA
874either a Lisp symbol, `:system' or `:session', or a string
875denoting the bus address. TYPE is the D-Bus message type which
876has caused the event, SERIAL is the serial number of the received
877D-Bus message. SERVICE and PATH are the unique name and the
878object path of the D-Bus object emitting the message. INTERFACE
879and MEMBER denote the message which has been sent. HANDLER is
880the function which has been registered for this message. ARGS
881are the arguments passed to HANDLER, when it is called during
882event handling in `dbus-handle-event'.
3a993e3d
MA
883
884This function raises a `dbus-error' signal in case the event is
885not well formed."
886 (when dbus-debug (message "DBus-Event %s" event))
887 (unless (and (listp event)
888 (eq (car event) 'dbus-event)
5363d8ea 889 ;; Bus symbol.
e73f184c
MA
890 (or (symbolp (nth 1 event))
891 (stringp (nth 1 event)))
98c38bfc
MA
892 ;; Type.
893 (and (natnump (nth 2 event))
894 (< dbus-message-type-invalid (nth 2 event)))
e49d337b 895 ;; Serial.
98c38bfc 896 (natnump (nth 3 event))
5363d8ea 897 ;; Service.
98c38bfc 898 (or (= dbus-message-type-method-return (nth 2 event))
ba0b66b0 899 (= dbus-message-type-error (nth 2 event))
98c38bfc 900 (stringp (nth 4 event)))
e49d337b 901 ;; Object path.
98c38bfc 902 (or (= dbus-message-type-method-return (nth 2 event))
ba0b66b0 903 (= dbus-message-type-error (nth 2 event))
98c38bfc 904 (stringp (nth 5 event)))
e49d337b 905 ;; Interface.
98c38bfc 906 (or (= dbus-message-type-method-return (nth 2 event))
ba0b66b0 907 (= dbus-message-type-error (nth 2 event))
98c38bfc 908 (stringp (nth 6 event)))
e49d337b 909 ;; Member.
98c38bfc 910 (or (= dbus-message-type-method-return (nth 2 event))
ba0b66b0 911 (= dbus-message-type-error (nth 2 event))
98c38bfc 912 (stringp (nth 7 event)))
ef6ce14c 913 ;; Handler.
98c38bfc 914 (functionp (nth 8 event)))
3a993e3d
MA
915 (signal 'dbus-error (list "Not a valid D-Bus event" event))))
916
917;;;###autoload
918(defun dbus-handle-event (event)
919 "Handle events from the D-Bus.
5363d8ea 920EVENT is a D-Bus event, see `dbus-check-event'. HANDLER, being
98c38bfc 921part of the event, is called with arguments ARGS.
35b148ee 922If the HANDLER returns a `dbus-error', it is propagated as return message."
3a993e3d 923 (interactive "e")
98c38bfc
MA
924 (condition-case err
925 (let (result)
ba0b66b0 926 ;; We ignore not well-formed events.
98c38bfc 927 (dbus-check-event event)
ba0b66b0
MA
928 ;; Error messages must be propagated.
929 (when (= dbus-message-type-error (nth 2 event))
930 (signal 'dbus-error (nthcdr 9 event)))
931 ;; Apply the handler.
98c38bfc
MA
932 (setq result (apply (nth 8 event) (nthcdr 9 event)))
933 ;; Return a message when it is a message call.
934 (when (= dbus-message-type-method-call (nth 2 event))
935 (dbus-ignore-errors
3dec5c36
MA
936 (if (eq result :ignore)
937 (dbus-method-return-internal
dcbf5805 938 (nth 1 event) (nth 4 event) (nth 3 event))
3dec5c36 939 (apply 'dbus-method-return-internal
dcbf5805 940 (nth 1 event) (nth 4 event) (nth 3 event)
3dec5c36 941 (if (consp result) result (list result)))))))
98c38bfc
MA
942 ;; Error handling.
943 (dbus-error
944 ;; Return an error message when it is a message call.
945 (when (= dbus-message-type-method-call (nth 2 event))
946 (dbus-ignore-errors
947 (dbus-method-error-internal
dcbf5805 948 (nth 1 event) (nth 4 event) (nth 3 event) (cadr err))))
ba0b66b0 949 ;; Propagate D-Bus error messages.
f213fc09 950 (run-hook-with-args 'dbus-event-error-hooks event err)
ba0b66b0
MA
951 (when (or dbus-debug (= dbus-message-type-error (nth 2 event)))
952 (signal (car err) (cdr err))))))
3a993e3d
MA
953
954(defun dbus-event-bus-name (event)
955 "Return the bus name the event is coming from.
e73f184c
MA
956The result is either a Lisp symbol, `:system' or `:session', or a
957string denoting the bus address. EVENT is a D-Bus event, see
958`dbus-check-event'. This function raises a `dbus-error' signal
959in case the event is not well formed."
3a993e3d 960 (dbus-check-event event)
ef6ce14c 961 (nth 1 event))
3a993e3d 962
98c38bfc
MA
963(defun dbus-event-message-type (event)
964 "Return the message type of the corresponding D-Bus message.
965The result is a number. EVENT is a D-Bus event, see
966`dbus-check-event'. This function raises a `dbus-error' signal
967in case the event is not well formed."
968 (dbus-check-event event)
969 (nth 2 event))
970
e49d337b
MA
971(defun dbus-event-serial-number (event)
972 "Return the serial number of the corresponding D-Bus message.
98c38bfc
MA
973The result is a number. The serial number is needed for
974generating a reply message. EVENT is a D-Bus event, see
975`dbus-check-event'. This function raises a `dbus-error' signal
976in case the event is not well formed."
e49d337b 977 (dbus-check-event event)
98c38bfc 978 (nth 3 event))
e49d337b 979
3a993e3d 980(defun dbus-event-service-name (event)
5363d8ea 981 "Return the name of the D-Bus object the event is coming from.
3a993e3d
MA
982The result is a string. EVENT is a D-Bus event, see `dbus-check-event'.
983This function raises a `dbus-error' signal in case the event is
984not well formed."
985 (dbus-check-event event)
98c38bfc 986 (nth 4 event))
3a993e3d
MA
987
988(defun dbus-event-path-name (event)
989 "Return the object path of the D-Bus object the event is coming from.
990The result is a string. EVENT is a D-Bus event, see `dbus-check-event'.
991This function raises a `dbus-error' signal in case the event is
992not well formed."
993 (dbus-check-event event)
98c38bfc 994 (nth 5 event))
3a993e3d
MA
995
996(defun dbus-event-interface-name (event)
997 "Return the interface name of the D-Bus object the event is coming from.
998The result is a string. EVENT is a D-Bus event, see `dbus-check-event'.
999This function raises a `dbus-error' signal in case the event is
1000not well formed."
1001 (dbus-check-event event)
98c38bfc 1002 (nth 6 event))
3a993e3d
MA
1003
1004(defun dbus-event-member-name (event)
1005 "Return the member name the event is coming from.
58179cce 1006It is either a signal name or a method name. The result is a
3a993e3d
MA
1007string. EVENT is a D-Bus event, see `dbus-check-event'. This
1008function raises a `dbus-error' signal in case the event is not
1009well formed."
1010 (dbus-check-event event)
98c38bfc 1011 (nth 7 event))
5363d8ea
MA
1012
1013\f
1014;;; D-Bus registered names.
3a993e3d 1015
07e52e08 1016(defun dbus-list-activatable-names (&optional bus)
3a993e3d 1017 "Return the D-Bus service names which can be activated as list.
07e52e08
MA
1018If BUS is left nil, `:system' is assumed. The result is a list
1019of strings, which is `nil' when there are no activatable service
1020names at all."
246a286b
MA
1021 (dbus-ignore-errors
1022 (dbus-call-method
07e52e08 1023 (or bus :system) dbus-service-dbus
246a286b 1024 dbus-path-dbus dbus-interface-dbus "ListActivatableNames")))
3a993e3d
MA
1025
1026(defun dbus-list-names (bus)
1027 "Return the service names registered at D-Bus BUS.
f636d3ca
MA
1028The result is a list of strings, which is `nil' when there are no
1029registered service names at all. Well known names are strings
1030like \"org.freedesktop.DBus\". Names starting with \":\" are
1031unique names for services."
246a286b
MA
1032 (dbus-ignore-errors
1033 (dbus-call-method
1034 bus dbus-service-dbus dbus-path-dbus dbus-interface-dbus "ListNames")))
3a993e3d
MA
1035
1036(defun dbus-list-known-names (bus)
1037 "Retrieve all services which correspond to a known name in BUS.
1038A service has a known name if it doesn't start with \":\"."
1039 (let (result)
1040 (dolist (name (dbus-list-names bus) result)
1041 (unless (string-equal ":" (substring name 0 1))
1042 (add-to-list 'result name 'append)))))
1043
1044(defun dbus-list-queued-owners (bus service)
f636d3ca
MA
1045 "Return the unique names registered at D-Bus BUS and queued for SERVICE.
1046The result is a list of strings, or `nil' when there are no
1047queued name owners service names at all."
246a286b
MA
1048 (dbus-ignore-errors
1049 (dbus-call-method
1050 bus dbus-service-dbus dbus-path-dbus
1051 dbus-interface-dbus "ListQueuedOwners" service)))
3a993e3d
MA
1052
1053(defun dbus-get-name-owner (bus service)
1054 "Return the name owner of SERVICE registered at D-Bus BUS.
f636d3ca 1055The result is either a string, or `nil' if there is no name owner."
246a286b
MA
1056 (dbus-ignore-errors
1057 (dbus-call-method
1058 bus dbus-service-dbus dbus-path-dbus
1059 dbus-interface-dbus "GetNameOwner" service)))
3a993e3d 1060
93fb0645
MA
1061(defun dbus-ping (bus service &optional timeout)
1062 "Check whether SERVICE is registered for D-Bus BUS.
1063TIMEOUT, a nonnegative integer, specifies the maximum number of
1064milliseconds `dbus-ping' must return. The default value is 25,000.
1065
1066Note, that this autoloads SERVICE if it is not running yet. If
1067it shall be checked whether SERVICE is already running, one shall
1068apply
1069
1070 \(member service \(dbus-list-known-names bus))"
4ba11bcb
MA
1071 ;; "Ping" raises a D-Bus error if SERVICE does not exist.
1072 ;; Otherwise, it returns silently with `nil'.
1073 (condition-case nil
1074 (not
93fb0645
MA
1075 (if (natnump timeout)
1076 (dbus-call-method
1077 bus service dbus-path-dbus dbus-interface-peer
1078 "Ping" :timeout timeout)
1079 (dbus-call-method
1080 bus service dbus-path-dbus dbus-interface-peer "Ping")))
4ba11bcb
MA
1081 (dbus-error nil)))
1082
f636d3ca
MA
1083\f
1084;;; D-Bus introspection.
3a993e3d 1085
f636d3ca 1086(defun dbus-introspect (bus service path)
35b148ee 1087 "Return all interfaces and sub-nodes of SERVICE,
f636d3ca
MA
1088registered at object path PATH at bus BUS.
1089
e73f184c
MA
1090BUS is either a Lisp symbol, `:system' or `:session', or a string
1091denoting the bus address. SERVICE must be a known service name,
1092and PATH must be a valid object path. The last two parameters
1093are strings. The result, the introspection data, is a string in
1094XML format."
205a7391 1095 ;; We don't want to raise errors.
246a286b 1096 (dbus-ignore-errors
dcbf5805
MA
1097 (dbus-call-method
1098 bus service path dbus-interface-introspectable "Introspect"
1099 :timeout 1000)))
3a993e3d 1100
f636d3ca
MA
1101(defun dbus-introspect-xml (bus service path)
1102 "Return the introspection data of SERVICE in D-Bus BUS at object path PATH.
1103The data are a parsed list. The root object is a \"node\",
1104representing the object path PATH. The root object can contain
1105\"interface\" and further \"node\" objects."
1106 ;; We don't want to raise errors.
1107 (xml-node-name
1108 (ignore-errors
1109 (with-temp-buffer
1110 (insert (dbus-introspect bus service path))
1111 (xml-parse-region (point-min) (point-max))))))
1112
1113(defun dbus-introspect-get-attribute (object attribute)
1114 "Return the ATTRIBUTE value of D-Bus introspection OBJECT.
1115ATTRIBUTE must be a string according to the attribute names in
1116the D-Bus specification."
1117 (xml-get-attribute-or-nil object (intern attribute)))
1118
1119(defun dbus-introspect-get-node-names (bus service path)
1120 "Return all node names of SERVICE in D-Bus BUS at object path PATH.
1121It returns a list of strings. The node names stand for further
1122object paths of the D-Bus service."
1123 (let ((object (dbus-introspect-xml bus service path))
1124 result)
1125 (dolist (elt (xml-get-children object 'node) result)
1126 (add-to-list
1127 'result (dbus-introspect-get-attribute elt "name") 'append))))
1128
1129(defun dbus-introspect-get-all-nodes (bus service path)
1130 "Return all node names of SERVICE in D-Bus BUS at object path PATH.
1131It returns a list of strings, which are further object paths of SERVICE."
1132 (let ((result (list path)))
1133 (dolist (elt
1134 (dbus-introspect-get-node-names bus service path)
1135 result)
1136 (setq elt (expand-file-name elt path))
1137 (setq result
1138 (append result (dbus-introspect-get-all-nodes bus service elt))))))
1139
1140(defun dbus-introspect-get-interface-names (bus service path)
1141 "Return all interface names of SERVICE in D-Bus BUS at object path PATH.
1142It returns a list of strings.
1143
1144There will be always the default interface
1145\"org.freedesktop.DBus.Introspectable\". Another default
1146interface is \"org.freedesktop.DBus.Properties\". If present,
1147\"interface\" objects can also have \"property\" objects as
1148children, beside \"method\" and \"signal\" objects."
1149 (let ((object (dbus-introspect-xml bus service path))
1150 result)
1151 (dolist (elt (xml-get-children object 'interface) result)
1152 (add-to-list
1153 'result (dbus-introspect-get-attribute elt "name") 'append))))
1154
1155(defun dbus-introspect-get-interface (bus service path interface)
1156 "Return the INTERFACE of SERVICE in D-Bus BUS at object path PATH.
1157The return value is an XML object. INTERFACE must be a string,
35b148ee
JB
1158element of the list returned by `dbus-introspect-get-interface-names'.
1159The resulting \"interface\" object can contain \"method\", \"signal\",
f636d3ca
MA
1160\"property\" and \"annotation\" children."
1161 (let ((elt (xml-get-children
1162 (dbus-introspect-xml bus service path) 'interface)))
1163 (while (and elt
1164 (not (string-equal
1165 interface
1166 (dbus-introspect-get-attribute (car elt) "name"))))
1167 (setq elt (cdr elt)))
1168 (car elt)))
1169
1170(defun dbus-introspect-get-method-names (bus service path interface)
1171 "Return a list of strings of all method names of INTERFACE.
1172SERVICE is a service of D-Bus BUS at object path PATH."
1173 (let ((object (dbus-introspect-get-interface bus service path interface))
1174 result)
1175 (dolist (elt (xml-get-children object 'method) result)
1176 (add-to-list
1177 'result (dbus-introspect-get-attribute elt "name") 'append))))
1178
1179(defun dbus-introspect-get-method (bus service path interface method)
1180 "Return method METHOD of interface INTERFACE as XML object.
1181It must be located at SERVICE in D-Bus BUS at object path PATH.
1182METHOD must be a string, element of the list returned by
1183`dbus-introspect-get-method-names'. The resulting \"method\"
1184object can contain \"arg\" and \"annotation\" children."
1185 (let ((elt (xml-get-children
1186 (dbus-introspect-get-interface bus service path interface)
1187 'method)))
1188 (while (and elt
1189 (not (string-equal
1190 method (dbus-introspect-get-attribute (car elt) "name"))))
1191 (setq elt (cdr elt)))
1192 (car elt)))
1193
1194(defun dbus-introspect-get-signal-names (bus service path interface)
1195 "Return a list of strings of all signal names of INTERFACE.
1196SERVICE is a service of D-Bus BUS at object path PATH."
1197 (let ((object (dbus-introspect-get-interface bus service path interface))
1198 result)
1199 (dolist (elt (xml-get-children object 'signal) result)
1200 (add-to-list
1201 'result (dbus-introspect-get-attribute elt "name") 'append))))
1202
1203(defun dbus-introspect-get-signal (bus service path interface signal)
1204 "Return signal SIGNAL of interface INTERFACE as XML object.
1205It must be located at SERVICE in D-Bus BUS at object path PATH.
1206SIGNAL must be a string, element of the list returned by
1207`dbus-introspect-get-signal-names'. The resulting \"signal\"
1208object can contain \"arg\" and \"annotation\" children."
1209 (let ((elt (xml-get-children
1210 (dbus-introspect-get-interface bus service path interface)
1211 'signal)))
1212 (while (and elt
1213 (not (string-equal
1214 signal (dbus-introspect-get-attribute (car elt) "name"))))
1215 (setq elt (cdr elt)))
1216 (car elt)))
1217
1218(defun dbus-introspect-get-property-names (bus service path interface)
1219 "Return a list of strings of all property names of INTERFACE.
1220SERVICE is a service of D-Bus BUS at object path PATH."
1221 (let ((object (dbus-introspect-get-interface bus service path interface))
1222 result)
1223 (dolist (elt (xml-get-children object 'property) result)
1224 (add-to-list
1225 'result (dbus-introspect-get-attribute elt "name") 'append))))
1226
1227(defun dbus-introspect-get-property (bus service path interface property)
1228 "This function returns PROPERTY of INTERFACE as XML object.
1229It must be located at SERVICE in D-Bus BUS at object path PATH.
1230PROPERTY must be a string, element of the list returned by
1231`dbus-introspect-get-property-names'. The resulting PROPERTY
1232object can contain \"annotation\" children."
1233 (let ((elt (xml-get-children
1234 (dbus-introspect-get-interface bus service path interface)
1235 'property)))
1236 (while (and elt
1237 (not (string-equal
1238 property
1239 (dbus-introspect-get-attribute (car elt) "name"))))
1240 (setq elt (cdr elt)))
1241 (car elt)))
1242
1243(defun dbus-introspect-get-annotation-names
1244 (bus service path interface &optional name)
1245 "Return all annotation names as list of strings.
1246If NAME is `nil', the annotations are children of INTERFACE,
1247otherwise NAME must be a \"method\", \"signal\", or \"property\"
1248object, where the annotations belong to."
1249 (let ((object
1250 (if name
1251 (or (dbus-introspect-get-method bus service path interface name)
1252 (dbus-introspect-get-signal bus service path interface name)
1253 (dbus-introspect-get-property bus service path interface name))
1254 (dbus-introspect-get-interface bus service path interface)))
1255 result)
1256 (dolist (elt (xml-get-children object 'annotation) result)
1257 (add-to-list
1258 'result (dbus-introspect-get-attribute elt "name") 'append))))
1259
1260(defun dbus-introspect-get-annotation
1261 (bus service path interface name annotation)
1262 "Return ANNOTATION as XML object.
1263If NAME is `nil', ANNOTATION is a child of INTERFACE, otherwise
1264NAME must be the name of a \"method\", \"signal\", or
1265\"property\" object, where the ANNOTATION belongs to."
1266 (let ((elt (xml-get-children
1267 (if name
1268 (or (dbus-introspect-get-method
1269 bus service path interface name)
1270 (dbus-introspect-get-signal
1271 bus service path interface name)
1272 (dbus-introspect-get-property
1273 bus service path interface name))
1274 (dbus-introspect-get-interface bus service path interface))
1275 'annotation)))
1276 (while (and elt
1277 (not (string-equal
1278 annotation
1279 (dbus-introspect-get-attribute (car elt) "name"))))
1280 (setq elt (cdr elt)))
1281 (car elt)))
1282
1283(defun dbus-introspect-get-argument-names (bus service path interface name)
1284 "Return a list of all argument names as list of strings.
1285NAME must be a \"method\" or \"signal\" object.
1286
1287Argument names are optional, the function can return `nil'
1288therefore, even if the method or signal has arguments."
1289 (let ((object
1290 (or (dbus-introspect-get-method bus service path interface name)
1291 (dbus-introspect-get-signal bus service path interface name)))
1292 result)
1293 (dolist (elt (xml-get-children object 'arg) result)
1294 (add-to-list
1295 'result (dbus-introspect-get-attribute elt "name") 'append))))
1296
1297(defun dbus-introspect-get-argument (bus service path interface name arg)
1298 "Return argument ARG as XML object.
35b148ee
JB
1299NAME must be a \"method\" or \"signal\" object. ARG must be a string,
1300element of the list returned by `dbus-introspect-get-argument-names'."
f636d3ca
MA
1301 (let ((elt (xml-get-children
1302 (or (dbus-introspect-get-method bus service path interface name)
1303 (dbus-introspect-get-signal bus service path interface name))
1304 'arg)))
1305 (while (and elt
1306 (not (string-equal
1307 arg (dbus-introspect-get-attribute (car elt) "name"))))
1308 (setq elt (cdr elt)))
1309 (car elt)))
1310
1311(defun dbus-introspect-get-signature
1312 (bus service path interface name &optional direction)
1313 "Return signature of a `method' or `signal', represented by NAME, as string.
1314If NAME is a `method', DIRECTION can be either \"in\" or \"out\".
1315If DIRECTION is `nil', \"in\" is assumed.
1316
1317If NAME is a `signal', and DIRECTION is non-`nil', DIRECTION must
1318be \"out\"."
1319 ;; For methods, we use "in" as default direction.
1320 (let ((object (or (dbus-introspect-get-method
1321 bus service path interface name)
1322 (dbus-introspect-get-signal
1323 bus service path interface name))))
1324 (when (and (string-equal
1325 "method" (dbus-introspect-get-attribute object "name"))
1326 (not (stringp direction)))
1327 (setq direction "in"))
1328 ;; In signals, no direction is given.
1329 (when (string-equal "signal" (dbus-introspect-get-attribute object "name"))
1330 (setq direction nil))
1331 ;; Collect the signatures.
1332 (mapconcat
4f91a816
SM
1333 (lambda (x)
1334 (let ((arg (dbus-introspect-get-argument
1335 bus service path interface name x)))
1336 (if (or (not (stringp direction))
1337 (string-equal
1338 direction
1339 (dbus-introspect-get-attribute arg "direction")))
1340 (dbus-introspect-get-attribute arg "type")
1341 "")))
f636d3ca
MA
1342 (dbus-introspect-get-argument-names bus service path interface name)
1343 "")))
3a993e3d 1344
f636d3ca
MA
1345\f
1346;;; D-Bus properties.
3a993e3d 1347
f636d3ca
MA
1348(defun dbus-get-property (bus service path interface property)
1349 "Return the value of PROPERTY of INTERFACE.
1350It will be checked at BUS, SERVICE, PATH. The result can be any
1351valid D-Bus value, or `nil' if there is no PROPERTY."
246a286b 1352 (dbus-ignore-errors
dcbf5805
MA
1353 ;; "Get" returns a variant, so we must use the `car'.
1354 (car
1355 (dbus-call-method
1356 bus service path dbus-interface-properties
1357 "Get" :timeout 500 interface property))))
f636d3ca
MA
1358
1359(defun dbus-set-property (bus service path interface property value)
1360 "Set value of PROPERTY of INTERFACE to VALUE.
1361It will be checked at BUS, SERVICE, PATH. When the value has
1362been set successful, the result is VALUE. Otherwise, `nil' is
1363returned."
1364 (dbus-ignore-errors
dcbf5805
MA
1365 ;; "Set" requires a variant.
1366 (dbus-call-method
1367 bus service path dbus-interface-properties
1368 "Set" :timeout 500 interface property (list :variant value))
1369 ;; Return VALUE.
1370 (dbus-get-property bus service path interface property)))
f636d3ca
MA
1371
1372(defun dbus-get-all-properties (bus service path interface)
1373 "Return all properties of INTERFACE at BUS, SERVICE, PATH.
1374The result is a list of entries. Every entry is a cons of the
1375name of the property, and its value. If there are no properties,
1376`nil' is returned."
f636d3ca 1377 (dbus-ignore-errors
b172ed20 1378 ;; "GetAll" returns "a{sv}".
f636d3ca 1379 (let (result)
b172ed20 1380 (dolist (dict
dcbf5805 1381 (dbus-call-method
b172ed20
MA
1382 bus service path dbus-interface-properties
1383 "GetAll" :timeout 500 interface)
f636d3ca 1384 result)
f58e0fd5 1385 (add-to-list 'result (cons (car dict) (cl-caadr dict)) 'append)))))
b172ed20
MA
1386
1387(defun dbus-register-property
6388924a
MA
1388 (bus service path interface property access value
1389 &optional emits-signal dont-register-service)
b172ed20
MA
1390 "Register property PROPERTY on the D-Bus BUS.
1391
e73f184c
MA
1392BUS is either a Lisp symbol, `:system' or `:session', or a string
1393denoting the bus address.
b172ed20
MA
1394
1395SERVICE is the D-Bus service name of the D-Bus. It must be a
6388924a
MA
1396known name (See discussion of DONT-REGISTER-SERVICE below).
1397
1398PATH is the D-Bus object path SERVICE is registered (See
1399discussion of DONT-REGISTER-SERVICE below). INTERFACE is the
1400name of the interface used at PATH, PROPERTY is the name of the
1401property of INTERFACE. ACCESS indicates, whether the property
1402can be changed by other services via D-Bus. It must be either
1403the symbol `:read' or `:readwrite'. VALUE is the initial value
1404of the property, it can be of any valid type (see
b172ed20
MA
1405`dbus-call-method' for details).
1406
1407If PROPERTY already exists on PATH, it will be overwritten. For
1408properties with access type `:read' this is the only way to
1409change their values. Properties with access type `:readwrite'
1410can be changed by `dbus-set-property'.
1411
1412The interface \"org.freedesktop.DBus.Properties\" is added to
1413PATH, including a default handler for the \"Get\", \"GetAll\" and
b1ce08da
MA
1414\"Set\" methods of this interface. When EMITS-SIGNAL is non-nil,
1415the signal \"PropertiesChanged\" is sent when the property is
6388924a
MA
1416changed by `dbus-set-property'.
1417
1418When DONT-REGISTER-SERVICE is non-nil, the known name SERVICE is
1419not registered. This means that other D-Bus clients have no way
1420of noticing the newly registered property. When interfaces are
1421constructed incrementally by adding single methods or properties
1422at a time, DONT-REGISTER-SERVICE can be used to prevent other
1423clients from discovering the still incomplete interface."
b172ed20 1424 (unless (member access '(:read :readwrite))
dcbf5805 1425 (signal 'wrong-type-argument (list "Access type invalid" access)))
b172ed20 1426
0a203b61 1427 ;; Add handlers for the three property-related methods.
b172ed20 1428 (dbus-register-method
0a203b61 1429 bus service path dbus-interface-properties "Get"
1a27c64e 1430 'dbus-property-handler 'dont-register)
b172ed20 1431 (dbus-register-method
1a27c64e
MA
1432 bus service path dbus-interface-properties "GetAll"
1433 'dbus-property-handler 'dont-register)
b172ed20 1434 (dbus-register-method
1a27c64e
MA
1435 bus service path dbus-interface-properties "Set"
1436 'dbus-property-handler 'dont-register)
0a203b61 1437
dcbf5805
MA
1438 ;; Register SERVICE.
1439 (unless (or dont-register-service (member service (dbus-list-names bus)))
0a203b61 1440 (dbus-register-service bus service))
b172ed20 1441
b1ce08da
MA
1442 ;; Send the PropertiesChanged signal.
1443 (when emits-signal
1444 (dbus-send-signal
1445 bus service path dbus-interface-properties "PropertiesChanged"
dcbf5805 1446 `((:dict-entry ,property (:variant ,value)))
b1ce08da
MA
1447 '(:array)))
1448
b172ed20
MA
1449 ;; Create a hash table entry. We use nil for the unique name,
1450 ;; because the property might be accessed from anybody.
dcbf5805 1451 (let ((key (list :property bus interface property))
b1ce08da
MA
1452 (val
1453 (list
1454 (list
1455 nil service path
1456 (cons
1457 (if emits-signal (list access :emits-signal) (list access))
1458 value)))))
b172ed20
MA
1459 (puthash key val dbus-registered-objects-table)
1460
1461 ;; Return the object.
1462 (list key (list service path))))
1463
1464(defun dbus-property-handler (&rest args)
35b148ee 1465 "Default handler for the \"org.freedesktop.DBus.Properties\" interface.
dcbf5805 1466It will be registered for all objects created by `dbus-register-property'."
b172ed20 1467 (let ((bus (dbus-event-bus-name last-input-event))
b1ce08da 1468 (service (dbus-event-service-name last-input-event))
b172ed20
MA
1469 (path (dbus-event-path-name last-input-event))
1470 (method (dbus-event-member-name last-input-event))
1471 (interface (car args))
1472 (property (cadr args)))
1473 (cond
1474 ;; "Get" returns a variant.
1475 ((string-equal method "Get")
dcbf5805 1476 (let ((entry (gethash (list :property bus interface property)
b1ce08da
MA
1477 dbus-registered-objects-table)))
1478 (when (string-equal path (nth 2 (car entry)))
dcbf5805 1479 `((:variant ,(cdar (last (car entry))))))))
b172ed20
MA
1480
1481 ;; "Set" expects a variant.
1482 ((string-equal method "Set")
b1ce08da 1483 (let* ((value (caar (cddr args)))
dcbf5805 1484 (entry (gethash (list :property bus interface property)
b1ce08da
MA
1485 dbus-registered-objects-table))
1486 ;; The value of the hash table is a list; in case of
1487 ;; properties it contains just one element (UNAME SERVICE
1488 ;; PATH OBJECT). OBJECT is a cons cell of a list, which
1489 ;; contains a list of annotations (like :read,
1490 ;; :read-write, :emits-signal), and the value of the
1491 ;; property.
1492 (object (car (last (car entry)))))
1493 (unless (consp object)
b172ed20
MA
1494 (signal 'dbus-error
1495 (list "Property not registered at path" property path)))
b1ce08da 1496 (unless (member :readwrite (car object))
b172ed20
MA
1497 (signal 'dbus-error
1498 (list "Property not writable at path" property path)))
dcbf5805 1499 (puthash (list :property bus interface property)
b1ce08da
MA
1500 (list (append (butlast (car entry))
1501 (list (cons (car object) value))))
b172ed20 1502 dbus-registered-objects-table)
b1ce08da
MA
1503 ;; Send the "PropertiesChanged" signal.
1504 (when (member :emits-signal (car object))
1505 (dbus-send-signal
1506 bus service path dbus-interface-properties "PropertiesChanged"
dcbf5805 1507 `((:dict-entry ,property (:variant ,value)))
b1ce08da
MA
1508 '(:array)))
1509 ;; Return empty reply.
b172ed20
MA
1510 :ignore))
1511
1512 ;; "GetAll" returns "a{sv}".
1513 ((string-equal method "GetAll")
1514 (let (result)
1515 (maphash
1516 (lambda (key val)
dcbf5805 1517 (when (and (equal (butlast key) (list :property bus interface))
b172ed20 1518 (string-equal path (nth 2 (car val)))
31bb373f 1519 (not (functionp (car (last (car val))))))
b172ed20
MA
1520 (add-to-list
1521 'result
1522 (list :dict-entry
1523 (car (last key))
1524 (list :variant (cdar (last (car val))))))))
1525 dbus-registered-objects-table)
052e28ac
MA
1526 ;; Return the result, or an empty array.
1527 (list :array (or result '(:signature "{sv}"))))))))
b172ed20 1528
dcbf5805
MA
1529\f
1530;;; D-Bus object manager.
1531
1532(defun dbus-get-all-managed-objects (bus service path)
1533 "Return all objects at BUS, SERVICE, PATH, and the children of PATH.
1534The result is a list of objects. Every object is a cons of an
1535existing path name, and the list of available interface objects.
1536An interface object is another cons, which car is the interface
1537name, and the cdr is the list of properties as returned by
205a7391 1538`dbus-get-all-properties' for that path and interface. Example:
dcbf5805
MA
1539
1540\(dbus-get-all-managed-objects :session \"org.gnome.SettingsDaemon\" \"/\")
1541
1542 => \(\(\"/org/gnome/SettingsDaemon/MediaKeys\"
1543 \(\"org.gnome.SettingsDaemon.MediaKeys\")
1544 \(\"org.freedesktop.DBus.Peer\")
1545 \(\"org.freedesktop.DBus.Introspectable\")
1546 \(\"org.freedesktop.DBus.Properties\")
1547 \(\"org.freedesktop.DBus.ObjectManager\"))
1548 \(\"/org/gnome/SettingsDaemon/Power\"
1549 \(\"org.gnome.SettingsDaemon.Power.Keyboard\")
1550 \(\"org.gnome.SettingsDaemon.Power.Screen\")
1551 \(\"org.gnome.SettingsDaemon.Power\"
1552 \(\"Icon\" . \". GThemedIcon battery-full-charged-symbolic \")
1553 \(\"Tooltip\" . \"Laptop battery is charged\"))
1554 \(\"org.freedesktop.DBus.Peer\")
1555 \(\"org.freedesktop.DBus.Introspectable\")
1556 \(\"org.freedesktop.DBus.Properties\")
1557 \(\"org.freedesktop.DBus.ObjectManager\"))
1558 ...)
1559
1560If possible, \"org.freedesktop.DBus.ObjectManager.GetManagedObjects\"
1561is used for retrieving the information. Otherwise, the information
1562is collected via \"org.freedesktop.DBus.Introspectable.Introspect\"
1563and \"org.freedesktop.DBus.Properties.GetAll\", which is slow."
1564 (let ((result
1565 ;; Direct call. Fails, if the target does not support the
1566 ;; object manager interface.
1567 (dbus-ignore-errors
1568 (dbus-call-method
1569 bus service path dbus-interface-objectmanager
1570 "GetManagedObjects" :timeout 1000))))
1571
1572 (if result
1573 ;; Massage the returned structure.
1574 (dolist (entry result result)
1575 ;; "a{oa{sa{sv}}}".
1576 (dolist (entry1 (cdr entry))
1577 ;; "a{sa{sv}}".
1578 (dolist (entry2 entry1)
1579 ;; "a{sv}".
1580 (if (cadr entry2)
1581 ;; "sv".
1582 (dolist (entry3 (cadr entry2))
f58e0fd5 1583 (setcdr entry3 (cl-caadr entry3)))
dcbf5805
MA
1584 (setcdr entry2 nil)))))
1585
1586 ;; Fallback: collect the information. Slooow!
1587 (dolist (object
1588 (dbus-introspect-get-all-nodes bus service path)
1589 result)
1590 (let (result1)
1591 (dolist
1592 (interface
1593 (dbus-introspect-get-interface-names bus service object)
1594 result1)
1595 (add-to-list
1596 'result1
1597 (cons interface
1598 (dbus-get-all-properties bus service object interface))))
1599 (when result1
1600 (add-to-list 'result (cons object result1))))))))
1601
1602(defun dbus-managed-objects-handler ()
1603 "Default handler for the \"org.freedesktop.DBus.ObjectManager\" interface.
1604It will be registered for all objects created by `dbus-register-method'."
1605 (let* ((last-input-event last-input-event)
1606 (bus (dbus-event-bus-name last-input-event))
1607 (service (dbus-event-service-name last-input-event))
1608 (path (dbus-event-path-name last-input-event)))
1609 ;; "GetManagedObjects" returns "a{oa{sa{sv}}}".
1610 (let (interfaces result)
1611
1612 ;; Check for object path wildcard interfaces.
1613 (maphash
1614 (lambda (key val)
1615 (when (and (equal (butlast key 2) (list :method bus))
1616 (null (nth 2 (car-safe val))))
1617 (add-to-list 'interfaces (nth 2 key))))
1618 dbus-registered-objects-table)
1619
1620 ;; Check all registered object paths.
1621 (maphash
1622 (lambda (key val)
1623 (let ((object (or (nth 2 (car-safe val)) ""))
1624 (interface (nth 2 key)))
1625 (when (and (equal (butlast key 2) (list :method bus))
1626 (string-prefix-p path object))
1627 (dolist (interface (cons (nth 2 key) interfaces))
1628 (unless (assoc object result)
1629 (add-to-list 'result (list object)))
1630 (unless (assoc interface (cdr (assoc object result)))
1631 (setcdr
1632 (assoc object result)
1633 (append
1634 (list (cons
1635 interface
1636 ;; We simulate "org.freedesktop.DBus.Properties.GetAll"
1637 ;; by using an appropriate D-Bus event.
1638 (let ((last-input-event
1639 (append
1640 (butlast last-input-event 4)
1641 (list object dbus-interface-properties
1642 "GetAll" 'dbus-property-handler))))
1643 (dbus-property-handler interface))))
1644 (cdr (assoc object result)))))))))
1645 dbus-registered-objects-table)
1646
1647 ;; Return the result, or an empty array.
1648 (list
1649 :array
1650 (or
1651 (mapcar
1652 (lambda (x)
1653 (list
1654 :dict-entry :object-path (car x)
1655 (cons :array (mapcar (lambda (y) (cons :dict-entry y)) (cdr x)))))
1656 result)
1657 '(:signature "{oa{sa{sv}}}"))))))
1658
b172ed20 1659 \f
dcbf5805 1660;; Initialize `:system' and `:session' buses. This adds their file
720c7cd6
MA
1661;; descriptors to input_wait_mask, in order to detect incoming
1662;; messages immediately.
9e846523
MA
1663(when (featurep 'dbusbind)
1664 (dbus-ignore-errors
dcbf5805
MA
1665 (dbus-init-bus :system))
1666 (dbus-ignore-errors
9e846523 1667 (dbus-init-bus :session)))
720c7cd6 1668
3a993e3d
MA
1669(provide 'dbus)
1670
dcbf5805
MA
1671;;; TODO:
1672
1673;; * Implement org.freedesktop.DBus.ObjectManager.InterfacesAdded and
1674;; org.freedesktop.DBus.ObjectManager.InterfacesRemoved.
1675
3a993e3d 1676;;; dbus.el ends here