qdbuspendingreply.h 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtDBus module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QDBUSPENDINGREPLY_H
  40. #define QDBUSPENDINGREPLY_H
  41. #include <QtCore/qglobal.h>
  42. #include <QtDBus/qdbusmacros.h>
  43. #include <QtDBus/qdbusargument.h>
  44. #include <QtDBus/qdbuspendingcall.h>
  45. #ifndef QT_NO_DBUS
  46. QT_BEGIN_NAMESPACE
  47. class Q_DBUS_EXPORT QDBusPendingReplyData: public QDBusPendingCall
  48. {
  49. protected:
  50. QDBusPendingReplyData();
  51. ~QDBusPendingReplyData();
  52. void assign(const QDBusPendingCall &call);
  53. void assign(const QDBusMessage &message);
  54. QVariant argumentAt(int index) const;
  55. void setMetaTypes(int count, const int *metaTypes);
  56. };
  57. namespace QDBusPendingReplyTypes {
  58. template<int Index,
  59. typename T1, typename T2, typename T3, typename T4,
  60. typename T5, typename T6, typename T7, typename T8>
  61. struct Select
  62. {
  63. typedef Select<Index - 1, T2, T3, T4, T5, T6, T7, T8, void> Next;
  64. typedef typename Next::Type Type;
  65. };
  66. template<typename T1, typename T2, typename T3, typename T4,
  67. typename T5, typename T6, typename T7, typename T8>
  68. struct Select<0, T1, T2, T3, T4, T5, T6, T7, T8>
  69. {
  70. typedef T1 Type;
  71. };
  72. template<typename T1> inline int metaTypeFor(T1 * = 0)
  73. { return qMetaTypeId<T1>(); }
  74. // specialize for QVariant, allowing it to be used in place of QDBusVariant
  75. template<> inline int metaTypeFor<QVariant>(QVariant *)
  76. { return qMetaTypeId<QDBusVariant>(); }
  77. template<typename T1, typename T2, typename T3, typename T4,
  78. typename T5, typename T6, typename T7, typename T8>
  79. struct ForEach
  80. {
  81. typedef ForEach<T2, T3, T4, T5, T6, T7, T8, void> Next;
  82. enum { Total = Next::Total + 1 };
  83. static inline void fillMetaTypes(int *p)
  84. {
  85. *p = metaTypeFor<T1>(0);
  86. Next::fillMetaTypes(++p);
  87. }
  88. };
  89. template<>
  90. struct ForEach<void, void, void, void, void, void, void, void>
  91. {
  92. enum { Total = 0 };
  93. static inline void fillMetaTypes(int *)
  94. { }
  95. };
  96. struct TypeIsVoid {};
  97. template <typename T> struct NotVoid { typedef T Type; };
  98. template <> struct NotVoid<void> { typedef TypeIsVoid Type; };
  99. } // namespace QDBusPendingReplyTypes
  100. template<typename T1 = void, typename T2 = void, typename T3 = void, typename T4 = void,
  101. typename T5 = void, typename T6 = void, typename T7 = void, typename T8 = void>
  102. class QDBusPendingReply:
  103. #ifdef Q_QDOC
  104. public QDBusPendingCall
  105. #else
  106. public QDBusPendingReplyData
  107. #endif
  108. {
  109. typedef QDBusPendingReplyTypes::ForEach<T1, T2, T3, T4, T5, T6, T7, T8> ForEach;
  110. template<int Index> struct Select :
  111. QDBusPendingReplyTypes::Select<Index, T1, T2, T3, T4, T5, T6, T7, T8>
  112. {
  113. };
  114. public:
  115. enum { Count = ForEach::Total };
  116. inline QDBusPendingReply()
  117. { }
  118. inline QDBusPendingReply(const QDBusPendingReply &other)
  119. : QDBusPendingReplyData(other)
  120. { }
  121. inline /*implicit*/ QDBusPendingReply(const QDBusPendingCall &call) // required by qdbusxml2cpp-generated code
  122. { *this = call; }
  123. inline /*implicit*/ QDBusPendingReply(const QDBusMessage &message)
  124. { *this = message; }
  125. inline QDBusPendingReply &operator=(const QDBusPendingReply &other)
  126. { assign(other); return *this; }
  127. inline QDBusPendingReply &operator=(const QDBusPendingCall &call)
  128. { assign(call); return *this; }
  129. inline QDBusPendingReply &operator=(const QDBusMessage &message)
  130. { assign(message); return *this; }
  131. inline int count() const { return Count; }
  132. #if defined(Q_QDOC)
  133. QVariant argumentAt(int index) const;
  134. #else
  135. using QDBusPendingReplyData::argumentAt;
  136. #endif
  137. #if defined(Q_QDOC)
  138. bool isFinished() const;
  139. void waitForFinished();
  140. bool isValid() const;
  141. bool isError() const;
  142. QDBusError error() const;
  143. QDBusMessage reply() const;
  144. template<int Index> inline Type argumentAt() const;
  145. inline T1 value() const;
  146. inline operator T1() const;
  147. #else
  148. template<int Index> inline
  149. const typename Select<Index>::Type argumentAt() const
  150. {
  151. Q_STATIC_ASSERT_X(Index >= 0 && Index < Count, "Index out of bounds");
  152. typedef typename Select<Index>::Type ResultType;
  153. return qdbus_cast<ResultType>(argumentAt(Index), 0);
  154. }
  155. inline typename Select<0>::Type value() const
  156. {
  157. return argumentAt<0>();
  158. }
  159. inline operator typename QDBusPendingReplyTypes::NotVoid<T1>::Type() const
  160. {
  161. return argumentAt<0>();
  162. }
  163. #endif
  164. private:
  165. inline void calculateMetaTypes()
  166. {
  167. if (!d) return;
  168. int typeIds[Count > 0 ? Count : 1]; // use at least one since zero-sized arrays aren't valid
  169. ForEach::fillMetaTypes(typeIds);
  170. setMetaTypes(Count, typeIds);
  171. }
  172. inline void assign(const QDBusPendingCall &call)
  173. {
  174. QDBusPendingReplyData::assign(call);
  175. calculateMetaTypes();
  176. }
  177. inline void assign(const QDBusMessage &message)
  178. {
  179. QDBusPendingReplyData::assign(message);
  180. calculateMetaTypes();
  181. }
  182. };
  183. QT_END_NAMESPACE
  184. #endif // QT_NO_DBUS
  185. #endif