~loic.molinari/+junk/qtdeclarative-shadereffectsource-changes

« back to all changes in this revision

Viewing changes to src/qml/qml/qqmlvmemetaobject_p.h

  • Committer: Loïc Molinari
  • Date: 2012-04-21 17:59:51 UTC
  • Revision ID: loic.molinari@canonical.com-20120421175951-bqx68caaf5zrp76l
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 QtQml 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 QQMLVMEMETAOBJECT_P_H
 
43
#define QQMLVMEMETAOBJECT_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 "qqml.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 "qqmlguard_p.h"
 
69
#include "qqmlcompiler_p.h"
 
70
#include "qqmlcontext_p.h"
 
71
 
 
72
#include <private/qv8engine_p.h>
 
73
 
 
74
#include <private/qv8_p.h>
 
75
 
 
76
QT_BEGIN_NAMESPACE
 
77
 
 
78
#define QML_ALIAS_FLAG_PTR 0x00000001
 
79
 
 
80
struct QQmlVMEMetaData
 
81
{
 
82
    short varPropertyCount;
 
83
    short propertyCount;
 
84
    short aliasCount;
 
85
    short signalCount;
 
86
    short methodCount;
 
87
    short dummyForAlignment; // Add padding to ensure that the following
 
88
                             // AliasData/PropertyData/MethodData is int aligned.
 
89
 
 
90
    struct AliasData {
 
91
        int contextIdx;
 
92
        int propertyIdx;
 
93
        int flags;
 
94
 
 
95
        bool isObjectAlias() const {
 
96
            return propertyIdx == -1;
 
97
        }
 
98
        bool isPropertyAlias() const {
 
99
            return !isObjectAlias() && !(propertyIdx & 0xFF000000);
 
100
        }
 
101
        bool isValueTypeAlias() const {
 
102
            return !isObjectAlias() && (propertyIdx & 0xFF000000);
 
103
        }
 
104
        int propertyIndex() const {
 
105
            return propertyIdx & 0x0000FFFF;
 
106
        }
 
107
        int valueTypeIndex() const {
 
108
            return (propertyIdx & 0x00FF0000) >> 16;
 
109
        }
 
110
        int valueType() const {
 
111
            return ((unsigned int)propertyIdx) >> 24;
 
112
        }
 
113
    };
 
114
    
 
115
    struct PropertyData {
 
116
        int propertyType;
 
117
    };
 
118
 
 
119
    struct MethodData {
 
120
        int parameterCount;
 
121
        int bodyOffset;
 
122
        int bodyLength;
 
123
        int lineNumber;
 
124
    };
 
125
 
 
126
    PropertyData *propertyData() const {
 
127
        return (PropertyData *)(((const char *)this) + sizeof(QQmlVMEMetaData));
 
128
    }
 
129
 
 
130
    AliasData *aliasData() const {
 
131
        return (AliasData *)(propertyData() + propertyCount);
 
132
    }
 
133
 
 
134
    MethodData *methodData() const {
 
135
        return (MethodData *)(aliasData() + aliasCount);
 
136
    }
 
137
};
 
138
 
 
139
class QQmlVMEMetaObject;
 
140
class QQmlVMEVariantQObjectPtr : public QQmlGuard<QObject>
 
141
{
 
142
public:
 
143
    inline QQmlVMEVariantQObjectPtr();
 
144
    inline ~QQmlVMEVariantQObjectPtr();
 
145
    inline void objectDestroyed(QObject *);
 
146
    inline void setGuardedValue(QObject *obj, QQmlVMEMetaObject *target, int index);
 
147
 
 
148
    QQmlVMEMetaObject *m_target;
 
149
    int m_index;
 
150
};
 
151
 
 
152
class QV8QObjectWrapper;
 
153
class QQmlVMEVariant;
 
154
class QQmlRefCount;
 
155
class QQmlVMEMetaObjectEndpoint;
 
