1 /****************************************************************************
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
7 ** This file is part of the QtDeclarative module of the Qt Toolkit.
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.
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.
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.
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.
40 ****************************************************************************/
42 #include "private/qdeclarativevmemetaobject_p.h"
44 #include "qdeclarative.h"
45 #include "private/qdeclarativerefcount_p.h"
46 #include "qdeclarativeexpression.h"
47 #include "private/qdeclarativeexpression_p.h"
48 #include "private/qdeclarativecontext_p.h"
49 #include "private/qdeclarativebinding_p.h"
51 Q_DECLARE_METATYPE(QJSValue);
55 class QDeclarativeVMEVariant
58 inline QDeclarativeVMEVariant();
59 inline ~QDeclarativeVMEVariant();
61 inline const void *dataPtr() const;
62 inline void *dataPtr();
63 inline int dataType() const;
65 inline QObject *asQObject();
66 inline const QVariant &asQVariant();
69 inline double asDouble();
70 inline const QString &asQString();
71 inline const QUrl &asQUrl();
72 inline const QColor &asQColor();
73 inline const QTime &asQTime();
74 inline const QDate &asQDate();
75 inline const QDateTime &asQDateTime();
76 inline const QJSValue &asQJSValue();
78 inline void setValue(QObject *);
79 inline void setValue(const QVariant &);
80 inline void setValue(int);
81 inline void setValue(bool);
82 inline void setValue(double);
83 inline void setValue(const QString &);
84 inline void setValue(const QUrl &);
85 inline void setValue(const QColor &);
86 inline void setValue(const QTime &);
87 inline void setValue(const QDate &);
88 inline void setValue(const QDateTime &);
89 inline void setValue(const QJSValue &);
92 void *data[4]; // Large enough to hold all types
94 inline void cleanup();
97 QDeclarativeVMEVariant::QDeclarativeVMEVariant()
98 : type(QVariant::Invalid)
102 QDeclarativeVMEVariant::~QDeclarativeVMEVariant()
107 void QDeclarativeVMEVariant::cleanup()
109 if (type == QVariant::Invalid) {
110 } else if (type == QMetaType::Int ||
111 type == QMetaType::Bool ||
112 type == QMetaType::Double) {
113 type = QVariant::Invalid;
114 } else if (type == QMetaType::QObjectStar) {
115 ((QDeclarativeGuard<QObject>*)dataPtr())->~QDeclarativeGuard<QObject>();
116 type = QVariant::Invalid;
117 } else if (type == QMetaType::QString) {
118 ((QString *)dataPtr())->~QString();
119 type = QVariant::Invalid;
120 } else if (type == QMetaType::QUrl) {
121 ((QUrl *)dataPtr())->~QUrl();
122 type = QVariant::Invalid;
123 } else if (type == QMetaType::QColor) {
124 ((QColor *)dataPtr())->~QColor();
125 type = QVariant::Invalid;
126 } else if (type == QMetaType::QTime) {
127 ((QTime *)dataPtr())->~QTime();
128 type = QVariant::Invalid;
129 } else if (type == QMetaType::QDate) {
130 ((QDate *)dataPtr())->~QDate();
131 type = QVariant::Invalid;
132 } else if (type == QMetaType::QDateTime) {
133 ((QDateTime *)dataPtr())->~QDateTime();
134 type = QVariant::Invalid;
135 } else if (type == qMetaTypeId<QVariant>()) {
136 ((QVariant *)dataPtr())->~QVariant();
137 type = QVariant::Invalid;
138 } else if (type == qMetaTypeId<QJSValue>()) {
139 ((QJSValue *)dataPtr())->~QJSValue();
140 type = QVariant::Invalid;
145 int QDeclarativeVMEVariant::dataType() const
150 const void *QDeclarativeVMEVariant::dataPtr() const
155 void *QDeclarativeVMEVariant::dataPtr()
160 QObject *QDeclarativeVMEVariant::asQObject()
162 if (type != QMetaType::QObjectStar)
163 setValue((QObject *)0);
165 return *(QDeclarativeGuard<QObject> *)(dataPtr());
168 const QVariant &QDeclarativeVMEVariant::asQVariant()
170 if (type != QMetaType::QVariant)
171 setValue(QVariant());
173 return *(QVariant *)(dataPtr());
176 int QDeclarativeVMEVariant::asInt()
178 if (type != QMetaType::Int)
181 return *(int *)(dataPtr());
184 bool QDeclarativeVMEVariant::asBool()
186 if (type != QMetaType::Bool)
187 setValue(bool(false));
189 return *(bool *)(dataPtr());
192 double QDeclarativeVMEVariant::asDouble()
194 if (type != QMetaType::Double)
197 return *(double *)(dataPtr());
200 const QString &QDeclarativeVMEVariant::asQString()
202 if (type != QMetaType::QString)
205 return *(QString *)(dataPtr());
208 const QUrl &QDeclarativeVMEVariant::asQUrl()
210 if (type != QMetaType::QUrl)
213 return *(QUrl *)(dataPtr());
216 const QColor &QDeclarativeVMEVariant::asQColor()
218 if (type != QMetaType::QColor)
221 return *(QColor *)(dataPtr());
224 const QTime &QDeclarativeVMEVariant::asQTime()
226 if (type != QMetaType::QTime)
229 return *(QTime *)(dataPtr());
232 const QDate &QDeclarativeVMEVariant::asQDate()
234 if (type != QMetaType::QDate)
237 return *(QDate *)(dataPtr());
240 const QDateTime &QDeclarativeVMEVariant::asQDateTime()
242 if (type != QMetaType::QDateTime)
243 setValue(QDateTime());
245 return *(QDateTime *)(dataPtr());
248 const QJSValue &QDeclarativeVMEVariant::asQJSValue()
250 if (type != qMetaTypeId<QJSValue>())
251 setValue(QJSValue());
253 return *(QJSValue *)(dataPtr());
256 void QDeclarativeVMEVariant::setValue(QObject *v)
258 if (type != QMetaType::QObjectStar) {
260 type = QMetaType::QObjectStar;
261 new (dataPtr()) QDeclarativeGuard<QObject>();
263 *(QDeclarativeGuard<QObject>*)(dataPtr()) = v;
266 void QDeclarativeVMEVariant::setValue(const QVariant &v)
268 if (type != qMetaTypeId<QVariant>()) {
270 type = qMetaTypeId<QVariant>();
271 new (dataPtr()) QVariant(v);
273 *(QVariant *)(dataPtr()) = v;
277 void QDeclarativeVMEVariant::setValue(int v)
279 if (type != QMetaType::Int) {
281 type = QMetaType::Int;
283 *(int *)(dataPtr()) = v;
286 void QDeclarativeVMEVariant::setValue(bool v)
288 if (type != QMetaType::Bool) {
290 type = QMetaType::Bool;
292 *(bool *)(dataPtr()) = v;
295 void QDeclarativeVMEVariant::setValue(double v)
297 if (type != QMetaType::Double) {
299 type = QMetaType::Double;
301 *(double *)(dataPtr()) = v;
304 void QDeclarativeVMEVariant::setValue(const QString &v)
306 if (type != QMetaType::QString) {
308 type = QMetaType::QString;
309 new (dataPtr()) QString(v);
311 *(QString *)(dataPtr()) = v;
315 void QDeclarativeVMEVariant::setValue(const QUrl &v)
317 if (type != QMetaType::QUrl) {
319 type = QMetaType::QUrl;
320 new (dataPtr()) QUrl(v);
322 *(QUrl *)(dataPtr()) = v;
326 void QDeclarativeVMEVariant::setValue(const QColor &v)
328 if (type != QMetaType::QColor) {
330 type = QMetaType::QColor;
331 new (dataPtr()) QColor(v);
333 *(QColor *)(dataPtr()) = v;
337 void QDeclarativeVMEVariant::setValue(const QTime &v)
339 if (type != QMetaType::QTime) {
341 type = QMetaType::QTime;
342 new (dataPtr()) QTime(v);
344 *(QTime *)(dataPtr()) = v;
348 void QDeclarativeVMEVariant::setValue(const QDate &v)
350 if (type != QMetaType::QDate) {
352 type = QMetaType::QDate;
353 new (dataPtr()) QDate(v);
355 *(QDate *)(dataPtr()) = v;
359 void QDeclarativeVMEVariant::setValue(const QDateTime &v)
361 if (type != QMetaType::QDateTime) {
363 type = QMetaType::QDateTime;
364 new (dataPtr()) QDateTime(v);
366 *(QDateTime *)(dataPtr()) = v;
370 void QDeclarativeVMEVariant::setValue(const QJSValue &v)
372 if (type != qMetaTypeId<QJSValue>()) {
374 type = qMetaTypeId<QJSValue>();
375 new (dataPtr()) QJSValue(v);
377 *(QJSValue *)(dataPtr()) = v;
381 QDeclarativeVMEMetaObject::QDeclarativeVMEMetaObject(QObject *obj,
382 const QMetaObject *other,
383 const QDeclarativeVMEMetaData *meta,
384 QDeclarativeCompiledData *cdata)
385 : object(obj), compiledData(cdata), ctxt(QDeclarativeData::get(obj, true)->outerContext),
386 metaData(meta), data(0), v8methods(0), parent(0)
388 compiledData->addref();
390 *static_cast<QMetaObject *>(this) = *other;
391 this->d.superdata = obj->metaObject();
393 QObjectPrivate *op = QObjectPrivate::get(obj);
395 parent = static_cast<QAbstractDynamicMetaObject*>(op->metaObject);
396 op->metaObject = this;
398 propOffset = QAbstractDynamicMetaObject::propertyOffset();
399 methodOffset = QAbstractDynamicMetaObject::methodOffset();
401 data = new QDeclarativeVMEVariant[metaData->propertyCount];
403 aConnected.resize(metaData->aliasCount);
404 int list_type = qMetaTypeId<QDeclarativeListProperty<QObject> >();
407 for (int ii = 0; ii < metaData->propertyCount; ++ii) {
408 int t = (metaData->propertyData() + ii)->propertyType;
409 if (t == list_type) {
410 listProperties.append(List(methodOffset + ii));
411 data[ii].setValue(listProperties.count() - 1);
416 QDeclarativeVMEMetaObject::~QDeclarativeVMEMetaObject()
418 compiledData->release();
422 for (int ii = 0; v8methods && ii < metaData->methodCount; ++ii) {
423 qPersistentDispose(v8methods[ii]);
427 int QDeclarativeVMEMetaObject::metaCall(QMetaObject::Call c, int _id, void **a)
430 if(c == QMetaObject::WriteProperty) {
431 int flags = *reinterpret_cast<int*>(a[3]);
432 if (!(flags & QDeclarativePropertyPrivate::BypassInterceptor)
433 && !aInterceptors.isEmpty()
434 && aInterceptors.testBit(id)) {
435 QPair<int, QDeclarativePropertyValueInterceptor*> pair = interceptors.value(id);
436 int valueIndex = pair.first;
437 QDeclarativePropertyValueInterceptor *vi = pair.second;
438 int type = property(id).userType();
440 if (type != QVariant::Invalid) {
441 if (valueIndex != -1) {
442 QDeclarativeEnginePrivate *ep = ctxt?QDeclarativeEnginePrivate::get(ctxt->engine):0;
443 QDeclarativeValueType *valueType = 0;
444 if (ep) valueType = ep->valueTypes[type];
445 else valueType = QDeclarativeValueTypeFactory::valueType(type);
448 valueType->setValue(QVariant(type, a[0]));
449 QMetaProperty valueProp = valueType->metaObject()->property(valueIndex);
450 vi->write(valueProp.read(valueType));
452 if (!ep) delete valueType;
455 vi->write(QVariant(type, a[0]));
461 if(c == QMetaObject::ReadProperty || c == QMetaObject::WriteProperty) {
462 if (id >= propOffset) {
465 if (id < metaData->propertyCount) {
466 int t = (metaData->propertyData() + id)->propertyType;
467 bool needActivate = false;
471 if (c == QMetaObject::ReadProperty) {
472 *reinterpret_cast<QVariant *>(a[0]) = readVarPropertyAsVariant(id);
473 } else if (c == QMetaObject::WriteProperty) {
474 writeVarProperty(id, *reinterpret_cast<QVariant *>(a[0]));
479 if (c == QMetaObject::ReadProperty) {
482 *reinterpret_cast<int *>(a[0]) = data[id].asInt();
485 *reinterpret_cast<bool *>(a[0]) = data[id].asBool();
487 case QVariant::Double:
488 *reinterpret_cast<double *>(a[0]) = data[id].asDouble();
490 case QVariant::String:
491 *reinterpret_cast<QString *>(a[0]) = data[id].asQString();
494 *reinterpret_cast<QUrl *>(a[0]) = data[id].asQUrl();
496 case QVariant::Color:
497 *reinterpret_cast<QColor *>(a[0]) = data[id].asQColor();
500 *reinterpret_cast<QDate *>(a[0]) = data[id].asQDate();
502 case QVariant::DateTime:
503 *reinterpret_cast<QDateTime *>(a[0]) = data[id].asQDateTime();
505 case QMetaType::QObjectStar:
506 *reinterpret_cast<QObject **>(a[0]) = data[id].asQObject();
511 if (t == qMetaTypeId<QDeclarativeListProperty<QObject> >()) {
512 int listIndex = data[id].asInt();
513 const List *list = &listProperties.at(listIndex);
514 *reinterpret_cast<QDeclarativeListProperty<QObject> *>(a[0]) =
515 QDeclarativeListProperty<QObject>(object, (void *)list,
516 list_append, list_count, list_at,
520 } else if (c == QMetaObject::WriteProperty) {
524 needActivate = *reinterpret_cast<int *>(a[0]) != data[id].asInt();
525 data[id].setValue(*reinterpret_cast<int *>(a[0]));
528 needActivate = *reinterpret_cast<bool *>(a[0]) != data[id].asBool();
529 data[id].setValue(*reinterpret_cast<bool *>(a[0]));
531 case QVariant::Double:
532 needActivate = *reinterpret_cast<double *>(a[0]) != data[id].asDouble();
533 data[id].setValue(*reinterpret_cast<double *>(a[0]));
535 case QVariant::String:
536 needActivate = *reinterpret_cast<QString *>(a[0]) != data[id].asQString();
537 data[id].setValue(*reinterpret_cast<QString *>(a[0]));
540 needActivate = *reinterpret_cast<QUrl *>(a[0]) != data[id].asQUrl();
541 data[id].setValue(*reinterpret_cast<QUrl *>(a[0]));
543 case QVariant::Color:
544 needActivate = *reinterpret_cast<QColor *>(a[0]) != data[id].asQColor();
545 data[id].setValue(*reinterpret_cast<QColor *>(a[0]));
548 needActivate = *reinterpret_cast<QDate *>(a[0]) != data[id].asQDate();
549 data[id].setValue(*reinterpret_cast<QDate *>(a[0]));
551 case QVariant::DateTime:
552 needActivate = *reinterpret_cast<QDateTime *>(a[0]) != data[id].asQDateTime();
553 data[id].setValue(*reinterpret_cast<QDateTime *>(a[0]));
555 case QMetaType::QObjectStar:
556 needActivate = *reinterpret_cast<QObject **>(a[0]) != data[id].asQObject();
557 data[id].setValue(*reinterpret_cast<QObject **>(a[0]));
566 if (c == QMetaObject::WriteProperty && needActivate) {
567 activate(object, methodOffset + id, 0);
573 id -= metaData->propertyCount;
575 if (id < metaData->aliasCount) {
577 QDeclarativeVMEMetaData::AliasData *d = metaData->aliasData() + id;
579 if (d->flags & QML_ALIAS_FLAG_PTR && c == QMetaObject::ReadProperty)
580 *reinterpret_cast<void **>(a[0]) = 0;
582 if (!ctxt) return -1;
584 QDeclarativeContext *context = ctxt->asQDeclarativeContext();
585 QDeclarativeContextPrivate *ctxtPriv = QDeclarativeContextPrivate::get(context);
587 QObject *target = ctxtPriv->data->idValues[d->contextIdx].data();
593 if (d->isObjectAlias()) {
594 *reinterpret_cast<QObject **>(a[0]) = target;
598 // Remove binding (if any) on write
599 if(c == QMetaObject::WriteProperty) {
600 int flags = *reinterpret_cast<int*>(a[3]);
601 if (flags & QDeclarativePropertyPrivate::RemoveBindingOnAliasWrite) {
602 QDeclarativeData *targetData = QDeclarativeData::get(target);
603 if (targetData && targetData->hasBindingBit(d->propertyIndex())) {
604 QDeclarativeAbstractBinding *binding = QDeclarativePropertyPrivate::setBinding(target, d->propertyIndex(), d->isValueTypeAlias()?d->valueTypeIndex():-1, 0);
605 if (binding) binding->destroy();
610 if (d->isValueTypeAlias()) {
611 // Value type property
612 QDeclarativeEnginePrivate *ep = QDeclarativeEnginePrivate::get(ctxt->engine);
614 QDeclarativeValueType *valueType = ep->valueTypes[d->valueType()];
617 valueType->read(target, d->propertyIndex());
618 int rv = QMetaObject::metacall(valueType, c, d->valueTypeIndex(), a);
620 if (c == QMetaObject::WriteProperty)
621 valueType->write(target, d->propertyIndex(), 0x00);
626 return QMetaObject::metacall(target, c, d->propertyIndex(), a);
634 } else if(c == QMetaObject::InvokeMetaMethod) {
636 if (id >= methodOffset) {
639 int plainSignals = metaData->signalCount + metaData->propertyCount +
640 metaData->aliasCount;
641 if (id < plainSignals) {
642 QMetaObject::activate(object, _id, a);
648 if (id < metaData->methodCount) {
650 return -1; // We can't run the method
652 QDeclarativeEnginePrivate *ep = QDeclarativeEnginePrivate::get(ctxt->engine);
653 ep->referenceScarceResources(); // "hold" scarce resources in memory during evaluation.
655 v8::Handle<v8::Function> function = method(id);
656 QDeclarativeVMEMetaData::MethodData *data = metaData->methodData() + id;
658 v8::HandleScope handle_scope;
659 v8::Context::Scope scope(ep->v8engine()->context());
660 v8::Handle<v8::Value> *args = 0;
662 if (data->parameterCount) {
663 args = new v8::Handle<v8::Value>[data->parameterCount];
664 for (int ii = 0; ii < data->parameterCount; ++ii)
665 args[ii] = ep->v8engine()->fromVariant(*(QVariant *)a[ii + 1]);
668 v8::TryCatch try_catch;
670 v8::Local<v8::Value> result = function->Call(ep->v8engine()->global(), data->parameterCount, args);
673 if (try_catch.HasCaught()) {
674 QDeclarativeError error;
675 QDeclarativeExpressionPrivate::exceptionToError(try_catch.Message(), error);
678 if (a[0]) *(QVariant *)a[0] = QVariant();
680 if (a[0]) *(QVariant *)a[0] = ep->v8engine()->toVariant(result, 0);
683 ep->dereferenceScarceResources(); // "release" scarce resources if top-level expression evaluation is complete.
691 return parent->metaCall(c, _id, a);
693 return object->qt_metacall(c, _id, a);
696 v8::Handle<v8::Function> QDeclarativeVMEMetaObject::method(int index)
699 v8methods = new v8::Persistent<v8::Function>[metaData->methodCount];
701 if (v8methods[index].IsEmpty()) {
702 QDeclarativeVMEMetaData::MethodData *data = metaData->methodData() + index;
705 (const QChar *)(((const char*)metaData) + data->bodyOffset);
707 QString code = QString::fromRawData(body, data->bodyLength);
709 // XXX We should evaluate all methods in a single big script block to
710 // improve the call time between dynamic methods defined on the same
712 v8methods[index] = QDeclarativeExpressionPrivate::evalFunction(ctxt, object, code, ctxt->url.toString(),
716 return v8methods[index];
720 QScriptValue QDeclarativeVMEMetaObject::readVarProperty(int id)
722 if (data[id].dataType() == qMetaTypeId<QScriptValue>())
723 return data[id].asQJSValue();
724 else if (data[id].dataType() == QMetaType::QObjectStar)
725 return QDeclarativeEnginePrivate::get(ctxt->engine)->objectClass->newQObject(data[id].asQObject());
727 return QDeclarativeEnginePrivate::get(ctxt->engine)->scriptValueFromVariant(data[id].asQVariant());
731 QVariant QDeclarativeVMEMetaObject::readVarPropertyAsVariant(int id)
734 if (data[id].dataType() == qMetaTypeId<QScriptValue>())
735 return QDeclarativeEnginePrivate::get(ctxt->engine)->scriptValueToVariant(data[id].asQJSValue());
738 if (data[id].dataType() == QMetaType::QObjectStar)
739 return QVariant::fromValue(data[id].asQObject());
741 return data[id].asQVariant();
745 void QDeclarativeVMEMetaObject::writeVarProperty(int id, const QScriptValue &value)
747 data[id].setValue(value);
748 activate(object, methodOffset + id, 0);
752 void QDeclarativeVMEMetaObject::writeVarProperty(int id, const QVariant &value)
754 bool needActivate = false;
755 if (value.userType() == QMetaType::QObjectStar) {
756 QObject *o = qvariant_cast<QObject *>(value);
757 needActivate = (data[id].dataType() != QMetaType::QObjectStar || data[id].asQObject() != o);
758 data[id].setValue(qvariant_cast<QObject *>(value));
760 needActivate = (data[id].dataType() != qMetaTypeId<QVariant>() ||
761 data[id].asQVariant().userType() != value.userType() ||
762 data[id].asQVariant() != value);
763 data[id].setValue(value);
766 activate(object, methodOffset + id, 0);
769 void QDeclarativeVMEMetaObject::listChanged(int id)
771 activate(object, methodOffset + id, 0);
774 void QDeclarativeVMEMetaObject::list_append(QDeclarativeListProperty<QObject> *prop, QObject *o)
776 List *list = static_cast<List *>(prop->data);
778 QMetaObject::activate(prop->object, list->notifyIndex, 0);
781 int QDeclarativeVMEMetaObject::list_count(QDeclarativeListProperty<QObject> *prop)
783 return static_cast<List *>(prop->data)->count();
786 QObject *QDeclarativeVMEMetaObject::list_at(QDeclarativeListProperty<QObject> *prop, int index)
788 return static_cast<List *>(prop->data)->at(index);
791 void QDeclarativeVMEMetaObject::list_clear(QDeclarativeListProperty<QObject> *prop)
793 List *list = static_cast<List *>(prop->data);
795 QMetaObject::activate(prop->object, list->notifyIndex, 0);
798 void QDeclarativeVMEMetaObject::registerInterceptor(int index, int valueIndex, QDeclarativePropertyValueInterceptor *interceptor)
800 if (aInterceptors.isEmpty())
801 aInterceptors.resize(propertyCount() + metaData->propertyCount);
802 aInterceptors.setBit(index);
803 interceptors.insert(index, qMakePair(valueIndex, interceptor));
806 int QDeclarativeVMEMetaObject::vmeMethodLineNumber(int index)
808 if (index < methodOffset) {
810 return static_cast<QDeclarativeVMEMetaObject *>(parent)->vmeMethodLineNumber(index);
813 int plainSignals = metaData->signalCount + metaData->propertyCount + metaData->aliasCount;
814 Q_ASSERT(index >= (methodOffset + plainSignals) && index < (methodOffset + plainSignals + metaData->methodCount));
816 int rawIndex = index - methodOffset - plainSignals;
818 QDeclarativeVMEMetaData::MethodData *data = metaData->methodData() + rawIndex;
819 return data->lineNumber;
822 v8::Handle<v8::Function> QDeclarativeVMEMetaObject::vmeMethod(int index)
824 if (index < methodOffset) {
826 return static_cast<QDeclarativeVMEMetaObject *>(parent)->vmeMethod(index);
828 int plainSignals = metaData->signalCount + metaData->propertyCount + metaData->aliasCount;
829 Q_ASSERT(index >= (methodOffset + plainSignals) && index < (methodOffset + plainSignals + metaData->methodCount));
830 return method(index - methodOffset - plainSignals);
834 void QDeclarativeVMEMetaObject::setVmeMethod(int index, v8::Persistent<v8::Function> value)
836 if (index < methodOffset) {
838 return static_cast<QDeclarativeVMEMetaObject *>(parent)->setVmeMethod(index, value);
840 int plainSignals = metaData->signalCount + metaData->propertyCount + metaData->aliasCount;
841 Q_ASSERT(index >= (methodOffset + plainSignals) && index < (methodOffset + plainSignals + metaData->methodCount));
844 v8methods = new v8::Persistent<v8::Function>[metaData->methodCount];
846 int methodIndex = index - methodOffset - plainSignals;
847 if (!v8methods[methodIndex].IsEmpty())
848 qPersistentDispose(v8methods[methodIndex]);
849 v8methods[methodIndex] = value;
853 QScriptValue QDeclarativeVMEMetaObject::vmeProperty(int index)
855 if (index < propOffset) {
857 return static_cast<QDeclarativeVMEMetaObject *>(parent)->vmeProperty(index);
859 return readVarProperty(index - propOffset);
862 void QDeclarativeVMEMetaObject::setVMEProperty(int index, const QScriptValue &v)
864 if (index < propOffset) {
866 static_cast<QDeclarativeVMEMetaObject *>(parent)->setVMEProperty(index, v);
868 return writeVarProperty(index - propOffset, v);
872 bool QDeclarativeVMEMetaObject::aliasTarget(int index, QObject **target, int *coreIndex, int *valueTypeIndex) const
874 Q_ASSERT(index >= propOffset + metaData->propertyCount);
878 *valueTypeIndex = -1;
883 QDeclarativeVMEMetaData::AliasData *d = metaData->aliasData() + (index - propOffset - metaData->propertyCount);
884 QDeclarativeContext *context = ctxt->asQDeclarativeContext();
885 QDeclarativeContextPrivate *ctxtPriv = QDeclarativeContextPrivate::get(context);
887 *target = ctxtPriv->data->idValues[d->contextIdx].data();
891 if (d->isObjectAlias()) {
892 } else if (d->isValueTypeAlias()) {
893 *coreIndex = d->propertyIndex();
894 *valueTypeIndex = d->valueTypeIndex();
896 *coreIndex = d->propertyIndex();
902 void QDeclarativeVMEMetaObject::connectAlias(int aliasId)
904 if (!aConnected.testBit(aliasId)) {
905 aConnected.setBit(aliasId);
907 QDeclarativeContext *context = ctxt->asQDeclarativeContext();
908 QDeclarativeContextPrivate *ctxtPriv = QDeclarativeContextPrivate::get(context);
910 QDeclarativeVMEMetaData::AliasData *d = metaData->aliasData() + aliasId;
912 QObject *target = ctxtPriv->data->idValues[d->contextIdx].data();
916 int sigIdx = methodOffset + aliasId + metaData->propertyCount;
917 QMetaObject::connect(context, d->contextIdx + ctxtPriv->notifyIndex, object, sigIdx);
919 if (!d->isObjectAlias()) {
920 QMetaProperty prop = target->metaObject()->property(d->propertyIndex());
921 if (prop.hasNotifySignal())
922 QDeclarativePropertyPrivate::connect(target, prop.notifySignalIndex(), object, sigIdx);
927 void QDeclarativeVMEMetaObject::connectAliasSignal(int index)
929 int aliasId = (index - methodOffset) - metaData->propertyCount;
930 if (aliasId < 0 || aliasId >= metaData->aliasCount)
933 connectAlias(aliasId);