Fix/update some gnus manual links to external resources
[bpt/emacs.git] / doc / misc / dbus.texi
CommitLineData
22d8ac3a
MA
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
7
5bd55c3c
MA
8@syncodeindex vr cp
9@syncodeindex fn cp
10
22d8ac3a 11@copying
ab422c4d 12Copyright @copyright{} 2007--2013 Free Software Foundation, Inc.
22d8ac3a
MA
13
14@quotation
15Permission is granted to copy, distribute and/or modify this document
6a2c4aec 16under the terms of the GNU Free Documentation License, Version 1.3 or
22d8ac3a 17any later version published by the Free Software Foundation; with no
debf4439
GM
18Invariant Sections, with the Front-Cover texts being ``A GNU Manual'',
19and with the Back-Cover Texts as in (a) below. A copy of the license
20is included in the section entitled ``GNU Free Documentation License''.
22d8ac3a 21
6f093307 22(a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
6bf430d1 23modify this GNU manual.''
22d8ac3a
MA
24@end quotation
25@end copying
26
0c973505 27@dircategory Emacs lisp libraries
22d8ac3a
MA
28@direntry
29* D-Bus: (dbus). Using D-Bus in Emacs.
30@end direntry
31
5dc584b5 32@contents
cd71b9ae 33
977640ed 34
22d8ac3a
MA
35@node Top, Overview, (dir), (dir)
36@top D-Bus integration in Emacs
37
78176e69
MA
38This manual documents an API for usage of D-Bus in Emacs. D-Bus is a
39message bus system, a simple way for applications to talk to one
40another. An overview of D-Bus can be found at
41@uref{http://dbus.freedesktop.org/}.
22d8ac3a 42
5dc584b5 43@ifnottex
22d8ac3a 44@insertcopying
5dc584b5 45@end ifnottex
22d8ac3a
MA
46
47@menu
48* Overview:: An overview of D-Bus.
cd71b9ae 49* Inspection:: Inspection of D-Bus services.
22d8ac3a
MA
50* Type Conversion:: Mapping Lisp types and D-Bus types.
51* Synchronous Methods:: Calling methods in a blocking way.
21956b56 52* Asynchronous Methods:: Calling methods non-blocking.
addb7f2e 53* Receiving Method Calls:: Offering own methods.
22d8ac3a 54* Signals:: Sending and receiving signals.
dcbf5805 55* Alternative Buses:: Alternative buses and environments.
22d8ac3a 56* Errors and Events:: Errors and events.
5bd55c3c
MA
57* Index:: Index including concepts, functions, variables.
58
22d8ac3a
MA
59* GNU Free Documentation License:: The license for this documentation.
60@end menu
61
cd71b9ae 62
22d8ac3a
MA
63@node Overview
64@chapter An overview of D-Bus
65@cindex overview
66
67D-Bus is an inter-process communication mechanism for applications
68residing on the same host. The communication is based on
69@dfn{messages}. Data in the messages is carried in a structured way,
70it is not just a byte stream.
71
72The communication is connection oriented to two kinds of message
73buses: a so called @dfn{system bus}, and a @dfn{session bus}. On a
74given machine, there is always one single system bus for miscellaneous
75system-wide communication, like changing of hardware configuration.
76On the other hand, the session bus is always related to a single
77user's session.
78
79Every client application, which is connected to a bus, registers under
80a @dfn{unique name} at the bus. This name is used for identifying the
81client application. Such a unique name starts always with a colon,
82and looks like @samp{:1.42}.
83
84Additionally, a client application can register itself to a so called
85@dfn{known name}, which is a series of identifiers separated by dots,
7ef92bc9 86as in @samp{org.gnu.Emacs}. If several applications register to the
22d8ac3a
MA
87same known name, these registrations are queued, and only the first
88application which has registered for the known name is reachable via
89this name. If this application disconnects from the bus, the next
90queued unique name becomes the owner of this known name.
91
92An application can install one or several objects under its name.
93Such objects are identified by an @dfn{object path}, which looks
94similar to paths in a filesystem. An example of such an object path
95could be @samp{/org/gnu/Emacs/}.
96
97Applications might send a request to an object, that means sending a
98message with some data as input parameters, and receiving a message
99from that object with the result of this message, the output
100parameters. Such a request is called @dfn{method} in D-Bus.
101
102The other form of communication are @dfn{signals}. The underlying
103message is emitted from an object and will be received by all other
104applications which have registered for such a signal.
105
106All methods and signals an object supports are called @dfn{interface}
107of the object. Interfaces are specified under a hierarchical name in
108D-Bus; an object can support several interfaces. Such an interface
109name could be @samp{org.gnu.Emacs.TextEditor} or
110@samp{org.gnu.Emacs.FileManager}.
111
112
113@node Inspection
cd71b9ae 114@chapter Inspection of D-Bus services.
22d8ac3a
MA
115@cindex inspection
116
cd71b9ae 117@menu
dcbf5805 118* Version:: Determining the D-Bus version.
cd71b9ae
MA
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
126
127
dcbf5805
MA
128@node Version
129@section D-Bus version.
130
131D-Bus has evolved over the years. New features have been added with
132new D-Bus versions. There are two variables, which allow to determine
133the used D-Bus version.
134
135@defvar dbus-compiled-version
136This variable, a string, determines the version of D-Bus Emacs is
137compiled against. If it cannot be determined the value is @code{nil}.
138@end defvar
139
140@defvar dbus-runtime-version
141The other D-Bus version to be checked is the version of D-Bus Emacs
142runs with. This string can be different from @code{dbus-compiled-version}.
143It is also @code{nil}, if it cannot be determined at runtime.
144@end defvar
145
146
cd71b9ae
MA
147@node Bus names
148@section Bus names.
149
22d8ac3a
MA
150There are several basic functions which inspect the buses for
151registered names. Internally they use the basic interface
152@samp{org.freedesktop.DBus}, which is supported by all objects of a bus.
153
1ff98217
MA
154@defun dbus-list-activatable-names &optional bus
155This function returns the D-Bus service names, which can be activated
156for @var{bus}. It must be either the symbol @code{:system} (the
157default) or the symbol @code{:session}. An activatable service is
158described in a service registration file. Under GNU/Linux, such files
159are located at @file{/usr/share/dbus-1/system-services/} (for the
160@code{:system} bus) or @file{/usr/share/dbus-1/services/}. An
161activatable service is not necessarily registered at @var{bus} at already.
22d8ac3a
MA
162
163The result is a list of strings, which is @code{nil} when there are no
1ff98217
MA
164activatable service names at all. Example:
165
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
22d8ac3a
MA
171@end defun
172
173@defun dbus-list-names bus
22d8ac3a
MA
174All service names, which are registered at D-Bus @var{bus}, are
175returned. The result is a list of strings, which is @code{nil} when
176there are no registered service names at all. Well known names are
177strings like @samp{org.freedesktop.DBus}. Names starting with
178@samp{:} are unique names for services.
179
180@var{bus} must be either the symbol @code{:system} or the symbol
181@code{:session}.
182@end defun
183
184@defun dbus-list-known-names bus
1ff98217 185Retrieves all registered services which correspond to a known name in @var{bus}.
22d8ac3a
MA
186A service has a known name if it doesn't start with @samp{:}. The
187result is a list of strings, which is @code{nil} when there are no
188known names at all.
189
190@var{bus} must be either the symbol @code{:system} or the symbol
191@code{:session}.
192@end defun
193
194@defun dbus-list-queued-owners bus service
22d8ac3a
MA
195For 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
197list of strings, or @code{nil} when there are no queued names for
198@var{service} at all.
199
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
202string.
203@end defun
204
205@defun dbus-get-name-owner bus service
22d8ac3a 206For a given service, registered at D-Bus @var{bus} under the name
06c0751a
MA
207@var{service}, the unique name of the name owner is returned. The
208result is a string, or @code{nil} when there exist no name owner of
209@var{service}.
22d8ac3a
MA
210
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
213string.
214@end defun
215
ecd3d54f 216@defun dbus-ping bus service &optional timeout
06c0751a 217Check whether the service name @var{service} is registered at D-Bus
ecd3d54f
MA
218@var{bus}. @var{service} might not have been started yet, it is
219autostarted if possible. The result is either @code{t} or @code{nil}.
06c0751a
MA
220
221@var{bus} must be either the symbol @code{:system} or the symbol
ecd3d54f
MA
222@code{:session}. @var{service} must be a string. @var{timeout}, a
223nonnegative integer, specifies the maximum number of milliseconds
224@code{dbus-ping} must return. The default value is 25,000. Example:
06c0751a
MA
225
226@lisp
227(message
228 "%s screensaver on board."
229 (cond
ecd3d54f
MA
230 ((dbus-ping :session "org.gnome.ScreenSaver" 100) "Gnome")
231 ((dbus-ping :session "org.freedesktop.ScreenSaver" 100) "KDE")
06c0751a
MA
232 (t "No")))
233@end lisp
ecd3d54f
MA
234
235If it shall be checked whether @var{service} is already running
236without autostarting it, one shall apply
237
238@lisp
239(member service (dbus-list-known-names bus))
240@end lisp
06c0751a
MA
241@end defun
242
22d8ac3a 243@defun dbus-get-unique-name bus
22d8ac3a
MA
244The unique name, under which Emacs is registered at D-Bus @var{bus},
245is returned as string.
246
247@var{bus} must be either the symbol @code{:system} or the symbol
248@code{:session}.
249@end defun
250
cd71b9ae
MA
251
252@node Introspection
253@section Knowing the details of D-Bus services.
254
255D-Bus services publish their interfaces. This can be retrieved and
256analyzed during runtime, in order to understand the used
257implementation.
258
259The resulting introspection data are in XML format. The root
260introspection element is always a @code{node} element. It might have
261a @code{name} attribute, which denotes the (absolute) object path an
262interface is introspected.
263
264The root @code{node} element may have @code{node} and @code{interface}
265children. A child @code{node} element must have a @code{name}
266attribute, this case it is the relative object path to the root
267@code{node} element.
268
269An @code{interface} element has just one attribute, @code{name}, which
270is the full name of that interface. The default interface
271@samp{org.freedesktop.DBus.Introspectable} is always present. Example:
272
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
293
294Children of an @code{interface} element can be @code{method},
295@code{signal} and @code{property} elements. A @code{method} element
296stands for a D-Bus method of the surrounding interface. The element
297itself has a @code{name} attribute, showing the method name. Children
298elements @code{arg} stand for the arguments of a method. Example:
299
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
315
316@code{arg} elements can have the attributes @code{name}, @code{type}
317and @code{direction}. The @code{name} attribute is optional. The
318@code{type} attribute stands for the @dfn{signature} of the argument
319in D-Bus. For a discussion of D-Bus types and their Lisp
320representation see @ref{Type Conversion}.@footnote{D-Bus signatures
321are explained in the D-Bus specification
322@uref{http://dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-signatures}.}
323The @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}.
326
327A @code{signal} element of an @code{interface} has a similar
328structure. The @code{direction} attribute of an @code{arg} child
329element can be only @samp{out} here; which is also the default value.
330Example:
331
332@example
333<signal name="StateChanged">
334 <arg name="state" type="i"/>
335 <arg name="error" type="s"/>
336</signal>
337@end example
338
339A @code{property} element has no @code{arg} child
340element. It just has the attributes @code{name}, @code{type} and
341@code{access}, which are all mandatory. The @code{access} attribute
342allows the values @samp{readwrite}, @samp{read}, and @samp{write}.
343Example:
344
345@example
346<property name="Status" type="u" direction="read"/>
347@end example
348
349@code{annotation} elements can be children of @code{interface},
350@code{method}, @code{signal}, and @code{property} elements. Unlike
351properties, which can change their values during lifetime of a D-Bus
352object, annotations are static. Often they are used for code
53964682 353generators of D-Bus language bindings. Example:
cd71b9ae
MA
354
355@example
356<annotation name="de.berlios.Pinot.GetStatistics" value="pinotDBus"/>
357@end example
358
359Annotations have just @code{name} and @code{value} attributes, both
360must be strings.
361
22d8ac3a 362@defun dbus-introspect bus service path
cd71b9ae
MA
363This function returns all interfaces and sub-nodes of @var{service},
364registered at object path @var{path} at bus @var{bus}.
22d8ac3a
MA
365
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
369strings. The result, the introspection data, is a string in XML
cd71b9ae 370format. Example:
22d8ac3a 371
06c0751a 372@lisp
22d8ac3a
MA
373(dbus-introspect
374 :system "org.freedesktop.Hal"
375 "/org/freedesktop/Hal/devices/computer")
376
d9e21158 377@result{} "<!DOCTYPE node PUBLIC
cd71b9ae
MA
378 "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
379 "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
d9e21158 380 <node>
cd71b9ae
MA
381 <interface name="org.freedesktop.Hal.Device">
382 <method name="GetAllProperties">
383 <arg name="properties" direction="out" type="a@{sv@}"/>
d9e21158 384 </method>
c9ecb5a7 385 @dots{}
cd71b9ae
MA
386 <signal name="PropertyModified">
387 <arg name="num_updates" type="i"/>
388 <arg name="updates" type="a(sbb)"/>
d9e21158
MA
389 </signal>
390 </interface>
c9ecb5a7 391 @dots{}
d9e21158 392 </node>"
06c0751a 393@end lisp
22d8ac3a 394
cd71b9ae
MA
395This example informs us, that the service @samp{org.freedesktop.Hal}
396at object path @samp{/org/freedesktop/Hal/devices/computer} offers the
397interface @samp{org.freedesktop.Hal.Device} (and 2 other interfaces
22d8ac3a 398not documented here). This interface contains the method
cd71b9ae 399@samp{GetAllProperties}, which needs no input parameters, but returns
22d8ac3a
MA
400as output parameter an array of dictionary entries (key-value pairs).
401Every dictionary entry has a string as key, and a variant as value.
402
403The interface offers also a signal, which returns 2 parameters: an
404integer, and an array consisting of elements which are a struct of a
cd71b9ae 405string and 2 boolean values.@footnote{ The interfaces of the service
97df87bb
GM
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,
410the HAL specification}.}
22d8ac3a
MA
411@end defun
412
cd71b9ae
MA
413@defun dbus-introspect-xml bus service path
414This function has the same intention as function
415@code{dbus-introspect}. The returned value is a parsed XML tree,
416which can be used for further analysis. Example:
417
418@lisp
419(dbus-introspect-xml
420 :session "org.freedesktop.xesam.searcher"
421 "/org/freedesktop/xesam/searcher/main")
422
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
441
442@defun dbus-introspect-get-attribute object attribute
443It returns the @var{attribute} value of a D-Bus introspection
444@var{object}. @var{object} can be every subtree of a parsed XML tree
445as retrieved with @code{dbus-introspect-xml}. @var{attribute} must be
446a string according to the attribute names in the D-Bus specification.
447Example:
448
449@lisp
450(dbus-introspect-get-attribute
451 (dbus-introspect-xml :system "org.freedesktop.SystemToolsBackends"
452 "/org/freedesktop/SystemToolsBackends/UsersConfig")
453 "name")
454
455@result{} "/org/freedesktop/SystemToolsBackends/UsersConfig"
456@end lisp
457
5bd55c3c
MA
458If @var{object} has no @var{attribute}, the function returns
459@code{nil}.
cd71b9ae
MA
460@end defun
461
462
463@node Nodes and Interfaces
464@section Detecting object paths and interfaces.
465
466The first elements, to be introspected for a D-Bus object, are further
467object paths and interfaces.
468
469@defun dbus-introspect-get-node-names bus service path
470All node names of @var{service} in D-Bus @var{bus} at object path
471@var{path} are returned as list of strings. Example:
472
473@lisp
474(dbus-introspect-get-node-names
475 :session "org.gnome.seahorse" "/org/gnome/seahorse")
476
477@result{} ("crypto" "keys")
478@end lisp
479
480The 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}
483are also object paths of the D-Bus service @samp{org.gnome.seahorse}.
484@end defun
485
486@defun dbus-introspect-get-all-nodes bus service path
487This 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
489with all object paths of @var{service}, starting at @var{path}.
490Example:
491
492@lisp
493(dbus-introspect-get-all-nodes :session "org.gnome.seahorse" "/")
494
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
504
505@defun dbus-introspect-get-interface-names bus service path
506There 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
508will contain the default interface @samp{org.freedesktop.DBus.Introspectable}.
509
510Another default interface is @samp{org.freedesktop.DBus.Properties}.
511If present, @code{interface} elements can also have @code{property}
512children. Example:
513
514@lisp
515(dbus-introspect-get-interface-names
516 :system "org.freedesktop.Hal"
517 "/org/freedesktop/Hal/devices/computer")
518
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
525
526@defun dbus-introspect-get-interface bus service path interface
527Return @var{interface} of @var{service} in D-Bus @var{bus} at object
528path @var{path}. The return value is an XML element. @var{interface}
529must be a string, element of the list returned by
530@code{dbus-introspect-get-interface-names}. Example:
531
532@lisp
533(dbus-introspect-get-interface
534 :session "org.freedesktop.xesam.searcher"
535 "/org/freedesktop/xesam/searcher/main"
536 "org.freedesktop.xesam.Search")
537
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
553
554@noindent
555With these functions, it is possible to retrieve all introspection
556data from a running system:
557
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
572
573
574@node Methods and Signal
575@section Applying the functionality.
576
da6062e6 577Methods and signals are the communication means to D-Bus. The
cd71b9ae
MA
578following functions return their specifications.
579
580@defun dbus-introspect-get-method-names bus service path interface
581Return 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:
583
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")
589
590@result{} ("GetState" "StartSearch" "GetHitCount" "GetHits" "NewSession"
591 "CloseSession" "GetHitData" "SetProperty" "NewSearch"
592 "GetProperty" "CloseSearch")
593@end lisp
594@end defun
595
596@defun dbus-introspect-get-method bus service path interface method
597This function returns @var{method} of @var{interface} as XML element.
598It 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
600returned by @code{dbus-introspect-get-method-names}. Example:
601
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")
607
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
616
617@defun dbus-introspect-get-signal-names bus service path interface
618Return 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:
620
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")
626
627@result{} ("StateChanged" "SearchDone" "HitsModified"
628 "HitsRemoved" "HitsAdded")
629@end lisp
630@end defun
631
632@defun dbus-introspect-get-signal bus service path interface signal
633This function returns @var{signal} of @var{interface} as XML element.
634It 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
636returned by @code{dbus-introspect-get-signal-names}. Example:
637
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")
643
644@result{} (signal ((name . "HitsAdded"))
645 (arg ((name . "search") (type . "s")))
646 (arg ((name . "count") (type . "u")))
647 )
648@end lisp
649@end defun
650
651
652@node Properties and Annotations
653@section What else to know about interfaces.
654
655Interfaces 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}}.
658That is, properties can be retrieved and changed during lifetime of an
659element.
660
dcbf5805
MA
661A generalized interface is
662@samp{org.freedesktop.DBus.Objectmanager}@footnote{See
663@uref{http://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-objectmanager}},
664which returns objects, their interfaces and properties for a given
665service in just one call.
666
cd71b9ae
MA
667Annotations, on the other hand, are static values for an element.
668Often, they are used to instruct generators, how to generate code from
669the interface for a given language binding.
670
671@defun dbus-introspect-get-property-names bus service path interface
672Return 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:
674
675@lisp
676(dbus-introspect-get-property-names
677 :session "org.kde.kded" "/modules/networkstatus"
678 "org.kde.Solid.Networking.Client")
679
680@result{} ("Status")
681@end lisp
682
683If an interface declares properties, the corresponding element supports
684also the @samp{org.freedesktop.DBus.Properties} interface.
685@end defun
686
687@defun dbus-introspect-get-property bus service path interface property
688This function returns @var{property} of @var{interface} as XML element.
689It 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
691returned by @code{dbus-introspect-get-property-names}.
692
693A @var{property} value can be retrieved by the function
694@code{dbus-introspect-get-attribute}. Example:
695
696@lisp
697(dbus-introspect-get-property
698 :session "org.kde.kded" "/modules/networkstatus"
699 "org.kde.Solid.Networking.Client" "Status")
700
701@result{} (property ((access . "read") (type . "u") (name . "Status")))
702
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")
708
709@result{} "read"
710@end lisp
711@end defun
712
713@defun dbus-get-property bus service path interface property
714This function returns the value of @var{property} of @var{interface}.
715It will be checked at @var{bus}, @var{service}, @var{path}. The
5bd55c3c 716result can be any valid D-Bus value, or @code{nil} if there is no
cd71b9ae
MA
717@var{property}. Example:
718
719@lisp
720(dbus-get-property
721 :session "org.kde.kded" "/modules/networkstatus"
722 "org.kde.Solid.Networking.Client" "Status")
723
724@result{} 4
725@end lisp
726@end defun
727
728@defun dbus-set-property bus service path interface property value
729Set value of @var{property} of @var{interface} to @var{value}. It
730will be checked at @var{bus}, @var{service}, @var{path}. When the
731value has been set successful, the result is @var{value}. Otherwise,
732@code{nil} is returned. Example:
733
734@lisp
735(dbus-set-property
736 :session "org.kde.kaccess" "/MainApplication"
737 "com.trolltech.Qt.QApplication" "doubleClickInterval" 500)
738
739@result{} 500
740@end lisp
741@end defun
742
743@defun dbus-get-all-properties bus service path interface
744This function returns all properties of @var{interface}. It will be
745checked at @var{bus}, @var{service}, @var{path}. The result is a list
746of cons. Every cons contains the name of the property, and its value.
747If there are no properties, @code{nil} is returned. Example:
748
749@lisp
750(dbus-get-all-properties
751 :session "org.kde.kaccess" "/MainApplication"
752 "com.trolltech.Qt.QApplication")
753
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
761
dcbf5805
MA
762@defun dbus-get-all-managed-objects bus service path
763This functions returns all objects at @var{bus}, @var{service},
764@var{path}, and the children of @var{path}. The result is a list of
765objects. Every object is a cons of an existing path name, and the
766list of available interface objects. An interface object is another
767cons, which car is the interface name, and the cdr is the list of
768properties as returned by @code{dbus-get-all-properties} for that path
769and interface. Example:
770
771@lisp
772(dbus-get-all-managed-objects
773 :session "org.gnome.SettingsDaemon" "/")
774
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
793
794If possible, @samp{org.freedesktop.DBus.ObjectManager.GetManagedObjects}
795is used for retrieving the information. Otherwise, the information
796is collected via @samp{org.freedesktop.DBus.Introspectable.Introspect}
797and @samp{org.freedesktop.DBus.Properties.GetAll}, which is slow.
798
799An overview of all existing object paths, their interfaces and
800properties could be retrieved by the following code:
801
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
816
cd71b9ae
MA
817@defun dbus-introspect-get-annotation-names bus service path interface &optional name
818Return 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
822belong to. Example:
823
824@lisp
825(dbus-introspect-get-annotation-names
826 :session "de.berlios.Pinot" "/de/berlios/Pinot"
827 "de.berlios.Pinot" "GetStatistics")
828
829@result{} ("de.berlios.Pinot.GetStatistics")
830@end lisp
831
832Default annotation names@footnote{See
833@uref{http://dbus.freedesktop.org/doc/dbus-specification.html#introspection-format}}
834are
835
836@table @samp
837@item org.freedesktop.DBus.Deprecated
838Whether or not the entity is deprecated; defaults to @code{nil}
839
840@item org.freedesktop.DBus.GLib.CSymbol
841The C symbol; may be used for @code{methods} and @code{interfaces}
842
843@item org.freedesktop.DBus.Method.NoReply
844If set, don't expect a reply to the @code{method} call; defaults to @code{nil}
845@end table
846@end defun
847
848@defun dbus-introspect-get-annotation bus service path interface name annotation
849Return 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.
853
854An attribute value can be retrieved by
855@code{dbus-introspect-get-attribute}. Example:
856
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")
862
863@result{} (annotation ((name . "de.berlios.Pinot.GetStatistics")
864 (value . "pinotDBus")))
865
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")
872
873@result{} "pinotDBus"
874@end lisp
875@end defun
876
877
878@node Arguments and Signatures
879@section The final details.
880
881Methods and signals have arguments. They are described in the
882@code{arg} XML elements.
883
884@defun dbus-introspect-get-argument-names bus service path interface name
885Return a list of all argument names as list of strings. @var{name}
886must be a @code{method} or @code{signal} XML element. Example:
887
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")
893
894@result{} ("search" "hit_ids" "fields" "hit_data")
895@end lisp
896
897Argument names are optional; the function can return @code{nil}
898therefore, even if the method or signal has arguments.
899@end defun
900
901@defun dbus-introspect-get-argument bus service path interface name arg
902Return argument @var{ARG} as XML object. @var{name}
903must be a @code{method} or @code{signal} XML element. Example:
904
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")
910
911@result{} (arg ((name . "search") (type . "s") (direction . "in")))
912@end lisp
913@end defun
914
915@defun dbus-introspect-get-signature bus service path interface name &optional direction
916Return signature of a @code{method} or @code{signal}, represented by
917@var{name}, as string.
918
919If @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}
921is assumed.
922
923If @var{name} is a @code{signal}, and @var{direction} is
924non-@code{nil}, @var{direction} must be @samp{out}. Example:
925
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")
931
932@result{} "sauas"
933
934(dbus-introspect-get-signature
935 :session "org.freedesktop.xesam.searcher"
936 "/org/freedesktop/xesam/searcher/main"
937 "org.freedesktop.xesam.Search" "HitsAdded")
938
21956b56 939@result{} "su"
cd71b9ae
MA
940@end lisp
941@end defun
942
22d8ac3a
MA
943
944@node Type Conversion
945@chapter Mapping Lisp types and D-Bus types.
946@cindex type conversion
947
948D-Bus method calls and signals accept usually several arguments as
949parameters, either as input parameter, or as output parameter. Every
950argument belongs to a D-Bus type.
951
6a31c819 952Such arguments must be mapped between the value encoded as a D-Bus
22d8ac3a
MA
953type, and the corresponding type of Lisp objects. The mapping is
954applied Lisp object @expansion{} D-Bus type for input parameters, and
955D-Bus type @expansion{} Lisp object for output parameters.
956
957
958@section Input parameters.
959
960Input parameters for D-Bus methods and signals occur as arguments of a
6a31c819 961Lisp function call. The following mapping to D-Bus types is
22d8ac3a
MA
962applied, when the corresponding D-Bus message is created:
963
964@example
5bd55c3c 965@multitable {negative integer} {@expansion{}} {DBUS_TYPE_BOOLEAN}
22d8ac3a
MA
966@item Lisp type @tab @tab D-Bus type
967@item
968@item @code{t} and @code{nil} @tab @expansion{} @tab DBUS_TYPE_BOOLEAN
5bd55c3c
MA
969@item natural number @tab @expansion{} @tab DBUS_TYPE_UINT32
970@item negative integer @tab @expansion{} @tab DBUS_TYPE_INT32
22d8ac3a
MA
971@item float @tab @expansion{} @tab DBUS_TYPE_DOUBLE
972@item string @tab @expansion{} @tab DBUS_TYPE_STRING
6a31c819 973@item list @tab @expansion{} @tab DBUS_TYPE_ARRAY
22d8ac3a
MA
974@end multitable
975@end example
976
6a31c819 977Other Lisp objects, like symbols or hash tables, are not accepted as
61cf3a76 978input parameters.
6a31c819
MA
979
980If it is necessary to use another D-Bus type, a corresponding type
61cf3a76 981symbol can be prepended to the corresponding Lisp object. Basic D-Bus
d4e67bc5
MA
982types 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},
6f8fc60c
MA
985@code{:string}, @code{:object-path}, @code{:signature} and
986@code{:unix-fd}.
6a31c819 987
22d8ac3a 988@noindent
6a31c819
MA
989Example:
990
991@lisp
5bd55c3c 992(dbus-call-method @dots{} @var{NAT-NUMBER} @var{STRING})
6a31c819
MA
993@end lisp
994
995is equivalent to
996
997@lisp
5bd55c3c 998(dbus-call-method @dots{} :uint32 @var{NAT-NUMBER} :string @var{STRING})
6a31c819
MA
999@end lisp
1000
1001but different to
1002
1003@lisp
5bd55c3c 1004(dbus-call-method @dots{} :int32 @var{NAT-NUMBER} :signature @var{STRING})
6a31c819
MA
1005@end lisp
1006
4db2806c
MA
1007The value for a byte D-Bus type can be any integer in the range 0
1008through 255. If a character is used as argument, modifiers
1009represented 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}.
c9ecb5a7 1012
dcbf5805
MA
1013Signed and unsigned integer D-Bus types expect a corresponding integer
1014value. If the value does not fit Emacs's integer range, it is also
1015possible to use an equivalent floating point number.
1016
4db2806c
MA
1017A D-Bus compound type is always represented as a list. The @sc{car}
1018of this list can be the type symbol @code{:array}, @code{:variant},
d4e67bc5
MA
1019@code{:struct} or @code{:dict-entry}, which would result in a
1020corresponding D-Bus container. @code{:array} is optional, because
4db2806c 1021this is the default compound D-Bus type for a list.
6a31c819
MA
1022
1023The objects being elements of the list are checked according to the
1024D-Bus compound type rules.
1025
1026@itemize
4db2806c
MA
1027@item An array must contain only elements of the same D-Bus type. It
1028can be empty.
1029
6a31c819 1030@item A variant must contain only one single element.
4db2806c 1031
6a31c819 1032@item A dictionary entry must be element of an array, and it must
4db2806c
MA
1033contain only a key-value pair of two elements, with a basic D-Bus type
1034key.
1035
6a31c819
MA
1036@item There is no restriction for structs.
1037@end itemize
1038
4db2806c
MA
1039If an empty array needs an element D-Bus type other than string, it
1040can contain exactly one element of D-Bus type @code{:signature}. The
1041value of this element (a string) is used as the signature of the
1042elements of this array. Example:
6a31c819
MA
1043
1044@lisp
4db2806c
MA
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).
0ecd3c90 1058 :int32 -1) ;; Default timeout.
4db2806c
MA
1059
1060@result{} 3
6a31c819 1061@end lisp
22d8ac3a 1062
ace706d1
MA
1063@defun dbus-string-to-byte-array string
1064Sometimes, D-Bus methods require as input parameter an array of bytes,
1065instead of a string. If it is guaranteed, that @var{string} is an
1066UTF8 string, this function performs the conversion. Example:
1067
1068@lisp
1069(dbus-string-to-byte-array "/etc/hosts")
1070
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
1075
1076@defun dbus-escape-as-identifier string
1077Escape an arbitrary @var{string} so it follows the rules for a C
1078identifier. The escaped string can be used as object path component,
1079interface element component, bus name component or member name in
1080D-Bus.
1081
1082The escaping consists of replacing all non-alphanumerics, and the
1083first character if it's a digit, with an underscore and two
1084lower-case hex digits. As a special case, "" is escaped to
1085"_". Example:
1086
1087@lisp
1088(dbus-escape-as-identifier "0123abc_xyz\x01\xff")
1089
1090@result{} "_30123abc_5fxyz_01_ff"
1091@end lisp
1092@end defun
1093
22d8ac3a
MA
1094
1095@section Output parameters.
1096
1097Output parameters of D-Bus methods and signals are mapped to Lisp
6a31c819 1098objects.
22d8ac3a
MA
1099
1100@example
5bd55c3c 1101@multitable {DBUS_TYPE_OBJECT_PATH} {@expansion{}} {natural number or float}
22d8ac3a
MA
1102@item D-Bus type @tab @tab Lisp type
1103@item
1104@item DBUS_TYPE_BOOLEAN @tab @expansion{} @tab @code{t} or @code{nil}
5bd55c3c
MA
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
6f8fc60c 1109@item DBUS_TYPE_UNIX_FD @tab @expansion{} @tab natural number or float
5bd55c3c
MA
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
22d8ac3a
MA
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
6a31c819 1116@item DBUS_TYPE_SIGNATURE @tab @expansion{} @tab string
22d8ac3a
MA
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
1123
d4e67bc5 1124A float object in case of @code{DBUS_TYPE_UINT32},
6f8fc60c
MA
1125@code{DBUS_TYPE_INT32}, @code{DBUS_TYPE_UINT64},
1126@code{DBUS_TYPE_INT64} and @code{DBUS_TYPE_UNIX_FD} is returned, when
1127the C value exceeds the Emacs number size range.
d4e67bc5 1128
22d8ac3a
MA
1129The resulting list of the last 4 D-Bus compound types contains as
1130elements the elements of the D-Bus container, mapped according to the
1131same rules.
1132
1133The 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}):
1136
1137@lisp
5bd55c3c 1138(@var{INTEGER} ((@var{STRING} @var{BOOL} @var{BOOL}) (@var{STRING} @var{BOOL} @var{BOOL}) @dots{}))
22d8ac3a
MA
1139@end lisp
1140
ace706d1
MA
1141@defun dbus-byte-array-to-string byte-array
1142If a D-Bus method or signal returns an array of bytes, which are known
1143to represent an UTF8 string, this function converts @var{byte-array}
1144to the corresponding string. Example:
1145
1146@lisp
1147(dbus-byte-array-to-string '(47 101 116 99 47 104 111 115 116 115))
1148
1149@result{} "/etc/hosts"
1150@end lisp
1151@end defun
1152
1153@defun dbus-unescape-from-identifier string
1154Retrieve the original string from the encoded @var{string}.
1155@var{string} must have been coded with
1156@code{dbus-escape-as-identifier}. Example:
1157
1158@lisp
1159(dbus-unescape-from-identifier "_30123abc_5fxyz_01_ff")
1160
fa0f81b0
AS
1161@ifinfo
1162@result{} "0123abc_xyz^Aÿ"
1163@end ifinfo
1164@ifnotinfo
1165@result{} "0123abc_xyz^A@"y"
1166@end ifnotinfo
ace706d1
MA
1167@end lisp
1168@end defun
1169
22d8ac3a
MA
1170
1171@node Synchronous Methods
1172@chapter Calling methods in a blocking way.
1173@cindex method calls, synchronous
1174@cindex synchronous method calls
1175
1176Methods can be called synchronously (@dfn{blocking}) or asynchronously
21956b56 1177(@dfn{non-blocking}).
22d8ac3a
MA
1178
1179At D-Bus level, a method call consist of two messages: one message
1180which carries the input parameters to the object owning the method to
1181be called, and a reply message returning the resulting output
1182parameters from the object.
1183
134ce16c 1184@defun dbus-call-method bus service path interface method &optional :timeout timeout &rest args
22d8ac3a
MA
1185This function calls @var{method} on the D-Bus @var{bus}. @var{bus} is
1186either the symbol @code{:system} or the symbol @code{:session}.
1187
1188@var{service} is the D-Bus service name to be used. @var{path} is the
1189D-Bus object path, @var{service} is registered at. @var{interface} is
1190an interface offered by @var{service}. It must provide @var{method}.
1191
134ce16c 1192If the parameter @code{:timeout} is given, the following integer
21956b56 1193@var{timeout} specifies the maximum number of milliseconds the method
ecd3d54f 1194call must return. The default value is 25,000. If the method call
134ce16c
MA
1195doesn't return in time, a D-Bus error is raised (@pxref{Errors and
1196Events}).
1197
22d8ac3a
MA
1198All other arguments args are passed to @var{method} as arguments.
1199They are converted into D-Bus types as described in @ref{Type
1200Conversion}.
1201
1202The function returns the resulting values of @var{method} as a list of
1203Lisp objects, according to the type conversion rules described in
1204@ref{Type Conversion}. Example:
1205
06c0751a 1206@lisp
22d8ac3a 1207(dbus-call-method
0ce574ef
MA
1208 :session "org.gnome.seahorse" "/org/gnome/seahorse/keys/openpgp"
1209 "org.gnome.seahorse.Keys" "GetKeyField"
22d8ac3a
MA
1210 "openpgp:657984B8C7A966DD" "simple-name")
1211
1212@result{} (t ("Philip R. Zimmermann"))
06c0751a 1213@end lisp
22d8ac3a
MA
1214
1215If the result of the method call is just one value, the converted Lisp
1216object is returned instead of a list containing this single Lisp
1217object. Example:
1218
06c0751a 1219@lisp
22d8ac3a 1220(dbus-call-method
0ce574ef
MA
1221 :system "org.freedesktop.Hal"
1222 "/org/freedesktop/Hal/devices/computer"
1223 "org.freedesktop.Hal.Device" "GetPropertyString"
22d8ac3a
MA
1224 "system.kernel.machine")
1225
1226@result{} "i686"
06c0751a 1227@end lisp
22d8ac3a
MA
1228
1229With the @code{dbus-introspect} function it is possible to explore the
1230interfaces of @samp{org.freedesktop.Hal} service. It offers the
1231interfaces @samp{org.freedesktop.Hal.Manager} for the object at the
1232path @samp{/org/freedesktop/Hal/Manager} as well as the interface
1233@samp{org.freedesktop.Hal.Device} for all objects prefixed with the
1234path @samp{/org/freedesktop/Hal/devices}. With the methods
1235@samp{GetAllDevices} and @samp{GetAllProperties}, it is simple to
1236emulate the @code{lshal} command on GNU/Linux systems:
1237
06c0751a 1238@lisp
22d8ac3a
MA
1239(dolist (device
1240 (dbus-call-method
0ce574ef 1241 :system "org.freedesktop.Hal"
22d8ac3a 1242 "/org/freedesktop/Hal/Manager"
0ce574ef 1243 "org.freedesktop.Hal.Manager" "GetAllDevices"))
22d8ac3a
MA
1244 (message "\nudi = %s" device)
1245 (dolist (properties
1246 (dbus-call-method
0ce574ef
MA
1247 :system "org.freedesktop.Hal" device
1248 "org.freedesktop.Hal.Device" "GetAllProperties"))
22d8ac3a
MA
1249 (message " %s = %S"
1250 (car properties) (or (caar (cdr properties)) ""))))
1251
7b13a0f2 1252@print{} "udi = /org/freedesktop/Hal/devices/computer
d9e21158
MA
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\"
c9ecb5a7 1267 @dots{}"
06c0751a 1268@end lisp
22d8ac3a
MA
1269@end defun
1270
21956b56
MA
1271
1272@node Asynchronous Methods
1273@chapter Calling methods non-blocking.
1274@cindex method calls, asynchronous
1275@cindex asynchronous method calls
1276
1277@defun dbus-call-method-asynchronously bus service path interface method handler &optional :timeout timeout &rest args
1278This function calls @var{method} on the D-Bus @var{bus}
1279asynchronously. @var{bus} is either the symbol @code{:system} or the
1280symbol @code{:session}.
1281
1282@var{service} is the D-Bus service name to be used. @var{path} is the
1283D-Bus object path, @var{service} is registered at. @var{interface} is
1284an interface offered by @var{service}. It must provide @var{method}.
1285
1286@var{handler} is a Lisp function, which is called when the
4f22e84d
MA
1287corresponding return message has arrived. If @var{handler} is
1288@code{nil}, no return message will be expected.
21956b56
MA
1289
1290If the parameter @code{:timeout} is given, the following integer
1291@var{timeout} specifies the maximum number of milliseconds a reply
ecd3d54f 1292message must arrive. The default value is 25,000. If there is no
21956b56
MA
1293reply message in time, a D-Bus error is raised (@pxref{Errors and
1294Events}).
1295
1296All other arguments args are passed to @var{method} as arguments.
1297They are converted into D-Bus types as described in @ref{Type
1298Conversion}.
1299
dcbf5805 1300If @var{handler} is a Lisp function, the function returns a key into
0ecd3c90 1301the hash table @code{dbus-registered-objects-table}. The
4f22e84d
MA
1302corresponding entry in the hash table is removed, when the return
1303message has been arrived, and @var{handler} is called. Example:
21956b56
MA
1304
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")
1311
dcbf5805 1312@result{} (:serial :system 2)
21956b56
MA
1313
1314@print{} i686
1315@end lisp
1316@end defun
1317
22d8ac3a 1318
addb7f2e
MA
1319@node Receiving Method Calls
1320@chapter Offering own methods.
1321@cindex method calls, returning
1322@cindex returning method calls
1323
8c904d82
MA
1324In order to register methods on the D-Bus, Emacs has to request a well
1325known name on the D-Bus under which it will be available for other
1326clients. Names on the D-Bus can be registered and unregistered using
1327the following functions:
1328
1329@defun dbus-register-service bus service &rest flags
1330Register the known name @var{service} on D-Bus @var{bus}.
1331
1332@var{bus} is either the symbol @code{:system} or the symbol
1333@code{:session}.
1334
1335@var{service} is the service name to be registered on the D-Bus. It
1336must be a known name.
1337
1338@var{flags} is a subset of the following keywords:
1339
1340@itemize
1341@item @code{:allow-replacement}: Allow another service to become the primary
1342owner if requested.
1343
1344@item @code{:replace-existing}: Request to replace the current primary owner.
1345
1346@item @code{:do-not-queue}: If we can not become the primary owner do not
1347place us in the queue.
1348@end itemize
1349
1350One of the following keywords is returned:
1351
1352@itemize
1353
1354@item @code{:primary-owner}: We have become the primary owner of the name
1355@var{service}.
1356
1357@item @code{:in-queue}: We could not become the primary owner and
1358have been placed in the queue.
1359
1360@item @code{:exists}: We already are in the queue.
1361
1362@item @code{:already-owner}: We already are the primary
1363owner.
1364@end itemize
1365@end defun
1366
1367@defun dbus-unregister-service bus service
1368Unregister all objects from D-Bus @var{bus}, registered by Emacs for
1369@var{service}.
1370
1371@var{bus} is either the symbol @code{:system} or the symbol
1372@code{:session}.
1373
1374@var{service} is the D-Bus service name of the D-Bus. It must be a
1375known name. Emacs releases its association to @var{service} from
1376D-Bus.
1377
1378One of the following keywords is returned:
1379
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
1386
1387When a name has been chosen, Emacs can offer own methods, which can be
1388called by other applications. These methods could be an
1389implementation of an interface of a well known service, like
1390@samp{org.freedesktop.TextEditor}.
addb7f2e
MA
1391
1392It could be also an implementation of an own interface. In this case,
cd71b9ae 1393the service name must be @samp{org.gnu.Emacs}. The object path shall
dcbf5805 1394begin with @samp{/org/gnu/Emacs/@strong{Application}}, and the
addb7f2e 1395interface name shall be @code{org.gnu.Emacs.@strong{Application}}.
cd71b9ae 1396@samp{@strong{Application}} is the name of the application which
addb7f2e
MA
1397provides the interface.
1398
ace706d1 1399@deffn Constant dbus-service-emacs
dcbf5805 1400The well known service name @samp{org.gnu.Emacs} of Emacs.
ace706d1
MA
1401@end deffn
1402
1403@deffn Constant dbus-path-emacs
dcbf5805
MA
1404The object path namespace @samp{/org/gnu/Emacs} used by Emacs.
1405@end deffn
1406
1407@deffn Constant dbus-interface-emacs
1408The interface namespace @code{org.gnu.Emacs} used by Emacs.
ace706d1
MA
1409@end deffn
1410
0fadf00e 1411@defun dbus-register-method bus service path interface method handler dont-register-service
addb7f2e
MA
1412With this function, an application registers @var{method} on the D-Bus
1413@var{bus}.
1414
1415@var{bus} is either the symbol @code{:system} or the symbol
1416@code{:session}.
1417
1418@var{service} is the D-Bus service name of the D-Bus object
0fadf00e
MA
1419@var{method} is registered for. It must be a known name (See
1420discussion of @var{dont-register-service} below).
addb7f2e 1421
0fadf00e
MA
1422@var{path} is the D-Bus object path @var{service} is registered (See
1423discussion of @var{dont-register-service} below).
addb7f2e
MA
1424
1425@var{interface} is the interface offered by @var{service}. It must
1426provide @var{method}.
1427
ac134f2f
RS
1428@var{handler} is a Lisp function to be called when a @var{method} call
1429is received. It must accept as arguments the input arguments of
1430@var{method}. @var{handler} should return a list, whose elements are
1431to be used as arguments for the reply message of @var{method}. This
1432list can be composed like the input parameters in @ref{Type
1433Conversion}.
1434
1435If @var{handler} wants to return just one Lisp object and it is not a
1436cons cell, @var{handler} can return this object directly, instead of
1437returning a list containing the object.
addb7f2e 1438
42fb7e61
MA
1439In case @var{handler} shall return a reply message with an empty
1440argument list, @var{handler} must return the symbol @code{:ignore}.
1441
0fadf00e
MA
1442When @var{dont-register-service} is non-@code{nil}, the known name
1443@var{service} is not registered. This means that other D-Bus clients
1444have no way of noticing the newly registered method. When interfaces
1445are constructed incrementally by adding single methods or properties
8c904d82 1446at a time, @var{dont-register-service} can be used to prevent other
0fadf00e
MA
1447clients from discovering the still incomplete interface.
1448
4a7c4c40 1449The default D-Bus timeout when waiting for a message reply is 25
134ce16c
MA
1450seconds. This value could be even smaller, depending on the calling
1451client. Therefore, @var{handler} shall not last longer than
4a7c4c40
MA
1452absolutely necessary.
1453
9b7993b4 1454@code{dbus-register-method} returns a Lisp object, which can be used
addb7f2e
MA
1455as argument in @code{dbus-unregister-object} for removing the
1456registration for @var{method}. Example:
1457
06c0751a 1458@lisp
addb7f2e
MA
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))
1465
1466@result{} my-dbus-method-handler
1467
1468(dbus-register-method
1469 :session "org.freedesktop.TextEditor" "/org/freedesktop/TextEditor"
1470 "org.freedesktop.TextEditor" "OpenFile"
1471 'my-dbus-method-handler)
1472
dcbf5805 1473@result{} ((:method :session "org.freedesktop.TextEditor" "OpenFile")
addb7f2e 1474 ("org.freedesktop.TextEditor" "/org/freedesktop/TextEditor"
eb932e8a 1475 my-dbus-method-handler))
06c0751a 1476@end lisp
addb7f2e 1477
cd71b9ae 1478If you invoke the method @samp{org.freedesktop.TextEditor.OpenFile}
addb7f2e
MA
1479from another D-Bus application with a filename as parameter, the file
1480is opened in Emacs, and the method returns either @var{true} or
0ecd3c90 1481@var{false}, indicating the success of the method. As test tool one
addb7f2e
MA
1482could use the command line tool @code{dbus-send} in a shell:
1483
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"
1489
1490@print{} method return sender=:1.22 -> dest=:1.23 reply_serial=2
eb932e8a
MA
1491 boolean true
1492@end example
1493
1494You can indicate an error by raising the Emacs signal
1495@code{dbus-error}. The handler above could be changed like this:
1496
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)
1505
1506@result{} my-dbus-method-handler
1507@end lisp
1508
1509The test runs then
1510
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"
1517
1518@print{} Error org.freedesktop.DBus.Error.Failed:
1519 Wrong argument list: ("/etc/hosts" "/etc/passwd")
addb7f2e
MA
1520@end example
1521@end defun
1522
0fadf00e 1523@defun dbus-register-property bus service path interface property access value &optional emits-signal dont-register-service
0ecd3c90
MA
1524With this function, an application declares a @var{property} on the D-Bus
1525@var{bus}.
1526
1527@var{bus} is either the symbol @code{:system} or the symbol
1528@code{:session}.
1529
1530@var{service} is the D-Bus service name of the D-Bus. It must be a
1531known name.
1532
0fadf00e
MA
1533@var{path} is the D-Bus object path @var{service} is registered (See
1534discussion of @var{dont-register-service} below).
0ecd3c90
MA
1535
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}.
1538
1539@var{access} indicates, whether the property can be changed by other
1540services via D-Bus. It must be either the symbol @code{:read} or
1541@code{:readwrite}. @var{value} is the initial value of the property,
1542it can be of any valid type (see @code{dbus-call-method} for details).
1543
1544If @var{property} already exists on @var{path}, it will be
1545overwritten. For properties with access type @code{:read} this is the
1546only way to change their values. Properties with access type
1547@code{:readwrite} can be changed by @code{dbus-set-property}.
1548
1549The interface @samp{org.freedesktop.DBus.Properties} is added to
1550@var{path}, including a default handler for the @samp{Get},
820ae8fe 1551@samp{GetAll} and @samp{Set} methods of this interface. When
5bd55c3c
MA
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}.
820ae8fe 1555
0fadf00e
MA
1556When @var{dont-register-service} is non-@code{nil}, the known name
1557@var{service} is not registered. This means that other D-Bus clients
1558have no way of noticing the newly registered method. When interfaces
1559are constructed incrementally by adding single methods or properties
8c904d82 1560at a time, @var{dont-register-service} can be used to prevent other
0fadf00e
MA
1561clients from discovering the still incomplete interface.
1562
820ae8fe 1563@noindent Example:
0ecd3c90
MA
1564
1565@lisp
1566(dbus-register-property
1567 :session "org.freedesktop.TextEditor" "/org/freedesktop/TextEditor"
1568 "org.freedesktop.TextEditor" "name" :read "GNU Emacs")
1569
dcbf5805 1570@result{} ((:property :session "org.freedesktop.TextEditor" "name")
0ecd3c90
MA
1571 ("org.freedesktop.TextEditor" "/org/freedesktop/TextEditor"))
1572
1573(dbus-register-property
1574 :session "org.freedesktop.TextEditor" "/org/freedesktop/TextEditor"
820ae8fe 1575 "org.freedesktop.TextEditor" "version" :readwrite emacs-version t)
0ecd3c90 1576
dcbf5805 1577@result{} ((:property :session "org.freedesktop.TextEditor" "version")
0ecd3c90
MA
1578 ("org.freedesktop.TextEditor" "/org/freedesktop/TextEditor"))
1579@end lisp
1580
1581Other 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
1584possible via the command line tool @code{dbus-send} in a shell:
1585
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"
1592
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
1605
1606It 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}).
1609
1610@lisp
1611(dbus-set-property
1612 :session "org.freedesktop.TextEditor" "/org/freedesktop/TextEditor"
1613 "org.freedesktop.TextEditor" "version" "23.1.50")
1614
1615@result{} "23.1.50"
1616
1617(dbus-get-property
1618 :session "org.freedesktop.TextEditor" "/org/freedesktop/TextEditor"
1619 "org.freedesktop.TextEditor" "version")
1620
1621@result{} "23.1.50"
1622@end lisp
1623@end defun
1624
1625@defun dbus-unregister-object object
1626Unregister @var{object} from the D-Bus. @var{object} must be the
1627result 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
1630unregistered, @code{nil} otherwise.
1631
1632When @var{object} identifies the last method or property, which is
1633registered for the respective service, Emacs releases its association
1634to the service from D-Bus.
1635@end defun
977640ed 1636
addb7f2e 1637
22d8ac3a
MA
1638@node Signals
1639@chapter Sending and receiving signals.
1640@cindex signals
1641
dcbf5805
MA
1642Signals are one way messages. They carry input parameters, which are
1643received by all objects which have registered for such a signal.
22d8ac3a 1644
0ce574ef 1645@defun dbus-send-signal bus service path interface signal &rest args
22d8ac3a
MA
1646This function is similar to @code{dbus-call-method}. The difference
1647is, that there are no returning output parameters.
1648
1649The function emits @var{signal} on the D-Bus @var{bus}. @var{bus} is
1650either the symbol @code{:system} or the symbol @code{:session}. It
1651doesn't matter whether another object has registered for @var{signal}.
1652
dcbf5805
MA
1653Signals can be unicast or broadcast messages. For broadcast messages,
1654@var{service} must be @code{nil}. Otherwise, @var{service} is the
1655D-Bus service name the signal is sent to as unicast
1656message.@footnote{For backward compatibility, a broadcast message is
1657also emitted if @var{service} is the known or unique name Emacs is
1658registered 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
1660at @var{path}. It must provide @var{signal}.
22d8ac3a
MA
1661
1662All other arguments args are passed to @var{signal} as arguments.
1663They are converted into D-Bus types as described in @ref{Type
1664Conversion}. Example:
1665
06c0751a 1666@lisp
22d8ac3a 1667(dbus-send-signal
dcbf5805
MA
1668 :session nil dbus-path-emacs
1669 (concat dbus-interface-emacs ".FileManager") "FileModified"
ace706d1 1670 "/home/albinus/.emacs")
06c0751a 1671@end lisp
22d8ac3a
MA
1672@end defun
1673
9b7993b4 1674@defun dbus-register-signal bus service path interface signal handler &rest args
dcbf5805
MA
1675With this function, an application registers for a signal on the D-Bus
1676@var{bus}.
22d8ac3a
MA
1677
1678@var{bus} is either the symbol @code{:system} or the symbol
1679@code{:session}.
1680
a4397af9
MA
1681@var{service} is the D-Bus service name used by the sending D-Bus
1682object. It can be either a known name or the unique name of the D-Bus
d49902e4
MA
1683object sending the signal. A known name will be mapped onto the
1684unique name of the object, owning @var{service} at registration time.
1685When the corresponding D-Bus object disappears, signals won't be
1686received any longer.
a4397af9 1687
a4397af9 1688@var{path} is the corresponding D-Bus object path, @var{service} is
dcbf5805
MA
1689registered at. @var{interface} is an interface offered by
1690@var{service}. It must provide @var{signal}.
a4397af9 1691
dcbf5805
MA
1692@var{service}, @var{path}, @var{interface} and @var{signal} can be
1693@code{nil}. This is interpreted as a wildcard for the respective
1694argument.
22d8ac3a
MA
1695
1696@var{handler} is a Lisp function to be called when the @var{signal} is
1697received. It must accept as arguments the output parameters
9b7993b4
MA
1698@var{signal} is sending.
1699
dcbf5805
MA
1700The remaining arguments @var{args} can be keywords or keyword string
1701pairs.@footnote{For backward compatibility, the arguments @var{args}
1702can 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
1705is as follows:
1706
1707@itemize
1708@item @code{:argN} @var{string}:@*
1709@code{:pathN} @var{string}:@*
1710This stands for the Nth argument of the signal. @code{:pathN}
1711arguments can be used for object path wildcard matches as specified by
0ba2624f 1712D-Bus, while an @code{:argN} argument requires an exact match.
dcbf5805
MA
1713
1714@item @code{:arg-namespace} @var{string}:@*
1715Register for the signals, which first argument defines the service or
1716interface namespace @var{string}.
1717
1718@item @code{:path-namespace} @var{string}:@*
1719Register for the object path namespace @var{string}. All signals sent
1720from an object path, which has @var{string} as the preceding string,
1721are matched. This requires @var{path} to be @code{nil}.
1722
1723@item @code{:eavesdrop}:@*
1724Register for unicast signals which are not directed to the D-Bus
1725object Emacs is registered at D-Bus BUS, if the security policy of BUS
1726allows this. Otherwise, this argument is ignored.
1727@end itemize
9b7993b4
MA
1728
1729@code{dbus-register-signal} returns a Lisp object, which can be used
1730as argument in @code{dbus-unregister-object} for removing the
1731registration for @var{signal}. Example:
22d8ac3a 1732
06c0751a 1733@lisp
22d8ac3a
MA
1734(defun my-dbus-signal-handler (device)
1735 (message "Device %s added" device))
1736
0ce574ef
MA
1737@result{} my-dbus-signal-handler
1738
22d8ac3a 1739(dbus-register-signal
0ce574ef
MA
1740 :system "org.freedesktop.Hal" "/org/freedesktop/Hal/Manager"
1741 "org.freedesktop.Hal.Manager" "DeviceAdded"
22d8ac3a
MA
1742 'my-dbus-signal-handler)
1743
dcbf5805 1744@result{} ((:signal :system "org.freedesktop.Hal.Manager" "DeviceAdded")
cd71c3ef
MA
1745 ("org.freedesktop.Hal" "/org/freedesktop/Hal/Manager"
1746 my-signal-handler))
06c0751a 1747@end lisp
22d8ac3a 1748
cd71b9ae
MA
1749As we know from the introspection data of interface
1750@samp{org.freedesktop.Hal.Manager}, the signal @samp{DeviceAdded}
22d8ac3a
MA
1751provides one single parameter, which is mapped into a Lisp string.
1752The callback function @code{my-dbus-signal-handler} must define one
1753single string argument therefore. Plugging an USB device to your
cd71b9ae 1754machine, when registered for signal @samp{DeviceAdded}, will show you
22d8ac3a 1755which objects the GNU/Linux @code{hal} daemon adds.
dcbf5805
MA
1756
1757Some of the match rules have been added to a later version of D-Bus.
1758In order to test the availability of such features, you could register
1759for a dummy signal, and check the result:
1760
1761@lisp
1762(dbus-ignore-errors
1763 (dbus-register-signal
1764 :system nil nil nil nil 'ignore :path-namespace "/invalid/path"))
1765
1766@result{} nil
1767@end lisp
22d8ac3a
MA
1768@end defun
1769
22d8ac3a 1770
7457f7b6 1771@node Alternative Buses
dcbf5805 1772@chapter Alternative buses and environments.
7457f7b6
MA
1773@cindex bus names
1774@cindex UNIX domain socket
dcbf5805 1775@cindex TCP/IP socket
7457f7b6
MA
1776
1777Until now, we have spoken about the system and the session buses,
1778which are the default buses to be connected to. However, it is
1779possible to connect to any bus, from which the address is known. This
dcbf5805
MA
1780is a UNIX domain or TCP/IP socket. Everywhere, where a @var{bus} is
1781mentioned as argument of a function (the symbol @code{:system} or the
1782symbol @code{:session}), this address can be used instead. The
1783connection to this bus must be initialized first.
7457f7b6 1784
dcbf5805 1785@defun dbus-init-bus bus &optional private
7457f7b6
MA
1786Establish the connection to D-Bus @var{bus}.
1787
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
301b181a 1790corresponding bus. For the system and session buses, this function
7457f7b6
MA
1791is called when loading @file{dbus.el}, there is no need to call it
1792again.
1793
dcbf5805
MA
1794The function returns a number, which counts the connections this Emacs
1795session has established to the @var{bus} under the same unique name
1796(see @code{dbus-get-unique-name}). It depends on the libraries Emacs
1797is linked with, and on the environment Emacs is running. For example,
1798if Emacs is linked with the gtk toolkit, and it runs in a GTK-aware
1799environment like Gnome, another connection might already be
1800established.
7457f7b6 1801
dcbf5805
MA
1802When @var{private} is non-@code{nil}, a new connection is established
1803instead of reusing an existing one. It results in a new unique name
1804at the bus. This can be used, if it is necessary to distinguish from
1805another connection used in the same Emacs process, like the one
1806established by GTK+. It should be used with care for at least the
1807@code{:system} and @code{:session} buses, because other Emacs Lisp
1808packages might already use this connection to those buses.
7457f7b6 1809
dcbf5805 1810Example: You initialize a connection to the AT-SPI bus on your host:
7457f7b6
MA
1811
1812@lisp
1813(setq my-bus
dcbf5805
MA
1814 (dbus-call-method
1815 :session "org.a11y.Bus" "/org/a11y/bus"
1816 "org.a11y.Bus" "GetAddress"))
7457f7b6 1817
dcbf5805 1818@result{} "unix:abstract=/tmp/dbus-2yzWHOCdSD,guid=a490dd26625870ca1298b6e10000fd7f"
7457f7b6 1819
dcbf5805
MA
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.
7457f7b6
MA
1823(dbus-init-bus my-bus)
1824
dcbf5805 1825@result{} 2
7457f7b6
MA
1826
1827(dbus-get-unique-name my-bus)
1828
dcbf5805
MA
1829@result{} ":1.19"
1830
1831;; Open a new connection to the same bus. This obsoletes the
1832;; previous one.
1833(dbus-init-bus my-bus 'private)
1834
1835@result{} 1
1836
1837(dbus-get-unique-name my-bus)
1838
1839@result{} ":1.20"
1840@end lisp
1841
1842D-Bus addresses can specify different transport. A possible address
1843could be based on TCP/IP sockets, see next example. However, it
1844depends on the bus daemon configuration, which transport is supported.
1845@end defun
1846
1847@defun dbus-setenv bus variable value
1848Set the value of the @var{bus} environment variable @var{variable} to
1849@var{value}.
1850
1851@var{bus} is either a Lisp symbol, @code{:system} or @code{:session},
1852or a string denoting the bus address. Both @var{variable} and
1853@var{value} should be strings.
1854
1855Normally, services inherit the environment of the bus daemon. This
1856function adds to or modifies that environment when activating services.
1857
1858Some bus instances, such as @code{:system}, may disable setting the
1859environment. In such cases, or if this feature is not available in
1860older D-Bus versions, a @code{dbus-error} error is raised.
1861
1862As an example, it might be desirable to start X11 enabled services on
1863a remote host's bus on the same X11 server the local Emacs is
1864running. This could be achieved by
1865
1866@lisp
1867(setq my-bus "unix:host=example.gnu.org,port=4711")
1868
1869@result{} "unix:host=example.gnu.org,port=4711"
1870
1871(dbus-init-bus my-bus)
1872
1873@result{} 1
1874
1875(dbus-setenv my-bus "DISPLAY" (getenv "DISPLAY"))
1876
1877@result{} nil
7457f7b6
MA
1878@end lisp
1879@end defun
1880
1881
22d8ac3a
MA
1882@node Errors and Events
1883@chapter Errors and events.
5bd55c3c 1884@cindex debugging
22d8ac3a
MA
1885@cindex errors
1886@cindex events
1887
5bd55c3c
MA
1888The internal actions can be traced by running in a debug mode.
1889
1890@defvar dbus-debug
1891If this variable is non-@code{nil}, D-Bus specific debug messages are raised.
1892@end defvar
1893
21956b56 1894Input parameters of @code{dbus-call-method},
dcbf5805
MA
1895@code{dbus-call-method-asynchronously}, @code{dbus-send-signal},
1896@code{dbus-register-method}, @code{dbus-register-property} and
6a31c819
MA
1897@code{dbus-register-signal} are checked for correct D-Bus types. If
1898there is a type mismatch, the Lisp error @code{wrong-type-argument}
1899@code{D-Bus ARG} is raised.
1900
22d8ac3a 1901All errors raised by D-Bus are signaled with the error symbol
d2e4a6c9
MA
1902@code{dbus-error}. If possible, error messages from D-Bus are
1903appended to the @code{dbus-error}.
1904
1905@defspec dbus-ignore-errors forms@dots{}
1906This executes @var{forms} exactly like a @code{progn}, except that
1907@code{dbus-error} errors are ignored during the @var{forms}. These
5bd55c3c 1908errors can be made visible when @code{dbus-debug} is set to @code{t}.
d2e4a6c9 1909@end defspec
22d8ac3a 1910
5794c2a5
MA
1911Incoming D-Bus messages are handled as Emacs events, see @pxref{Misc
1912Events, , , elisp}. They are retrieved only, when Emacs runs in
1913interactive mode. The generated event has this form:
22d8ac3a 1914
06c0751a 1915@lisp
21956b56
MA
1916(dbus-event @var{bus} @var{type} @var{serial} @var{service} @var{path} @var{interface} @var{member} @var{handler}
1917 &rest @var{args})
06c0751a 1918@end lisp
22d8ac3a 1919
21956b56 1920@var{bus} identifies the D-Bus the message is coming from. It is
a4397af9 1921either the symbol @code{:system} or the symbol @code{:session}.
22d8ac3a 1922
21956b56
MA
1923@var{type} is the D-Bus message type which has caused the event. It
1924can 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.
addb7f2e 1929
22d8ac3a 1930@var{service} and @var{path} are the unique name and the object path
addb7f2e
MA
1931of the D-Bus object emitting the message. @var{interface} and
1932@var{member} denote the message which has been sent.
22d8ac3a 1933
0ce574ef 1934@var{handler} is the callback function which has been registered for
addb7f2e 1935this message (see @pxref{Signals}). When a @code{dbus-event} event
0ce574ef
MA
1936arrives, @var{handler} is called with @var{args} as arguments.
1937
22d8ac3a
MA
1938In order to inspect the @code{dbus-event} data, you could extend the
1939definition of the callback function in @ref{Signals}:
1940
06c0751a 1941@lisp
22d8ac3a
MA
1942(defun my-dbus-signal-handler (&rest args)
1943 (message "my-dbus-signal-handler: %S" last-input-event))
06c0751a 1944@end lisp
22d8ac3a
MA
1945
1946There exist convenience functions which could be called inside a
1947callback function in order to retrieve the information from the event.
1948
1949@defun dbus-event-bus-name event
22d8ac3a
MA
1950Returns the bus name @var{event} is coming from.
1951The result is either the symbol @code{:system} or the symbol @code{:session}.
1952@end defun
1953
21956b56
MA
1954@defun dbus-event-message-type event
1955Returns the message type of the corresponding D-Bus message. The
5bd55c3c 1956result is a natural number.
21956b56
MA
1957@end defun
1958
addb7f2e
MA
1959@defun dbus-event-serial-number event
1960Returns the serial number of the corresponding D-Bus message.
5bd55c3c 1961The result is a natural number.
addb7f2e
MA
1962@end defun
1963
22d8ac3a 1964@defun dbus-event-service-name event
22d8ac3a
MA
1965Returns the unique name of the D-Bus object @var{event} is coming from.
1966@end defun
1967
1968@defun dbus-event-path-name event
22d8ac3a
MA
1969Returns the object path of the D-Bus object @var{event} is coming from.
1970@end defun
1971
1972@defun dbus-event-interface-name event
74fc5047 1973Returns the interface name of the D-Bus object @var{event} is coming from.
22d8ac3a
MA
1974@end defun
1975
1976@defun dbus-event-member-name event
74fc5047 1977Returns the member name of the D-Bus object @var{event} is coming
22d8ac3a
MA
1978from. It is either a signal name or a method name.
1979@end defun
1980
c9ecb5a7
MA
1981D-Bus errors are not propagated during event handling, because it is
1982usually not desired. D-Bus errors in events can be made visible by
e7433508
MA
1983setting the variable @code{dbus-debug} to @code{t}. They can also be
1984handled by a hook function.
1985
d1069532 1986@defvar dbus-event-error-functions
e7433508
MA
1987This hook variable keeps a list of functions, which are called when a
1988D-Bus error happens in the event handler. Every function must accept
333f9019 1989two arguments, the event and the error variable caught in
74fc5047
MA
1990@code{condition-case} by @code{dbus-error}.
1991
1992Such functions can be used the adapt the error signal to be raised.
1993Example:
e7433508
MA
1994
1995@lisp
74fc5047 1996(defun my-dbus-event-error-handler (event error)
dcbf5805 1997 (when (string-equal (concat dbus-interface-emacs ".FileManager")
74fc5047
MA
1998 (dbus-event-interface-name event))
1999 (message "my-dbus-event-error-handler: %S %S" event error)
2000 (signal 'file-error (cdr error))))
e7433508 2001
d1069532 2002(add-hook 'dbus-event-error-functions 'my-dbus-event-error-handler)
e7433508
MA
2003@end lisp
2004@end defvar
c9ecb5a7 2005
74fc5047
MA
2006Hook functions shall take into account, that there might be other
2007D-Bus applications running. Therefore, they shall check carefully,
2008whether a given D-Bus error is related to them.
2009
22d8ac3a 2010
5bd55c3c
MA
2011@node Index
2012@unnumbered Index
2013
2014@printindex cp
2015
2016
22d8ac3a
MA
2017@node GNU Free Documentation License
2018@appendix GNU Free Documentation License
2019@include doclicense.texi
2020
22d8ac3a 2021@bye