]> code.delx.au - gnu-emacs/blob - doc/misc/dbus.texi
Remove option of licensing under GPL.
[gnu-emacs] / doc / misc / dbus.texi
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
8 @copying
9 Copyright @copyright{} 2007, 2008 Free Software Foundation, Inc.
10
11 @quotation
12 Permission is granted to copy, distribute and/or modify this document
13 under the terms of the GNU Free Documentation License, Version 1.2 or
14 any later version published by the Free Software Foundation; with no
15 Invariant Sections, with the Front-Cover texts being ``A GNU
16 Manual'', and with the Back-Cover Texts as in (a) below. A copy of the
17 license is included in the section entitled ``GNU Free Documentation
18 License'' in the Emacs manual.
19
20 (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
21 modify this GNU manual. Buying copies from the FSF supports it in
22 developing GNU and promoting software freedom.''
23
24 This document is part of a collection distributed under the GNU Free
25 Documentation License. If you want to distribute this document
26 separately from the collection, you can do so by adding a copy of the
27 license to the document, as described in section 6 of the license.
28 @end quotation
29 @end copying
30
31 @dircategory Emacs
32 @direntry
33 * D-Bus: (dbus). Using D-Bus in Emacs.
34 @end direntry
35
36 @node Top, Overview, (dir), (dir)
37 @top D-Bus integration in Emacs
38
39 This manual documents an API for usage of D-Bus in
40 Emacs.@footnote{D-Bus is not enabled by default. You must run
41 @command{./configure --with-dbus} in Emacs' top level directory,
42 before you compile Emacs.} D-Bus is a message bus system, a simple
43 way for applications to talk to one another. An overview of D-Bus can
44 be found at @uref{http://dbus.freedesktop.org/}.
45
46 @insertcopying
47
48 @menu
49 * Overview:: An overview of D-Bus.
50 * Inspection:: Inspection of the bus names.
51 * Type Conversion:: Mapping Lisp types and D-Bus types.
52 * Synchronous Methods:: Calling methods in a blocking way.
53 * Receiving Method Calls:: Offering own methods.
54 * Signals:: Sending and receiving signals.
55 * Errors and Events:: Errors and events.
56 * GNU Free Documentation License:: The license for this documentation.
57 @end menu
58
59 @node Overview
60 @chapter An overview of D-Bus
61 @cindex overview
62
63 D-Bus is an inter-process communication mechanism for applications
64 residing on the same host. The communication is based on
65 @dfn{messages}. Data in the messages is carried in a structured way,
66 it is not just a byte stream.
67
68 The communication is connection oriented to two kinds of message
69 buses: a so called @dfn{system bus}, and a @dfn{session bus}. On a
70 given machine, there is always one single system bus for miscellaneous
71 system-wide communication, like changing of hardware configuration.
72 On the other hand, the session bus is always related to a single
73 user's session.
74
75 Every client application, which is connected to a bus, registers under
76 a @dfn{unique name} at the bus. This name is used for identifying the
77 client application. Such a unique name starts always with a colon,
78 and looks like @samp{:1.42}.
79
80 Additionally, a client application can register itself to a so called
81 @dfn{known name}, which is a series of identifiers separated by dots,
82 as in @samp{org.gnu.Emacs}. If several applications register to the
83 same known name, these registrations are queued, and only the first
84 application which has registered for the known name is reachable via
85 this name. If this application disconnects from the bus, the next
86 queued unique name becomes the owner of this known name.
87
88 An application can install one or several objects under its name.
89 Such objects are identified by an @dfn{object path}, which looks
90 similar to paths in a filesystem. An example of such an object path
91 could be @samp{/org/gnu/Emacs/}.
92
93 Applications might send a request to an object, that means sending a
94 message with some data as input parameters, and receiving a message
95 from that object with the result of this message, the output
96 parameters. Such a request is called @dfn{method} in D-Bus.
97
98 The other form of communication are @dfn{signals}. The underlying
99 message is emitted from an object and will be received by all other
100 applications which have registered for such a signal.
101
102 All methods and signals an object supports are called @dfn{interface}
103 of the object. Interfaces are specified under a hierarchical name in
104 D-Bus; an object can support several interfaces. Such an interface
105 name could be @samp{org.gnu.Emacs.TextEditor} or
106 @samp{org.gnu.Emacs.FileManager}.
107
108
109 @node Inspection
110 @chapter Inspection of the bus names.
111 @cindex inspection
112
113 There are several basic functions which inspect the buses for
114 registered names. Internally they use the basic interface
115 @samp{org.freedesktop.DBus}, which is supported by all objects of a bus.
116
117 @defun dbus-list-activatable-names
118 This function returns the D-Bus service names, which can be activated.
119 An activatable service is described in a service registration file.
120 Under GNU/Linux, such files are located at
121 @file{/usr/share/dbus-1/services/}.
122
123 The result is a list of strings, which is @code{nil} when there are no
124 activatable service names at all.
125 @end defun
126
127 @defun dbus-list-names bus
128 All service names, which are registered at D-Bus @var{bus}, are
129 returned. The result is a list of strings, which is @code{nil} when
130 there are no registered service names at all. Well known names are
131 strings like @samp{org.freedesktop.DBus}. Names starting with
132 @samp{:} are unique names for services.
133
134 @var{bus} must be either the symbol @code{:system} or the symbol
135 @code{:session}.
136 @end defun
137
138 @defun dbus-list-known-names bus
139 Retrieves all services which correspond to a known name in @var{bus}.
140 A service has a known name if it doesn't start with @samp{:}. The
141 result is a list of strings, which is @code{nil} when there are no
142 known names at all.
143
144 @var{bus} must be either the symbol @code{:system} or the symbol
145 @code{:session}.
146 @end defun
147
148 @defun dbus-list-queued-owners bus service
149 For a given service, registered at D-Bus @var{bus} under the name
150 @var{service}, all queued unique names are returned. The result is a
151 list of strings, or @code{nil} when there are no queued names for
152 @var{service} at all.
153
154 @var{bus} must be either the symbol @code{:system} or the symbol
155 @code{:session}. @var{service} must be a known service name as
156 string.
157 @end defun
158
159 @defun dbus-get-name-owner bus service
160 For a given service, registered at D-Bus @var{bus} under the name
161 @var{service}, the unique name of the name owner is returned. The
162 result is a string, or @code{nil} when there exist no name owner of
163 @var{service}.
164
165 @var{bus} must be either the symbol @code{:system} or the symbol
166 @code{:session}. @var{service} must be a known service name as
167 string.
168 @end defun
169
170 @defun dbus-ping bus service
171 Check whether the service name @var{service} is registered at D-Bus
172 @var{bus}. @var{service} might not have been started yet. The result
173 is either @code{t} or @code{nil}.
174
175 @var{bus} must be either the symbol @code{:system} or the symbol
176 @code{:session}. @var{service} must be a string. Example:
177
178 @lisp
179 (message
180 "%s screensaver on board."
181 (cond
182 ((dbus-ping :session "org.gnome.ScreenSaver") "Gnome")
183 ((dbus-ping :session "org.freedesktop.ScreenSaver") "KDE")
184 (t "No")))
185 @end lisp
186 @end defun
187
188 @defun dbus-get-unique-name bus
189 The unique name, under which Emacs is registered at D-Bus @var{bus},
190 is returned as string.
191
192 @var{bus} must be either the symbol @code{:system} or the symbol
193 @code{:session}.
194 @end defun
195
196 @defun dbus-introspect bus service path
197 Objects can publish there interfaces to the D-Bus. This function
198 returns all interfaces of @var{service}, registered at object path
199 @var{path} at bus @var{bus}.
200
201 @var{bus} must be either the symbol @code{:system} or the symbol
202 @code{:session}. @var{service} must be a known service name, and
203 @var{path} must be a valid object path. The last two parameters are
204 strings. The result, the introspection data, is a string in XML
205 format. Example:
206
207 @lisp
208 (dbus-introspect
209 :system "org.freedesktop.Hal"
210 "/org/freedesktop/Hal/devices/computer")
211
212 @result{} "<!DOCTYPE node PUBLIC
213 \"-//freedesktop//DTD D-BUS Object Introspection 1.0//EN\"
214 \"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd\">
215 <node>
216 <interface name=\"org.freedesktop.Hal.Device\">
217 <method name=\"GetAllProperties\">
218 <arg name=\"properties\" direction=\"out\" type=\"a@{sv@}\"/>
219 </method>
220 @dots{}
221 <signal name=\"PropertyModified\">
222 <arg name=\"num_updates\" type=\"i\"/>
223 <arg name=\"updates\" type=\"a(sbb)\"/>
224 </signal>
225 </interface>
226 @dots{}
227 </node>"
228 @end lisp
229
230 This example informs us, that the service @code{org.freedesktop.Hal}
231 at object path @code{/org/freedesktop/Hal/devices/computer} offers the
232 interface @code{org.freedesktop.Hal.Device} (and 2 other interfaces
233 not documented here). This interface contains the method
234 @code{GetAllProperties}, which needs no input parameters, but returns
235 as output parameter an array of dictionary entries (key-value pairs).
236 Every dictionary entry has a string as key, and a variant as value.
237
238 The interface offers also a signal, which returns 2 parameters: an
239 integer, and an array consisting of elements which are a struct of a
240 string and 2 boolean values.
241
242 Such type descriptions are called @dfn{signature} in D-Bus. For a
243 discussion of D-Bus types and their Lisp representation see @ref{Type
244 Conversion}.@footnote{D-Bus signatures are explained in the D-Bus
245 specification
246 @uref{http://dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-signatures}.
247 The interfaces of the service @code{org.freedesktop.Hal} are described
248 at
249 @uref{http://people.freedesktop.org/~david/hal-spec/hal-spec.html#interfaces}.}
250 @end defun
251
252
253 @node Type Conversion
254 @chapter Mapping Lisp types and D-Bus types.
255 @cindex type conversion
256
257 D-Bus method calls and signals accept usually several arguments as
258 parameters, either as input parameter, or as output parameter. Every
259 argument belongs to a D-Bus type.
260
261 Such arguments must be mapped between the value encoded as a D-Bus
262 type, and the corresponding type of Lisp objects. The mapping is
263 applied Lisp object @expansion{} D-Bus type for input parameters, and
264 D-Bus type @expansion{} Lisp object for output parameters.
265
266
267 @section Input parameters.
268
269 Input parameters for D-Bus methods and signals occur as arguments of a
270 Lisp function call. The following mapping to D-Bus types is
271 applied, when the corresponding D-Bus message is created:
272
273 @example
274 @multitable {@code{t} and @code{nil}} {@expansion{}} {DBUS_TYPE_BOOLEAN}
275 @item Lisp type @tab @tab D-Bus type
276 @item
277 @item @code{t} and @code{nil} @tab @expansion{} @tab DBUS_TYPE_BOOLEAN
278 @item number @tab @expansion{} @tab DBUS_TYPE_UINT32
279 @item integer @tab @expansion{} @tab DBUS_TYPE_INT32
280 @item float @tab @expansion{} @tab DBUS_TYPE_DOUBLE
281 @item string @tab @expansion{} @tab DBUS_TYPE_STRING
282 @item list @tab @expansion{} @tab DBUS_TYPE_ARRAY
283 @end multitable
284 @end example
285
286 Other Lisp objects, like symbols or hash tables, are not accepted as
287 input parameter.
288
289 If it is necessary to use another D-Bus type, a corresponding type
290 symbol can be preceeded to the corresponding Lisp object. Basic D-Bus
291 types are represented by the type symbols @code{:byte},
292 @code{:boolean}, @code{:int16}, @code{:uint16}, @code{:int32},
293 @code{:uint32}, @code{:int64}, @code{:uint64}, @code{:double},
294 @code{:string}, @code{:object-path} and @code{:signature}.
295
296 @noindent
297 Example:
298
299 @lisp
300 (dbus-call-method @dots{} @var{NUMBER} @var{STRING})
301 @end lisp
302
303 is equivalent to
304
305 @lisp
306 (dbus-call-method @dots{} :uint32 @var{NUMBER} :string @var{STRING})
307 @end lisp
308
309 but different to
310
311 @lisp
312 (dbus-call-method @dots{} :int32 @var{NUMBER} :signature @var{STRING})
313 @end lisp
314
315 The value for a byte D-Bus type can be any integer in the range 0
316 through 255. If a character is used as argument, modifiers
317 represented outside this range are stripped of. For example,
318 @code{:byte ?x} is equal to @code{:byte ?\M-x}, but it is not equal to
319 @code{:byte ?\C-x} or @code{:byte ?\M-\C-x}.
320
321 A D-Bus compound type is always represented as a list. The @sc{car}
322 of this list can be the type symbol @code{:array}, @code{:variant},
323 @code{:struct} or @code{:dict-entry}, which would result in a
324 corresponding D-Bus container. @code{:array} is optional, because
325 this is the default compound D-Bus type for a list.
326
327 The objects being elements of the list are checked according to the
328 D-Bus compound type rules.
329
330 @itemize
331 @item An array must contain only elements of the same D-Bus type. It
332 can be empty.
333
334 @item A variant must contain only one single element.
335
336 @item A dictionary entry must be element of an array, and it must
337 contain only a key-value pair of two elements, with a basic D-Bus type
338 key.
339
340 @item There is no restriction for structs.
341 @end itemize
342
343 If an empty array needs an element D-Bus type other than string, it
344 can contain exactly one element of D-Bus type @code{:signature}. The
345 value of this element (a string) is used as the signature of the
346 elements of this array. Example:
347
348 @lisp
349 (dbus-call-method
350 :session "org.freedesktop.Notifications"
351 "/org/freedesktop/Notifications"
352 "org.freedesktop.Notifications" "Notify"
353 "GNU Emacs" ;; Application name.
354 0 ;; No replacement of other notifications.
355 "" ;; No icon.
356 "Notification summary" ;; Summary.
357 (format ;; Body.
358 "This is a test notification, raised from %s" (emacs-version))
359 '(:array) ;; No actions (empty array of strings).
360 '(:array :signature "@{sv@}") ;; No hints
361 ;; (empty array of dictionary entries).
362 ':int32 -1) ;; Default timeout.
363
364 @result{} 3
365 @end lisp
366
367
368 @section Output parameters.
369
370 Output parameters of D-Bus methods and signals are mapped to Lisp
371 objects.
372
373 @example
374 @multitable {DBUS_TYPE_OBJECT_PATH} {@expansion{}} {@code{t} or @code{nil}}
375 @item D-Bus type @tab @tab Lisp type
376 @item
377 @item DBUS_TYPE_BOOLEAN @tab @expansion{} @tab @code{t} or @code{nil}
378 @item DBUS_TYPE_BYTE @tab @expansion{} @tab number
379 @item DBUS_TYPE_UINT16 @tab @expansion{} @tab number
380 @item DBUS_TYPE_INT16 @tab @expansion{} @tab number
381 @item DBUS_TYPE_UINT32 @tab @expansion{} @tab number or float
382 @item DBUS_TYPE_INT32 @tab @expansion{} @tab number or float
383 @item DBUS_TYPE_UINT64 @tab @expansion{} @tab number or float
384 @item DBUS_TYPE_INT64 @tab @expansion{} @tab number or float
385 @item DBUS_TYPE_DOUBLE @tab @expansion{} @tab float
386 @item DBUS_TYPE_STRING @tab @expansion{} @tab string
387 @item DBUS_TYPE_OBJECT_PATH @tab @expansion{} @tab string
388 @item DBUS_TYPE_SIGNATURE @tab @expansion{} @tab string
389 @item DBUS_TYPE_ARRAY @tab @expansion{} @tab list
390 @item DBUS_TYPE_VARIANT @tab @expansion{} @tab list
391 @item DBUS_TYPE_STRUCT @tab @expansion{} @tab list
392 @item DBUS_TYPE_DICT_ENTRY @tab @expansion{} @tab list
393 @end multitable
394 @end example
395
396 A float object in case of @code{DBUS_TYPE_UINT32},
397 @code{DBUS_TYPE_INT32}, @code{DBUS_TYPE_UINT64} and
398 @code{DBUS_TYPE_INT6432} is returned, when the C value exceeds the
399 Emacs number size range.
400
401 The resulting list of the last 4 D-Bus compound types contains as
402 elements the elements of the D-Bus container, mapped according to the
403 same rules.
404
405 The signal @code{PropertyModified}, discussed as example in
406 @ref{Inspection}, would offer as Lisp data the following object
407 (@var{BOOL} stands here for either @code{nil} or @code{t}):
408
409 @lisp
410 (@var{NUMBER} ((@var{STRING} @var{BOOL} @var{BOOL}) (@var{STRING} @var{BOOL} @var{BOOL}) @dots{}))
411 @end lisp
412
413
414 @node Synchronous Methods
415 @chapter Calling methods in a blocking way.
416 @cindex method calls, synchronous
417 @cindex synchronous method calls
418
419 Methods can be called synchronously (@dfn{blocking}) or asynchronously
420 (@dfn{non-blocking}). Currently, just synchronous methods are
421 implemented.
422
423 At D-Bus level, a method call consist of two messages: one message
424 which carries the input parameters to the object owning the method to
425 be called, and a reply message returning the resulting output
426 parameters from the object.
427
428 @defun dbus-call-method bus service path interface method &optional :timeout timeout &rest args
429 This function calls @var{method} on the D-Bus @var{bus}. @var{bus} is
430 either the symbol @code{:system} or the symbol @code{:session}.
431
432 @var{service} is the D-Bus service name to be used. @var{path} is the
433 D-Bus object path, @var{service} is registered at. @var{interface} is
434 an interface offered by @var{service}. It must provide @var{method}.
435
436 If the parameter @code{:timeout} is given, the following integer
437 @var{timeout} specifies the maximun number of milliseconds the method
438 call must return. The default value is 25.000. If the method call
439 doesn't return in time, a D-Bus error is raised (@pxref{Errors and
440 Events}).
441
442 All other arguments args are passed to @var{method} as arguments.
443 They are converted into D-Bus types as described in @ref{Type
444 Conversion}.
445
446 The function returns the resulting values of @var{method} as a list of
447 Lisp objects, according to the type conversion rules described in
448 @ref{Type Conversion}. Example:
449
450 @lisp
451 (dbus-call-method
452 :session "org.gnome.seahorse" "/org/gnome/seahorse/keys/openpgp"
453 "org.gnome.seahorse.Keys" "GetKeyField"
454 "openpgp:657984B8C7A966DD" "simple-name")
455
456 @result{} (t ("Philip R. Zimmermann"))
457 @end lisp
458
459 If the result of the method call is just one value, the converted Lisp
460 object is returned instead of a list containing this single Lisp
461 object. Example:
462
463 @lisp
464 (dbus-call-method
465 :system "org.freedesktop.Hal"
466 "/org/freedesktop/Hal/devices/computer"
467 "org.freedesktop.Hal.Device" "GetPropertyString"
468 "system.kernel.machine")
469
470 @result{} "i686"
471 @end lisp
472
473 With the @code{dbus-introspect} function it is possible to explore the
474 interfaces of @samp{org.freedesktop.Hal} service. It offers the
475 interfaces @samp{org.freedesktop.Hal.Manager} for the object at the
476 path @samp{/org/freedesktop/Hal/Manager} as well as the interface
477 @samp{org.freedesktop.Hal.Device} for all objects prefixed with the
478 path @samp{/org/freedesktop/Hal/devices}. With the methods
479 @samp{GetAllDevices} and @samp{GetAllProperties}, it is simple to
480 emulate the @code{lshal} command on GNU/Linux systems:
481
482 @lisp
483 (dolist (device
484 (dbus-call-method
485 :system "org.freedesktop.Hal"
486 "/org/freedesktop/Hal/Manager"
487 "org.freedesktop.Hal.Manager" "GetAllDevices"))
488 (message "\nudi = %s" device)
489 (dolist (properties
490 (dbus-call-method
491 :system "org.freedesktop.Hal" device
492 "org.freedesktop.Hal.Device" "GetAllProperties"))
493 (message " %s = %S"
494 (car properties) (or (caar (cdr properties)) ""))))
495
496 @print{} "udi = /org/freedesktop/Hal/devices/computer
497 info.addons = (\"hald-addon-acpi\")
498 info.bus = \"unknown\"
499 info.product = \"Computer\"
500 info.subsystem = \"unknown\"
501 info.udi = \"/org/freedesktop/Hal/devices/computer\"
502 linux.sysfs_path_device = \"(none)\"
503 power_management.acpi.linux.version = \"20051216\"
504 power_management.can_suspend_to_disk = t
505 power_management.can_suspend_to_ram = \"\"
506 power_management.type = \"acpi\"
507 smbios.bios.release_date = \"11/07/2001\"
508 system.chassis.manufacturer = \"COMPAL\"
509 system.chassis.type = \"Notebook\"
510 system.firmware.release_date = \"03/19/2005\"
511 @dots{}"
512 @end lisp
513 @end defun
514
515
516 @node Receiving Method Calls
517 @chapter Offering own methods.
518 @cindex method calls, returning
519 @cindex returning method calls
520
521 Emacs can also offer own methods, which can be called by other
522 applications. These methods could be an implementation of an
523 interface of a well known service, like @code{org.freedesktop.TextEditor}.
524
525 It could be also an implementation of an own interface. In this case,
526 the service name must be @code{org.gnu.Emacs}. The object path shall
527 begin with @code{/org/gnu/Emacs/@strong{Application}/}, and the
528 interface name shall be @code{org.gnu.Emacs.@strong{Application}}.
529 @code{@strong{Application}} is the name of the application which
530 provides the interface.
531
532 @defun dbus-register-method bus service path interface method handler
533 With this function, an application registers @var{method} on the D-Bus
534 @var{bus}.
535
536 @var{bus} is either the symbol @code{:system} or the symbol
537 @code{:session}.
538
539 @var{service} is the D-Bus service name of the D-Bus object
540 @var{method} is registered for. It must be a known name.
541
542 @var{path} is the D-Bus object path @var{service} is
543 registered.
544
545 @var{interface} is the interface offered by @var{service}. It must
546 provide @var{method}.
547
548 @var{handler} is a Lisp function to be called when when a @var{method}
549 call is is received. It must accept as arguments the input arguments
550 of @var{method}. @var{handler} must return a list, which elements are
551 used as arguments for the reply message of @var{method}. This list
552 can be composed like the input parameters in @ref{Type Conversion}.
553
554 The default D-Bus timeout when waiting for a message reply is 25
555 seconds. This value could be even smaller, depending on the calling
556 client. Therefore, @var{handler} shall not last longer than
557 absolutely necessary.
558
559 @code{dbus-register-method} returns a Lisp symbol, which can be used
560 as argument in @code{dbus-unregister-object} for removing the
561 registration for @var{method}. Example:
562
563 @lisp
564 (defun my-dbus-method-handler (filename)
565 (let (result)
566 (if (find-file filename)
567 (setq result '(:boolean t))
568 (setq result '(:boolean nil)))
569 result))
570
571 @result{} my-dbus-method-handler
572
573 (dbus-register-method
574 :session "org.freedesktop.TextEditor" "/org/freedesktop/TextEditor"
575 "org.freedesktop.TextEditor" "OpenFile"
576 'my-dbus-method-handler)
577
578 @result{} ((:system "org.freedesktop.TextEditor" "OpenFile")
579 ("org.freedesktop.TextEditor" "/org/freedesktop/TextEditor"
580 my-method-handler))
581 @end lisp
582
583 If you invoke the method @code{org.freedesktop.TextEditor.OpenFile}
584 from another D-Bus application with a filename as parameter, the file
585 is opened in Emacs, and the method returns either @var{true} or
586 @var{false}, indicating the success if the method. As test tool one
587 could use the command line tool @code{dbus-send} in a shell:
588
589 @example
590 # dbus-send --session --print-reply \
591 --dest="org.freedesktop.TextEditor" \
592 "/org/freedesktop/TextEditor" \
593 "org.freedesktop.TextEditor.OpenFile" string:"/etc/hosts"
594
595 @print{} method return sender=:1.22 -> dest=:1.23 reply_serial=2
596 boolean true
597 @end example
598 @end defun
599
600
601 @node Signals
602 @chapter Sending and receiving signals.
603 @cindex signals
604
605 Signals are broadcast messages. They carry input parameters, which
606 are received by all objects which have registered for such a signal.
607
608 @defun dbus-send-signal bus service path interface signal &rest args
609 This function is similar to @code{dbus-call-method}. The difference
610 is, that there are no returning output parameters.
611
612 The function emits @var{signal} on the D-Bus @var{bus}. @var{bus} is
613 either the symbol @code{:system} or the symbol @code{:session}. It
614 doesn't matter whether another object has registered for @var{signal}.
615
616 @var{service} is the D-Bus service name of the object the signal is
617 emitted from. @var{path} is the corresponding D-Bus object path,
618 @var{service} is registered at. @var{interface} is an interface
619 offered by @var{service}. It must provide @var{signal}.
620
621 All other arguments args are passed to @var{signal} as arguments.
622 They are converted into D-Bus types as described in @ref{Type
623 Conversion}. Example:
624
625 @lisp
626 (dbus-send-signal
627 :session "org.gnu.Emacs" "/org/gnu/Emacs"
628 "org.gnu.Emacs.FileManager" "FileModified" "/home/albinus/.emacs")
629 @end lisp
630 @end defun
631
632 @defun dbus-register-signal bus service path interface signal handler
633 With this function, an application registers for @var{signal} on the
634 D-Bus @var{bus}.
635
636 @var{bus} is either the symbol @code{:system} or the symbol
637 @code{:session}.
638
639 @var{service} is the D-Bus service name used by the sending D-Bus
640 object. It can be either a known name or the unique name of the D-Bus
641 object sending the signal. In case of a unique name, signals won't be
642 received any longer once the object owning this unique name has
643 disappeared, and a new queued object has replaced it.
644
645 When @var{service} is @code{nil}, related signals from all D-Bus
646 objects shall be accepted.
647
648 @var{path} is the corresponding D-Bus object path, @var{service} is
649 registered at. It can also be @code{nil} if the path name of incoming
650 signals shall not be checked.
651
652 @var{interface} is an interface offered by @var{service}. It must
653 provide @var{signal}.
654
655 @var{handler} is a Lisp function to be called when the @var{signal} is
656 received. It must accept as arguments the output parameters
657 @var{signal} is sending. Example:
658
659 @lisp
660 (defun my-dbus-signal-handler (device)
661 (message "Device %s added" device))
662
663 @result{} my-dbus-signal-handler
664
665 (dbus-register-signal
666 :system "org.freedesktop.Hal" "/org/freedesktop/Hal/Manager"
667 "org.freedesktop.Hal.Manager" "DeviceAdded"
668 'my-dbus-signal-handler)
669
670 @result{} ((:system "org.freedesktop.Hal.Manager" "DeviceAdded")
671 ("org.freedesktop.Hal" "/org/freedesktop/Hal/Manager"
672 my-signal-handler))
673 @end lisp
674
675 As we know from the inspection data of interface
676 @code{org.freedesktop.Hal.Manager}, the signal @code{DeviceAdded}
677 provides one single parameter, which is mapped into a Lisp string.
678 The callback function @code{my-dbus-signal-handler} must define one
679 single string argument therefore. Plugging an USB device to your
680 machine, when registered for signal @code{DeviceAdded}, will show you
681 which objects the GNU/Linux @code{hal} daemon adds.
682
683 @code{dbus-register-signal} returns a Lisp symbol, which can be used
684 as argument in @code{dbus-unregister-object} for removing the
685 registration for @var{signal}.
686 @end defun
687
688 @defun dbus-unregister-object object
689 Unregister @var{object} from the the D-Bus. @var{object} must be the
690 result of a preceding @code{dbus-register-signal} or
691 @code{dbus-register-method} call. It returns @code{t} if @var{object}
692 has been unregistered, @code{nil} otherwise.
693 @end defun
694
695
696 @node Errors and Events
697 @chapter Errors and events.
698 @cindex errors
699 @cindex events
700
701 Input parameters of @code{dbus-call-method} and
702 @code{dbus-register-signal} are checked for correct D-Bus types. If
703 there is a type mismatch, the Lisp error @code{wrong-type-argument}
704 @code{D-Bus ARG} is raised.
705
706 All errors raised by D-Bus are signaled with the error symbol
707 @code{dbus-error}. If possible, error messages from D-Bus are
708 appended to the @code{dbus-error}.
709
710 @defspec dbus-ignore-errors forms@dots{}
711 This executes @var{forms} exactly like a @code{progn}, except that
712 @code{dbus-error} errors are ignored during the @var{forms}. These
713 errors can be made visible when variable @code{dbus-debug} is set to
714 @code{t}.
715 @end defspec
716
717 Incoming D-Bus messages are handled as Emacs events (see @pxref{Misc
718 Events, , , elisp}). The generated event has this form:
719
720 @lisp
721 (dbus-event @var{bus} @var{serial} @var{service} @var{path} @var{interface} @var{member} @var{handler} &rest @var{args})
722 @end lisp
723
724 @var{bus} identifies the D-Bus the signal is coming from. It is
725 either the symbol @code{:system} or the symbol @code{:session}.
726
727 @var{serial} is the serial number of the received D-Bus message if it
728 is a method call, or @code{nil}.
729
730 @var{service} and @var{path} are the unique name and the object path
731 of the D-Bus object emitting the message. @var{interface} and
732 @var{member} denote the message which has been sent.
733
734 @var{handler} is the callback function which has been registered for
735 this message (see @pxref{Signals}). When a @code{dbus-event} event
736 arrives, @var{handler} is called with @var{args} as arguments.
737
738 In order to inspect the @code{dbus-event} data, you could extend the
739 definition of the callback function in @ref{Signals}:
740
741 @lisp
742 (defun my-dbus-signal-handler (&rest args)
743 (message "my-dbus-signal-handler: %S" last-input-event))
744 @end lisp
745
746 There exist convenience functions which could be called inside a
747 callback function in order to retrieve the information from the event.
748
749 @defun dbus-event-bus-name event
750 Returns the bus name @var{event} is coming from.
751 The result is either the symbol @code{:system} or the symbol @code{:session}.
752 @end defun
753
754 @defun dbus-event-serial-number event
755 Returns the serial number of the corresponding D-Bus message.
756 The result is a number in case the D-Bus message is a method
757 call, or @code{nil} for all other mesage types.
758 @end defun
759
760 @defun dbus-event-service-name event
761 Returns the unique name of the D-Bus object @var{event} is coming from.
762 @end defun
763
764 @defun dbus-event-path-name event
765 Returns the object path of the D-Bus object @var{event} is coming from.
766 @end defun
767
768 @defun dbus-event-interface-name event
769 Returns the interface name of of the D-Bus object @var{event} is coming from.
770 @end defun
771
772 @defun dbus-event-member-name event
773 Returns the member name of of the D-Bus object @var{event} is coming
774 from. It is either a signal name or a method name.
775 @end defun
776
777 D-Bus errors are not propagated during event handling, because it is
778 usually not desired. D-Bus errors in events can be made visible by
779 setting the variable @code{dbus-debug} to @code{t}.
780
781
782 @node GNU Free Documentation License
783 @appendix GNU Free Documentation License
784 @include doclicense.texi
785
786 @contents
787 @c End of dbus.texi
788 @bye
789
790 @ignore
791 arch-tag: 2eeec19d-0caf-44e0-a193-329d7f9951d8
792 @end ignore