* doc/misc/dbus.texi (Introspection): Update URL to a less defunct one.
[emacs.git] / doc / misc / dbus.texi
blob0a0a6d523e3186e98df73e97dab32764e80c7186
1 \input texinfo   @c -*-texinfo-*-
2 @setfilename ../../info/dbus
3 @c %**start of header
4 @settitle Using of D-Bus
5 @c @setchapternewpage odd
6 @c %**end of header
8 @syncodeindex vr cp
9 @syncodeindex fn cp
11 @copying
12 Copyright @copyright{} 2007--2013 Free Software Foundation, Inc.
14 @quotation
15 Permission is granted to copy, distribute and/or modify this document
16 under the terms of the GNU Free Documentation License, Version 1.3 or
17 any later version published by the Free Software Foundation; with no
18 Invariant Sections, with the Front-Cover texts being ``A GNU Manual'',
19 and with the Back-Cover Texts as in (a) below.  A copy of the license
20 is included in the section entitled ``GNU Free Documentation License''.
22 (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
23 modify this GNU manual.''
24 @end quotation
25 @end copying
27 @dircategory Emacs lisp libraries
28 @direntry
29 * D-Bus: (dbus).                Using D-Bus in Emacs.
30 @end direntry
32 @contents
35 @node Top, Overview, (dir), (dir)
36 @top D-Bus integration in Emacs
38 This manual documents an API for usage of D-Bus in Emacs.  D-Bus is a
39 message bus system, a simple way for applications to talk to one
40 another.  An overview of D-Bus can be found at
41 @uref{http://dbus.freedesktop.org/}.
43 @ifnottex
44 @insertcopying
45 @end ifnottex
47 @menu
48 * Overview::                    An overview of D-Bus.
49 * Inspection::                  Inspection of D-Bus services.
50 * Type Conversion::             Mapping Lisp types and D-Bus types.
51 * Synchronous Methods::         Calling methods in a blocking way.
52 * Asynchronous Methods::        Calling methods non-blocking.
53 * Receiving Method Calls::      Offering own methods.
54 * Signals::                     Sending and receiving signals.
55 * Alternative Buses::           Alternative buses and environments.
56 * Errors and Events::           Errors and events.
57 * Index::                       Index including concepts, functions, variables.
59 * GNU Free Documentation License:: The license for this documentation.
60 @end menu
63 @node Overview
64 @chapter An overview of D-Bus
65 @cindex overview
67 D-Bus is an inter-process communication mechanism for applications
68 residing on the same host.  The communication is based on
69 @dfn{messages}.  Data in the messages is carried in a structured way,
70 it is not just a byte stream.
72 The communication is connection oriented to two kinds of message
73 buses: a so called @dfn{system bus}, and a @dfn{session bus}.  On a
74 given machine, there is always one single system bus for miscellaneous
75 system-wide communication, like changing of hardware configuration.
76 On the other hand, the session bus is always related to a single
77 user's session.
79 Every client application, which is connected to a bus, registers under
80 a @dfn{unique name} at the bus.  This name is used for identifying the
81 client application.  Such a unique name starts always with a colon,
82 and looks like @samp{:1.42}.
84 Additionally, a client application can register itself to a so called
85 @dfn{known name}, which is a series of identifiers separated by dots,
86 as in @samp{org.gnu.Emacs}.  If several applications register to the
87 same known name, these registrations are queued, and only the first
88 application which has registered for the known name is reachable via
89 this name.  If this application disconnects from the bus, the next
90 queued unique name becomes the owner of this known name.
92 An application can install one or several objects under its name.
93 Such objects are identified by an @dfn{object path}, which looks
94 similar to paths in a filesystem.  An example of such an object path
95 could be @samp{/org/gnu/Emacs/}.
97 Applications might send a request to an object, that means sending a
98 message with some data as input parameters, and receiving a message
99 from that object with the result of this message, the output
100 parameters.  Such a request is called @dfn{method} in D-Bus.
102 The other form of communication are @dfn{signals}.  The underlying
103 message is emitted from an object and will be received by all other
104 applications which have registered for such a signal.
106 All methods and signals an object supports are called @dfn{interface}
107 of the object.  Interfaces are specified under a hierarchical name in
108 D-Bus; an object can support several interfaces.  Such an interface
109 name could be @samp{org.gnu.Emacs.TextEditor} or
110 @samp{org.gnu.Emacs.FileManager}.
113 @node Inspection
114 @chapter Inspection of D-Bus services.
115 @cindex inspection
117 @menu
118 * Version::                     Determining the D-Bus version.
119 * Bus names::                   Discovering D-Bus names.
120 * Introspection::               Knowing the details of D-Bus services.
121 * Nodes and Interfaces::        Detecting object paths and interfaces.
122 * Methods and Signal::          Applying the functionality.
123 * Properties and Annotations::  What else to know about interfaces.
124 * Arguments and Signatures::    The final details.
125 @end menu
128 @node Version
129 @section D-Bus version.
131 D-Bus has evolved over the years.  New features have been added with
132 new D-Bus versions.  There are two variables, which allow to determine
133 the used D-Bus version.
135 @defvar dbus-compiled-version
136 This variable, a string, determines the version of D-Bus Emacs is
137 compiled against.  If it cannot be determined the value is @code{nil}.
138 @end defvar
140 @defvar dbus-runtime-version
141 The other D-Bus version to be checked is the version of D-Bus Emacs
142 runs with.  This string can be different from @code{dbus-compiled-version}.
143 It is also @code{nil}, if it cannot be determined at runtime.
144 @end defvar
147 @node Bus names
148 @section Bus names.
150 There are several basic functions which inspect the buses for
151 registered names.  Internally they use the basic interface
152 @samp{org.freedesktop.DBus}, which is supported by all objects of a bus.
154 @defun dbus-list-activatable-names &optional bus
155 This function returns the D-Bus service names, which can be activated
156 for @var{bus}.  It must be either the symbol @code{:system} (the
157 default) or the symbol @code{:session}.  An activatable service is
158 described in a service registration file.  Under GNU/Linux, such files
159 are located at @file{/usr/share/dbus-1/system-services/} (for the
160 @code{:system} bus) or @file{/usr/share/dbus-1/services/}.  An
161 activatable service is not necessarily registered at @var{bus} at already.
163 The result is a list of strings, which is @code{nil} when there are no
164 activatable service names at all.  Example:
166 @lisp
167 ;; Check, whether the document viewer can be accessed via D-Bus.
168 (member "org.gnome.evince.Daemon"
169         (dbus-list-activatable-names :session))
170 @end lisp
171 @end defun
173 @defun dbus-list-names bus
174 All service names, which are registered at D-Bus @var{bus}, are
175 returned.  The result is a list of strings, which is @code{nil} when
176 there are no registered service names at all.  Well known names are
177 strings like @samp{org.freedesktop.DBus}.  Names starting with
178 @samp{:} are unique names for services.
180 @var{bus} must be either the symbol @code{:system} or the symbol
181 @code{:session}.
182 @end defun
184 @defun dbus-list-known-names bus
185 Retrieves all registered services which correspond to a known name in @var{bus}.
186 A service has a known name if it doesn't start with @samp{:}.  The
187 result is a list of strings, which is @code{nil} when there are no
188 known names at all.
190 @var{bus} must be either the symbol @code{:system} or the symbol
191 @code{:session}.
192 @end defun
194 @defun dbus-list-queued-owners bus service
195 For a given service, registered at D-Bus @var{bus} under the name
196 @var{service}, all queued unique names are returned.  The result is a
197 list of strings, or @code{nil} when there are no queued names for
198 @var{service} at all.
200 @var{bus} must be either the symbol @code{:system} or the symbol
201 @code{:session}.  @var{service} must be a known service name as
202 string.
203 @end defun
205 @defun dbus-get-name-owner bus service
206 For a given service, registered at D-Bus @var{bus} under the name
207 @var{service}, the unique name of the name owner is returned.  The
208 result is a string, or @code{nil} when there exist no name owner of
209 @var{service}.
211 @var{bus} must be either the symbol @code{:system} or the symbol
212 @code{:session}.  @var{service} must be a known service name as
213 string.
214 @end defun
216 @defun dbus-ping bus service &optional timeout
217 Check whether the service name @var{service} is registered at D-Bus
218 @var{bus}.  @var{service} might not have been started yet, it is
219 autostarted if possible.  The result is either @code{t} or @code{nil}.
221 @var{bus} must be either the symbol @code{:system} or the symbol
222 @code{:session}.  @var{service} must be a string.  @var{timeout}, a
223 nonnegative integer, specifies the maximum number of milliseconds
224 @code{dbus-ping} must return.  The default value is 25,000.  Example:
226 @lisp
227 (message
228    "%s screensaver on board."
229    (cond
230      ((dbus-ping :session "org.gnome.ScreenSaver" 100) "Gnome")
231      ((dbus-ping :session "org.freedesktop.ScreenSaver" 100) "KDE")
232      (t "No")))
233 @end lisp
235 If it shall be checked whether @var{service} is already running
236 without autostarting it, one shall apply
238 @lisp
239 (member service (dbus-list-known-names bus))
240 @end lisp
241 @end defun
243 @defun dbus-get-unique-name bus
244 The unique name, under which Emacs is registered at D-Bus @var{bus},
245 is returned as string.
247 @var{bus} must be either the symbol @code{:system} or the symbol
248 @code{:session}.
249 @end defun
252 @node Introspection
253 @section Knowing the details of D-Bus services.
255 D-Bus services publish their interfaces.  This can be retrieved and
256 analyzed during runtime, in order to understand the used
257 implementation.
259 The resulting introspection data are in XML format.  The root
260 introspection element is always a @code{node} element.  It might have
261 a @code{name} attribute, which denotes the (absolute) object path an
262 interface is introspected.
264 The root @code{node} element may have @code{node} and @code{interface}
265 children.  A child @code{node} element must have a @code{name}
266 attribute, this case it is the relative object path to the root
267 @code{node} element.
269 An @code{interface} element has just one attribute, @code{name}, which
270 is the full name of that interface.  The default interface
271 @samp{org.freedesktop.DBus.Introspectable} is always present.  Example:
273 @example
274 <node name="/org/bluez">
275   <interface name="org.freedesktop.DBus.Introspectable">
276     @dots{}
277   </interface>
278   <interface name="org.bluez.Manager">
279     @dots{}
280   </interface>
281   <interface name="org.bluez.Database">
282     @dots{}
283   </interface>
284   <interface name="org.bluez.Security">
285     @dots{}
286   </interface>
287   <node name="service_audio"/>
288   <node name="service_input"/>
289   <node name="service_network"/>
290   <node name="service_serial"/>
291 </node>
292 @end example
294 Children of an @code{interface} element can be @code{method},
295 @code{signal} and @code{property} elements.  A @code{method} element
296 stands for a D-Bus method of the surrounding interface.  The element
297 itself has a @code{name} attribute, showing the method name.  Children
298 elements @code{arg} stand for the arguments of a method.  Example:
300 @example
301 <method name="ResolveHostName">
302   <arg name="interface" type="i" direction="in"/>
303   <arg name="protocol" type="i" direction="in"/>
304   <arg name="name" type="s" direction="in"/>
305   <arg name="aprotocol" type="i" direction="in"/>
306   <arg name="flags" type="u" direction="in"/>
307   <arg name="interface" type="i" direction="out"/>
308   <arg name="protocol" type="i" direction="out"/>
309   <arg name="name" type="s" direction="out"/>
310   <arg name="aprotocol" type="i" direction="out"/>
311   <arg name="address" type="s" direction="out"/>
312   <arg name="flags" type="u" direction="out"/>
313 </method>
314 @end example
316 @code{arg} elements can have the attributes @code{name}, @code{type}
317 and @code{direction}.  The @code{name} attribute is optional.  The
318 @code{type} attribute stands for the @dfn{signature} of the argument
319 in D-Bus.  For a discussion of D-Bus types and their Lisp
320 representation see @ref{Type Conversion}.@footnote{D-Bus signatures
321 are explained in the D-Bus specification
322 @uref{http://dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-signatures}.}
323 The @code{direction} attribute of an @code{arg} element can be only
324 @samp{in} or @samp{out}; in case it is omitted, it defaults to
325 @samp{in}.
327 A @code{signal} element of an @code{interface} has a similar
328 structure.  The @code{direction} attribute of an @code{arg} child
329 element can be only @samp{out} here; which is also the default value.
330 Example:
332 @example
333 <signal name="StateChanged">
334   <arg name="state" type="i"/>
335   <arg name="error" type="s"/>
336 </signal>
337 @end example
339 A @code{property} element has no @code{arg} child
340 element.  It just has the attributes @code{name}, @code{type} and
341 @code{access}, which are all mandatory.  The @code{access} attribute
342 allows the values @samp{readwrite}, @samp{read}, and @samp{write}.
343 Example:
345 @example
346 <property name="Status" type="u" direction="read"/>
347 @end example
349 @code{annotation} elements can be children of @code{interface},
350 @code{method}, @code{signal}, and @code{property} elements.  Unlike
351 properties, which can change their values during lifetime of a D-Bus
352 object, annotations are static.  Often they are used for code
353 generators of D-Bus language bindings.  Example:
355 @example
356 <annotation name="de.berlios.Pinot.GetStatistics" value="pinotDBus"/>
357 @end example
359 Annotations have just @code{name} and @code{value} attributes, both
360 must be strings.
362 @defun dbus-introspect bus service path
363 This function returns all interfaces and sub-nodes of @var{service},
364 registered at object path @var{path} at bus @var{bus}.
366 @var{bus} must be either the symbol @code{:system} or the symbol
367 @code{:session}.  @var{service} must be a known service name, and
368 @var{path} must be a valid object path.  The last two parameters are
369 strings.  The result, the introspection data, is a string in XML
370 format.  Example:
372 @lisp
373 (dbus-introspect
374   :system "org.freedesktop.Hal"
375   "/org/freedesktop/Hal/devices/computer")
377 @result{} "<!DOCTYPE node PUBLIC
378     "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
379     "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
380     <node>
381       <interface name="org.freedesktop.Hal.Device">
382         <method name="GetAllProperties">
383           <arg name="properties" direction="out" type="a@{sv@}"/>
384         </method>
385         @dots{}
386         <signal name="PropertyModified">
387           <arg name="num_updates" type="i"/>
388           <arg name="updates" type="a(sbb)"/>
389         </signal>
390       </interface>
391       @dots{}
392     </node>"
393 @end lisp
395 This example informs us, that the service @samp{org.freedesktop.Hal}
396 at object path @samp{/org/freedesktop/Hal/devices/computer} offers the
397 interface @samp{org.freedesktop.Hal.Device} (and 2 other interfaces
398 not documented here).  This interface contains the method
399 @samp{GetAllProperties}, which needs no input parameters, but returns
400 as output parameter an array of dictionary entries (key-value pairs).
401 Every dictionary entry has a string as key, and a variant as value.
403 The interface offers also a signal, which returns 2 parameters: an
404 integer, and an array consisting of elements which are a struct of a
405 string and 2 boolean values.@footnote{ The interfaces of the service
406 @samp{org.freedesktop.Hal} are described in
407 @c Previous link is gone.  Since HAL is now obsolete, and this URL
408 @c this one (unchanged in ~ 4 years) feels like it might go too...
409 @uref{http://people.freedesktop.org/~dkukawka/hal-spec-git/hal-spec.html#interfaces,
410 the HAL specification}.}
411 @end defun
413 @defun dbus-introspect-xml bus service path
414 This function has the same intention as function
415 @code{dbus-introspect}.  The returned value is a parsed XML tree,
416 which can be used for further analysis.  Example:
418 @lisp
419 (dbus-introspect-xml
420   :session "org.freedesktop.xesam.searcher"
421   "/org/freedesktop/xesam/searcher/main")
423 @result{} (node ((name . "/org/freedesktop/xesam/searcher/main"))
424      (interface ((name . "org.freedesktop.xesam.Search"))
425        (method ((name . "GetHitData"))
426          (arg ((name . "search") (type . "s") (direction . "in")))
427          (arg ((name . "hit_ids") (type . "au") (direction . "in")))
428          (arg ((name . "fields") (type . "as") (direction . "in")))
429          (arg ((name . "hit_data") (type . "aav") (direction . "out")))
430        )
431        @dots{}
432        (signal ((name . "HitsAdded"))
433          (arg ((name . "search") (type . "s")))
434          (arg ((name . "count") (type . "u")))
435        )
436      )
437      @dots{}
438    )
439 @end lisp
440 @end defun
442 @defun dbus-introspect-get-attribute object attribute
443 It returns the @var{attribute} value of a D-Bus introspection
444 @var{object}.  @var{object} can be every subtree of a parsed XML tree
445 as retrieved with @code{dbus-introspect-xml}.  @var{attribute} must be
446 a string according to the attribute names in the D-Bus specification.
447 Example:
449 @lisp
450 (dbus-introspect-get-attribute
451   (dbus-introspect-xml :system "org.freedesktop.SystemToolsBackends"
452     "/org/freedesktop/SystemToolsBackends/UsersConfig")
453   "name")
455 @result{} "/org/freedesktop/SystemToolsBackends/UsersConfig"
456 @end lisp
458 If @var{object} has no @var{attribute}, the function returns
459 @code{nil}.
460 @end defun
463 @node Nodes and Interfaces
464 @section Detecting object paths and interfaces.
466 The first elements, to be introspected for a D-Bus object, are further
467 object paths and interfaces.
469 @defun dbus-introspect-get-node-names bus service path
470 All node names of @var{service} in D-Bus @var{bus} at object path
471 @var{path} are returned as list of strings.  Example:
473 @lisp
474 (dbus-introspect-get-node-names
475   :session "org.gnome.seahorse" "/org/gnome/seahorse")
477 @result{} ("crypto" "keys")
478 @end lisp
480 The node names stand for further object paths of the D-Bus
481 @var{service}, relative to @var{path}.  In the example,
482 @samp{/org/gnome/seahorse/crypto} and @samp{/org/gnome/seahorse/keys}
483 are also object paths of the D-Bus service @samp{org.gnome.seahorse}.
484 @end defun
486 @defun dbus-introspect-get-all-nodes bus service path
487 This function returns all node names of @var{service} in D-Bus
488 @var{bus} at object path @var{path}.  It returns a list of strings
489 with all object paths of @var{service}, starting at @var{path}.
490 Example:
492 @lisp
493 (dbus-introspect-get-all-nodes :session "org.gnome.seahorse" "/")
495 @result{} ("/" "/org" "/org/gnome" "/org/gnome/seahorse"
496     "/org/gnome/seahorse/crypto"
497     "/org/gnome/seahorse/keys"
498     "/org/gnome/seahorse/keys/openpgp"
499     "/org/gnome/seahorse/keys/openpgp/local"
500     "/org/gnome/seahorse/keys/openssh"
501     "/org/gnome/seahorse/keys/openssh/local")
502 @end lisp
503 @end defun
505 @defun dbus-introspect-get-interface-names bus service path
506 There will be returned a list strings of all interface names of
507 @var{service} in D-Bus @var{bus} at object path @var{path}.  This list
508 will contain the default interface @samp{org.freedesktop.DBus.Introspectable}.
510 Another default interface is @samp{org.freedesktop.DBus.Properties}.
511 If present, @code{interface} elements can also have @code{property}
512 children.  Example:
514 @lisp
515 (dbus-introspect-get-interface-names
516   :system "org.freedesktop.Hal"
517   "/org/freedesktop/Hal/devices/computer")
519 @result{} ("org.freedesktop.DBus.Introspectable"
520     "org.freedesktop.Hal.Device"
521     "org.freedesktop.Hal.Device.SystemPowerManagement"
522     "org.freedesktop.Hal.Device.CPUFreq")
523 @end lisp
524 @end defun
526 @defun dbus-introspect-get-interface bus service path interface
527 Return @var{interface} of @var{service} in D-Bus @var{bus} at object
528 path @var{path}.  The return value is an XML element.  @var{interface}
529 must be a string, element of the list returned by
530 @code{dbus-introspect-get-interface-names}.  Example:
532 @lisp
533 (dbus-introspect-get-interface
534   :session "org.freedesktop.xesam.searcher"
535   "/org/freedesktop/xesam/searcher/main"
536   "org.freedesktop.xesam.Search")
538 @result{} (interface ((name . "org.freedesktop.xesam.Search"))
539      (method ((name . "GetHitData"))
540        (arg ((name . "search") (type . "s") (direction . "in")))
541        (arg ((name . "hit_ids") (type . "au") (direction . "in")))
542        (arg ((name . "fields") (type . "as") (direction . "in")))
543        (arg ((name . "hit_data") (type . "aav") (direction . "out")))
544      )
545      @dots{}
546      (signal ((name . "HitsAdded"))
547        (arg ((name . "search") (type . "s")))
548        (arg ((name . "count") (type . "u")))
549      )
550    )
551 @end lisp
552 @end defun
554 @noindent
555 With these functions, it is possible to retrieve all introspection
556 data from a running system:
558 @lisp
559 (with-current-buffer (switch-to-buffer "*introspect*")
560   (erase-buffer)
561   (dolist (service (dbus-list-known-names :session))
562     (dolist (path (dbus-introspect-get-all-nodes :session service "/"))
563       ;; We want to introspect only elements, which have more than
564       ;; the default interface "org.freedesktop.DBus.Introspectable".
565       (when (delete
566              "org.freedesktop.DBus.Introspectable"
567              (dbus-introspect-get-interface-names :session service path))
568         (insert (message "\nservice: \"%s\" path: \"%s\"\n" service path)
569                 (dbus-introspect :session service path))
570         (redisplay t)))))
571 @end lisp
574 @node Methods and Signal
575 @section Applying the functionality.
577 Methods and signals are the communication means to D-Bus.  The
578 following functions return their specifications.
580 @defun dbus-introspect-get-method-names bus service path interface
581 Return a list of strings of all method names of @var{interface} of
582 @var{service} in D-Bus @var{bus} at object path @var{path}.  Example:
584 @lisp
585 (dbus-introspect-get-method-names
586   :session "org.freedesktop.xesam.searcher"
587   "/org/freedesktop/xesam/searcher/main"
588   "org.freedesktop.xesam.Search")
590 @result{} ("GetState" "StartSearch" "GetHitCount" "GetHits" "NewSession"
591     "CloseSession" "GetHitData" "SetProperty" "NewSearch"
592     "GetProperty" "CloseSearch")
593 @end lisp
594 @end defun
596 @defun dbus-introspect-get-method bus service path interface method
597 This function returns @var{method} of @var{interface} as XML element.
598 It must be located at @var{service} in D-Bus @var{bus} at object path
599 @var{path}.  @var{method} must be a string, element of the list
600 returned by @code{dbus-introspect-get-method-names}.  Example:
602 @lisp
603 (dbus-introspect-get-method
604   :session "org.freedesktop.xesam.searcher"
605   "/org/freedesktop/xesam/searcher/main"
606   "org.freedesktop.xesam.Search" "GetHitData")
608 @result{} (method ((name . "GetHitData"))
609      (arg ((name . "search") (type . "s") (direction . "in")))
610      (arg ((name . "hit_ids") (type . "au") (direction . "in")))
611      (arg ((name . "fields") (type . "as") (direction . "in")))
612      (arg ((name . "hit_data") (type . "aav") (direction . "out")))
613    )
614 @end lisp
615 @end defun
617 @defun dbus-introspect-get-signal-names bus service path interface
618 Return a list of strings of all signal names of @var{interface} of
619 @var{service} in D-Bus @var{bus} at object path @var{path}.  Example:
621 @lisp
622 (dbus-introspect-get-signal-names
623   :session "org.freedesktop.xesam.searcher"
624   "/org/freedesktop/xesam/searcher/main"
625   "org.freedesktop.xesam.Search")
627 @result{} ("StateChanged" "SearchDone" "HitsModified"
628     "HitsRemoved" "HitsAdded")
629 @end lisp
630 @end defun
632 @defun dbus-introspect-get-signal bus service path interface signal
633 This function returns @var{signal} of @var{interface} as XML element.
634 It must be located at @var{service} in D-Bus @var{bus} at object path
635 @var{path}.  @var{signal} must be a string, element of the list
636 returned by @code{dbus-introspect-get-signal-names}.  Example:
638 @lisp
639 (dbus-introspect-get-signal
640   :session "org.freedesktop.xesam.searcher"
641   "/org/freedesktop/xesam/searcher/main"
642   "org.freedesktop.xesam.Search" "HitsAdded")
644 @result{} (signal ((name . "HitsAdded"))
645      (arg ((name . "search") (type . "s")))
646      (arg ((name . "count") (type . "u")))
647    )
648 @end lisp
649 @end defun
652 @node Properties and Annotations
653 @section What else to know about interfaces.
655 Interfaces can have properties.  These can be exposed via the
656 @samp{org.freedesktop.DBus.Properties} interface@footnote{See
657 @uref{http://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-properties}}.
658 That is, properties can be retrieved and changed during lifetime of an
659 element.
661 A generalized interface is
662 @samp{org.freedesktop.DBus.Objectmanager}@footnote{See
663 @uref{http://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-objectmanager}},
664 which returns objects, their interfaces and properties for a given
665 service in just one call.
667 Annotations, on the other hand, are static values for an element.
668 Often, they are used to instruct generators, how to generate code from
669 the interface for a given language binding.
671 @defun dbus-introspect-get-property-names bus service path interface
672 Return a list of strings with all property names of @var{interface} of
673 @var{service} in D-Bus @var{bus} at object path @var{path}.  Example:
675 @lisp
676 (dbus-introspect-get-property-names
677   :session "org.kde.kded" "/modules/networkstatus"
678   "org.kde.Solid.Networking.Client")
680 @result{} ("Status")
681 @end lisp
683 If an interface declares properties, the corresponding element supports
684 also the @samp{org.freedesktop.DBus.Properties} interface.
685 @end defun
687 @defun dbus-introspect-get-property bus service path interface property
688 This function returns @var{property} of @var{interface} as XML element.
689 It must be located at @var{service} in D-Bus @var{bus} at object path
690 @var{path}.  @var{property} must be a string, element of the list
691 returned by @code{dbus-introspect-get-property-names}.
693 A @var{property} value can be retrieved by the function
694 @code{dbus-introspect-get-attribute}.  Example:
696 @lisp
697 (dbus-introspect-get-property
698   :session "org.kde.kded" "/modules/networkstatus"
699   "org.kde.Solid.Networking.Client" "Status")
701 @result{} (property ((access . "read") (type . "u") (name . "Status")))
703 (dbus-introspect-get-attribute
704   (dbus-introspect-get-property
705     :session "org.kde.kded" "/modules/networkstatus"
706     "org.kde.Solid.Networking.Client" "Status")
707   "access")
709 @result{} "read"
710 @end lisp
711 @end defun
713 @defun dbus-get-property bus service path interface property
714 This function returns the value of @var{property} of @var{interface}.
715 It will be checked at @var{bus}, @var{service}, @var{path}.  The
716 result can be any valid D-Bus value, or @code{nil} if there is no
717 @var{property}.  Example:
719 @lisp
720 (dbus-get-property
721   :session "org.kde.kded" "/modules/networkstatus"
722   "org.kde.Solid.Networking.Client" "Status")
724 @result{} 4
725 @end lisp
726 @end defun
728 @defun dbus-set-property bus service path interface property value
729 Set value of @var{property} of @var{interface} to @var{value}.  It
730 will be checked at @var{bus}, @var{service}, @var{path}.  When the
731 value has been set successful, the result is @var{value}.  Otherwise,
732 @code{nil} is returned.  Example:
734 @lisp
735 (dbus-set-property
736   :session "org.kde.kaccess" "/MainApplication"
737   "com.trolltech.Qt.QApplication" "doubleClickInterval" 500)
739 @result{} 500
740 @end lisp
741 @end defun
743 @defun dbus-get-all-properties bus service path interface
744 This function returns all properties of @var{interface}.  It will be
745 checked at @var{bus}, @var{service}, @var{path}.  The result is a list
746 of cons.  Every cons contains the name of the property, and its value.
747 If there are no properties, @code{nil} is returned.  Example:
749 @lisp
750 (dbus-get-all-properties
751   :session "org.kde.kaccess" "/MainApplication"
752   "com.trolltech.Qt.QApplication")
754 @result{} (("cursorFlashTime" . 1000) ("doubleClickInterval" . 500)
755     ("keyboardInputInterval" . 400) ("wheelScrollLines" . 3)
756     ("globalStrut" 0 0) ("startDragTime" . 500)
757     ("startDragDistance" . 4) ("quitOnLastWindowClosed" . t)
758     ("styleSheet" . ""))
759 @end lisp
760 @end defun
762 @defun dbus-get-all-managed-objects bus service path
763 This functions returns all objects at @var{bus}, @var{service},
764 @var{path}, and the children of @var{path}.  The result is a list of
765 objects.  Every object is a cons of an existing path name, and the
766 list of available interface objects.  An interface object is another
767 cons, which car is the interface name, and the cdr is the list of
768 properties as returned by @code{dbus-get-all-properties} for that path
769 and interface. Example:
771 @lisp
772 (dbus-get-all-managed-objects
773   :session "org.gnome.SettingsDaemon" "/")
775 @result{} (("/org/gnome/SettingsDaemon/MediaKeys"
776      ("org.gnome.SettingsDaemon.MediaKeys")
777      ("org.freedesktop.DBus.Peer")
778      ("org.freedesktop.DBus.Introspectable")
779      ("org.freedesktop.DBus.Properties")
780      ("org.freedesktop.DBus.ObjectManager"))
781     ("/org/gnome/SettingsDaemon/Power"
782      ("org.gnome.SettingsDaemon.Power.Keyboard")
783      ("org.gnome.SettingsDaemon.Power.Screen")
784      ("org.gnome.SettingsDaemon.Power"
785       ("Icon" . ". GThemedIcon battery-full-charged-symbolic ")
786       ("Tooltip" . "Laptop battery is charged"))
787      ("org.freedesktop.DBus.Peer")
788      ("org.freedesktop.DBus.Introspectable")
789      ("org.freedesktop.DBus.Properties")
790      ("org.freedesktop.DBus.ObjectManager"))
791     @dots{})
792 @end lisp
794 If possible, @samp{org.freedesktop.DBus.ObjectManager.GetManagedObjects}
795 is used for retrieving the information.  Otherwise, the information
796 is collected via @samp{org.freedesktop.DBus.Introspectable.Introspect}
797 and @samp{org.freedesktop.DBus.Properties.GetAll}, which is slow.
799 An overview of all existing object paths, their interfaces and
800 properties could be retrieved by the following code:
802 @lisp
803 (with-current-buffer (switch-to-buffer "*objectmanager*")
804   (erase-buffer)
805   (let (result)
806     (dolist (service (dbus-list-known-names :session) result)
807       (message "%s" service)
808       (add-to-list
809        'result
810        (cons service
811              (dbus-get-all-managed-objects :session service "/"))))
812     (insert (message "%s" (pp result)))
813     (redisplay t)))
814 @end lisp
815 @end defun
817 @defun dbus-introspect-get-annotation-names bus service path interface &optional name
818 Return a list of all annotation names as list of strings.  If
819 @var{name} is @code{nil}, the annotations are children of
820 @var{interface}, otherwise @var{name} must be a @code{method},
821 @code{signal}, or @code{property} XML element, where the annotations
822 belong to.  Example:
824 @lisp
825 (dbus-introspect-get-annotation-names
826   :session "de.berlios.Pinot" "/de/berlios/Pinot"
827   "de.berlios.Pinot" "GetStatistics")
829 @result{} ("de.berlios.Pinot.GetStatistics")
830 @end lisp
832 Default annotation names@footnote{See
833 @uref{http://dbus.freedesktop.org/doc/dbus-specification.html#introspection-format}}
836 @table @samp
837 @item org.freedesktop.DBus.Deprecated
838 Whether or not the entity is deprecated; defaults to @code{nil}
840 @item org.freedesktop.DBus.GLib.CSymbol
841 The C symbol; may be used for @code{methods} and @code{interfaces}
843 @item org.freedesktop.DBus.Method.NoReply
844 If set, don't expect a reply to the @code{method} call; defaults to @code{nil}
845 @end table
846 @end defun
848 @defun dbus-introspect-get-annotation bus service path interface name annotation
849 Return annotation @var{ANNOTATION} as XML object.  If @var{name} is
850 @code{nil}, @var{ANNOTATION} is a child of @var{interface}, otherwise
851 @var{name} must be the name of a @code{method}, @code{signal}, or
852 @code{property} XML element, where the @var{ANNOTATION} belongs to.
854 An attribute value can be retrieved by
855 @code{dbus-introspect-get-attribute}.  Example:
857 @lisp
858 (dbus-introspect-get-annotation
859   :session "de.berlios.Pinot" "/de/berlios/Pinot"
860   "de.berlios.Pinot" "GetStatistics"
861   "de.berlios.Pinot.GetStatistics")
863 @result{} (annotation ((name . "de.berlios.Pinot.GetStatistics")
864                 (value . "pinotDBus")))
866 (dbus-introspect-get-attribute
867   (dbus-introspect-get-annotation
868     :session "de.berlios.Pinot" "/de/berlios/Pinot"
869     "de.berlios.Pinot" "GetStatistics"
870     "de.berlios.Pinot.GetStatistics")
871   "value")
873 @result{} "pinotDBus"
874 @end lisp
875 @end defun
878 @node Arguments and Signatures
879 @section The final details.
881 Methods and signals have arguments.  They are described in the
882 @code{arg} XML elements.
884 @defun dbus-introspect-get-argument-names bus service path interface name
885 Return a list of all argument names as list of strings.  @var{name}
886 must be a @code{method} or @code{signal} XML element.  Example:
888 @lisp
889 (dbus-introspect-get-argument-names
890   :session "org.freedesktop.xesam.searcher"
891   "/org/freedesktop/xesam/searcher/main"
892   "org.freedesktop.xesam.Search" "GetHitData")
894 @result{} ("search" "hit_ids" "fields" "hit_data")
895 @end lisp
897 Argument names are optional; the function can return @code{nil}
898 therefore, even if the method or signal has arguments.
899 @end defun
901 @defun dbus-introspect-get-argument bus service path interface name arg
902 Return argument @var{ARG} as XML object.  @var{name}
903 must be a @code{method} or @code{signal} XML element.  Example:
905 @lisp
906 (dbus-introspect-get-argument
907   :session "org.freedesktop.xesam.searcher"
908   "/org/freedesktop/xesam/searcher/main"
909   "org.freedesktop.xesam.Search" "GetHitData" "search")
911 @result{} (arg ((name . "search") (type . "s") (direction . "in")))
912 @end lisp
913 @end defun
915 @defun dbus-introspect-get-signature bus service path interface name &optional direction
916 Return signature of a @code{method} or @code{signal}, represented by
917 @var{name}, as string.
919 If @var{name} is a @code{method}, @var{direction} can be either
920 @samp{in} or @samp{out}.  If @var{direction} is @code{nil}, @samp{in}
921 is assumed.
923 If @var{name} is a @code{signal}, and @var{direction} is
924 non-@code{nil}, @var{direction} must be @samp{out}.  Example:
926 @lisp
927 (dbus-introspect-get-signature
928   :session "org.freedesktop.xesam.searcher"
929   "/org/freedesktop/xesam/searcher/main"
930   "org.freedesktop.xesam.Search" "GetHitData" "in")
932 @result{} "sauas"
934 (dbus-introspect-get-signature
935   :session "org.freedesktop.xesam.searcher"
936   "/org/freedesktop/xesam/searcher/main"
937   "org.freedesktop.xesam.Search" "HitsAdded")
939 @result{} "su"
940 @end lisp
941 @end defun
944 @node Type Conversion
945 @chapter Mapping Lisp types and D-Bus types.
946 @cindex type conversion
948 D-Bus method calls and signals accept usually several arguments as
949 parameters, either as input parameter, or as output parameter.  Every
950 argument belongs to a D-Bus type.
952 Such arguments must be mapped between the value encoded as a D-Bus
953 type, and the corresponding type of Lisp objects.  The mapping is
954 applied Lisp object @expansion{} D-Bus type for input parameters, and
955 D-Bus type @expansion{} Lisp object for output parameters.
958 @section Input parameters.
960 Input parameters for D-Bus methods and signals occur as arguments of a
961 Lisp function call.  The following mapping to D-Bus types is
962 applied, when the corresponding D-Bus message is created:
964 @example
965 @multitable {negative integer} {@expansion{}} {DBUS_TYPE_BOOLEAN}
966 @item Lisp type               @tab              @tab D-Bus type
967 @item
968 @item @code{t} and @code{nil} @tab @expansion{} @tab DBUS_TYPE_BOOLEAN
969 @item natural number          @tab @expansion{} @tab DBUS_TYPE_UINT32
970 @item negative integer        @tab @expansion{} @tab DBUS_TYPE_INT32
971 @item float                   @tab @expansion{} @tab DBUS_TYPE_DOUBLE
972 @item string                  @tab @expansion{} @tab DBUS_TYPE_STRING
973 @item list                    @tab @expansion{} @tab DBUS_TYPE_ARRAY
974 @end multitable
975 @end example
977 Other Lisp objects, like symbols or hash tables, are not accepted as
978 input parameters.
980 If it is necessary to use another D-Bus type, a corresponding type
981 symbol can be prepended to the corresponding Lisp object.  Basic D-Bus
982 types are represented by the type symbols @code{:byte},
983 @code{:boolean}, @code{:int16}, @code{:uint16}, @code{:int32},
984 @code{:uint32}, @code{:int64}, @code{:uint64}, @code{:double},
985 @code{:string}, @code{:object-path}, @code{:signature} and
986 @code{:unix-fd}.
988 @noindent
989 Example:
991 @lisp
992 (dbus-call-method @dots{} @var{NAT-NUMBER} @var{STRING})
993 @end lisp
995 is equivalent to
997 @lisp
998 (dbus-call-method @dots{} :uint32 @var{NAT-NUMBER} :string @var{STRING})
999 @end lisp
1001 but different to
1003 @lisp
1004 (dbus-call-method @dots{} :int32 @var{NAT-NUMBER} :signature @var{STRING})
1005 @end lisp
1007 The value for a byte D-Bus type can be any integer in the range 0
1008 through 255.  If a character is used as argument, modifiers
1009 represented outside this range are stripped of.  For example,
1010 @code{:byte ?x} is equal to @code{:byte ?\M-x}, but it is not equal to
1011 @code{:byte ?\C-x} or @code{:byte ?\M-\C-x}.
1013 Signed and unsigned integer D-Bus types expect a corresponding integer
1014 value.  If the value does not fit Emacs's integer range, it is also
1015 possible to use an equivalent floating point number.
1017 A D-Bus compound type is always represented as a list.  The @sc{car}
1018 of this list can be the type symbol @code{:array}, @code{:variant},
1019 @code{:struct} or @code{:dict-entry}, which would result in a
1020 corresponding D-Bus container.  @code{:array} is optional, because
1021 this is the default compound D-Bus type for a list.
1023 The objects being elements of the list are checked according to the
1024 D-Bus compound type rules.
1026 @itemize
1027 @item An array must contain only elements of the same D-Bus type.  It
1028 can be empty.
1030 @item A variant must contain only one single element.
1032 @item A dictionary entry must be element of an array, and it must
1033 contain only a key-value pair of two elements, with a basic D-Bus type
1034 key.
1036 @item There is no restriction for structs.
1037 @end itemize
1039 If an empty array needs an element D-Bus type other than string, it
1040 can contain exactly one element of D-Bus type @code{:signature}.  The
1041 value of this element (a string) is used as the signature of the
1042 elements of this array.  Example:
1044 @lisp
1045 (dbus-call-method
1046   :session "org.freedesktop.Notifications"
1047   "/org/freedesktop/Notifications"
1048   "org.freedesktop.Notifications" "Notify"
1049   "GNU Emacs"                 ;; Application name.
1050   0                           ;; No replacement of other notifications.
1051   ""                          ;; No icon.
1052   "Notification summary"      ;; Summary.
1053   (format                     ;; Body.
1054     "This is a test notification, raised from %s" (emacs-version))
1055   '(:array)                   ;; No actions (empty array of strings).
1056   '(:array :signature "@{sv@}") ;; No hints
1057                               ;; (empty array of dictionary entries).
1058   :int32 -1)                 ;; Default timeout.
1060 @result{} 3
1061 @end lisp
1063 @defun dbus-string-to-byte-array string
1064 Sometimes, D-Bus methods require as input parameter an array of bytes,
1065 instead of a string.  If it is guaranteed, that @var{string} is an
1066 UTF8 string, this function performs the conversion.  Example:
1068 @lisp
1069 (dbus-string-to-byte-array "/etc/hosts")
1071 @result{} (:array :byte 47 :byte 101 :byte 116 :byte 99 :byte 47
1072            :byte 104 :byte 111 :byte 115 :byte 116 :byte 115)
1073 @end lisp
1074 @end defun
1076 @defun dbus-escape-as-identifier string
1077 Escape an arbitrary @var{string} so it follows the rules for a C
1078 identifier.  The escaped string can be used as object path component,
1079 interface element component, bus name component or member name in
1080 D-Bus.
1082 The escaping consists of replacing all non-alphanumerics, and the
1083 first character if it's a digit, with an underscore and two
1084 lower-case hex digits.  As a special case, "" is escaped to
1085 "_".  Example:
1087 @lisp
1088 (dbus-escape-as-identifier "0123abc_xyz\x01\xff")
1090 @result{} "_30123abc_5fxyz_01_ff"
1091 @end lisp
1092 @end defun
1095 @section Output parameters.
1097 Output parameters of D-Bus methods and signals are mapped to Lisp
1098 objects.
1100 @example
1101 @multitable {DBUS_TYPE_OBJECT_PATH} {@expansion{}} {natural number or float}
1102 @item D-Bus type            @tab              @tab Lisp type
1103 @item
1104 @item DBUS_TYPE_BOOLEAN     @tab @expansion{} @tab @code{t} or @code{nil}
1105 @item DBUS_TYPE_BYTE        @tab @expansion{} @tab natural number
1106 @item DBUS_TYPE_UINT16      @tab @expansion{} @tab natural number
1107 @item DBUS_TYPE_INT16       @tab @expansion{} @tab integer
1108 @item DBUS_TYPE_UINT32      @tab @expansion{} @tab natural number or float
1109 @item DBUS_TYPE_UNIX_FD     @tab @expansion{} @tab natural number or float
1110 @item DBUS_TYPE_INT32       @tab @expansion{} @tab integer or float
1111 @item DBUS_TYPE_UINT64      @tab @expansion{} @tab natural number or float
1112 @item DBUS_TYPE_INT64       @tab @expansion{} @tab integer or float
1113 @item DBUS_TYPE_DOUBLE      @tab @expansion{} @tab float
1114 @item DBUS_TYPE_STRING      @tab @expansion{} @tab string
1115 @item DBUS_TYPE_OBJECT_PATH @tab @expansion{} @tab string
1116 @item DBUS_TYPE_SIGNATURE   @tab @expansion{} @tab string
1117 @item DBUS_TYPE_ARRAY       @tab @expansion{} @tab list
1118 @item DBUS_TYPE_VARIANT     @tab @expansion{} @tab list
1119 @item DBUS_TYPE_STRUCT      @tab @expansion{} @tab list
1120 @item DBUS_TYPE_DICT_ENTRY  @tab @expansion{} @tab list
1121 @end multitable
1122 @end example
1124 A float object in case of @code{DBUS_TYPE_UINT32},
1125 @code{DBUS_TYPE_INT32}, @code{DBUS_TYPE_UINT64},
1126 @code{DBUS_TYPE_INT64} and @code{DBUS_TYPE_UNIX_FD} is returned, when
1127 the C value exceeds the Emacs number size range.
1129 The resulting list of the last 4 D-Bus compound types contains as
1130 elements the elements of the D-Bus container, mapped according to the
1131 same rules.
1133 The signal @code{PropertyModified}, discussed as example in
1134 @ref{Inspection}, would offer as Lisp data the following object
1135 (@var{BOOL} stands here for either @code{nil} or @code{t}):
1137 @lisp
1138 (@var{INTEGER} ((@var{STRING} @var{BOOL} @var{BOOL}) (@var{STRING} @var{BOOL} @var{BOOL}) @dots{}))
1139 @end lisp
1141 @defun dbus-byte-array-to-string byte-array
1142 If a D-Bus method or signal returns an array of bytes, which are known
1143 to represent an UTF8 string, this function converts @var{byte-array}
1144 to the corresponding string.  Example:
1146 @lisp
1147 (dbus-byte-array-to-string '(47 101 116 99 47 104 111 115 116 115))
1149 @result{} "/etc/hosts"
1150 @end lisp
1151 @end defun
1153 @defun dbus-unescape-from-identifier string
1154 Retrieve the original string from the encoded @var{string}.
1155 @var{string} must have been coded with
1156 @code{dbus-escape-as-identifier}.  Example:
1158 @lisp
1159 (dbus-unescape-from-identifier "_30123abc_5fxyz_01_ff")
1161 @ifinfo
1162 @result{} "0123abc_xyz^Aÿ"
1163 @end ifinfo
1164 @ifnotinfo
1165 @result{} "0123abc_xyz^A@"y"
1166 @end ifnotinfo
1167 @end lisp
1168 @end defun
1171 @node Synchronous Methods
1172 @chapter Calling methods in a blocking way.
1173 @cindex method calls, synchronous
1174 @cindex synchronous method calls
1176 Methods can be called synchronously (@dfn{blocking}) or asynchronously
1177 (@dfn{non-blocking}).
1179 At D-Bus level, a method call consist of two messages: one message
1180 which carries the input parameters to the object owning the method to
1181 be called, and a reply message returning the resulting output
1182 parameters from the object.
1184 @defun dbus-call-method bus service path interface method &optional :timeout timeout &rest args
1185 This function calls @var{method} on the D-Bus @var{bus}.  @var{bus} is
1186 either the symbol @code{:system} or the symbol @code{:session}.
1188 @var{service} is the D-Bus service name to be used.  @var{path} is the
1189 D-Bus object path, @var{service} is registered at.  @var{interface} is
1190 an interface offered by @var{service}.  It must provide @var{method}.
1192 If the parameter @code{:timeout} is given, the following integer
1193 @var{timeout} specifies the maximum number of milliseconds the method
1194 call must return.  The default value is 25,000.  If the method call
1195 doesn't return in time, a D-Bus error is raised (@pxref{Errors and
1196 Events}).
1198 All other arguments args are passed to @var{method} as arguments.
1199 They are converted into D-Bus types as described in @ref{Type
1200 Conversion}.
1202 The function returns the resulting values of @var{method} as a list of
1203 Lisp objects, according to the type conversion rules described in
1204 @ref{Type Conversion}.  Example:
1206 @lisp
1207 (dbus-call-method
1208   :session "org.gnome.seahorse" "/org/gnome/seahorse/keys/openpgp"
1209   "org.gnome.seahorse.Keys" "GetKeyField"
1210   "openpgp:657984B8C7A966DD" "simple-name")
1212 @result{} (t ("Philip R. Zimmermann"))
1213 @end lisp
1215 If the result of the method call is just one value, the converted Lisp
1216 object is returned instead of a list containing this single Lisp
1217 object.  Example:
1219 @lisp
1220 (dbus-call-method
1221   :system "org.freedesktop.Hal"
1222   "/org/freedesktop/Hal/devices/computer"
1223   "org.freedesktop.Hal.Device" "GetPropertyString"
1224   "system.kernel.machine")
1226 @result{} "i686"
1227 @end lisp
1229 With the @code{dbus-introspect} function it is possible to explore the
1230 interfaces of @samp{org.freedesktop.Hal} service. It offers the
1231 interfaces @samp{org.freedesktop.Hal.Manager} for the object at the
1232 path @samp{/org/freedesktop/Hal/Manager} as well as the interface
1233 @samp{org.freedesktop.Hal.Device} for all objects prefixed with the
1234 path @samp{/org/freedesktop/Hal/devices}.  With the methods
1235 @samp{GetAllDevices} and @samp{GetAllProperties}, it is simple to
1236 emulate the @code{lshal} command on GNU/Linux systems:
1238 @lisp
1239 (dolist (device
1240           (dbus-call-method
1241             :system "org.freedesktop.Hal"
1242             "/org/freedesktop/Hal/Manager"
1243             "org.freedesktop.Hal.Manager" "GetAllDevices"))
1244   (message "\nudi = %s" device)
1245   (dolist (properties
1246             (dbus-call-method
1247               :system "org.freedesktop.Hal" device
1248               "org.freedesktop.Hal.Device" "GetAllProperties"))
1249     (message "  %s = %S"
1250              (car properties) (or (caar (cdr properties)) ""))))
1252 @print{} "udi = /org/freedesktop/Hal/devices/computer
1253       info.addons = (\"hald-addon-acpi\")
1254       info.bus = \"unknown\"
1255       info.product = \"Computer\"
1256       info.subsystem = \"unknown\"
1257       info.udi = \"/org/freedesktop/Hal/devices/computer\"
1258       linux.sysfs_path_device = \"(none)\"
1259       power_management.acpi.linux.version = \"20051216\"
1260       power_management.can_suspend_to_disk = t
1261       power_management.can_suspend_to_ram = \"\"
1262       power_management.type = \"acpi\"
1263       smbios.bios.release_date = \"11/07/2001\"
1264       system.chassis.manufacturer = \"COMPAL\"
1265       system.chassis.type = \"Notebook\"
1266       system.firmware.release_date = \"03/19/2005\"
1267       @dots{}"
1268 @end lisp
1269 @end defun
1272 @node Asynchronous Methods
1273 @chapter Calling methods non-blocking.
1274 @cindex method calls, asynchronous
1275 @cindex asynchronous method calls
1277 @defun dbus-call-method-asynchronously bus service path interface method handler &optional :timeout timeout &rest args
1278 This function calls @var{method} on the D-Bus @var{bus}
1279 asynchronously.  @var{bus} is either the symbol @code{:system} or the
1280 symbol @code{:session}.
1282 @var{service} is the D-Bus service name to be used.  @var{path} is the
1283 D-Bus object path, @var{service} is registered at.  @var{interface} is
1284 an interface offered by @var{service}.  It must provide @var{method}.
1286 @var{handler} is a Lisp function, which is called when the
1287 corresponding return message has arrived.  If @var{handler} is
1288 @code{nil}, no return message will be expected.
1290 If the parameter @code{:timeout} is given, the following integer
1291 @var{timeout} specifies the maximum number of milliseconds a reply
1292 message must arrive.  The default value is 25,000.  If there is no
1293 reply message in time, a D-Bus error is raised (@pxref{Errors and
1294 Events}).
1296 All other arguments args are passed to @var{method} as arguments.
1297 They are converted into D-Bus types as described in @ref{Type
1298 Conversion}.
1300 If @var{handler} is a Lisp function, the function returns a key into
1301 the hash table @code{dbus-registered-objects-table}.  The
1302 corresponding entry in the hash table is removed, when the return
1303 message has been arrived, and @var{handler} is called.  Example:
1305 @lisp
1306 (dbus-call-method-asynchronously
1307   :system "org.freedesktop.Hal"
1308   "/org/freedesktop/Hal/devices/computer"
1309   "org.freedesktop.Hal.Device" "GetPropertyString" 'message
1310   "system.kernel.machine")
1312 @result{} (:serial :system 2)
1314 @print{} i686
1315 @end lisp
1316 @end defun
1319 @node Receiving Method Calls
1320 @chapter Offering own methods.
1321 @cindex method calls, returning
1322 @cindex returning method calls
1324 In order to register methods on the D-Bus, Emacs has to request a well
1325 known name on the D-Bus under which it will be available for other
1326 clients.  Names on the D-Bus can be registered and unregistered using
1327 the following functions:
1329 @defun dbus-register-service bus service &rest flags
1330 Register the known name @var{service} on D-Bus @var{bus}.
1332 @var{bus} is either the symbol @code{:system} or the symbol
1333 @code{:session}.
1335 @var{service} is the service name to be registered on the D-Bus.  It
1336 must be a known name.
1338 @var{flags} is a subset of the following keywords:
1340 @itemize
1341 @item @code{:allow-replacement}: Allow another service to become the primary
1342 owner if requested.
1344 @item @code{:replace-existing}: Request to replace the current primary owner.
1346 @item @code{:do-not-queue}: If we can not become the primary owner do not
1347 place us in the queue.
1348 @end itemize
1350 One of the following keywords is returned:
1352 @itemize
1354 @item @code{:primary-owner}: We have become the primary owner of the name
1355 @var{service}.
1357 @item @code{:in-queue}: We could not become the primary owner and
1358 have been placed in the queue.
1360 @item @code{:exists}: We already are in the queue.
1362 @item @code{:already-owner}: We already are the primary
1363 owner.
1364 @end itemize
1365 @end defun
1367 @defun dbus-unregister-service bus service
1368 Unregister all objects from D-Bus @var{bus}, registered by Emacs for
1369 @var{service}.
1371 @var{bus} is either the symbol @code{:system} or the symbol
1372 @code{:session}.
1374 @var{service} is the D-Bus service name of the D-Bus.  It must be a
1375 known name.  Emacs releases its association to @var{service} from
1376 D-Bus.
1378 One of the following keywords is returned:
1380 @itemize
1381 @item @code{:released}: We successfully released the name @var{service}.
1382 @item @code{:non-existent}: The name @var{service} does not exist on the bus.
1383 @item @code{:not-owner}: We are not an owner of the name @var{service}.
1384 @end itemize
1385 @end defun
1387 When a name has been chosen, Emacs can offer own methods, which can be
1388 called by other applications.  These methods could be an
1389 implementation of an interface of a well known service, like
1390 @samp{org.freedesktop.TextEditor}.
1392 It could be also an implementation of an own interface.  In this case,
1393 the service name must be @samp{org.gnu.Emacs}.  The object path shall
1394 begin with @samp{/org/gnu/Emacs/@strong{Application}}, and the
1395 interface name shall be @code{org.gnu.Emacs.@strong{Application}}.
1396 @samp{@strong{Application}} is the name of the application which
1397 provides the interface.
1399 @deffn Constant dbus-service-emacs
1400 The well known service name @samp{org.gnu.Emacs} of Emacs.
1401 @end deffn
1403 @deffn Constant dbus-path-emacs
1404 The object path namespace @samp{/org/gnu/Emacs} used by Emacs.
1405 @end deffn
1407 @deffn Constant dbus-interface-emacs
1408 The interface namespace @code{org.gnu.Emacs} used by Emacs.
1409 @end deffn
1411 @defun dbus-register-method bus service path interface method handler dont-register-service
1412 With this function, an application registers @var{method} on the D-Bus
1413 @var{bus}.
1415 @var{bus} is either the symbol @code{:system} or the symbol
1416 @code{:session}.
1418 @var{service} is the D-Bus service name of the D-Bus object
1419 @var{method} is registered for.  It must be a known name (See
1420 discussion of @var{dont-register-service} below).
1422 @var{path} is the D-Bus object path @var{service} is registered (See
1423 discussion of @var{dont-register-service} below).
1425 @var{interface} is the interface offered by @var{service}.  It must
1426 provide @var{method}.
1428 @var{handler} is a Lisp function to be called when a @var{method} call
1429 is received.  It must accept as arguments the input arguments of
1430 @var{method}.  @var{handler} should return a list, whose elements are
1431 to be used as arguments for the reply message of @var{method}.  This
1432 list can be composed like the input parameters in @ref{Type
1433 Conversion}.
1435 If @var{handler} wants to return just one Lisp object and it is not a
1436 cons cell, @var{handler} can return this object directly, instead of
1437 returning a list containing the object.
1439 In case @var{handler} shall return a reply message with an empty
1440 argument list, @var{handler} must return the symbol @code{:ignore}.
1442 When @var{dont-register-service} is non-@code{nil}, the known name
1443 @var{service} is not registered.  This means that other D-Bus clients
1444 have no way of noticing the newly registered method.  When interfaces
1445 are constructed incrementally by adding single methods or properties
1446 at a time, @var{dont-register-service} can be used to prevent other
1447 clients from discovering the still incomplete interface.
1449 The default D-Bus timeout when waiting for a message reply is 25
1450 seconds.  This value could be even smaller, depending on the calling
1451 client.  Therefore, @var{handler} shall not last longer than
1452 absolutely necessary.
1454 @code{dbus-register-method} returns a Lisp object, which can be used
1455 as argument in @code{dbus-unregister-object} for removing the
1456 registration for @var{method}.  Example:
1458 @lisp
1459 (defun my-dbus-method-handler (filename)
1460   (let (result)
1461     (if (find-file filename)
1462         (setq result '(:boolean t))
1463       (setq result '(:boolean nil)))
1464     result))
1466 @result{} my-dbus-method-handler
1468 (dbus-register-method
1469   :session "org.freedesktop.TextEditor" "/org/freedesktop/TextEditor"
1470   "org.freedesktop.TextEditor" "OpenFile"
1471   'my-dbus-method-handler)
1473 @result{} ((:method :session "org.freedesktop.TextEditor" "OpenFile")
1474     ("org.freedesktop.TextEditor" "/org/freedesktop/TextEditor"
1475      my-dbus-method-handler))
1476 @end lisp
1478 If you invoke the method @samp{org.freedesktop.TextEditor.OpenFile}
1479 from another D-Bus application with a filename as parameter, the file
1480 is opened in Emacs, and the method returns either @var{true} or
1481 @var{false}, indicating the success of the method.  As test tool one
1482 could use the command line tool @code{dbus-send} in a shell:
1484 @example
1485 # dbus-send --session --print-reply \
1486     --dest="org.freedesktop.TextEditor" \
1487     "/org/freedesktop/TextEditor" \
1488     "org.freedesktop.TextEditor.OpenFile" string:"/etc/hosts"
1490 @print{} method return sender=:1.22 -> dest=:1.23 reply_serial=2
1491       boolean true
1492 @end example
1494 You can indicate an error by raising the Emacs signal
1495 @code{dbus-error}.  The handler above could be changed like this:
1497 @lisp
1498 (defun my-dbus-method-handler (&rest args)
1499   (unless (and (= (length args) 1) (stringp (car args)))
1500     (signal 'dbus-error (list (format "Wrong argument list: %S" args))))
1501   (condition-case err
1502       (find-file (car args))
1503     (error (signal 'dbus-error (cdr err))))
1504   t)
1506 @result{} my-dbus-method-handler
1507 @end lisp
1509 The test runs then
1511 @example
1512 # dbus-send --session --print-reply \
1513     --dest="org.freedesktop.TextEditor" \
1514     "/org/freedesktop/TextEditor" \
1515     "org.freedesktop.TextEditor.OpenFile" \
1516     string:"/etc/hosts" string:"/etc/passwd"
1518 @print{} Error org.freedesktop.DBus.Error.Failed:
1519    Wrong argument list: ("/etc/hosts" "/etc/passwd")
1520 @end example
1521 @end defun
1523 @defun dbus-register-property bus service path interface property access value &optional emits-signal dont-register-service
1524 With this function, an application declares a @var{property} on the D-Bus
1525 @var{bus}.
1527 @var{bus} is either the symbol @code{:system} or the symbol
1528 @code{:session}.
1530 @var{service} is the D-Bus service name of the D-Bus.  It must be a
1531 known name.
1533 @var{path} is the D-Bus object path @var{service} is registered (See
1534 discussion of @var{dont-register-service} below).
1536 @var{interface} is the name of the interface used at @var{path},
1537 @var{property} is the name of the property of @var{interface}.
1539 @var{access} indicates, whether the property can be changed by other
1540 services via D-Bus.  It must be either the symbol @code{:read} or
1541 @code{:readwrite}.  @var{value} is the initial value of the property,
1542 it can be of any valid type (see @code{dbus-call-method} for details).
1544 If @var{property} already exists on @var{path}, it will be
1545 overwritten.  For properties with access type @code{:read} this is the
1546 only way to change their values.  Properties with access type
1547 @code{:readwrite} can be changed by @code{dbus-set-property}.
1549 The interface @samp{org.freedesktop.DBus.Properties} is added to
1550 @var{path}, including a default handler for the @samp{Get},
1551 @samp{GetAll} and @samp{Set} methods of this interface.  When
1552 @var{emits-signal} is non-@code{nil}, the signal
1553 @samp{PropertiesChanged} is sent when the property is changed by
1554 @code{dbus-set-property}.
1556 When @var{dont-register-service} is non-@code{nil}, the known name
1557 @var{service} is not registered.  This means that other D-Bus clients
1558 have no way of noticing the newly registered method.  When interfaces
1559 are constructed incrementally by adding single methods or properties
1560 at a time, @var{dont-register-service} can be used to prevent other
1561 clients from discovering the still incomplete interface.
1563 @noindent Example:
1565 @lisp
1566 (dbus-register-property
1567   :session "org.freedesktop.TextEditor" "/org/freedesktop/TextEditor"
1568   "org.freedesktop.TextEditor" "name" :read "GNU Emacs")
1570 @result{} ((:property :session "org.freedesktop.TextEditor" "name")
1571     ("org.freedesktop.TextEditor" "/org/freedesktop/TextEditor"))
1573 (dbus-register-property
1574   :session "org.freedesktop.TextEditor" "/org/freedesktop/TextEditor"
1575   "org.freedesktop.TextEditor" "version" :readwrite emacs-version t)
1577 @result{} ((:property :session "org.freedesktop.TextEditor" "version")
1578     ("org.freedesktop.TextEditor" "/org/freedesktop/TextEditor"))
1579 @end lisp
1581 Other D-Bus applications can read the property via the default methods
1582 @samp{org.freedesktop.DBus.Properties.Get} and
1583 @samp{org.freedesktop.DBus.Properties.GetAll}.  Testing is also
1584 possible via the command line tool @code{dbus-send} in a shell:
1586 @example
1587 # dbus-send --session --print-reply \
1588     --dest="org.freedesktop.TextEditor" \
1589     "/org/freedesktop/TextEditor" \
1590     "org.freedesktop.DBus.Properties.GetAll" \
1591     string:"org.freedesktop.TextEditor"
1593 @print{} method return sender=:1.22 -> dest=:1.23 reply_serial=3
1594       array [
1595          dict entry(
1596             string "name"
1597             variant             string "GNU Emacs"
1598          )
1599          dict entry(
1600             string "version"
1601             variant             string "23.1.50.5"
1602          )
1603       ]
1604 @end example
1606 It is also possible, to apply the @code{dbus-get-property},
1607 @code{dbus-get-all-properties} and @code{dbus-set-property} functions
1608 (@pxref{Properties and Annotations}).
1610 @lisp
1611 (dbus-set-property
1612   :session "org.freedesktop.TextEditor" "/org/freedesktop/TextEditor"
1613   "org.freedesktop.TextEditor" "version" "23.1.50")
1615 @result{} "23.1.50"
1617 (dbus-get-property
1618   :session "org.freedesktop.TextEditor" "/org/freedesktop/TextEditor"
1619   "org.freedesktop.TextEditor" "version")
1621 @result{} "23.1.50"
1622 @end lisp
1623 @end defun
1625 @defun dbus-unregister-object object
1626 Unregister @var{object} from the D-Bus.  @var{object} must be the
1627 result of a preceding @code{dbus-register-method},
1628 @code{dbus-register-property} or @code{dbus-register-signal} call
1629 (@pxref{Signals}).  It returns @code{t} if @var{object} has been
1630 unregistered, @code{nil} otherwise.
1632 When @var{object} identifies the last method or property, which is
1633 registered for the respective service, Emacs releases its association
1634 to the service from D-Bus.
1635 @end defun
1638 @node Signals
1639 @chapter Sending and receiving signals.
1640 @cindex signals
1642 Signals are one way messages.  They carry input parameters, which are
1643 received by all objects which have registered for such a signal.
1645 @defun dbus-send-signal bus service path interface signal &rest args
1646 This function is similar to @code{dbus-call-method}.  The difference
1647 is, that there are no returning output parameters.
1649 The function emits @var{signal} on the D-Bus @var{bus}.  @var{bus} is
1650 either the symbol @code{:system} or the symbol @code{:session}.  It
1651 doesn't matter whether another object has registered for @var{signal}.
1653 Signals can be unicast or broadcast messages.  For broadcast messages,
1654 @var{service} must be @code{nil}.  Otherwise, @var{service} is the
1655 D-Bus service name the signal is sent to as unicast
1656 message.@footnote{For backward compatibility, a broadcast message is
1657 also emitted if @var{service} is the known or unique name Emacs is
1658 registered at D-Bus @var{bus}.}  @var{path} is the D-Bus object path
1659 @var{signal} is sent from.  @var{interface} is an interface available
1660 at @var{path}.  It must provide @var{signal}.
1662 All other arguments args are passed to @var{signal} as arguments.
1663 They are converted into D-Bus types as described in @ref{Type
1664 Conversion}.  Example:
1666 @lisp
1667 (dbus-send-signal
1668   :session nil dbus-path-emacs
1669   (concat dbus-interface-emacs ".FileManager") "FileModified"
1670   "/home/albinus/.emacs")
1671 @end lisp
1672 @end defun
1674 @defun dbus-register-signal bus service path interface signal handler &rest args
1675 With this function, an application registers for a signal on the D-Bus
1676 @var{bus}.
1678 @var{bus} is either the symbol @code{:system} or the symbol
1679 @code{:session}.
1681 @var{service} is the D-Bus service name used by the sending D-Bus
1682 object.  It can be either a known name or the unique name of the D-Bus
1683 object sending the signal.  A known name will be mapped onto the
1684 unique name of the object, owning @var{service} at registration time.
1685 When the corresponding D-Bus object disappears, signals won't be
1686 received any longer.
1688 @var{path} is the corresponding D-Bus object path, @var{service} is
1689 registered at.  @var{interface} is an interface offered by
1690 @var{service}.  It must provide @var{signal}.
1692 @var{service}, @var{path}, @var{interface} and @var{signal} can be
1693 @code{nil}.  This is interpreted as a wildcard for the respective
1694 argument.
1696 @var{handler} is a Lisp function to be called when the @var{signal} is
1697 received.  It must accept as arguments the output parameters
1698 @var{signal} is sending.
1700 The remaining arguments @var{args} can be keywords or keyword string
1701 pairs.@footnote{For backward compatibility, the arguments @var{args}
1702 can also be just strings.  They stand for the respective arguments of
1703 @var{signal} in their order, and are used for filtering as well.  A
1704 @code{nil} argument might be used to preserve the order.}  The meaning
1705 is as follows:
1707 @itemize
1708 @item @code{:argN} @var{string}:@*
1709 @code{:pathN} @var{string}:@*
1710 This stands for the Nth argument of the signal.  @code{:pathN}
1711 arguments can be used for object path wildcard matches as specified by
1712 D-Bus, while an @code{:argN} argument requires an exact match.
1714 @item @code{:arg-namespace} @var{string}:@*
1715 Register for the signals, which first argument defines the service or
1716 interface namespace @var{string}.
1718 @item @code{:path-namespace} @var{string}:@*
1719 Register for the object path namespace @var{string}.  All signals sent
1720 from an object path, which has @var{string} as the preceding string,
1721 are matched.  This requires @var{path} to be @code{nil}.
1723 @item @code{:eavesdrop}:@*
1724 Register for unicast signals which are not directed to the D-Bus
1725 object Emacs is registered at D-Bus BUS, if the security policy of BUS
1726 allows this.  Otherwise, this argument is ignored.
1727 @end itemize
1729 @code{dbus-register-signal} returns a Lisp object, which can be used
1730 as argument in @code{dbus-unregister-object} for removing the
1731 registration for @var{signal}.  Example:
1733 @lisp
1734 (defun my-dbus-signal-handler (device)
1735   (message "Device %s added" device))
1737 @result{} my-dbus-signal-handler
1739 (dbus-register-signal
1740   :system "org.freedesktop.Hal" "/org/freedesktop/Hal/Manager"
1741   "org.freedesktop.Hal.Manager" "DeviceAdded"
1742   'my-dbus-signal-handler)
1744 @result{} ((:signal :system "org.freedesktop.Hal.Manager" "DeviceAdded")
1745     ("org.freedesktop.Hal" "/org/freedesktop/Hal/Manager"
1746      my-signal-handler))
1747 @end lisp
1749 As we know from the introspection data of interface
1750 @samp{org.freedesktop.Hal.Manager}, the signal @samp{DeviceAdded}
1751 provides one single parameter, which is mapped into a Lisp string.
1752 The callback function @code{my-dbus-signal-handler} must define one
1753 single string argument therefore.  Plugging an USB device to your
1754 machine, when registered for signal @samp{DeviceAdded}, will show you
1755 which objects the GNU/Linux @code{hal} daemon adds.
1757 Some of the match rules have been added to a later version of D-Bus.
1758 In order to test the availability of such features, you could register
1759 for a dummy signal, and check the result:
1761 @lisp
1762 (dbus-ignore-errors
1763   (dbus-register-signal
1764     :system nil nil nil nil 'ignore :path-namespace "/invalid/path"))
1766 @result{} nil
1767 @end lisp
1768 @end defun
1771 @node Alternative Buses
1772 @chapter Alternative buses and environments.
1773 @cindex bus names
1774 @cindex UNIX domain socket
1775 @cindex TCP/IP socket
1777 Until now, we have spoken about the system and the session buses,
1778 which are the default buses to be connected to.  However, it is
1779 possible to connect to any bus, from which the address is known.  This
1780 is a UNIX domain or TCP/IP socket.  Everywhere, where a @var{bus} is
1781 mentioned as argument of a function (the symbol @code{:system} or the
1782 symbol @code{:session}), this address can be used instead.  The
1783 connection to this bus must be initialized first.
1785 @defun dbus-init-bus bus &optional private
1786 Establish the connection to D-Bus @var{bus}.
1788 @var{bus} can be either the symbol @code{:system} or the symbol
1789 @code{:session}, or it can be a string denoting the address of the
1790 corresponding bus.  For the system and session buses, this function
1791 is called when loading @file{dbus.el}, there is no need to call it
1792 again.
1794 The function returns a number, which counts the connections this Emacs
1795 session has established to the @var{bus} under the same unique name
1796 (see @code{dbus-get-unique-name}).  It depends on the libraries Emacs
1797 is linked with, and on the environment Emacs is running.  For example,
1798 if Emacs is linked with the gtk toolkit, and it runs in a GTK-aware
1799 environment like Gnome, another connection might already be
1800 established.
1802 When @var{private} is non-@code{nil}, a new connection is established
1803 instead of reusing an existing one.  It results in a new unique name
1804 at the bus.  This can be used, if it is necessary to distinguish from
1805 another connection used in the same Emacs process, like the one
1806 established by GTK+.  It should be used with care for at least the
1807 @code{:system} and @code{:session} buses, because other Emacs Lisp
1808 packages might already use this connection to those buses.
1810 Example: You initialize a connection to the AT-SPI bus on your host:
1812 @lisp
1813 (setq my-bus
1814   (dbus-call-method
1815    :session "org.a11y.Bus" "/org/a11y/bus"
1816    "org.a11y.Bus" "GetAddress"))
1818 @result{} "unix:abstract=/tmp/dbus-2yzWHOCdSD,guid=a490dd26625870ca1298b6e10000fd7f"
1820 ;; If Emacs is built with gtk support, and you run in a GTK enabled
1821 ;; environment (like a GNOME session), the initialization reuses the
1822 ;; connection established by GTK's atk bindings.
1823 (dbus-init-bus my-bus)
1825 @result{} 2
1827 (dbus-get-unique-name my-bus)
1829 @result{} ":1.19"
1831 ;; Open a new connection to the same bus.  This obsoletes the
1832 ;; previous one.
1833 (dbus-init-bus my-bus 'private)
1835 @result{} 1
1837 (dbus-get-unique-name my-bus)
1839 @result{} ":1.20"
1840 @end lisp
1842 D-Bus addresses can specify different transport.  A possible address
1843 could be based on TCP/IP sockets, see next example.  However, it
1844 depends on the bus daemon configuration, which transport is supported.
1845 @end defun
1847 @defun dbus-setenv bus variable value
1848 Set the value of the @var{bus} environment variable @var{variable} to
1849 @var{value}.
1851 @var{bus} is either a Lisp symbol, @code{:system} or @code{:session},
1852 or a string denoting the bus address.  Both @var{variable} and
1853 @var{value} should be strings.
1855 Normally, services inherit the environment of the bus daemon.  This
1856 function adds to or modifies that environment when activating services.
1858 Some bus instances, such as @code{:system}, may disable setting the
1859 environment.  In such cases, or if this feature is not available in
1860 older D-Bus versions, a @code{dbus-error} error is raised.
1862 As an example, it might be desirable to start X11 enabled services on
1863 a remote host's bus on the same X11 server the local Emacs is
1864 running.  This could be achieved by
1866 @lisp
1867 (setq my-bus "unix:host=example.gnu.org,port=4711")
1869 @result{} "unix:host=example.gnu.org,port=4711"
1871 (dbus-init-bus my-bus)
1873 @result{} 1
1875 (dbus-setenv my-bus "DISPLAY" (getenv "DISPLAY"))
1877 @result{} nil
1878 @end lisp
1879 @end defun
1882 @node Errors and Events
1883 @chapter Errors and events.
1884 @cindex debugging
1885 @cindex errors
1886 @cindex events
1888 The internal actions can be traced by running in a debug mode.
1890 @defvar dbus-debug
1891 If this variable is non-@code{nil}, D-Bus specific debug messages are raised.
1892 @end defvar
1894 Input parameters of @code{dbus-call-method},
1895 @code{dbus-call-method-asynchronously}, @code{dbus-send-signal},
1896 @code{dbus-register-method}, @code{dbus-register-property} and
1897 @code{dbus-register-signal} are checked for correct D-Bus types. If
1898 there is a type mismatch, the Lisp error @code{wrong-type-argument}
1899 @code{D-Bus ARG} is raised.
1901 All errors raised by D-Bus are signaled with the error symbol
1902 @code{dbus-error}.  If possible, error messages from D-Bus are
1903 appended to the @code{dbus-error}.
1905 @defspec dbus-ignore-errors forms@dots{}
1906 This executes @var{forms} exactly like a @code{progn}, except that
1907 @code{dbus-error} errors are ignored during the @var{forms}.  These
1908 errors can be made visible when @code{dbus-debug} is set to @code{t}.
1909 @end defspec
1911 Incoming D-Bus messages are handled as Emacs events, see @pxref{Misc
1912 Events, , , elisp}.  They are retrieved only, when Emacs runs in
1913 interactive mode.  The generated event has this form:
1915 @lisp
1916 (dbus-event @var{bus} @var{type} @var{serial} @var{service} @var{path} @var{interface} @var{member} @var{handler}
1917         &rest @var{args})
1918 @end lisp
1920 @var{bus} identifies the D-Bus the message is coming from.  It is
1921 either the symbol @code{:system} or the symbol @code{:session}.
1923 @var{type} is the D-Bus message type which has caused the event.  It
1924 can be @code{dbus-message-type-invalid},
1925 @code{dbus-message-type-method-call},
1926 @code{dbus-message-type-method-return},
1927 @code{dbus-message-type-error}, or @code{dbus-message-type-signal}.
1928 @var{serial} is the serial number of the received D-Bus message.
1930 @var{service} and @var{path} are the unique name and the object path
1931 of the D-Bus object emitting the message.  @var{interface} and
1932 @var{member} denote the message which has been sent.
1934 @var{handler} is the callback function which has been registered for
1935 this message (see @pxref{Signals}).  When a @code{dbus-event} event
1936 arrives, @var{handler} is called with @var{args} as arguments.
1938 In order to inspect the @code{dbus-event} data, you could extend the
1939 definition of the callback function in @ref{Signals}:
1941 @lisp
1942 (defun my-dbus-signal-handler (&rest args)
1943   (message "my-dbus-signal-handler: %S" last-input-event))
1944 @end lisp
1946 There exist convenience functions which could be called inside a
1947 callback function in order to retrieve the information from the event.
1949 @defun dbus-event-bus-name event
1950 Returns the bus name @var{event} is coming from.
1951 The result is either the symbol @code{:system} or the symbol @code{:session}.
1952 @end defun
1954 @defun dbus-event-message-type event
1955 Returns the message type of the corresponding D-Bus message.  The
1956 result is a natural number.
1957 @end defun
1959 @defun dbus-event-serial-number event
1960 Returns the serial number of the corresponding D-Bus message.
1961 The result is a natural number.
1962 @end defun
1964 @defun dbus-event-service-name event
1965 Returns the unique name of the D-Bus object @var{event} is coming from.
1966 @end defun
1968 @defun dbus-event-path-name event
1969 Returns the object path of the D-Bus object @var{event} is coming from.
1970 @end defun
1972 @defun dbus-event-interface-name event
1973 Returns the interface name of the D-Bus object @var{event} is coming from.
1974 @end defun
1976 @defun dbus-event-member-name event
1977 Returns the member name of the D-Bus object @var{event} is coming
1978 from.  It is either a signal name or a method name.
1979 @end defun
1981 D-Bus errors are not propagated during event handling, because it is
1982 usually not desired.  D-Bus errors in events can be made visible by
1983 setting the variable @code{dbus-debug} to @code{t}.  They can also be
1984 handled by a hook function.
1986 @defvar dbus-event-error-functions
1987 This hook variable keeps a list of functions, which are called when a
1988 D-Bus error happens in the event handler.  Every function must accept
1989 two arguments, the event and the error variable caught in
1990 @code{condition-case} by @code{dbus-error}.
1992 Such functions can be used the adapt the error signal to be raised.
1993 Example:
1995 @lisp
1996 (defun my-dbus-event-error-handler (event error)
1997   (when (string-equal (concat dbus-interface-emacs ".FileManager")
1998                       (dbus-event-interface-name event))
1999     (message "my-dbus-event-error-handler: %S %S" event error)
2000     (signal 'file-error (cdr error))))
2002 (add-hook 'dbus-event-error-functions 'my-dbus-event-error-handler)
2003 @end lisp
2004 @end defvar
2006 Hook functions shall take into account, that there might be other
2007 D-Bus applications running.  Therefore, they shall check carefully,
2008 whether a given D-Bus error is related to them.
2011 @node Index
2012 @unnumbered Index
2014 @printindex cp
2017 @node GNU Free Documentation License
2018 @appendix GNU Free Documentation License
2019 @include doclicense.texi
2021 @bye