58060e7b6b
And remove the limitation to 8 types from the documentation. Change-Id: I92c67368e53d69fd851886c621f3f894f638bae9 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
210 lines
6.6 KiB
C++
210 lines
6.6 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
** 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$
|
|
**
|
|
****************************************************************************/
|
|
|
|
#ifndef QDBUSPENDINGREPLY_H
|
|
#define QDBUSPENDINGREPLY_H
|
|
|
|
#include <QtDBus/qtdbusglobal.h>
|
|
#include <QtDBus/qdbusargument.h>
|
|
#include <QtDBus/qdbuspendingcall.h>
|
|
|
|
#ifndef QT_NO_DBUS
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
|
class Q_DBUS_EXPORT QDBusPendingReplyBase : public QDBusPendingCall
|
|
{
|
|
protected:
|
|
QDBusPendingReplyBase();
|
|
~QDBusPendingReplyBase();
|
|
void assign(const QDBusPendingCall &call);
|
|
void assign(const QDBusMessage &message);
|
|
|
|
QVariant argumentAt(int index) const;
|
|
void setMetaTypes(int count, const QMetaType *metaTypes);
|
|
};
|
|
|
|
namespace QDBusPendingReplyTypes {
|
|
template<int Index, typename T, typename... Types>
|
|
struct Select
|
|
{
|
|
typedef Select<Index - 1, Types...> Next;
|
|
typedef typename Next::Type Type;
|
|
};
|
|
template<typename T, typename... Types>
|
|
struct Select<0, T, Types...>
|
|
{
|
|
typedef T Type;
|
|
};
|
|
|
|
template<typename T> inline QMetaType metaTypeFor()
|
|
{ return QMetaType::fromType<T>(); }
|
|
// specialize for QVariant, allowing it to be used in place of QDBusVariant
|
|
template<> inline QMetaType metaTypeFor<QVariant>()
|
|
{ return QMetaType::fromType<QDBusVariant>(); }
|
|
}
|
|
|
|
|
|
template<typename... Types>
|
|
class QDBusPendingReply : public QDBusPendingReplyBase
|
|
{
|
|
template<int Index> using Select = QDBusPendingReplyTypes::Select<Index, Types...>;
|
|
public:
|
|
enum { Count = std::is_same_v<typename Select<0>::Type, void> ? 0 : sizeof...(Types) };
|
|
|
|
inline constexpr int count() const { return Count; }
|
|
|
|
|
|
inline QDBusPendingReply() = default;
|
|
inline QDBusPendingReply(const QDBusPendingReply &other)
|
|
: QDBusPendingReplyBase(other)
|
|
{ }
|
|
inline Q_IMPLICIT QDBusPendingReply(const QDBusPendingCall &call) // required by qdbusxml2cpp-generated code
|
|
{ *this = call; }
|
|
inline Q_IMPLICIT QDBusPendingReply(const QDBusMessage &message)
|
|
{ *this = message; }
|
|
|
|
inline QDBusPendingReply &operator=(const QDBusPendingReply &other)
|
|
{ assign(other); return *this; }
|
|
inline QDBusPendingReply &operator=(const QDBusPendingCall &call)
|
|
{ assign(call); return *this; }
|
|
inline QDBusPendingReply &operator=(const QDBusMessage &message)
|
|
{ assign(message); return *this; }
|
|
|
|
using QDBusPendingReplyBase::argumentAt;
|
|
template<int Index> inline
|
|
typename Select<Index>::Type argumentAt() const
|
|
{
|
|
static_assert(Index >= 0 && Index < Count, "Index out of bounds");
|
|
typedef typename Select<Index>::Type ResultType;
|
|
return qdbus_cast<ResultType>(argumentAt(Index));
|
|
}
|
|
|
|
#if defined(Q_CLANG_QDOC)
|
|
bool isFinished() const;
|
|
void waitForFinished();
|
|
QVariant argumentAt(int index) const;
|
|
|
|
bool isValid() const;
|
|
bool isError() const;
|
|
QDBusError error() const;
|
|
QDBusMessage reply() const;
|
|
#endif
|
|
|
|
inline typename Select<0>::Type value() const
|
|
{
|
|
return argumentAt<0>();
|
|
}
|
|
|
|
inline operator typename Select<0>::Type() const
|
|
{
|
|
return argumentAt<0>();
|
|
}
|
|
|
|
private:
|
|
inline void calculateMetaTypes()
|
|
{
|
|
if (!d) return;
|
|
if constexpr (Count == 0) {
|
|
setMetaTypes(0, nullptr);
|
|
} else {
|
|
std::array<QMetaType, Count> typeIds = { QDBusPendingReplyTypes::metaTypeFor<Types>()... };
|
|
setMetaTypes(Count, typeIds.data());
|
|
}
|
|
}
|
|
|
|
inline void assign(const QDBusPendingCall &call)
|
|
{
|
|
QDBusPendingReplyBase::assign(call);
|
|
calculateMetaTypes();
|
|
}
|
|
|
|
inline void assign(const QDBusMessage &message)
|
|
{
|
|
QDBusPendingReplyBase::assign(message);
|
|
calculateMetaTypes();
|
|
}
|
|
};
|
|
|
|
template<>
|
|
class QDBusPendingReply<> : public QDBusPendingReplyBase
|
|
{
|
|
public:
|
|
enum { Count = 0 };
|
|
inline int count() const { return Count; }
|
|
|
|
inline QDBusPendingReply() = default;
|
|
inline QDBusPendingReply(const QDBusPendingReply &other)
|
|
: QDBusPendingReplyBase(other)
|
|
{ }
|
|
inline Q_IMPLICIT QDBusPendingReply(const QDBusPendingCall &call) // required by qdbusxml2cpp-generated code
|
|
{ *this = call; }
|
|
inline Q_IMPLICIT QDBusPendingReply(const QDBusMessage &message)
|
|
{ *this = message; }
|
|
|
|
inline QDBusPendingReply &operator=(const QDBusPendingReply &other)
|
|
{ assign(other); return *this; }
|
|
inline QDBusPendingReply &operator=(const QDBusPendingCall &call)
|
|
{ assign(call); return *this; }
|
|
inline QDBusPendingReply &operator=(const QDBusMessage &message)
|
|
{ assign(message); return *this; }
|
|
|
|
private:
|
|
inline void assign(const QDBusPendingCall &call)
|
|
{
|
|
QDBusPendingReplyBase::assign(call);
|
|
if (d)
|
|
setMetaTypes(0, nullptr);
|
|
}
|
|
|
|
inline void assign(const QDBusMessage &message)
|
|
{
|
|
QDBusPendingReplyBase::assign(message);
|
|
if (d)
|
|
setMetaTypes(0, nullptr);
|
|
}
|
|
|
|
};
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // QT_NO_DBUS
|
|
#endif
|