81d8319276
This update eliminates ALL parsing errors when clang parses the Qt headers to build the precompiled header qdoc needs. These errors are often cases where an old use of Q_QDOC no longer works because clang sees the enclosed fake declarations as erroneous. In a few cases, clang reported errors because two dummy function declartations under the Q_CLANG_QDOC guard were indistinguishable, so one of them was removed, and the documentation was patched accordingly. Using the macro Q_DECLARE_INTERFACE(...) causes clang to report errors because the class parametewr is abstract. These uses of the macro are not needed, so they are removed with #ifndef Q_CLANG_QDOC. Some declarations of default GL types that had been provided for qdoc were no longer needed, so they are removed. Now there are some member function signatures in QDBusPendingReply and QDBusPendingCall that have very long template clauses and qualifiers in their signatures. These unwieldy signatures will be unnecessary in the documentation and will look bad there, but for now they are correct. The ultimate solution will be to add a metacommand to qdoc, something like \simplify-signature to tell qdoc to generate the documentation for these member functions without the long template caluses and qualifiers. Change-Id: I012cf17a544fbba2ebc71002f31bdc865119bb8e Reviewed-by: Paul Wicking <paul.wicking@qt.io> Reviewed-by: Topi Reiniö <topi.reinio@qt.io> Reviewed-by: Martin Smith <martin.smith@qt.io>
286 lines
11 KiB
C++
286 lines
11 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
** Copyright (C) 2016 Intel Corporation.
|
|
** Contact: https://www.qt.io/licensing/
|
|
**
|
|
** This file is part of the QtDBus module of the Qt Toolkit.
|
|
**
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
|
** Commercial License Usage
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
** accordance with the commercial license agreement provided with the
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
**
|
|
** GNU Lesser General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
** General Public License version 3 as published by the Free Software
|
|
** Foundation and appearing in the file LICENSE.LGPL3 included in the
|
|
** packaging of this file. Please review the following information to
|
|
** ensure the GNU Lesser General Public License version 3 requirements
|
|
** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
|
|
**
|
|
** GNU General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
** General Public License version 2.0 or (at your option) the GNU General
|
|
** Public license version 3 or any later version approved by the KDE Free
|
|
** Qt Foundation. The licenses are as published by the Free Software
|
|
** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
|
|
** included in the packaging of this file. Please review the following
|
|
** information to ensure the GNU General Public License requirements will
|
|
** be met: https://www.gnu.org/licenses/gpl-2.0.html and
|
|
** https://www.gnu.org/licenses/gpl-3.0.html.
|
|
**
|
|
** $QT_END_LICENSE$
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "qdbuspendingreply.h"
|
|
#include "qdbuspendingcall_p.h"
|
|
#include "qdbusmetatype.h"
|
|
|
|
#ifndef QT_NO_DBUS
|
|
|
|
/*!
|
|
\class QDBusPendingReply
|
|
\inmodule QtDBus
|
|
\since 4.5
|
|
|
|
\brief The QDBusPendingReply class contains the reply to an asynchronous method call.
|
|
|
|
The QDBusPendingReply is a template class with up to 8 template
|
|
parameters. Those parameters are the types that will be used to
|
|
extract the contents of the reply's data.
|
|
|
|
This class is similar in functionality to QDBusReply, but with two
|
|
important differences:
|
|
|
|
\list
|
|
\li QDBusReply accepts exactly one return type, whereas
|
|
QDBusPendingReply can have from 1 to 8 types
|
|
\li QDBusReply only works on already completed replies, whereas
|
|
QDBusPendingReply allows one to wait for replies from pending
|
|
calls
|
|
\endlist
|
|
|
|
Where with QDBusReply you would write:
|
|
|
|
\snippet code/src_qdbus_qdbusreply.cpp 0
|
|
|
|
with QDBusPendingReply, the equivalent code (including the blocking
|
|
wait for the reply) would be:
|
|
|
|
\snippet code/src_qdbus_qdbuspendingreply.cpp 0
|
|
|
|
For method calls that have more than one output argument, with
|
|
QDBusReply, you would write:
|
|
|
|
\snippet code/src_qdbus_qdbusreply.cpp 1
|
|
|
|
whereas with QDBusPendingReply, all of the output arguments should
|
|
be template parameters:
|
|
|
|
\snippet code/src_qdbus_qdbuspendingreply.cpp 2
|
|
|
|
QDBusPendingReply objects can be associated with
|
|
QDBusPendingCallWatcher objects, which emit signals when the reply
|
|
arrives.
|
|
|
|
\sa QDBusPendingCallWatcher, QDBusReply,
|
|
QDBusAbstractInterface::asyncCall()
|
|
*/
|
|
|
|
/*!
|
|
\fn template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> QDBusPendingReply<T1, T2, T3, T4, T5, T6, T7, T8>::QDBusPendingReply()
|
|
|
|
Creates an empty QDBusPendingReply object. Without assigning a
|
|
QDBusPendingCall object to this reply, QDBusPendingReply cannot do
|
|
anything. All functions return their failure values.
|
|
*/
|
|
|
|
/*!
|
|
\fn template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> QDBusPendingReply<T1, T2, T3, T4, T5, T6, T7, T8>::QDBusPendingReply(const QDBusPendingReply &other)
|
|
|
|
Creates a copy of the \a other QDBusPendingReply object. Just like
|
|
QDBusPendingCall and QDBusPendingCallWatcher, this QDBusPendingReply
|
|
object will share the same pending call reference. All copies
|
|
share the same return values.
|
|
*/
|
|
|
|
/*!
|
|
\fn template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> QDBusPendingReply<T1, T2, T3, T4, T5, T6, T7, T8>::QDBusPendingReply(const QDBusPendingCall &call)
|
|
|
|
Creates a QDBusPendingReply object that will take its contents from
|
|
the \a call pending asynchronous call. This QDBusPendingReply object
|
|
will share the same pending call reference as \a call.
|
|
*/
|
|
|
|
/*!
|
|
\fn template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> QDBusPendingReply<T1, T2, T3, T4, T5, T6, T7, T8>::QDBusPendingReply(const QDBusMessage &message)
|
|
|
|
Creates a QDBusPendingReply object that will take its contents from
|
|
the message \a message. In this case, this object will be already
|
|
in its finished state and the reply's contents will be accessible.
|
|
|
|
\sa isFinished()
|
|
*/
|
|
|
|
/*!
|
|
\fn template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> QDBusPendingReply &QDBusPendingReply<T1, T2, T3, T4, T5, T6, T7, T8>::operator=(const QDBusPendingReply &other)
|
|
|
|
Makes a copy of \a other and drops the reference to the current
|
|
pending call. If the current reference is to an unfinished pending
|
|
call and this is the last reference, the pending call will be
|
|
canceled and there will be no way of retrieving the reply's
|
|
contents, when they arrive.
|
|
*/
|
|
|
|
/*!
|
|
\fn template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> QDBusPendingReply &QDBusPendingReply<T1, T2, T3, T4, T5, T6, T7, T8>::operator=(const QDBusPendingCall &call)
|
|
|
|
Makes this object take its contents from the \a call pending call
|
|
and drops the reference to the current pending call. If the
|
|
current reference is to an unfinished pending call and this is the
|
|
last reference, the pending call will be canceled and there will
|
|
be no way of retrieving the reply's contents, when they arrive.
|
|
*/
|
|
|
|
/*!
|
|
\fn template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> QDBusPendingReply &QDBusPendingReply<T1, T2, T3, T4, T5, T6, T7, T8>::operator=(const QDBusMessage &message)
|
|
|
|
Makes this object take its contents from the \a message message
|
|
and drops the reference to the current pending call. If the
|
|
current reference is to an unfinished pending call and this is the
|
|
last reference, the pending call will be canceled and there will
|
|
be no way of retrieving the reply's contents, when they arrive.
|
|
|
|
After this function is finished, the QDBusPendingReply object will
|
|
be in its "finished" state and the \a message contents will be
|
|
accessible.
|
|
|
|
\sa isFinished()
|
|
*/
|
|
|
|
/*!
|
|
\enum QDBusPendingReply::anonymous
|
|
|
|
\value Count The number of arguments the reply is expected to have
|
|
*/
|
|
|
|
/*!
|
|
\fn template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> int QDBusPendingReply<T1, T2, T3, T4, T5, T6, T7, T8>::count() const
|
|
|
|
Return the number of arguments the reply is supposed to have. This
|
|
number matches the number of non-void template parameters in this
|
|
class.
|
|
|
|
If the reply arrives with a different number of arguments (or with
|
|
different types), it will be transformed into an error reply
|
|
indicating a bad signature.
|
|
*/
|
|
|
|
/*!
|
|
\fn template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> QVariant QDBusPendingReply<T1, T2, T3, T4, T5, T6, T7, T8>::argumentAt(int index) const
|
|
|
|
Returns the argument at position \a index in the reply's
|
|
contents. If the reply doesn't have that many elements, this
|
|
function's return value is undefined (will probably cause an
|
|
assertion failure), so it is important to verify that the
|
|
processing is finished and the reply is valid.
|
|
|
|
If the reply does not contain an argument at position \a index or if the
|
|
reply was an error, this function returns an invalid QVariant. Since D-Bus
|
|
messages can never contain invalid QVariants, this return can be used to
|
|
detect an error condition.
|
|
*/
|
|
|
|
/*!
|
|
\fn template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> T1 QDBusPendingReply<T1, T2, T3, T4, T5, T6, T7, T8>::value() const
|
|
|
|
Returns the first argument in this reply, cast to type \c T1 (the
|
|
first template parameter of this class). This is equivalent to
|
|
calling argumentAt<0>().
|
|
|
|
This function is provided as a convenience, matching the
|
|
QDBusReply::value() function.
|
|
|
|
Note that, if the reply hasn't arrived, this function causes the
|
|
calling thread to block until the reply is processed.
|
|
|
|
If the reply is an error reply, this function returns a default-constructed
|
|
\c T1 object, which may be indistinguishable from a valid value. To
|
|
reliably determine whether the message was an error, use isError().
|
|
*/
|
|
|
|
/*!
|
|
\fn template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> QDBusPendingReply<T1, T2, T3, T4, T5, T6, T7, T8>::operator T1() const
|
|
|
|
Returns the first argument in this reply, cast to type \c T1 (the
|
|
first template parameter of this class). This is equivalent to
|
|
calling argumentAt<0>().
|
|
|
|
This function is provided as a convenience, matching the
|
|
QDBusReply::value() function.
|
|
|
|
Note that, if the reply hasn't arrived, this function causes the
|
|
calling thread to block until the reply is processed.
|
|
|
|
If the reply is an error reply, this function returns a default-constructed
|
|
\c T1 object, which may be indistinguishable from a valid value. To
|
|
reliably determine whether the message was an error, use isError().
|
|
*/
|
|
|
|
/*!
|
|
\fn template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> void QDBusPendingReply<T1, T2, T3, T4, T5, T6, T7, T8>::waitForFinished()
|
|
|
|
Suspends the execution of the calling thread until the reply is
|
|
received and processed. After this function returns, isFinished()
|
|
should return true, indicating the reply's contents are ready to
|
|
be processed.
|
|
|
|
\sa QDBusPendingCallWatcher::waitForFinished()
|
|
*/
|
|
|
|
QDBusPendingReplyData::QDBusPendingReplyData()
|
|
: QDBusPendingCall(0) // initialize base class empty
|
|
{
|
|
}
|
|
|
|
QDBusPendingReplyData::~QDBusPendingReplyData()
|
|
{
|
|
}
|
|
|
|
void QDBusPendingReplyData::assign(const QDBusPendingCall &other)
|
|
{
|
|
QDBusPendingCall::operator=(other);
|
|
}
|
|
|
|
void QDBusPendingReplyData::assign(const QDBusMessage &message)
|
|
{
|
|
d = new QDBusPendingCallPrivate(QDBusMessage(), 0); // drops the reference to the old one
|
|
d->replyMessage = message;
|
|
}
|
|
|
|
QVariant QDBusPendingReplyData::argumentAt(int index) const
|
|
{
|
|
if (!d)
|
|
return QVariant();
|
|
|
|
d->waitForFinished(); // bypasses "const"
|
|
|
|
return d->replyMessage.arguments().value(index);
|
|
}
|
|
|
|
void QDBusPendingReplyData::setMetaTypes(int count, const int *types)
|
|
{
|
|
Q_ASSERT(d);
|
|
QMutexLocker locker(&d->mutex);
|
|
d->setMetaTypes(count, types);
|
|
d->checkReceivedSignature();
|
|
}
|
|
|
|
#endif // QT_NO_DBUS
|