Intermediate D-Bus
Tips to make use of QtDBus when faced with problematic real-world interfaces.
Last updated
Tips to make use of QtDBus when faced with problematic real-world interfaces.
Last updated
The basic techniques explained in are suitable for using D-Bus methods with relatively simple signatures, but the more complex interfaces often found in the wild require additional techniques to address, explained in this article.
QtDBus requires additional setup to deal with methods that return more complex return types than single primitives. The return type needs to be declared to the Qt type system so that it can be demarshalled.
Lists of values returned by D-Bus methods are mapped to in QtDBus. The appropriate specialisation of should be declared as a type to the Qt type system, for example:
It is essential that the Q_DECLARE_METATYPE
macro is used outside any code blocks or methods in source code. The best place to use it is at the top of the file.
The type should also be declared to QtDBus using:
The DBus Dict type should map to .
Some D-Bus methods return an arbitrary tuple of values. The class can only handle the first value returned by a method, so to get the rest of the returned parameters we fall back to using . Since QDBusAbstractInterface::call()
and similar actually return QDBusMessage
, when we use QDBusReply
we are actually just constructing this from the QDBusMessage
containing all the return values.
Once we have the , we can access the return values using arguments()
which returns a QList<QVariant>
.
For example, for a method org.kde.DBusTute.Favourites.Get( out INT32 number, out STRING colour, out STRING flavour )
, we would use the following code:
Introspect
is required to discover properties that are accessed via QObject::property()
. If it is not present, but the names and signature of the properties are known by looking at the source code of the remote interface, the D-Bus property system can be used manually, with these methods:
If Introspect is not supported, QObject::connect()
will get a 'no such signal'
error at runtime.
The connection semantics are similar to a regular QObject::connect()
, with the exception of unsupported new syntax, including lambdas.
, as a proxy for the remote D-Bus interface, makes use of introspection to provide high level access to D-Bus signals and properties. However, the object must support the interface org.freedesktop.DBus.Introspectable
to do so, which is not mandatory.
It is still possible to connect to these signals with QtDBus, at a lower level, using QDBusConnection::connect()
. If you are using for its convenient call()
methods, get its connection and call connect()
on it: