/**************************************************************************** ** ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef QQMLVMEMETAOBJECT_P_H #define QQMLVMEMETAOBJECT_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include "qqml.h" #include #include #include #include #include #include #include #include "qqmlguard_p.h" #include "qqmlcompiler_p.h" #include "qqmlcontext_p.h" #include #include #include QT_BEGIN_NAMESPACE #define QML_ALIAS_FLAG_PTR 0x00000001 struct QQmlVMEMetaData { short varPropertyCount; short propertyCount; short aliasCount; short signalCount; short methodCount; short dummyForAlignment; // Add padding to ensure that the following // AliasData/PropertyData/MethodData is int aligned. struct AliasData { int contextIdx; int propertyIdx; int propType; int flags; int notifySignal; bool isObjectAlias() const { return propertyIdx == -1; } bool isPropertyAlias() const { return !isObjectAlias() && !(propertyIdx & 0xFFFF0000); } bool isValueTypeAlias() const { return !isObjectAlias() && (propertyIdx & 0xFFFF0000); } int propertyIndex() const { return propertyIdx & 0x0000FFFF; } int valueTypeIndex() const { return (propertyIdx & 0xFFFF0000) >> 16; } int valueType() const { return (propertyIdx & 0xFFFF0000) ? propType : 0; } }; struct PropertyData { int propertyType; }; struct MethodData { int runtimeFunctionIndex; int parameterCount; quint16 lineNumber; }; PropertyData *propertyData() const { return (PropertyData *)(((const char *)this) + sizeof(QQmlVMEMetaData)); } AliasData *aliasData() const { return (AliasData *)(propertyData() + propertyCount); } MethodData *methodData() const { return (MethodData *)(aliasData() + aliasCount); } }; class QQmlVMEMetaObject; class QQmlVMEVariantQObjectPtr : public QQmlGuard { public: inline QQmlVMEVariantQObjectPtr(bool isVar); inline ~QQmlVMEVariantQObjectPtr(); inline void objectDestroyed(QObject *); inline void setGuardedValue(QObject *obj, QQmlVMEMetaObject *target, int index); QQmlVMEMetaObject *m_target; unsigned m_isVar : 1; int m_index : 31; }; class QQmlVMEVariant; class QQmlRefCount; class QQmlVMEMetaObjectEndpoint; class Q_QML_PRIVATE_EXPORT QQmlVMEMetaObject : public QAbstractDynamicMetaObject { public: QQmlVMEMetaObject(QObject *obj, QQmlPropertyCache *cache, const QQmlVMEMetaData *data, QV4::ExecutionContext *qmlBindingContext = 0, QQmlCompiledData *compiledData = 0); ~QQmlVMEMetaObject(); bool aliasTarget(int index, QObject **target, int *coreIndex, int *valueTypeIndex) const; void registerInterceptor(int index, int valueIndex, QQmlPropertyValueInterceptor *interceptor); QV4::ReturnedValue vmeMethod(int index); quint16 vmeMethodLineNumber(int index); void setVmeMethod(int index, QV4::ValueRef function); QV4::ReturnedValue vmeProperty(int index); void setVMEProperty(int index, const QV4::ValueRef v); void connectAliasSignal(int index, bool indexInSignalRange); virtual QAbstractDynamicMetaObject *toDynamicMetaObject(QObject *o); static inline QQmlVMEMetaObject *get(QObject *o); static QQmlVMEMetaObject *getForProperty(QObject *o, int coreIndex); static QQmlVMEMetaObject *getForMethod(QObject *o, int coreIndex); static QQmlVMEMetaObject *getForSignal(QObject *o, int coreIndex); protected: virtual int metaCall(QMetaObject::Call _c, int _id, void **_a); public: friend class QQmlVMEMetaObjectEndpoint; friend class QQmlVMEVariantQObjectPtr; friend class QQmlPropertyCache; QObject *object; QQmlGuardedContextData ctxt; QQmlPropertyCache *cache; const QQmlVMEMetaData *metaData; inline int propOffset() const; inline int methodOffset() const; inline int signalOffset() const; inline int signalCount() const; bool hasAssignedMetaObjectData; QQmlVMEVariant *data; QQmlVMEMetaObjectEndpoint *aliasEndpoints; QV4::WeakValue varProperties; int firstVarPropertyIndex; bool varPropertiesInitialized; inline void allocateVarPropertiesArray(); inline bool ensureVarPropertiesAllocated(); void ensureQObjectWrapper(); void mark(); void connectAlias(int aliasId); QBitArray aConnected; QQmlPropertyValueInterceptor *interceptors; QV4::PersistentValue *v8methods; QV4::ReturnedValue method(int); QV4::ReturnedValue readVarProperty(int); void writeVarProperty(int, const QV4::ValueRef); QVariant readPropertyAsVariant(int); void writeProperty(int, const QVariant &); QBiPointer parent; inline QQmlVMEMetaObject *parentVMEMetaObject() const; void listChanged(int); class List : public QList { public: List(int lpi, QQmlVMEMetaObject *mo) : notifyIndex(lpi), mo(mo) {} int notifyIndex; QQmlVMEMetaObject *mo; }; QList listProperties; static void list_append(QQmlListProperty *, QObject *); static int list_count(QQmlListProperty *); static QObject *list_at(QQmlListProperty *, int); static void list_clear(QQmlListProperty *); void activate(QObject *, int, void **); QList varObjectGuards; QQmlVMEVariantQObjectPtr *getQObjectGuardForProperty(int) const; friend class QV8GCCallback; }; QQmlVMEMetaObject *QQmlVMEMetaObject::get(QObject *obj) { if (obj) { if (QQmlData *data = QQmlData::get(obj)) { if (data->hasVMEMetaObject) return static_cast(QObjectPrivate::get(obj)->metaObject); } } return 0; } int QQmlVMEMetaObject::propOffset() const { return cache->propertyOffset(); } int QQmlVMEMetaObject::methodOffset() const { return cache->methodOffset(); } int QQmlVMEMetaObject::signalOffset() const { return cache->signalOffset(); } int QQmlVMEMetaObject::signalCount() const { return cache->signalCount(); } QQmlVMEMetaObject *QQmlVMEMetaObject::parentVMEMetaObject() const { if (parent.isT1() && parent.flag()) return static_cast(parent.asT1()); return 0; } QT_END_NAMESPACE #endif // QQMLVMEMETAOBJECT_P_H