dbus/qt/qdbusabstractinterface.cpp
Thiago Macieira d42c8663e8 * qt/*:
* dbus/qdbus.h: Sync with KDE Subversion revision
	523647. Hopefully, this will be the last of the
	source-incompatible changes. Documentation has been improved;
	support for QList<basic-types> has been added; QDBusObject is
	gone; QDBus(Abstract)Interface is now a QObject with
	auto-generated meta-object; QDBusIntrospection is marked
	private, since QMetaObject can be used now; lots of bugfixes.
2006-03-28 18:56:08 +00:00

266 lines
9.1 KiB
C++

/* -*- C++ -*-
*
* Copyright (C) 2005 Thiago Macieira <thiago@kde.org>
* Copyright (C) 2006 Trolltech AS. All rights reserved.
* Author: Thiago Macieira <thiago.macieira@trolltech.com>
*
* Licensed under the Academic Free License version 2.1
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "qdbusabstractinterface.h"
#include "qdbusabstractinterface_p.h"
#include "qdbusmetaobject_p.h"
#include "qdbusconnection_p.h"
/*!
\class QDBusAbstractInterface
\brief Base class for all D-Bus interfaces in the QtDBus binding, allowing access to remote interfaces.
Generated-code classes also derive from QDBusAbstractInterface, all methods described here are also
valid for generated-code classes. In addition to those described here, generated-code classes
provide member functions for the remote methods, which allow for compile-time checking of the
correct parameters and return values, as well as property type-matching and signal
parameter-matching.
\sa {dbusidl2cpp.html}{The dbusidl2cpp compiler}, QDBusInterface
*/
/*!
\enum QDBusAbstractInterface::CallMode
Specifies how a call should be placed. The valid options are:
\value NoWaitForReply place the call but don't wait for the reply (the reply's contents
will be discarded)
\value NoUseEventLoop don't use an event loop to wait for a reply, but instead block on
network operations while waiting. This option means the
user-interface may not be updated for the duration of the call.
\value UseEventLoop use the Qt event loop to wait for a reply. This option means the
user-interface will update, but it also means other events may
happen, like signal delivery and other D-Bus method calls.
When using UseEventLoop, applications must be prepared for reentrancy in any function.
*/
/*!
\internal
*/
QDBusAbstractInterface::QDBusAbstractInterface(QDBusAbstractInterfacePrivate* d)
#if QT_VERSION < 0x040200
: d_ptr(d)
{
d_ptr->q_ptr = this;
}
#endif
/*!
Releases this object's resources.
*/
QDBusAbstractInterface::~QDBusAbstractInterface()
{
delete d_ptr;
}
/*!
Returns the connection this interface is assocated with.
*/
QDBusConnection QDBusAbstractInterface::connection() const
{
return d_func()->conn;
}
/*!
Returns the name of the service this interface is associated with.
*/
QString QDBusAbstractInterface::service() const
{
return d_func()->service;
}
/*!
Returns the object path that this interface is associated with.
*/
QString QDBusAbstractInterface::path() const
{
return d_func()->path;
}
/*!
Returns the name of this interface.
*/
QString QDBusAbstractInterface::interface() const
{
return d_func()->interface;
}
/*!
Returns the error the last operation produced, or an invalid error if the last operation did not
produce an error.
*/
QDBusError QDBusAbstractInterface::lastError() const
{
return d_func()->lastError;
}
/*!
\threadsafe
Places a call to the remote method specified by \a method on this interface, using \a args as
arguments. This function returns the message that was received as a reply, which can be a normal
QDBusMessage::ReplyMessage (indicating success) or QDBusMessage::ErrorMessage (if the call
failed). The \a mode parameter specifies how this call should be placed.
If the call succeeds, lastError() will be cleared; otherwise, it will contain the error this
call produced.
Normally, you should place calls using call().
\warning If you use \c UseEventLoop, your code must be prepared to deal with any reentrancy:
other method calls and signals may be delivered before this function returns, as well
as other Qt queued signals and events.
*/
QDBusMessage QDBusAbstractInterface::callWithArgs(const QString& method, const QList<QVariant>& args,
CallMode mode)
{
Q_D(QDBusAbstractInterface);
QString m = method, sig;
// split out the signature from the method
int pos = method.indexOf(QLatin1Char('.'));
if (pos != -1) {
m.truncate(pos);
sig = method.mid(pos + 1);
}
QDBusMessage msg = QDBusMessage::methodCall(service(), path(), interface(), m);
msg.setSignature(sig);
msg.QList<QVariant>::operator=(args);
QDBusMessage reply;
if (mode != NoWaitForReply)
reply = d->conn.sendWithReply(msg, mode == UseEventLoop ?
QDBusConnection::UseEventLoop : QDBusConnection::NoUseEventLoop);
else
d->conn.send(msg);
d->lastError = reply; // will clear if reply isn't an error
// ensure that there is at least one element
if (reply.isEmpty())
reply << QVariant();
return reply;
}
/*!
\overload
Places a call to the remote method specified by \a method on this interface, using \a args as
arguments. This function will return immediately after queueing the call. The reply from the
remote function or any errors emitted by it will be delivered to the \a slot slot on object \a
receiver.
This function returns true if the queueing succeeded: it does not indicate that the call
succeeded. If it failed, the slot will be called with an error message. lastError() will not be
set under those circumstances.
\sa QDBusError, QDBusMessage
*/
bool QDBusAbstractInterface::callWithArgs(const QString &method, QObject *receiver, const char *slot,
const QList<QVariant> &args)
{
Q_D(QDBusAbstractInterface);
QString m = method, sig;
// split out the signature from the method
int pos = method.indexOf(QLatin1Char('.'));
if (pos != -1) {
m.truncate(pos);
sig = method.mid(pos + 1);
}
QDBusMessage msg = QDBusMessage::methodCall(service(), path(), interface(), m);
msg.setSignature(sig);
msg.QList<QVariant>::operator=(args);
d->lastError = 0; // clear
return d->conn.sendWithReplyAsync(msg, receiver, slot);
}
/*!
\internal
Catch signal connections.
*/
void QDBusAbstractInterface::connectNotify(const char *signal)
{
// someone connecting to one of our signals
Q_D(QDBusAbstractInterface);
d->connp->connectRelay(d->service, d->path, d->interface, this, signal);
}
/*!
\internal
Catch signal disconnections.
*/
void QDBusAbstractInterface::disconnectNotify(const char *signal)
{
// someone disconnecting from one of our signals
Q_D(QDBusAbstractInterface);
d->connp->disconnectRelay(d->service, d->path, d->interface, this, signal);
}
/*!
\overload
\fn QDBusMessage QDBusAbstractInterface::call(const QString &method)
Calls the method \a method on this interface and passes the parameters to this function to the
method.
The parameters to \c call are passed on to the remote function via D-Bus as input
arguments. Output arguments are returned in the QDBusMessage reply. If the reply is an error
reply, lastError() will also be set to the contents of the error message.
This function is implemented by actually 9 different function overloads called \c call, so you
can pass up to 8 parameters to your function call, which can be of any type accepted by QtDBus
(see the \l {allowedparameters.html}{allowed parameters} page for information on what types are
accepted).
It can be used the following way:
\code
QString value = retrieveValue();
QDBusMessage reply;
QDBusReply<int> api = interface->call(QLatin1String("GetAPIVersion"));
if (api >= 14)
reply = interface->call(QLatin1String("ProcessWorkUnicode"), value);
else
reply = interface->call(QLatin1String("ProcessWork"), QLatin1String("UTF-8"), value.toUtf8());
\endcode
This example illustrates function calling with 0, 1 and 2 parameters and illustrates different
parameter types passed in each (the first call to \c "ProcessWorkUnicode" will contain one
Unicode string, the second call to \c "ProcessWork" will contain one string and one byte array).
\warning This function reenters the Qt event loop in order to wait for the reply, excluding user
input. During the wait, it may deliver signals and other method calls to your
application. Therefore, it must be prepared to handle a reentrancy whenever a call is
placed with call().
*/
#include "qdbusabstractinterface.moc"