Merge branch 'master' into v8
[profile/ivi/qtdeclarative.git] / src / declarative / qml / qdeclarativedata_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 QDECLARATIVEDATA_P_H
43 #define QDECLARATIVEDATA_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 <QtScript/qscriptvalue.h>
57 #include <private/qobject_p.h>
58 #include "private/qdeclarativeguard_p.h"
59
60 #include <private/qv8_p.h>
61
62 QT_BEGIN_NAMESPACE
63
64 class QDeclarativeCompiledData;
65 class QDeclarativeAbstractBinding;
66 class QDeclarativeContext;
67 class QDeclarativePropertyCache;
68 class QDeclarativeContextData;
69 class QDeclarativeNotifier;
70 class QDeclarativeDataExtended;
71 // This class is structured in such a way, that simply zero'ing it is the
72 // default state for elemental object allocations.  This is crucial in the
73 // workings of the QDeclarativeInstruction::CreateSimpleObject instruction.
74 // Don't change anything here without first considering that case!
75 class Q_AUTOTEST_EXPORT QDeclarativeData : public QAbstractDeclarativeData
76 {
77 public:
78     QDeclarativeData()
79         : ownMemory(true), ownContext(false), indestructible(true), explicitIndestructibleSet(false), 
80           context(0), outerContext(0), bindings(0), nextContextObject(0), prevContextObject(0), bindingBitsSize(0), 
81           bindingBits(0), lineNumber(0), columnNumber(0), deferredComponent(0), deferredIdx(0), propertyCache(0), 
82           guards(0), extendedData(0) {
83           init(); 
84       }
85
86     static inline void init() {
87         QAbstractDeclarativeData::destroyed = destroyed;
88         QAbstractDeclarativeData::parentChanged = parentChanged;
89         QAbstractDeclarativeData::objectNameChanged = objectNameChanged;
90     }
91
92     static void destroyed(QAbstractDeclarativeData *, QObject *);
93     static void parentChanged(QAbstractDeclarativeData *, QObject *, QObject *);
94     static void objectNameChanged(QAbstractDeclarativeData *, QObject *);
95
96     void destroyed(QObject *);
97     void parentChanged(QObject *, QObject *);
98     void objectNameChanged(QObject *);
99
100     void setImplicitDestructible() {
101         if (!explicitIndestructibleSet) indestructible = false;
102     }
103
104     quint32 ownMemory:1;
105     quint32 ownContext:1;
106     quint32 indestructible:1;
107     quint32 explicitIndestructibleSet:1;
108     quint32 dummy:28;
109
110     // The context that created the C++ object
111     QDeclarativeContextData *context; 
112     // The outermost context in which this object lives
113     QDeclarativeContextData *outerContext;
114
115     QDeclarativeAbstractBinding *bindings;
116
117     // Linked list for QDeclarativeContext::contextObjects
118     QDeclarativeData *nextContextObject;
119     QDeclarativeData**prevContextObject;
120
121     int bindingBitsSize;
122     quint32 *bindingBits; 
123     bool hasBindingBit(int) const;
124     void clearBindingBit(int);
125     void setBindingBit(QObject *obj, int);
126
127     ushort lineNumber;
128     ushort columnNumber;
129
130     QDeclarativeCompiledData *deferredComponent; // Can't this be found from the context?
131     unsigned int deferredIdx;
132
133     v8::Persistent<v8::Object> v8object;
134     QDeclarativePropertyCache *propertyCache;
135
136     QDeclarativeGuard<QObject> *guards;
137
138     static QDeclarativeData *get(const QObject *object, bool create = false) {
139         QObjectPrivate *priv = QObjectPrivate::get(const_cast<QObject *>(object));
140         if (priv->wasDeleted) {
141             Q_ASSERT(!create);
142             return 0;
143         } else if (priv->declarativeData) {
144             return static_cast<QDeclarativeData *>(priv->declarativeData);
145         } else if (create) {
146             priv->declarativeData = new QDeclarativeData;
147             return static_cast<QDeclarativeData *>(priv->declarativeData);
148         } else {
149             return 0;
150         }
151     }
152
153     bool hasExtendedData() const { return extendedData != 0; }
154     QDeclarativeNotifier *objectNameNotifier() const;
155     QHash<int, QObject *> *attachedProperties() const;
156
157 private:
158     // For objectNameNotifier and attachedProperties
159     mutable QDeclarativeDataExtended *extendedData;
160 };
161
162 template<class T>
163 void QDeclarativeGuard<T>::addGuard()
164 {
165     Q_ASSERT(!prev);
166
167     if (QObjectPrivate::get(o)->wasDeleted) 
168         return;
169
170     QDeclarativeData *data = QDeclarativeData::get(o, true);
171     next = data->guards;
172     if (next) reinterpret_cast<QDeclarativeGuard<T> *>(next)->prev = &next;
173     data->guards = reinterpret_cast<QDeclarativeGuard<QObject> *>(this);
174     prev = &data->guards;
175 }
176
177 template<class T>
178 void QDeclarativeGuard<T>::remGuard()
179 {
180     Q_ASSERT(prev);
181
182     if (next) reinterpret_cast<QDeclarativeGuard<T> *>(next)->prev = prev;
183     *prev = next;
184     next = 0;
185     prev = 0;
186 }
187
188 QT_END_NAMESPACE
189
190 #endif // QDECLARATIVEDATA_P_H