Software/dbus

D-Bus 1.1.20 "Coniston Water" Released!!! February 27th, 2008

Contents

What is D-Bus?

D-Bus is a message bus system, a simple way for applications to talk to one another. In addition to interprocess communication, D-Bus helps coordinate process lifecycle; it makes it simple and reliable to code a "single instance" application or daemon, and to launch applications and daemons on demand when their services are needed.

D-Bus supplies both a system daemon (for events such as "new hardware device added" or "printer queue changed") and a per-user-login-session daemon (for general IPC needs among user applications). Also, the message bus is built on top of a general one-to-one message passing framework, which can be used by any two apps to communicate directly (without going through the message bus daemon). Currently the communicating applications are on one computer, or through unencrypted TCP/IP suitable for use behind a firewall with shared NFS home directories. (Help wanted with better remote transports - the transport mechanism is well-abstracted and extensible.)

The D-Bus low-level API reference implementation and protocol have been heavily tested in the real world over several years, and are now "set in stone." Future changes will either be compatible or versioned appropriately.

The low-level libdbus reference implementation has no required dependencies; the bus daemon's only *required* dependency is an XML parser (either libxml or expat). Higher-level bindings specific to particular frameworks (Qt, GLib, Java, C#, Python, etc.) add more dependencies, but can make more assumptions and are thus much simpler to use. The bindings evolve separately from the low-level libdbus, so some are more mature and ABI-stable than others; check the docs for the binding you plan to use.

There are also some reimplementations of the D-Bus protocol for languages such as C#, Java, and Ruby. These do not use the libdbus reference implementation.

The list of projects using D-Bus is growing and they provide a wealth of examples of using the various APIs to learn from.

D-Bus is very portable to any Linux or UNIX flavor, and a port to Windows is in progress.

If you have any trouble with D-Bus or suggestions for improvement, bug reports and comments are very welcome.

Get on D-Bus today!

Mailing List

All D-Bus discussion is currently on dbus@lists.freedesktop.org.

Reporting Bugs & Sending Patches

Please report bugs (and submit patches) through the freedesktop.org Bugzilla.

Ideally, include test suite coverage with your patch; or if you report a bug, it's good to add a test that fails even if you don't have a patch otherwise. You can see test coverage stats in the GNOME build bot results, at http://build.gnome.org:8080/coverage/dbus/lcov/ (note, coverage is understated since it counts the test code itself in the coverage, and the test suite does not test itself, in particular all the "test failed" codepaths are not covered).

Patches to improve test coverage are very welcome, though D-Bus is already among the best-covered codebases around.

Documentation

Some stuff from the doc/ subdirectory is prebuilt and browsable here. If you're new to D-Bus, the tutorial is probably the best place to start (even though it is very incomplete, the basics are covered).

Generic D-Bus protocol information:

Please note that the D-Bus spec is incomplete, especially in its description of the message bus daemon. The spec for the protocol itself is reasonably complete, though not always clear or precise. Your patches are welcome! In the meantime, you may need to supplement your reading of the spec with a reading of the reference implementation source code.

Docs specific to the reference implementation:

Keep in mind that libdbus is a low-level library, intended to be the backend for a language binding and with extra complexity needed to implement dbus-daemon. You will save yourself a lot of pain if you use a higher-level wrapper or a reimplementation.

Articles from around the web, including some tutorials:

Download

Reference Implementation (dbus-daemon and libdbus)

The latest release is D-Bus 1.2.1. (2008-04-04)

Due to issues putting the re-licensing effort on hold indefinitely, it has been decided to move to 1.2.x versioning scheme. Being that 1.1.20 is considered to also be 1.2.0 and this being the second release in the 1.2.x stable series we have versioned this release 1.2.1. This release contains a number of bug fixes identified after 1.1.20.

The previous release is D-Bus 1.1.20 "Coniston Water". (2008-02-27)

This begins a new series of stable releases. This is effectively the 1.2.x stable series though the versions do not reflect that yet due to non-technical reasons discussed in the release notes bellow. This replaces the 1.0.x series while still staying ABI compatible. This means applications written for the 1.0.x versions of D-Bus should still run unmodified using the 1.2.x library and bus. A complete list of the major changes between the 1.0.x and 1.2.x series can be found on the feature notes page.

Previous releases can be found in the release archive.

Reference Implementation, Legacy Version (dbus-daemon and libdbus)

The legacy 1.0.x branch is still supported but only for security fixes. Only use this version when upgrading from older stable releases. For all new development use the new stable releases.

The latest legacy release is D-Bus 1.0.3. (2008-02-27)

Bindings and Independent Implementations

Bindings and independent implementations are linked to from the Bindings Page.

A binding wraps libdbus (and thus automatically gets e.g. new authentication mechanisms and other additions to libdbus), while a reimplementation codes the protocol from scratch (and thus avoids a dependency on the libdbus C library, but has to be kept in sync with new features). We are working on a hybrid approach where libdbus can be used to set up connections but bindings don't use the message queue or message marshaling from libdbus.

Windows port

Until the merge with the official D-Bus code, the Windows port is hosted on Sourceforge: winDBus. Until the Windows port is merged into the reference implementation and documented in the spec, keep in mind that what eventually gets merged into the reference implementation and spec may not match the current winDBus code's behavior or API.

Grab the Source

The core dbus code and the language bindings are under version control using Git. There is a nice tutorial for using git with freedesktop.org projects. There is also another tutorial at IBM Developerworks site.

All components of dbus are in the dbus/ subdirectory.

View the reference implementation in gitweb

Anonymous git for reference implementation: git://anongit.freedesktop.org/git/dbus/dbus

Developer git for reference implementation: ssh://git.freedesktop.org/git/dbus/dbus