156
class Q_AUTOTEST_EXPORT QQmlVMEMetaObject : public QAbstractDynamicMetaObject,
 
157
                                                    public QV8GCCallback::Node
 
158
{
 
159
public:
 
160
    QQmlVMEMetaObject(QObject *obj, const QMetaObject *other, const QQmlVMEMetaData *data,
 
161
                     QQmlCompiledData *compiledData);
 
162
    ~QQmlVMEMetaObject();
 
163
 
 
164
    bool aliasTarget(int index, QObject **target, int *coreIndex, int *valueTypeIndex) const;
 
165
    void registerInterceptor(int index, int valueIndex, QQmlPropertyValueInterceptor *interceptor);
 
166
    v8::Handle<v8::Function> vmeMethod(int index);
 
167
    int vmeMethodLineNumber(int index);
 
168
    void setVmeMethod(int index, v8::Persistent<v8::Function>);
 
169
    v8::Handle<v8::Value> vmeProperty(int index);
 
170
    void setVMEProperty(int index, v8::Handle<v8::Value> v);
 
171
 
 
172
    void connectAliasSignal(int index);
 
173
 
 
174
protected:
 
175
    virtual int metaCall(QMetaObject::Call _c, int _id, void **_a);
 
176
 
 
177
private:
 
178
    friend class QQmlVMEMetaObjectEndpoint;
 
179
    friend class QQmlVMEVariantQObjectPtr;
 
180
 
 
181
    QObject *object;
 
182
    QQmlCompiledData *compiledData;
 
183
    QQmlGuardedContextData ctxt;
 
184
 
 
185
    const QQmlVMEMetaData *metaData;
 
186
    int propOffset;
 
187
    int methodOffset;
 
188
 
 
189
    QQmlVMEVariant *data;
 
190
    QQmlVMEMetaObjectEndpoint *aliasEndpoints;
 
191
 
 
192
    v8::Persistent<v8::Array> varProperties;
 
193
    int firstVarPropertyIndex;
 
194
    bool varPropertiesInitialized;
 
195
    static void VarPropertiesWeakReferenceCallback(v8::Persistent<v8::Value> object, void* parameter);
 
196
    static void GcPrologueCallback(QV8GCCallback::Node *node);
 
197
    inline void allocateVarPropertiesArray();
 
198
    inline bool ensureVarPropertiesAllocated();
 
199
 
 
200
    void connectAlias(int aliasId);
 
201
    QBitArray aConnected;
 
202
    QBitArray aInterceptors;
 
203
    QHash<int, QPair<int, QQmlPropertyValueInterceptor*> > interceptors;
 
204
 
 
205
    v8::Persistent<v8::Function> *v8methods;
 
206
    v8::Handle<v8::Function> method(int);
 
207
 
 
208
    v8::Handle<v8::Value> readVarProperty(int);
 
209
    void writeVarProperty(int, v8::Handle<v8::Value>);
 
210
    QVariant readPropertyAsVariant(int);
 
211
    void writeProperty(int, const QVariant &);
 
212
 
 
213
    QAbstractDynamicMetaObject *parent;
 
214
 
 
215
    void listChanged(int);
 
216
    class List : public QList<QObject*>
 
217
    {
 
218
    public:
 
219
        List(int lpi) : notifyIndex(lpi) {}
 
220
        int notifyIndex;
 
221
    };
 
222
    QList<List> listProperties;
 
223
 
 
224
    static void list_append(QQmlListProperty<QObject> *, QObject *);
 
225
    static int list_count(QQmlListProperty<QObject> *);
 
226
    static QObject *list_at(QQmlListProperty<QObject> *, int);
 
227
    static void list_clear(QQmlListProperty<QObject> *);
 
228
 
 
229
    friend class QV8GCCallback;
 
230
    friend class QV8QObjectWrapper;
 
231
};
 
232
 
 
233
QT_END_NAMESPACE
 
234
 
 
235
#endif // QQMLVMEMETAOBJECT_P_H