Docs - add missing images and code, clean up sections
[profile/ivi/qtdeclarative.git] / src / qml / qml / qqmlvmemetaobject.cpp
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 #include "qqmlvmemetaobject_p.h"
43
44
45 #include "qqml.h"
46 #include <private/qqmlrefcount_p.h>
47 #include "qqmlexpression.h"
48 #include "qqmlexpression_p.h"
49 #include "qqmlcontext_p.h"
50 #include "qqmlbinding_p.h"
51 #include "qqmlpropertyvalueinterceptor_p.h"
52
53 #include <private/qv8variantresource_p.h>
54 #include <private/qqmlglobal_p.h>
55
56 Q_DECLARE_METATYPE(QJSValue);
57
58 QT_BEGIN_NAMESPACE
59
60 QQmlVMEVariantQObjectPtr::QQmlVMEVariantQObjectPtr(bool isVar)
61     : QQmlGuard<QObject>(0), m_target(0), m_isVar(isVar), m_index(-1)
62 {
63 }
64
65 QQmlVMEVariantQObjectPtr::~QQmlVMEVariantQObjectPtr()
66 {
67 }
68
69 void QQmlVMEVariantQObjectPtr::objectDestroyed(QObject *)
70 {
71     if (m_target && m_index >= 0) {
72         if (m_isVar && m_target->varPropertiesInitialized && !m_target->varProperties.IsEmpty()) {
73             // Set the var property to NULL
74             m_target->varProperties->Set(m_index - m_target->firstVarPropertyIndex, v8::Null());
75         }
76
77         m_target->activate(m_target->object, m_target->methodOffset() + m_index, 0);
78     }
79 }
80
81 void QQmlVMEVariantQObjectPtr::setGuardedValue(QObject *obj, QQmlVMEMetaObject *target, int index)
82 {
83     m_target = target;
84     m_index = index;
85     setObject(obj);
86 }
87
88 class QQmlVMEVariant
89 {
90 public:
91     inline QQmlVMEVariant();
92     inline ~QQmlVMEVariant();
93
94     inline const void *dataPtr() const;
95     inline void *dataPtr();
96     inline int dataType() const;
97     inline size_t dataSize() const;
98
99     inline QObject *asQObject();
100     inline const QVariant &asQVariant();
101     inline int asInt();
102     inline bool asBool();
103     inline double asDouble();
104     inline const QString &asQString();
105     inline const QUrl &asQUrl();
106     inline const QTime &asQTime();
107     inline const QDate &asQDate();
108     inline const QDateTime &asQDateTime();
109     inline const QRectF &asQRectF();
110     inline const QPointF &asQPointF();
111     inline const QSizeF &asQSizeF();
112     inline const QJSValue &asQJSValue();
113
114     inline void setValue(QObject *v, QQmlVMEMetaObject *target, int index);
115     inline void setValue(const QVariant &);
116     inline void setValue(int);
117     inline void setValue(bool);
118     inline void setValue(double);
119     inline void setValue(const QString &);
120     inline void setValue(const QUrl &);
121     inline void setValue(const QTime &);
122     inline void setValue(const QDate &);
123     inline void setValue(const QDateTime &);
124     inline void setValue(const QRectF &);
125     inline void setValue(const QPointF &);
126     inline void setValue(const QSizeF &);
127     inline void setValue(const QJSValue &);
128
129     inline void setDataType(int t);
130
131     inline void ensureValueType(int);
132
133 private:
134     int type;
135     void *data[8]; // Large enough to hold all types
136
137     inline void cleanup();
138 };
139
140 class QQmlVMEMetaObjectEndpoint : public QQmlNotifierEndpoint
141 {
142 public:
143     QQmlVMEMetaObjectEndpoint();
144     static void vmecallback(QQmlNotifierEndpoint *, void **);
145     void tryConnect();
146
147     QFlagPointer<QQmlVMEMetaObject> metaObject;
148 };
149
150
151 QQmlVMEVariant::QQmlVMEVariant()
152 : type(QVariant::Invalid)
153 {
154 }
155
156 QQmlVMEVariant::~QQmlVMEVariant()
157 {
158     cleanup();
159 }
160
161 void QQmlVMEVariant::cleanup()
162 {
163     if (type == QVariant::Invalid) {
164     } else if (type == QMetaType::Int ||
165                type == QMetaType::Bool ||
166                type == QMetaType::Double) {
167         type = QVariant::Invalid;
168     } else if (type == QMetaType::QObjectStar) {
169         ((QQmlVMEVariantQObjectPtr*)dataPtr())->~QQmlVMEVariantQObjectPtr();
170         type = QVariant::Invalid;
171     } else if (type == QMetaType::QString) {
172         ((QString *)dataPtr())->~QString();
173         type = QVariant::Invalid;
174     } else if (type == QMetaType::QUrl) {
175         ((QUrl *)dataPtr())->~QUrl();
176         type = QVariant::Invalid;
177     } else if (type == QMetaType::QTime) {
178         ((QTime *)dataPtr())->~QTime();
179         type = QVariant::Invalid;
180     } else if (type == QMetaType::QDate) {
181         ((QDate *)dataPtr())->~QDate();
182         type = QVariant::Invalid;
183     } else if (type == QMetaType::QDateTime) {
184         ((QDateTime *)dataPtr())->~QDateTime();
185         type = QVariant::Invalid;
186     } else if (type == QMetaType::QRectF) {
187         ((QRectF *)dataPtr())->~QRectF();
188         type = QVariant::Invalid;
189     } else if (type == QMetaType::QPointF) {
190         ((QPointF *)dataPtr())->~QPointF();
191         type = QVariant::Invalid;
192     } else if (type == QMetaType::QSizeF) {
193         ((QSizeF *)dataPtr())->~QSizeF();
194         type = QVariant::Invalid;
195     } else if (type == qMetaTypeId<QVariant>()) {
196         ((QVariant *)dataPtr())->~QVariant();
197         type = QVariant::Invalid;
198     } else if (type == qMetaTypeId<QJSValue>()) {
199         ((QJSValue *)dataPtr())->~QJSValue();
200         type = QVariant::Invalid;
201     } else {
202         if (QQml_valueTypeProvider()->destroyValueType(type, dataPtr(), dataSize())) {
203             type = QVariant::Invalid;
204         }
205     }
206 }
207
208 int QQmlVMEVariant::dataType() const
209 {
210     return type;
211 }
212
213 const void *QQmlVMEVariant::dataPtr() const
214 {
215     return &data;
216 }
217
218 void *QQmlVMEVariant::dataPtr() 
219 {
220     return &data;
221 }
222
223 size_t QQmlVMEVariant::dataSize() const
224 {
225     return sizeof(data);
226 }
227
228 QObject *QQmlVMEVariant::asQObject() 
229 {
230     if (type != QMetaType::QObjectStar)
231         setValue((QObject *)0, 0, -1);
232
233     return *(QQmlGuard<QObject> *)(dataPtr());
234 }
235
236 const QVariant &QQmlVMEVariant::asQVariant() 
237 {
238     if (type != QMetaType::QVariant)
239         setValue(QVariant());
240
241     return *(QVariant *)(dataPtr());
242 }
243
244 int QQmlVMEVariant::asInt() 
245 {
246     if (type != QMetaType::Int)
247         setValue(int(0));
248
249     return *(int *)(dataPtr());
250 }
251
252 bool QQmlVMEVariant::asBool() 
253 {
254     if (type != QMetaType::Bool)
255         setValue(bool(false));
256
257     return *(bool *)(dataPtr());
258 }
259
260 double QQmlVMEVariant::asDouble() 
261 {
262     if (type != QMetaType::Double)
263         setValue(double(0));
264
265     return *(double *)(dataPtr());
266 }
267
268 const QString &QQmlVMEVariant::asQString() 
269 {
270     if (type != QMetaType::QString)
271         setValue(QString());
272
273     return *(QString *)(dataPtr());
274 }
275
276 const QUrl &QQmlVMEVariant::asQUrl() 
277 {
278     if (type != QMetaType::QUrl)
279         setValue(QUrl());
280
281     return *(QUrl *)(dataPtr());
282 }
283
284 const QTime &QQmlVMEVariant::asQTime() 
285 {
286     if (type != QMetaType::QTime)
287         setValue(QTime());
288
289     return *(QTime *)(dataPtr());
290 }
291
292 const QDate &QQmlVMEVariant::asQDate() 
293 {
294     if (type != QMetaType::QDate)
295         setValue(QDate());
296
297     return *(QDate *)(dataPtr());
298 }
299
300 const QDateTime &QQmlVMEVariant::asQDateTime() 
301 {
302     if (type != QMetaType::QDateTime)
303         setValue(QDateTime());
304
305     return *(QDateTime *)(dataPtr());
306 }
307
308 const QRectF &QQmlVMEVariant::asQRectF()
309 {
310     if (type != QMetaType::QRectF)
311         setValue(QRectF());
312
313     return *(QRectF *)(dataPtr());
314 }
315
316 const QSizeF &QQmlVMEVariant::asQSizeF()
317 {
318     if (type != QMetaType::QSizeF)
319         setValue(QSizeF());
320
321     return *(QSizeF *)(dataPtr());
322 }
323
324 const QPointF &QQmlVMEVariant::asQPointF()
325 {
326     if (type != QMetaType::QPointF)
327         setValue(QPointF());
328
329     return *(QPointF *)(dataPtr());
330 }
331
332 const QJSValue &QQmlVMEVariant::asQJSValue()
333 {
334     if (type != qMetaTypeId<QJSValue>())
335         setValue(QJSValue());
336
337     return *(QJSValue *)(dataPtr());
338 }
339
340 void QQmlVMEVariant::setValue(QObject *v, QQmlVMEMetaObject *target, int index)
341 {
342     if (type != QMetaType::QObjectStar) {
343         cleanup();
344         type = QMetaType::QObjectStar;
345         new (dataPtr()) QQmlVMEVariantQObjectPtr(false);
346     }
347     reinterpret_cast<QQmlVMEVariantQObjectPtr*>(dataPtr())->setGuardedValue(v, target, index);
348 }
349
350 void QQmlVMEVariant::setValue(const QVariant &v)
351 {
352     if (type != qMetaTypeId<QVariant>()) {
353         cleanup();
354         type = qMetaTypeId<QVariant>();
355         new (dataPtr()) QVariant(v);
356     } else {
357         *(QVariant *)(dataPtr()) = v;
358     }
359 }
360
361 void QQmlVMEVariant::setValue(int v)
362 {
363     if (type != QMetaType::Int) {
364         cleanup();
365         type = QMetaType::Int;
366     }
367     *(int *)(dataPtr()) = v;
368 }
369
370 void QQmlVMEVariant::setValue(bool v)
371 {
372     if (type != QMetaType::Bool) {
373         cleanup();
374         type = QMetaType::Bool;
375     }
376     *(bool *)(dataPtr()) = v;
377 }
378
379 void QQmlVMEVariant::setValue(double v)
380 {
381     if (type != QMetaType::Double) {
382         cleanup();
383         type = QMetaType::Double;
384     }
385     *(double *)(dataPtr()) = v;
386 }
387
388 void QQmlVMEVariant::setValue(const QString &v)
389 {
390     if (type != QMetaType::QString) {
391         cleanup();
392         type = QMetaType::QString;
393         new (dataPtr()) QString(v);
394     } else {
395         *(QString *)(dataPtr()) = v;
396     }
397 }
398
399 void QQmlVMEVariant::setValue(const QUrl &v)
400 {
401     if (type != QMetaType::QUrl) {
402         cleanup();
403         type = QMetaType::QUrl;
404         new (dataPtr()) QUrl(v);
405     } else {
406         *(QUrl *)(dataPtr()) = v;
407     }
408 }
409
410 void QQmlVMEVariant::setValue(const QTime &v)
411 {
412     if (type != QMetaType::QTime) {
413         cleanup();
414         type = QMetaType::QTime;
415         new (dataPtr()) QTime(v);
416     } else {
417         *(QTime *)(dataPtr()) = v;
418     }
419 }
420
421 void QQmlVMEVariant::setValue(const QDate &v)
422 {
423     if (type != QMetaType::QDate) {
424         cleanup();
425         type = QMetaType::QDate;
426         new (dataPtr()) QDate(v);
427     } else {
428         *(QDate *)(dataPtr()) = v;
429     }
430 }
431
432 void QQmlVMEVariant::setValue(const QDateTime &v)
433 {
434     if (type != QMetaType::QDateTime) {
435         cleanup();
436         type = QMetaType::QDateTime;
437         new (dataPtr()) QDateTime(v);
438     } else {
439         *(QDateTime *)(dataPtr()) = v;
440     }
441 }
442
443 void QQmlVMEVariant::setValue(const QRectF &v)
444 {
445     if (type != QMetaType::QRectF) {
446         cleanup();
447         type = QMetaType::QRectF;
448         new (dataPtr()) QRectF(v);
449     } else {
450         *(QRectF *)(dataPtr()) = v;
451     }
452 }
453
454 void QQmlVMEVariant::setValue(const QPointF &v)
455 {
456     if (type != QMetaType::QPointF) {
457         cleanup();
458         type = QMetaType::QPointF;
459         new (dataPtr()) QPointF(v);
460     } else {
461         *(QPointF *)(dataPtr()) = v;
462     }
463 }
464
465 void QQmlVMEVariant::setValue(const QSizeF &v)
466 {
467     if (type != QMetaType::QSizeF) {
468         cleanup();
469         type = QMetaType::QSizeF;
470         new (dataPtr()) QSizeF(v);
471     } else {
472         *(QSizeF *)(dataPtr()) = v;
473     }
474 }
475
476 void QQmlVMEVariant::setValue(const QJSValue &v)
477 {
478     if (type != qMetaTypeId<QJSValue>()) {
479         cleanup();
480         type = qMetaTypeId<QJSValue>();
481         new (dataPtr()) QJSValue(v);
482     } else {
483         *(QJSValue *)(dataPtr()) = v;
484     }
485 }
486
487 void QQmlVMEVariant::setDataType(int t)
488 {
489     type = t;
490 }
491
492 void QQmlVMEVariant::ensureValueType(int t)
493 {
494     if (type != t) {
495         cleanup();
496         type = t;
497         QQml_valueTypeProvider()->initValueType(t, dataPtr(), dataSize());
498     }
499 }
500
501 QQmlVMEMetaObjectEndpoint::QQmlVMEMetaObjectEndpoint()
502 {
503     setCallback(QQmlNotifierEndpoint::QQmlVMEMetaObjectEndpoint);
504 }
505
506 void QQmlVMEMetaObjectEndpoint_callback(QQmlNotifierEndpoint *e, void **)
507 {
508     QQmlVMEMetaObjectEndpoint *vmee = static_cast<QQmlVMEMetaObjectEndpoint*>(e);
509     vmee->tryConnect();
510 }
511
512 void QQmlVMEMetaObjectEndpoint::tryConnect()
513 {
514     int aliasId = this - metaObject->aliasEndpoints;
515
516     if (metaObject.flag()) {
517         // This is actually notify
518         int sigIdx = metaObject->methodOffset() + aliasId + metaObject->metaData->propertyCount;
519         metaObject->activate(metaObject->object, sigIdx, 0);
520     } else {
521         QQmlVMEMetaData::AliasData *d = metaObject->metaData->aliasData() + aliasId;
522         if (!d->isObjectAlias()) {
523             QQmlContextData *ctxt = metaObject->ctxt;
524             QObject *target = ctxt->idValues[d->contextIdx].data();
525             if (!target)
526                 return;
527
528             if (d->notifySignal != -1)
529                 connect(target, d->notifySignal, ctxt->engine);
530         }
531
532         metaObject.setFlag();
533     }
534 }
535
536 QAbstractDynamicMetaObject *QQmlVMEMetaObject::toDynamicMetaObject(QObject *o)
537 {
538     if (!hasAssignedMetaObjectData) {
539         *static_cast<QMetaObject *>(this) = *cache->createMetaObject();
540
541         if (parent.isT1())
542             this->d.superdata = parent.asT1()->toDynamicMetaObject(o);
543         else
544             this->d.superdata = parent.asT2();
545
546         hasAssignedMetaObjectData = true;
547     }
548
549     return this;
550 }
551
552 QQmlVMEMetaObject::QQmlVMEMetaObject(QObject *obj,
553                                      QQmlPropertyCache *cache,
554                                      const QQmlVMEMetaData *meta)
555 : QV8GCCallback::Node(GcPrologueCallback), object(obj),
556   ctxt(QQmlData::get(obj, true)->outerContext), cache(cache), metaData(meta),
557   hasAssignedMetaObjectData(false), data(0), aliasEndpoints(0), firstVarPropertyIndex(-1),
558   varPropertiesInitialized(false), interceptors(0), v8methods(0)
559 {
560     QObjectPrivate *op = QObjectPrivate::get(obj);
561
562     if (op->metaObject) parent = op->metaObject;
563     else parent = obj->metaObject();
564
565     op->metaObject = this;
566     QQmlData::get(obj)->hasVMEMetaObject = true;
567
568     data = new QQmlVMEVariant[metaData->propertyCount - metaData->varPropertyCount];
569
570     aConnected.resize(metaData->aliasCount);
571     int list_type = qMetaTypeId<QQmlListProperty<QObject> >();
572     int qobject_type = qMetaTypeId<QObject*>();
573     int variant_type = qMetaTypeId<QVariant>();
574     bool needsGcCallback = (metaData->varPropertyCount > 0);
575
576     // ### Optimize
577     for (int ii = 0; ii < metaData->propertyCount - metaData->varPropertyCount; ++ii) {
578         int t = (metaData->propertyData() + ii)->propertyType;
579         if (t == list_type) {
580             listProperties.append(List(methodOffset() + ii, this));
581             data[ii].setValue(listProperties.count() - 1);
582         } else if (!needsGcCallback && (t == qobject_type || t == variant_type)) {
583             needsGcCallback = true;
584         }
585     }
586
587     firstVarPropertyIndex = metaData->propertyCount - metaData->varPropertyCount;
588
589     // both var properties and variant properties can keep references to
590     // other QObjects, and var properties can also keep references to
591     // JavaScript objects.  If we have any properties, we need to hook
592     // the gc() to ensure that references keep objects alive as needed.
593     if (needsGcCallback) {
594         QV8GCCallback::addGcCallbackNode(this);
595     }
596 }
597
598 QQmlVMEMetaObject::~QQmlVMEMetaObject()
599 {
600     if (parent.isT1()) parent.asT1()->objectDestroyed(object);
601     delete [] data;
602     delete [] aliasEndpoints;
603
604     for (int ii = 0; v8methods && ii < metaData->methodCount; ++ii) {
605         qPersistentDispose(v8methods[ii]);
606     }
607     delete [] v8methods;
608
609     if (metaData->varPropertyCount)
610         qPersistentDispose(varProperties); // if not weak, will not have been cleaned up by the callback.
611
612     qDeleteAll(varObjectGuards);
613 }
614
615 int QQmlVMEMetaObject::metaCall(QMetaObject::Call c, int _id, void **a)
616 {
617     int id = _id;
618     if (c == QMetaObject::WriteProperty && interceptors &&
619        !(*reinterpret_cast<int*>(a[3]) & QQmlPropertyPrivate::BypassInterceptor)) {
620
621         for (QQmlPropertyValueInterceptor *vi = interceptors; vi; vi = vi->m_next) {
622             if (vi->m_coreIndex != id)
623                 continue;
624
625             int valueIndex = vi->m_valueTypeCoreIndex;
626             int type = QQmlData::get(object)->propertyCache->property(id)->propType;
627
628             if (type != QVariant::Invalid) {
629                 if (valueIndex != -1) {
630                     QQmlValueType *valueType = QQmlValueTypeFactory::valueType(type);
631                     Q_ASSERT(valueType);
632
633                     //
634                     // Consider the following case:
635                     //  color c = { 0.1, 0.2, 0.3 }
636                     //  interceptor exists on c.r
637                     //  write { 0.2, 0.4, 0.6 }
638                     //
639                     // The interceptor may choose not to update the r component at this
640                     // point (for example, a behavior that creates an animation). But we
641                     // need to ensure that the g and b components are updated correctly.
642                     //
643                     // So we need to perform a full write where the value type is:
644                     //    r = old value, g = new value, b = new value
645                     //
646                     // And then call the interceptor which may or may not write the
647                     // new value to the r component.
648                     //
649                     // This will ensure that the other components don't contain stale data
650                     // and any relevant signals are emitted.
651                     //
652                     // To achieve this:
653                     //   (1) Store the new value type as a whole (needed due to
654                     //       aliasing between a[0] and static storage in value type).
655                     //   (2) Read the entire existing value type from object -> valueType temp.
656                     //   (3) Read the previous value of the component being changed
657                     //       from the valueType temp.
658                     //   (4) Write the entire new value type into the temp.
659                     //   (5) Overwrite the component being changed with the old value.
660                     //   (6) Perform a full write to the value type (which may emit signals etc).
661                     //   (7) Issue the interceptor call with the new component value.
662                     //
663
664                     QMetaProperty valueProp = valueType->metaObject()->property(valueIndex);
665                     QVariant newValue(type, a[0]);
666
667                     valueType->read(object, id);
668                     QVariant prevComponentValue = valueProp.read(valueType);
669
670                     valueType->setValue(newValue);
671                     QVariant newComponentValue = valueProp.read(valueType);
672
673                     // Don't apply the interceptor if the intercepted value has not changed
674                     bool updated = false;
675                     if (newComponentValue != prevComponentValue) {
676                         valueProp.write(valueType, prevComponentValue);
677                         valueType->write(object, id, QQmlPropertyPrivate::DontRemoveBinding | QQmlPropertyPrivate::BypassInterceptor);
678
679                         vi->write(newComponentValue);
680                         updated = true;
681                     }
682
683                     if (updated)
684                         return -1;
685                 } else {
686                     vi->write(QVariant(type, a[0]));
687                     return -1;
688                 }
689             }
690         }
691     }
692     if (c == QMetaObject::ReadProperty || c == QMetaObject::WriteProperty || c == QMetaObject::ResetProperty) {
693         if (id >= propOffset()) {
694             id -= propOffset();
695
696             if (id < metaData->propertyCount) {
697                int t = (metaData->propertyData() + id)->propertyType;
698                 bool needActivate = false;
699
700                 if (id >= firstVarPropertyIndex) {
701                     Q_ASSERT(t == QMetaType::QVariant);
702                     // the context can be null if accessing var properties from cpp after re-parenting an item.
703                     QQmlEnginePrivate *ep = (ctxt == 0 || ctxt->engine == 0) ? 0 : QQmlEnginePrivate::get(ctxt->engine);
704                     QV8Engine *v8e = (ep == 0) ? 0 : ep->v8engine();
705                     if (v8e) {
706                         v8::HandleScope handleScope;
707                         v8::Context::Scope contextScope(v8e->context());
708                         if (c == QMetaObject::ReadProperty) {
709                             *reinterpret_cast<QVariant *>(a[0]) = readPropertyAsVariant(id);
710                         } else if (c == QMetaObject::WriteProperty) {
711                             writeProperty(id, *reinterpret_cast<QVariant *>(a[0]));
712                         }
713                     } else if (c == QMetaObject::ReadProperty) {
714                         // if the context was disposed, we just return an invalid variant from read.
715                         *reinterpret_cast<QVariant *>(a[0]) = QVariant();
716                     }
717
718                 } else {
719
720                     if (c == QMetaObject::ReadProperty) {
721                         switch(t) {
722                         case QVariant::Int:
723                             *reinterpret_cast<int *>(a[0]) = data[id].asInt();
724                             break;
725                         case QVariant::Bool:
726                             *reinterpret_cast<bool *>(a[0]) = data[id].asBool();
727                             break;
728                         case QVariant::Double:
729                             *reinterpret_cast<double *>(a[0]) = data[id].asDouble();
730                             break;
731                         case QVariant::String:
732                             *reinterpret_cast<QString *>(a[0]) = data[id].asQString();
733                             break;
734                         case QVariant::Url:
735                             *reinterpret_cast<QUrl *>(a[0]) = data[id].asQUrl();
736                             break;
737                         case QVariant::Date:
738                             *reinterpret_cast<QDate *>(a[0]) = data[id].asQDate();
739                             break;
740                         case QVariant::DateTime:
741                             *reinterpret_cast<QDateTime *>(a[0]) = data[id].asQDateTime();
742                             break;
743                         case QVariant::RectF:
744                             *reinterpret_cast<QRectF *>(a[0]) = data[id].asQRectF();
745                             break;
746                         case QVariant::SizeF:
747                             *reinterpret_cast<QSizeF *>(a[0]) = data[id].asQSizeF();
748                             break;
749                         case QVariant::PointF:
750                             *reinterpret_cast<QPointF *>(a[0]) = data[id].asQPointF();
751                             break;
752                         case QMetaType::QObjectStar:
753                             *reinterpret_cast<QObject **>(a[0]) = data[id].asQObject();
754                             break;
755                         case QMetaType::QVariant:
756                             *reinterpret_cast<QVariant *>(a[0]) = readPropertyAsVariant(id);
757                             break;
758                         default:
759                             QQml_valueTypeProvider()->readValueType(data[id].dataType(), data[id].dataPtr(), data->dataSize(), t, a[0]);
760                             break;
761                         }
762                         if (t == qMetaTypeId<QQmlListProperty<QObject> >()) {
763                             int listIndex = data[id].asInt();
764                             const List *list = &listProperties.at(listIndex);
765                             *reinterpret_cast<QQmlListProperty<QObject> *>(a[0]) = 
766                                 QQmlListProperty<QObject>(object, (void *)list,
767                                                                   list_append, list_count, list_at, 
768                                                                   list_clear);
769                         }
770
771                     } else if (c == QMetaObject::WriteProperty) {
772
773                         switch(t) {
774                         case QVariant::Int:
775                             needActivate = *reinterpret_cast<int *>(a[0]) != data[id].asInt();
776                             data[id].setValue(*reinterpret_cast<int *>(a[0]));
777                             break;
778                         case QVariant::Bool:
779                             needActivate = *reinterpret_cast<bool *>(a[0]) != data[id].asBool();
780                             data[id].setValue(*reinterpret_cast<bool *>(a[0]));
781                             break;
782                         case QVariant::Double:
783                             needActivate = *reinterpret_cast<double *>(a[0]) != data[id].asDouble();
784                             data[id].setValue(*reinterpret_cast<double *>(a[0]));
785                             break;
786                         case QVariant::String:
787                             needActivate = *reinterpret_cast<QString *>(a[0]) != data[id].asQString();
788                             data[id].setValue(*reinterpret_cast<QString *>(a[0]));
789                             break;
790                         case QVariant::Url:
791                             needActivate = *reinterpret_cast<QUrl *>(a[0]) != data[id].asQUrl();
792                             data[id].setValue(*reinterpret_cast<QUrl *>(a[0]));
793                             break;
794                         case QVariant::Date:
795                             needActivate = *reinterpret_cast<QDate *>(a[0]) != data[id].asQDate();
796                             data[id].setValue(*reinterpret_cast<QDate *>(a[0]));
797                             break;
798                         case QVariant::DateTime:
799                             needActivate = *reinterpret_cast<QDateTime *>(a[0]) != data[id].asQDateTime();
800                             data[id].setValue(*reinterpret_cast<QDateTime *>(a[0]));
801                             break;
802                         case QVariant::RectF:
803                             needActivate = *reinterpret_cast<QRectF *>(a[0]) != data[id].asQRectF();
804                             data[id].setValue(*reinterpret_cast<QRectF *>(a[0]));
805                             break;
806                         case QVariant::SizeF:
807                             needActivate = *reinterpret_cast<QSizeF *>(a[0]) != data[id].asQSizeF();
808                             data[id].setValue(*reinterpret_cast<QSizeF *>(a[0]));
809                             break;
810                         case QVariant::PointF:
811                             needActivate = *reinterpret_cast<QPointF *>(a[0]) != data[id].asQPointF();
812                             data[id].setValue(*reinterpret_cast<QPointF *>(a[0]));
813                             break;
814                         case QMetaType::QObjectStar:
815                             needActivate = *reinterpret_cast<QObject **>(a[0]) != data[id].asQObject();
816                             data[id].setValue(*reinterpret_cast<QObject **>(a[0]), this, id);
817                             break;
818                         case QMetaType::QVariant:
819                             writeProperty(id, *reinterpret_cast<QVariant *>(a[0]));
820                             break;
821                         default:
822                             data[id].ensureValueType(t);
823                             needActivate = !QQml_valueTypeProvider()->equalValueType(t, a[0], data[id].dataPtr(), data[id].dataSize());
824                             QQml_valueTypeProvider()->writeValueType(t, a[0], data[id].dataPtr(), data[id].dataSize());
825                             break;
826                         }
827                     }
828
829                 }
830
831                 if (c == QMetaObject::WriteProperty && needActivate) {
832                     activate(object, methodOffset() + id, 0);
833                 }
834
835                 return -1;
836             }
837
838             id -= metaData->propertyCount;
839
840             if (id < metaData->aliasCount) {
841
842                 QQmlVMEMetaData::AliasData *d = metaData->aliasData() + id;
843
844                 if (d->flags & QML_ALIAS_FLAG_PTR && c == QMetaObject::ReadProperty) 
845                         *reinterpret_cast<void **>(a[0]) = 0;
846
847                 if (!ctxt) return -1;
848
849                 QQmlContext *context = ctxt->asQQmlContext();
850                 QQmlContextPrivate *ctxtPriv = QQmlContextPrivate::get(context);
851
852                 QObject *target = ctxtPriv->data->idValues[d->contextIdx].data();
853                 if (!target) 
854                     return -1;
855
856                 connectAlias(id);
857
858                 if (d->isObjectAlias()) {
859                     *reinterpret_cast<QObject **>(a[0]) = target;
860                     return -1;
861                 } 
862                 
863                 // Remove binding (if any) on write
864                 if(c == QMetaObject::WriteProperty) {
865                     int flags = *reinterpret_cast<int*>(a[3]);
866                     if (flags & QQmlPropertyPrivate::RemoveBindingOnAliasWrite) {
867                         QQmlData *targetData = QQmlData::get(target);
868                         if (targetData && targetData->hasBindingBit(d->propertyIndex())) {
869                             QQmlAbstractBinding *binding = QQmlPropertyPrivate::setBinding(target, d->propertyIndex(), d->isValueTypeAlias()?d->valueTypeIndex():-1, 0);
870                             if (binding) binding->destroy();
871                         }
872                     }
873                 }
874                 
875                 if (d->isValueTypeAlias()) {
876                     // Value type property
877                     QQmlValueType *valueType = QQmlValueTypeFactory::valueType(d->valueType());
878                     Q_ASSERT(valueType);
879
880                     valueType->read(target, d->propertyIndex());
881                     int rv = QMetaObject::metacall(valueType, c, d->valueTypeIndex(), a);
882                     
883                     if (c == QMetaObject::WriteProperty)
884                         valueType->write(target, d->propertyIndex(), 0x00);
885
886                     return rv;
887
888                 } else {
889                     return QMetaObject::metacall(target, c, d->propertyIndex(), a);
890                 }
891
892             }
893             return -1;
894
895         }
896
897     } else if(c == QMetaObject::InvokeMetaMethod) {
898
899         if (id >= methodOffset()) {
900
901             id -= methodOffset();
902             int plainSignals = metaData->signalCount + metaData->propertyCount +
903                                metaData->aliasCount;
904             if (id < plainSignals) {
905                 activate(object, _id, a);
906                 return -1;
907             }
908
909             id -= plainSignals;
910
911             if (id < metaData->methodCount) {
912                 if (!ctxt->engine)
913                     return -1; // We can't run the method
914
915                 QQmlEnginePrivate *ep = QQmlEnginePrivate::get(ctxt->engine);
916                 ep->referenceScarceResources(); // "hold" scarce resources in memory during evaluation.
917
918                 v8::Handle<v8::Function> function = method(id);
919                 if (function.IsEmpty()) {
920                     // The function was not compiled.  There are some exceptional cases which the
921                     // expression rewriter does not rewrite properly (e.g., \r-terminated lines
922                     // are not rewritten correctly but this bug is deemed out-of-scope to fix for
923                     // performance reasons; see QTBUG-24064) and thus compilation will have failed.
924                     QQmlError e;
925                     e.setDescription(QString(QLatin1String("Exception occurred during compilation of function: %1")).
926                                      arg(QLatin1String(QMetaObject::method(_id).methodSignature().constData())));
927                     ep->warning(e);
928                     return -1; // The dynamic method with that id is not available.
929                 }
930
931                 QQmlVMEMetaData::MethodData *data = metaData->methodData() + id;
932
933                 v8::HandleScope handle_scope;
934                 v8::Context::Scope scope(ep->v8engine()->context());
935                 v8::Handle<v8::Value> *args = 0;
936
937                 if (data->parameterCount) {
938                     args = new v8::Handle<v8::Value>[data->parameterCount];
939                     for (int ii = 0; ii < data->parameterCount; ++ii) 
940                         args[ii] = ep->v8engine()->fromVariant(*(QVariant *)a[ii + 1]);
941                 }
942
943                 v8::TryCatch try_catch;
944
945                 v8::Local<v8::Value> result = function->Call(ep->v8engine()->global(), data->parameterCount, args);
946
947                 QVariant rv;
948                 if (try_catch.HasCaught()) {
949                     QQmlError error;
950                     QQmlExpressionPrivate::exceptionToError(try_catch.Message(), error);
951                     if (error.isValid())
952                         ep->warning(error);
953                     if (a[0]) *(QVariant *)a[0] = QVariant();
954                 } else {
955                     if (a[0]) *(QVariant *)a[0] = ep->v8engine()->toVariant(result, 0);
956                 }
957
958                 ep->dereferenceScarceResources(); // "release" scarce resources if top-level expression evaluation is complete.
959                 return -1;
960             }
961             return -1;
962         }
963     }
964
965     if (parent.isT1())
966         return parent.asT1()->metaCall(object, c, _id, a);
967     else
968         return object->qt_metacall(c, _id, a);
969 }
970
971 v8::Handle<v8::Function> QQmlVMEMetaObject::method(int index)
972 {
973     if (!ctxt || !ctxt->isValid()) {
974         qWarning("QQmlVMEMetaObject: Internal error - attempted to evaluate a function in an invalid context");
975         return v8::Handle<v8::Function>();
976     }
977
978     if (!v8methods) 
979         v8methods = new v8::Persistent<v8::Function>[metaData->methodCount];
980
981     if (v8methods[index].IsEmpty()) {
982         QQmlVMEMetaData::MethodData *data = metaData->methodData() + index;
983
984         const char *body = ((const char*)metaData) + data->bodyOffset;
985         int bodyLength = data->bodyLength;
986
987         // XXX We should evaluate all methods in a single big script block to 
988         // improve the call time between dynamic methods defined on the same
989         // object
990         v8methods[index] = QQmlExpressionPrivate::evalFunction(ctxt, object, body,
991                                                                        bodyLength,
992                                                                        ctxt->urlString,
993                                                                        data->lineNumber);
994     }
995
996     return v8methods[index];
997 }
998
999 v8::Handle<v8::Value> QQmlVMEMetaObject::readVarProperty(int id)
1000 {
1001     Q_ASSERT(id >= firstVarPropertyIndex);
1002
1003     if (ensureVarPropertiesAllocated())
1004         return varProperties->Get(id - firstVarPropertyIndex);
1005     return v8::Handle<v8::Value>();
1006 }
1007
1008 QVariant QQmlVMEMetaObject::readPropertyAsVariant(int id)
1009 {
1010     if (id >= firstVarPropertyIndex) {
1011         if (ensureVarPropertiesAllocated())
1012             return QQmlEnginePrivate::get(ctxt->engine)->v8engine()->toVariant(varProperties->Get(id - firstVarPropertyIndex), -1);
1013         return QVariant();
1014     } else {
1015         if (data[id].dataType() == QMetaType::QObjectStar) {
1016             return QVariant::fromValue(data[id].asQObject());
1017         } else {
1018             return data[id].asQVariant();
1019         }
1020     }
1021 }
1022
1023 void QQmlVMEMetaObject::writeVarProperty(int id, v8::Handle<v8::Value> value)
1024 {
1025     Q_ASSERT(id >= firstVarPropertyIndex);
1026     if (!ensureVarPropertiesAllocated())
1027         return;
1028
1029     // Importantly, if the current value is a scarce resource, we need to ensure that it
1030     // gets automatically released by the engine if no other references to it exist.
1031     v8::Local<v8::Value> oldv = varProperties->Get(id - firstVarPropertyIndex);
1032     if (oldv->IsObject()) {
1033         QV8VariantResource *r = v8_resource_cast<QV8VariantResource>(v8::Handle<v8::Object>::Cast(oldv));
1034         if (r) {
1035             r->removeVmePropertyReference();
1036         }
1037     }
1038
1039     QObject *valueObject = 0;
1040     QQmlVMEVariantQObjectPtr *guard = getQObjectGuardForProperty(id);
1041
1042     if (value->IsObject()) {
1043         // And, if the new value is a scarce resource, we need to ensure that it does not get
1044         // automatically released by the engine until no other references to it exist.
1045         if (QV8VariantResource *r = v8_resource_cast<QV8VariantResource>(v8::Handle<v8::Object>::Cast(value))) {
1046             r->addVmePropertyReference();
1047         } else if (QV8QObjectResource *r = v8_resource_cast<QV8QObjectResource>(v8::Handle<v8::Object>::Cast(value))) {
1048             // We need to track this QObject to signal its deletion
1049             valueObject = r->object;
1050
1051             // Do we already have a QObject guard for this property?
1052             if (valueObject && !guard) {
1053                 guard = new QQmlVMEVariantQObjectPtr(true);
1054                 varObjectGuards.append(guard);
1055             }
1056         }
1057     }
1058
1059     if (guard) {
1060         guard->setGuardedValue(valueObject, this, id);
1061     }
1062
1063     // Write the value and emit change signal as appropriate.
1064     varProperties->Set(id - firstVarPropertyIndex, value);
1065     activate(object, methodOffset() + id, 0);
1066 }
1067
1068 void QQmlVMEMetaObject::writeProperty(int id, const QVariant &value)
1069 {
1070     if (id >= firstVarPropertyIndex) {
1071         if (!ensureVarPropertiesAllocated())
1072             return;
1073
1074         // Importantly, if the current value is a scarce resource, we need to ensure that it
1075         // gets automatically released by the engine if no other references to it exist.
1076         v8::Local<v8::Value> oldv = varProperties->Get(id - firstVarPropertyIndex);
1077         if (oldv->IsObject()) {
1078             QV8VariantResource *r = v8_resource_cast<QV8VariantResource>(v8::Handle<v8::Object>::Cast(oldv));
1079             if (r) {
1080                 r->removeVmePropertyReference();
1081             }
1082         }
1083
1084         // And, if the new value is a scarce resource, we need to ensure that it does not get
1085         // automatically released by the engine until no other references to it exist.
1086         v8::Handle<v8::Value> newv = QQmlEnginePrivate::get(ctxt->engine)->v8engine()->fromVariant(value);
1087         if (newv->IsObject()) {
1088             QV8VariantResource *r = v8_resource_cast<QV8VariantResource>(v8::Handle<v8::Object>::Cast(newv));
1089             if (r) {
1090                 r->addVmePropertyReference();
1091             }
1092         }
1093
1094         // Write the value and emit change signal as appropriate.
1095         QVariant currentValue = readPropertyAsVariant(id);
1096         varProperties->Set(id - firstVarPropertyIndex, newv);
1097         if ((currentValue.userType() != value.userType() || currentValue != value))
1098             activate(object, methodOffset() + id, 0);
1099     } else {
1100         bool needActivate = false;
1101         if (value.userType() == QMetaType::QObjectStar) {
1102             QObject *o = *(QObject **)value.data();
1103             needActivate = (data[id].dataType() != QMetaType::QObjectStar || data[id].asQObject() != o);
1104             data[id].setValue(o, this, id);
1105         } else {
1106             needActivate = (data[id].dataType() != qMetaTypeId<QVariant>() ||
1107                             data[id].asQVariant().userType() != value.userType() ||
1108                             data[id].asQVariant() != value);
1109             data[id].setValue(value);
1110         }
1111
1112         if (needActivate)
1113             activate(object, methodOffset() + id, 0);
1114     }
1115 }
1116
1117 void QQmlVMEMetaObject::listChanged(int id)
1118 {
1119     activate(object, methodOffset() + id, 0);
1120 }
1121
1122 void QQmlVMEMetaObject::list_append(QQmlListProperty<QObject> *prop, QObject *o)
1123 {
1124     List *list = static_cast<List *>(prop->data);
1125     list->append(o);
1126     list->mo->activate(prop->object, list->notifyIndex, 0);
1127 }
1128
1129 int QQmlVMEMetaObject::list_count(QQmlListProperty<QObject> *prop)
1130 {
1131     return static_cast<List *>(prop->data)->count();
1132 }
1133
1134 QObject *QQmlVMEMetaObject::list_at(QQmlListProperty<QObject> *prop, int index)
1135 {
1136     return static_cast<List *>(prop->data)->at(index);
1137 }
1138
1139 void QQmlVMEMetaObject::list_clear(QQmlListProperty<QObject> *prop)
1140 {
1141     List *list = static_cast<List *>(prop->data);
1142     list->clear();
1143     list->mo->activate(prop->object, list->notifyIndex, 0);
1144 }
1145
1146 void QQmlVMEMetaObject::registerInterceptor(int index, int valueIndex, QQmlPropertyValueInterceptor *interceptor)
1147 {
1148     interceptor->m_coreIndex = index;
1149     interceptor->m_valueTypeCoreIndex = valueIndex;
1150     interceptor->m_next = interceptors;
1151     interceptors = interceptor;
1152 }
1153
1154 quint16 QQmlVMEMetaObject::vmeMethodLineNumber(int index)
1155 {
1156     if (index < methodOffset()) {
1157         Q_ASSERT(parent.isT1());
1158         return static_cast<QQmlVMEMetaObject *>(parent.asT1())->vmeMethodLineNumber(index);
1159     }
1160
1161     int plainSignals = metaData->signalCount + metaData->propertyCount + metaData->aliasCount;
1162     Q_ASSERT(index >= (methodOffset() + plainSignals) && index < (methodOffset() + plainSignals + metaData->methodCount));
1163
1164     int rawIndex = index - methodOffset() - plainSignals;
1165
1166     QQmlVMEMetaData::MethodData *data = metaData->methodData() + rawIndex;
1167     return data->lineNumber;
1168 }
1169
1170 v8::Handle<v8::Function> QQmlVMEMetaObject::vmeMethod(int index)
1171 {
1172     if (index < methodOffset()) {
1173         Q_ASSERT(parent.isT1());
1174         return static_cast<QQmlVMEMetaObject *>(parent.asT1())->vmeMethod(index);
1175     }
1176     int plainSignals = metaData->signalCount + metaData->propertyCount + metaData->aliasCount;
1177     Q_ASSERT(index >= (methodOffset() + plainSignals) && index < (methodOffset() + plainSignals + metaData->methodCount));
1178     return method(index - methodOffset() - plainSignals);
1179 }
1180
1181 // Used by debugger
1182 void QQmlVMEMetaObject::setVmeMethod(int index, v8::Persistent<v8::Function> value)
1183 {
1184     if (index < methodOffset()) {
1185         Q_ASSERT(parent.isT1());
1186         return static_cast<QQmlVMEMetaObject *>(parent.asT1())->setVmeMethod(index, value);
1187     }
1188     int plainSignals = metaData->signalCount + metaData->propertyCount + metaData->aliasCount;
1189     Q_ASSERT(index >= (methodOffset() + plainSignals) && index < (methodOffset() + plainSignals + metaData->methodCount));
1190
1191     if (!v8methods) 
1192         v8methods = new v8::Persistent<v8::Function>[metaData->methodCount];
1193
1194     int methodIndex = index - methodOffset() - plainSignals;
1195     if (!v8methods[methodIndex].IsEmpty()) 
1196         qPersistentDispose(v8methods[methodIndex]);
1197     v8methods[methodIndex] = value;
1198 }
1199
1200 v8::Handle<v8::Value> QQmlVMEMetaObject::vmeProperty(int index)
1201 {
1202     if (index < propOffset()) {
1203         Q_ASSERT(parent.isT1());
1204         return static_cast<QQmlVMEMetaObject *>(parent.asT1())->vmeProperty(index);
1205     }
1206     return readVarProperty(index - propOffset());
1207 }
1208
1209 void QQmlVMEMetaObject::setVMEProperty(int index, v8::Handle<v8::Value> v)
1210 {
1211     if (index < propOffset()) {
1212         Q_ASSERT(parent.isT1());
1213         static_cast<QQmlVMEMetaObject *>(parent.asT1())->setVMEProperty(index, v);
1214         return;
1215     }
1216     return writeVarProperty(index - propOffset(), v);
1217 }
1218
1219 bool QQmlVMEMetaObject::ensureVarPropertiesAllocated()
1220 {
1221     if (!varPropertiesInitialized)
1222         allocateVarPropertiesArray();
1223
1224     // in some situations, the QObject's v8object (and associated v8 data,
1225     // such as the varProperties array) will have been cleaned up, but the
1226     // QObject ptr will not yet have been deleted (eg, waiting on deleteLater).
1227     // In this situation, the varProperties handle will be (and should remain)
1228     // empty.
1229     return !varProperties.IsEmpty();
1230 }
1231
1232 // see also: QV8GCCallback::garbageCollectorPrologueCallback()
1233 void QQmlVMEMetaObject::allocateVarPropertiesArray()
1234 {
1235     v8::HandleScope handleScope;
1236     v8::Context::Scope cs(QQmlEnginePrivate::get(ctxt->engine)->v8engine()->context());
1237     varProperties = qPersistentNew(v8::Array::New(metaData->varPropertyCount));
1238     varProperties.MakeWeak(static_cast<void*>(this), VarPropertiesWeakReferenceCallback);
1239     varPropertiesInitialized = true;
1240 }
1241
1242 /*
1243    The "var" properties are stored in a v8::Array which will be strong persistent if the object has cpp-ownership
1244    and the root QObject in the parent chain does not have JS-ownership.  In the weak persistent handle case,
1245    this callback will dispose the handle when the v8object which owns the lifetime of the var properties array
1246    is cleared as a result of all other handles to that v8object being released.
1247    See QV8GCCallback::garbageCollectorPrologueCallback() for more information.
1248  */
1249 void QQmlVMEMetaObject::VarPropertiesWeakReferenceCallback(v8::Persistent<v8::Value> object, void* parameter)
1250 {
1251     QQmlVMEMetaObject *vmemo = static_cast<QQmlVMEMetaObject*>(parameter);
1252     Q_ASSERT(vmemo);
1253     qPersistentDispose(object);
1254     vmemo->varProperties.Clear();
1255 }
1256
1257 void QQmlVMEMetaObject::GcPrologueCallback(QV8GCCallback::Node *node)
1258 {
1259     QQmlVMEMetaObject *vmemo = static_cast<QQmlVMEMetaObject*>(node);
1260     Q_ASSERT(vmemo);
1261
1262     if (!vmemo->ctxt || !vmemo->ctxt->engine)
1263         return;
1264     QQmlEnginePrivate *ep = QQmlEnginePrivate::get(vmemo->ctxt->engine);
1265
1266     // add references created by VMEVariant properties
1267     int maxDataIdx = vmemo->metaData->propertyCount - vmemo->metaData->varPropertyCount;
1268     for (int ii = 0; ii < maxDataIdx; ++ii) { // XXX TODO: optimise?
1269         if (vmemo->data[ii].dataType() == QMetaType::QObjectStar) {
1270             // possible QObject reference.
1271             QObject *ref = vmemo->data[ii].asQObject();
1272             if (ref) {
1273                 ep->v8engine()->addRelationshipForGC(vmemo->object, ref);
1274             }
1275         }
1276     }
1277
1278     // add references created by var properties
1279     if (!vmemo->varPropertiesInitialized || vmemo->varProperties.IsEmpty())
1280         return;
1281     ep->v8engine()->addRelationshipForGC(vmemo->object, vmemo->varProperties);
1282 }
1283
1284 bool QQmlVMEMetaObject::aliasTarget(int index, QObject **target, int *coreIndex, int *valueTypeIndex) const
1285 {
1286     Q_ASSERT(index >= propOffset() + metaData->propertyCount);
1287
1288     *target = 0;
1289     *coreIndex = -1;
1290     *valueTypeIndex = -1;
1291
1292     if (!ctxt)
1293         return false;
1294
1295     QQmlVMEMetaData::AliasData *d = metaData->aliasData() + (index - propOffset() - metaData->propertyCount);
1296     QQmlContext *context = ctxt->asQQmlContext();
1297     QQmlContextPrivate *ctxtPriv = QQmlContextPrivate::get(context);
1298
1299     *target = ctxtPriv->data->idValues[d->contextIdx].data();
1300     if (!*target)
1301         return false;
1302
1303     if (d->isObjectAlias()) {
1304     } else if (d->isValueTypeAlias()) {
1305         *coreIndex = d->propertyIndex();
1306         *valueTypeIndex = d->valueTypeIndex();
1307     } else {
1308         *coreIndex = d->propertyIndex();
1309     }
1310
1311     return true;
1312 }
1313
1314 void QQmlVMEMetaObject::connectAlias(int aliasId)
1315 {
1316     if (!aConnected.testBit(aliasId)) {
1317
1318         if (!aliasEndpoints)
1319             aliasEndpoints = new QQmlVMEMetaObjectEndpoint[metaData->aliasCount];
1320
1321         aConnected.setBit(aliasId);
1322
1323         QQmlVMEMetaData::AliasData *d = metaData->aliasData() + aliasId;
1324
1325         QQmlVMEMetaObjectEndpoint *endpoint = aliasEndpoints + aliasId;
1326         endpoint->metaObject = this;
1327
1328         endpoint->connect(&ctxt->idValues[d->contextIdx].bindings);
1329
1330         endpoint->tryConnect();
1331     }
1332 }
1333
1334 void QQmlVMEMetaObject::connectAliasSignal(int index, bool indexInSignalRange)
1335 {
1336     int aliasId = (index - (indexInSignalRange ? signalOffset() : methodOffset())) - metaData->propertyCount;
1337     if (aliasId < 0 || aliasId >= metaData->aliasCount)
1338         return;
1339
1340     connectAlias(aliasId);
1341 }
1342
1343 /*! \internal
1344     \a index is in the method index range (QMetaMethod::methodIndex()).
1345 */
1346 void QQmlVMEMetaObject::activate(QObject *object, int index, void **args)
1347 {
1348     QMetaObject::activate(object, signalOffset(), index - methodOffset(), args);
1349 }
1350
1351 QQmlVMEMetaObject *QQmlVMEMetaObject::getForProperty(QObject *o, int coreIndex)
1352 {
1353     QQmlVMEMetaObject *vme = QQmlVMEMetaObject::get(o);
1354     while (vme->propOffset() > coreIndex) {
1355         Q_ASSERT(vme->parent.isT1());
1356         vme = static_cast<QQmlVMEMetaObject *>(vme->parent.asT1());
1357     }
1358     return vme;
1359 }
1360
1361 QQmlVMEMetaObject *QQmlVMEMetaObject::getForMethod(QObject *o, int coreIndex)
1362 {
1363     QQmlVMEMetaObject *vme = QQmlVMEMetaObject::get(o);
1364     while (vme->methodOffset() > coreIndex) {
1365         Q_ASSERT(vme->parent.isT1());
1366         vme = static_cast<QQmlVMEMetaObject *>(vme->parent.asT1());
1367     }
1368     return vme;
1369 }
1370
1371 /*! \internal
1372     \a coreIndex is in the signal index range (see QObjectPrivate::signalIndex()).
1373     This is different from QMetaMethod::methodIndex().
1374 */
1375 QQmlVMEMetaObject *QQmlVMEMetaObject::getForSignal(QObject *o, int coreIndex)
1376 {
1377     QQmlVMEMetaObject *vme = QQmlVMEMetaObject::get(o);
1378     while (vme->signalOffset() > coreIndex) {
1379         Q_ASSERT(vme->parent.isT1());
1380         vme = static_cast<QQmlVMEMetaObject *>(vme->parent.asT1());
1381     }
1382     return vme;
1383 }
1384
1385 QQmlVMEVariantQObjectPtr *QQmlVMEMetaObject::getQObjectGuardForProperty(int index) const
1386 {
1387     QList<QQmlVMEVariantQObjectPtr *>::ConstIterator it = varObjectGuards.constBegin(), end = varObjectGuards.constEnd();
1388     for ( ; it != end; ++it) {
1389         if ((*it)->m_index == index) {
1390             return *it;
1391         }
1392     }
1393
1394     return 0;
1395 }
1396
1397 QT_END_NAMESPACE