qsignalspy.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:5k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtTest module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QSIGNALSPY_H
  38. #define QSIGNALSPY_H
  39. #include <QtCore/qbytearray.h>
  40. #include <QtCore/qlist.h>
  41. #include <QtCore/qobject.h>
  42. #include <QtCore/qmetaobject.h>
  43. #include <QtCore/qvariant.h>
  44. QT_BEGIN_HEADER
  45. QT_BEGIN_NAMESPACE
  46. QT_MODULE(Test)
  47. class QVariant;
  48. /* ### Qt5: change the class to use regular BC mechanisms, such that we can
  49.  * implement things like suggested in task 160192. */
  50. class QSignalSpy: public QObject, public QList<QList<QVariant> >
  51. {
  52. public:
  53.     QSignalSpy(QObject *obj, const char *aSignal)
  54.     {
  55. #ifdef Q_CC_BOR
  56.         const int memberOffset = QObject::staticMetaObject.methodCount();
  57. #else
  58.         static const int memberOffset = QObject::staticMetaObject.methodCount();
  59. #endif
  60.         Q_ASSERT(obj);
  61.         Q_ASSERT(aSignal);
  62.         if (aSignal[0] - '0' != QSIGNAL_CODE) {
  63.             qWarning("QSignalSpy: Not a valid signal, use the SIGNAL macro");
  64.             return;
  65.         }
  66.         QByteArray ba = QMetaObject::normalizedSignature(aSignal + 1);
  67.         const QMetaObject *mo = obj->metaObject();
  68.         int sigIndex = mo->indexOfMethod(ba.constData());
  69.         if (sigIndex < 0) {
  70.             qWarning("QSignalSpy: No such signal: '%s'", ba.constData());
  71.             return;
  72.         }
  73.         if (!QMetaObject::connect(obj, sigIndex, this, memberOffset,
  74.                     Qt::DirectConnection, 0)) {
  75.             qWarning("QSignalSpy: QMetaObject::connect returned false. Unable to connect.");
  76.             return;
  77.         }
  78.         sig = ba;
  79.         initArgs(mo->method(sigIndex));
  80.     }
  81.     inline bool isValid() const { return !sig.isEmpty(); }
  82.     inline QByteArray signal() const { return sig; }
  83.     int qt_metacall(QMetaObject::Call call, int id, void **a)
  84.     {
  85.         id = QObject::qt_metacall(call, id, a);
  86.         if (id < 0)
  87.             return id;
  88.         if (call == QMetaObject::InvokeMetaMethod) {
  89.             if (id == 0) {
  90.                 appendArgs(a);
  91.             }
  92.             --id;
  93.         }
  94.         return id;
  95.     }
  96. private:
  97.     void initArgs(const QMetaMethod &member)
  98.     {
  99.         QList<QByteArray> params = member.parameterTypes();
  100.         for (int i = 0; i < params.count(); ++i) {
  101.             int tp = QMetaType::type(params.at(i).constData());
  102.             if (tp == QMetaType::Void)
  103.                 qWarning("Don't know how to handle '%s', use qRegisterMetaType to register it.",
  104.                          params.at(i).constData());
  105.             args << tp;
  106.         }
  107.     }
  108.     void appendArgs(void **a)
  109.     {
  110.         QList<QVariant> list;
  111.         for (int i = 0; i < args.count(); ++i) {
  112.             QMetaType::Type type = static_cast<QMetaType::Type>(args.at(i));
  113.             list << QVariant(type, a[i + 1]);
  114.         }
  115.         append(list);
  116.     }
  117.     // the full, normalized signal name
  118.     QByteArray sig;
  119.     // holds the QMetaType types for the argument list of the signal
  120.     QList<int> args;
  121. };
  122. QT_END_NAMESPACE
  123. QT_END_HEADER
  124. #endif