Introduce QMetaType::UnknownType.
[profile/ivi/qtbase.git] / src / testlib / qsignalspy.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the QtTest module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef QSIGNALSPY_H
43 #define QSIGNALSPY_H
44
45 #include <QtCore/qbytearray.h>
46 #include <QtCore/qlist.h>
47 #include <QtCore/qobject.h>
48 #include <QtCore/qmetaobject.h>
49 #include <QtCore/qvariant.h>
50
51 QT_BEGIN_HEADER
52
53 QT_BEGIN_NAMESPACE
54
55
56 class QVariant;
57
58 class QSignalSpy: public QObject, public QList<QList<QVariant> >
59 {
60 public:
61     QSignalSpy(QObject *obj, const char *aSignal)
62     {
63 #ifdef Q_CC_BOR
64         const int memberOffset = QObject::staticMetaObject.methodCount();
65 #else
66         static const int memberOffset = QObject::staticMetaObject.methodCount();
67 #endif
68         if (!obj) {
69             qWarning("QSignalSpy: Cannot spy on a null object");
70             return;
71         }
72
73         if (!aSignal) {
74             qWarning("QSignalSpy: Null signal name is not valid");
75             return;
76         }
77
78         if (((aSignal[0] - '0') & 0x03) != QSIGNAL_CODE) {
79             qWarning("QSignalSpy: Not a valid signal, use the SIGNAL macro");
80             return;
81         }
82
83         QByteArray ba = QMetaObject::normalizedSignature(aSignal + 1);
84         const QMetaObject *mo = obj->metaObject();
85         int sigIndex = mo->indexOfMethod(ba.constData());
86         if (sigIndex < 0) {
87             qWarning("QSignalSpy: No such signal: '%s'", ba.constData());
88             return;
89         }
90
91         if (!QMetaObject::connect(obj, sigIndex, this, memberOffset,
92                     Qt::DirectConnection, 0)) {
93             qWarning("QSignalSpy: QMetaObject::connect returned false. Unable to connect.");
94             return;
95         }
96         sig = ba;
97         initArgs(mo->method(sigIndex));
98     }
99
100     inline bool isValid() const { return !sig.isEmpty(); }
101     inline QByteArray signal() const { return sig; }
102
103
104     int qt_metacall(QMetaObject::Call call, int methodId, void **a)
105     {
106         methodId = QObject::qt_metacall(call, methodId, a);
107         if (methodId < 0)
108             return methodId;
109
110         if (call == QMetaObject::InvokeMetaMethod) {
111             if (methodId == 0) {
112                 appendArgs(a);
113             }
114             --methodId;
115         }
116         return methodId;
117     }
118
119 private:
120     void initArgs(const QMetaMethod &member)
121     {
122         QList<QByteArray> params = member.parameterTypes();
123         for (int i = 0; i < params.count(); ++i) {
124             int tp = QMetaType::type(params.at(i).constData());
125             if (tp == QMetaType::UnknownType) {
126                 Q_ASSERT(tp != QMetaType::Void); // void parameter => metaobject is corrupt
127                 qWarning("Don't know how to handle '%s', use qRegisterMetaType to register it.",
128                          params.at(i).constData());
129             }
130             args << tp;
131         }
132     }
133
134     void appendArgs(void **a)
135     {
136         QList<QVariant> list;
137         for (int i = 0; i < args.count(); ++i) {
138             QMetaType::Type type = static_cast<QMetaType::Type>(args.at(i));
139             list << QVariant(type, a[i + 1]);
140         }
141         append(list);
142     }
143
144     // the full, normalized signal name
145     QByteArray sig;
146     // holds the QMetaType types for the argument list of the signal
147     QList<int> args;
148 };
149
150 QT_END_NAMESPACE
151
152 QT_END_HEADER
153
154 #endif