qsignalspy.h 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  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 QtTest 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 QSIGNALSPY_H
  40. #define QSIGNALSPY_H
  41. #include <QtCore/qbytearray.h>
  42. #include <QtCore/qlist.h>
  43. #include <QtCore/qobject.h>
  44. #include <QtCore/qmetaobject.h>
  45. #include <QtCore/qvariant.h>
  46. #include <QtCore/qvector.h>
  47. #include <QtTest/qtesteventloop.h>
  48. QT_BEGIN_NAMESPACE
  49. class QVariant;
  50. class QSignalSpy: public QObject, public QList<QList<QVariant> >
  51. {
  52. public:
  53. explicit QSignalSpy(const QObject *obj, const char *aSignal)
  54. : m_waiting(false)
  55. {
  56. #ifdef Q_CC_BOR
  57. const int memberOffset = QObject::staticMetaObject.methodCount();
  58. #else
  59. static const int memberOffset = QObject::staticMetaObject.methodCount();
  60. #endif
  61. if (!obj) {
  62. qWarning("QSignalSpy: Cannot spy on a null object");
  63. return;
  64. }
  65. if (!aSignal) {
  66. qWarning("QSignalSpy: Null signal name is not valid");
  67. return;
  68. }
  69. if (((aSignal[0] - '0') & 0x03) != QSIGNAL_CODE) {
  70. qWarning("QSignalSpy: Not a valid signal, use the SIGNAL macro");
  71. return;
  72. }
  73. const QByteArray ba = QMetaObject::normalizedSignature(aSignal + 1);
  74. const QMetaObject * const mo = obj->metaObject();
  75. const int sigIndex = mo->indexOfMethod(ba.constData());
  76. if (sigIndex < 0) {
  77. qWarning("QSignalSpy: No such signal: '%s'", ba.constData());
  78. return;
  79. }
  80. if (!QMetaObject::connect(obj, sigIndex, this, memberOffset,
  81. Qt::DirectConnection, Q_NULLPTR)) {
  82. qWarning("QSignalSpy: QMetaObject::connect returned false. Unable to connect.");
  83. return;
  84. }
  85. sig = ba;
  86. initArgs(mo->method(sigIndex), obj);
  87. }
  88. #ifdef Q_QDOC
  89. QSignalSpy(const QObject *object, PointerToMemberFunction signal);
  90. #else
  91. template <typename Func>
  92. QSignalSpy(const typename QtPrivate::FunctionPointer<Func>::Object *obj, Func signal0)
  93. : m_waiting(false)
  94. {
  95. #ifdef Q_CC_BOR
  96. const int memberOffset = QObject::staticMetaObject.methodCount();
  97. #else
  98. static const int memberOffset = QObject::staticMetaObject.methodCount();
  99. #endif
  100. if (!obj) {
  101. qWarning("QSignalSpy: Cannot spy on a null object");
  102. return;
  103. }
  104. if (!signal0) {
  105. qWarning("QSignalSpy: Null signal name is not valid");
  106. return;
  107. }
  108. const QMetaObject * const mo = obj->metaObject();
  109. const QMetaMethod signalMetaMethod = QMetaMethod::fromSignal(signal0);
  110. const int sigIndex = signalMetaMethod.methodIndex();
  111. if (!signalMetaMethod.isValid() ||
  112. signalMetaMethod.methodType() != QMetaMethod::Signal) {
  113. qWarning("QSignalSpy: Not a valid signal: '%s'",
  114. signalMetaMethod.methodSignature().constData());
  115. return;
  116. }
  117. if (!QMetaObject::connect(obj, sigIndex, this, memberOffset,
  118. Qt::DirectConnection, 0)) {
  119. qWarning("QSignalSpy: QMetaObject::connect returned false. Unable to connect.");
  120. return;
  121. }
  122. sig = signalMetaMethod.methodSignature();
  123. initArgs(mo->method(sigIndex), obj);
  124. }
  125. #endif // Q_QDOC
  126. inline bool isValid() const { return !sig.isEmpty(); }
  127. inline QByteArray signal() const { return sig; }
  128. bool wait(int timeout = 5000)
  129. {
  130. Q_ASSERT(!m_waiting);
  131. const int origCount = count();
  132. m_waiting = true;
  133. m_loop.enterLoopMSecs(timeout);
  134. m_waiting = false;
  135. return count() > origCount;
  136. }
  137. int qt_metacall(QMetaObject::Call call, int methodId, void **a) Q_DECL_OVERRIDE
  138. {
  139. methodId = QObject::qt_metacall(call, methodId, a);
  140. if (methodId < 0)
  141. return methodId;
  142. if (call == QMetaObject::InvokeMetaMethod) {
  143. if (methodId == 0) {
  144. appendArgs(a);
  145. }
  146. --methodId;
  147. }
  148. return methodId;
  149. }
  150. private:
  151. void initArgs(const QMetaMethod &member, const QObject *obj)
  152. {
  153. args.reserve(member.parameterCount());
  154. for (int i = 0; i < member.parameterCount(); ++i) {
  155. int tp = member.parameterType(i);
  156. if (tp == QMetaType::UnknownType && obj) {
  157. void *argv[] = { &tp, &i };
  158. QMetaObject::metacall(const_cast<QObject*>(obj),
  159. QMetaObject::RegisterMethodArgumentMetaType,
  160. member.methodIndex(), argv);
  161. if (tp == -1)
  162. tp = QMetaType::UnknownType;
  163. }
  164. if (tp == QMetaType::UnknownType) {
  165. qWarning("QSignalSpy: Unable to handle parameter '%s' of type '%s' of method '%s',"
  166. " use qRegisterMetaType to register it.",
  167. member.parameterNames().at(i).constData(),
  168. member.parameterTypes().at(i).constData(),
  169. member.name().constData());
  170. }
  171. args << tp;
  172. }
  173. }
  174. void appendArgs(void **a)
  175. {
  176. QList<QVariant> list;
  177. list.reserve(args.count());
  178. for (int i = 0; i < args.count(); ++i) {
  179. const QMetaType::Type type = static_cast<QMetaType::Type>(args.at(i));
  180. if (type == QMetaType::QVariant)
  181. list << *reinterpret_cast<QVariant *>(a[i + 1]);
  182. else
  183. list << QVariant(type, a[i + 1]);
  184. }
  185. append(list);
  186. if (m_waiting)
  187. m_loop.exitLoop();
  188. }
  189. // the full, normalized signal name
  190. QByteArray sig;
  191. // holds the QMetaType types for the argument list of the signal
  192. QVector<int> args;
  193. QTestEventLoop m_loop;
  194. bool m_waiting;
  195. };
  196. QT_END_NAMESPACE
  197. #endif