Improve QJSValueIterator implementation.
[profile/ivi/qtdeclarative.git] / src / declarative / qml / qdeclarativevmemetaobject_p.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the QtDeclarative module of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef QDECLARATIVEVMEMETAOBJECT_P_H
43 #define QDECLARATIVEVMEMETAOBJECT_P_H
44
45 //
46 //  W A R N I N G
47 //  -------------
48 //
49 // This file is not part of the Qt API.  It exists purely as an
50 // implementation detail.  This header file may change from version to
51 // version without notice, or even be removed.
52 //
53 // We mean it.
54 //
55
56 #include "qdeclarative.h"
57
58 #include <QtCore/QMetaObject>
59 #include <QtCore/QBitArray>
60 #include <QtCore/QPair>
61 #include <QtGui/QColor>
62 #include <QtCore/QDate>
63 #include <QtCore/qlist.h>
64 #include <QtCore/qdebug.h>
65
66 #include <private/qobject_p.h>
67
68 #include "private/qdeclarativeguard_p.h"
69 #include "private/qdeclarativecompiler_p.h"
70 #include "private/qdeclarativecontext_p.h"
71
72 #include <private/qv8_p.h>
73
74 QT_BEGIN_NAMESPACE
75
76 #define QML_ALIAS_FLAG_PTR 0x00000001
77
78 struct QDeclarativeVMEMetaData
79 {
80     short propertyCount;
81     short aliasCount;
82     short signalCount;
83     short methodCount;
84
85     struct AliasData {
86         int contextIdx;
87         int propertyIdx;
88         int flags;
89
90         bool isObjectAlias() const {
91             return propertyIdx == -1;
92         }
93         bool isPropertyAlias() const {
94             return !isObjectAlias() && !(propertyIdx & 0xFF000000);
95         }
96         bool isValueTypeAlias() const {
97             return !isObjectAlias() && (propertyIdx & 0xFF000000);
98         }
99         int propertyIndex() const {
100             return propertyIdx & 0x0000FFFF;
101         }
102         int valueTypeIndex() const {
103             return (propertyIdx & 0x00FF0000) >> 16;
104         }
105         int valueType() const {
106             return ((unsigned int)propertyIdx) >> 24;
107         }
108     };
109     
110     struct PropertyData {
111         int propertyType;
112     };
113
114     struct MethodData {
115         int parameterCount;
116         int bodyOffset;
117         int bodyLength;
118         int lineNumber;
119     };
120
121     PropertyData *propertyData() const {
122         return (PropertyData *)(((const char *)this) + sizeof(QDeclarativeVMEMetaData));
123     }
124
125     AliasData *aliasData() const {
126         return (AliasData *)(propertyData() + propertyCount);
127     }
128
129     MethodData *methodData() const {
130         return (MethodData *)(aliasData() + aliasCount);
131     }
132 };
133
134 class QDeclarativeVMEVariant;
135 class QDeclarativeRefCount;
136 class QDeclarativeVMEMetaObject : public QAbstractDynamicMetaObject
137 {
138 public:
139     QDeclarativeVMEMetaObject(QObject *obj, const QMetaObject *other, const QDeclarativeVMEMetaData *data,
140                      QDeclarativeCompiledData *compiledData);
141     ~QDeclarativeVMEMetaObject();
142
143     bool aliasTarget(int index, QObject **target, int *coreIndex, int *valueTypeIndex) const;
144     void registerInterceptor(int index, int valueIndex, QDeclarativePropertyValueInterceptor *interceptor);
145     v8::Handle<v8::Function> vmeMethod(int index);
146     int vmeMethodLineNumber(int index);
147     void setVmeMethod(int index, v8::Persistent<v8::Function>);
148 #if 0
149     QScriptValue vmeProperty(int index);
150     void setVMEProperty(int index, const QScriptValue &);
151 #endif
152
153     void connectAliasSignal(int index);
154
155 protected:
156     virtual int metaCall(QMetaObject::Call _c, int _id, void **_a);
157
158 private:
159     QObject *object;
160     QDeclarativeCompiledData *compiledData;
161     QDeclarativeGuardedContextData ctxt;
162
163     const QDeclarativeVMEMetaData *metaData;
164     int propOffset;
165     int methodOffset;
166
167     QDeclarativeVMEVariant *data;
168
169     void connectAlias(int aliasId);
170     QBitArray aConnected;
171     QBitArray aInterceptors;
172     QHash<int, QPair<int, QDeclarativePropertyValueInterceptor*> > interceptors;
173
174     v8::Persistent<v8::Function> *v8methods;
175     v8::Handle<v8::Function> method(int);
176
177 #if 0
178     QScriptValue readVarProperty(int);
179     void writeVarProperty(int, const QScriptValue &);
180 #endif
181     QVariant readVarPropertyAsVariant(int);
182     void writeVarProperty(int, const QVariant &);
183
184     QAbstractDynamicMetaObject *parent;
185
186     void listChanged(int);
187     class List : public QList<QObject*>
188     {
189     public:
190         List(int lpi) : notifyIndex(lpi) {}
191         int notifyIndex;
192     };
193     QList<List> listProperties;
194
195     static void list_append(QDeclarativeListProperty<QObject> *, QObject *);
196     static int list_count(QDeclarativeListProperty<QObject> *);
197     static QObject *list_at(QDeclarativeListProperty<QObject> *, int);
198     static void list_clear(QDeclarativeListProperty<QObject> *);
199 };
200
201 QT_END_NAMESPACE
202
203 #endif // QDECLARATIVEVMEMETAOBJECT_P_H