Contents |
The KDE libraries require D-Bus version 0.62 at least. See http://www.freedesktop.org/wiki/Software_2fdbus for the latest release.
To compile:
% ./configure --disable-qt --disable-qt3 --prefix=$DBUSDIR
% make
% make install
To run the D-Bus daemon, type the command:
% eval `PATH=$DBUSDIR/bin $DBUSDIR/bin/dbus-launch --auto-syntax`
QtDBus depends on D-Bus.
D-Bus is found using pkg-config, so if you did not install it to a standard path in the previous step, set the PKG_CONFIG_PATH environment variable:
% PKG_CONFIG_PATH=$DBUSDIR/lib/pkgconfig; export PKG_CONFIG_PATH
| Tip |
|---|
| you may want to install QtDBUS to $DBUSDIR too. |
QtDBus now lives in kdesupport and uses cmake. It also requires you to have Qt 4.1.3 in order to compile (qt-copy has it). To compile it:
% svn co $SVNROOT/trunk/kdesupport
% cd $your_preferred_objdir
% cmake $OLDPWD/kdesupport
% make
Remember to set PKG_CONFIG_PATH to where you installed D-Bus to ($DBUSDIR/lib/pkgconfig), where you installed QtDBUS and where Qt is installed ($QTDIR/lib). This is necessary because QtDBUS depends on Qt and is found using pkg-config.
Commands:
% cd kdelibs
% export PKG_CONFIG_PATH=$QTDIR/lib:$DBUSDIR/lib/pkgconfig
% cd $objdir
% cmake $OLDPWD
% make
Hint for Trolls: pass cmake the flags -DCMAKE_C_COMPILER=/opt/teambuilder2/bin/gcc
-DCMAKE_CXX_COMPILER=/opt/teambuilder2/bin/g++ if you want to build with Teambuilder.
The most direct replacement of DCOPClient are [1] and [2]. The convenience method QDBus::sessionBus() usually replaces all occurrences of KApplication::dcopClient().
The methods in DCOPClient that are related to listing existing applications on the bus are in QDBusBusService (which you can access with QDBus::sessionBus().busService()).
DCOPClient has a "call" method that takes two QByteArray's containing the data to be transmitted and the data that was received. The most direct replacement for this is using QDBusMessage and QDBusConnection::send or sendWithReply. You most likely don't want to use that.
Instead, drop the QByteArray and QDataStream variables and use the dynamic call mode (see next section).
The direct replacement for DCOPRef is QDBusInterfacePtr, which is just a wrapper around QDBusInterface. The replacement for [3].
However, there are some important differences to be noticed:
Sample code in DCOP: ~pp~
DCOPRef kded("kded", "favicons")
DCOPReply reply = kded.call("iconForURL(KUrl)", url);
QString icon;
if (reply.isValid())
reply.get(icon);
return icon;
~/pp~
Sample code in DBUS: ~pp~
QDBusInterfacePtr kded("org.kde.kded", "/modules/favicons", "org.kde.FaviconsM
odule");
QDBusReply<QString> reply = kded->call("iconForURL", url.url());
return reply;
~/pp~
Things to note in the code:
obtain by calling "interfaces" on the existing DCOP object (in this case, "dcop kd ed favicons interfaces").
o basic types
DBUS also supports multiple return values. You will normally not find this kind of
construct in DCOP, since it didn't support that functionality. However, this may
show up in the form of a struct being returned. In this case, you may want to use the functionality of multiple return arguments. You'll need to use QDBusMessage in
this case:
Sample; ~pp~
QDBusInterfacePtr interface("org.kde.myapp", "/MyObject", "org.kde.MyInterface
");
QDBusMessage reply = interface->call("myFunction", argument1, argument2);
if (reply.type() == QDBusMessage::ReplyMessage) {
returnvalue1 = reply.at(0).toString();
returnvalue2 = reply.at(1).toInt();
/* etc. */
}
~/pp~
There is no direct replacement of DCOPObject. It's replaced by normal QObject, wit h or without an adaptor, with explicit registering. So, in order to port, you need
to follow these steps:
where <interfacename> is the name of the interface you're declaring (generally, it 'll be "org.kde" followed by the class name itself)
ake it: ~pp~
public Q_SLOTS: Q_SCRIPTABLE void methodName();
~/pp~
Note that the Q_CLASSINFO macro is case-sensitive. Do not misspell "D-Bus Interfac e" (that's capital I and D-Bus has a dash).
In order to register the object, you'll need to do: ~pp~
QDBus::sessionBus().registerObject("<object-path>", this, QDBusConnection::Exp
ortSlots); ~/pp~
Normally, "<object-path>" will be the argument the class was passing to the DCOPOb ject constructor. Don't forget the leading slash. Another useful option to the thi rd argument is QDBusConnection::ExportProperties, which will export the scriptable
properties.
DCOP had a broken support for signals. They were public methods, while normal sign als in QObject are protected methods. The correct way to port is to refactor the c ode to support signals correctly.
On the current version of QtDBus, you cannot use QDBusConnection::ExportSignals. T his is a known limitation and will be fixed in the future. In order to use signals, you'll need to write an adaptor.
Adaptors are a special QObject that you attach to your normal QObject and whose so le purpose is to relay things to and from the bus. You'll generally use it to expo rt more than one interface or when you need to translate the call arguments in any way.
You'll declare it as: ~pp~ class MyAdaptor: public QDBusAbstractAdaptor {
Q_OBJECT
Q_CLASSINFO("D-Bus Interface", "org.kde.MyAdaptor")
public:
MyAdaptor(QObject *parent);
signals:
void signal1(); void signal2(const QString &argument);
}; ~/pp~
And the .cpp file will have: ~pp~ MyAdaptor::MyAdaptor(QObject *parent)
: QDBusAbstractAdaptor(parent)
{
setAutoRelaySignals(true); /* alternative syntax: connect(parent, SIGNAL(signal1()), SIGNAL(signal1())); connect(parent, SIGNAL(signal2(QString)), SIGNAL(QString())); */
} ~/pp~
In the class using the adaptor, do this: ~pp~
new MyAdaptor(this);
QDBus::sessionBus().registerObject("/<object-path>", this, QDBusConnection::Ex
portAdaptors); ~/pp~
Things to notice:
operties.
signals of the same name and arguments in the adaptor.
n needed. Therefore, do not delete it and, especially, do NOT reparent it.
re-register the object.
DCOP had the capability of doing transactions: that is, delay the reply from a cal led method until later on. QtDBus has the same functionality, under a different na me.
Unlike DCOP, with QtDBus, you need a special parameter to your slot in order to re ceive the information about the call and set up the delayed reply. This parameter is of type "QDBusMessage" and must appear after the last input parameter. You decl are that you want a delayed reply by creating a reply. You will be responsible for
sending it later.
Sample DCOP code: ~pp~ class MyClass: public QObject, public DCOPObject {
DCOPTransaction *xact; DCOPClient *client;
k_dcop:
QString myMethod(const QString &arg1)
{
client = callingDcopClient();
xact = client->beginTransaction();
QTimer::singleShot(0, this, SLOT(processLater());
return QString(); // reply will be ignored
}
public Q_SLOTS:
void processLater()
{
QByteArray replyData;
QDataStream stream(&replyData, QIODevice::WriteOnly);
stream << QString(QLatin1String("foo"));
client->endTransaction(xact, "QString", replyData);
}
}; ~/pp~
The equivalent code with QtDBus would be: ~pp~ class MyClass: public QObject {
QDBusMessage reply;
public Q_SLOTS:
Q_SCRIPTABLE QString myMethod(const QString &arg1, const QDBusMessage &msg)
{
reply = QDBusMessage::methodReply(msg);
QTimer::singleShot(0, this, SLOT(processLater());
return QString(); // reply will be ignored
}
void processLater()
{
reply << QString(QLatin1String("foo"));
reply.connection().send(reply);
}
}; ~/pp~
glong.
favicons, etc.)