/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the tools applications 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 The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/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 3 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 2.0 or (at your option) the GNU General ** Public license version 3 or any later version approved by the KDE Free ** Qt Foundation. The licenses are as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-2.0.html and ** https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef QQMLOBJECTCREATOR_P_H #define QQMLOBJECTCREATOR_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 #include #include #include #include #include #include #include QT_BEGIN_NAMESPACE class QQmlAbstractBinding; struct QQmlTypeCompiler; class QQmlInstantiationInterrupt; class QQmlIncubatorPrivate; struct QQmlObjectCreatorSharedState : public QSharedData { QQmlContextData *rootContext; QQmlContextData *creationContext; QFiniteStack allCreatedBindings; QFiniteStack allParserStatusCallbacks; QFiniteStack > allCreatedObjects; QV4::Value *allJavaScriptObjects; // pointer to vector on JS stack to reference JS wrappers during creation phase. QQmlComponentAttached *componentAttached; QList finalizeCallbacks; QQmlVmeProfiler profiler; QRecursionNode recursionNode; }; class Q_QML_PRIVATE_EXPORT QQmlObjectCreator { Q_DECLARE_TR_FUNCTIONS(QQmlObjectCreator) public: QQmlObjectCreator(QQmlContextData *parentContext, const QQmlRefPointer &compilationUnit, QQmlContextData *creationContext, QQmlIncubatorPrivate *incubator = nullptr); ~QQmlObjectCreator(); QObject *create(int subComponentIndex = -1, QObject *parent = nullptr, QQmlInstantiationInterrupt *interrupt = nullptr); bool populateDeferredProperties(QObject *instance, QQmlData::DeferredData *deferredData); bool populateDeferredBinding(const QQmlProperty &qmlProperty, QQmlData::DeferredData *deferredData, const QV4::CompiledData::Binding *binding); QQmlContextData *finalize(QQmlInstantiationInterrupt &interrupt); void clear(); QQmlComponentAttached **componentAttachment() const { return &sharedState->componentAttached; } QList *finalizeCallbacks() const { return &sharedState->finalizeCallbacks; } QList errors; QQmlContextData *parentContextData() const { return parentContext.contextData(); } QFiniteStack > &allCreatedObjects() const { return sharedState->allCreatedObjects; } private: QQmlObjectCreator(QQmlContextData *contextData, const QQmlRefPointer &compilationUnit, QQmlObjectCreatorSharedState *inheritedSharedState); void init(QQmlContextData *parentContext); QObject *createInstance(int index, QObject *parent = nullptr, bool isContextObject = false); bool populateInstance(int index, QObject *instance, QObject *bindingTarget, const QQmlPropertyData *valueTypeProperty); void setupBindings(bool applyDeferredBindings = false); bool setPropertyBinding(const QQmlPropertyData *property, const QV4::CompiledData::Binding *binding); void setPropertyValue(const QQmlPropertyData *property, const QV4::CompiledData::Binding *binding); void setupFunctions(); QString stringAt(int idx) const { return compilationUnit->stringAt(idx); } void recordError(const QV4::CompiledData::Location &location, const QString &description); void registerObjectWithContextById(const QV4::CompiledData::Object *object, QObject *instance) const; inline QV4::QmlContext *currentQmlContext(); Q_NEVER_INLINE void createQmlContext(); QV4::CompiledData::ResolvedTypeReference *resolvedType(int id) const { return compilationUnit->resolvedType(id); } enum Phase { Startup, CreatingObjects, CreatingObjectsPhase2, ObjectsCreated, Finalizing, Done } phase; QQmlEngine *engine; QV4::ExecutionEngine *v4; QQmlRefPointer compilationUnit; const QV4::CompiledData::Unit *qmlUnit; QQmlGuardedContextData parentContext; QQmlContextData *context; const QQmlPropertyCacheVector *propertyCaches; QExplicitlySharedDataPointer sharedState; bool topLevelCreator; QQmlIncubatorPrivate *incubator; QObject *_qobject; QObject *_scopeObject; QObject *_bindingTarget; const QQmlPropertyData *_valueTypeProperty; // belongs to _qobjectForBindings's property cache int _compiledObjectIndex; const QV4::CompiledData::Object *_compiledObject; QQmlData *_ddata; QQmlRefPointer _propertyCache; QQmlVMEMetaObject *_vmeMetaObject; QQmlListProperty _currentList; QV4::QmlContext *_qmlContext; friend struct QQmlObjectCreatorRecursionWatcher; typedef std::function PendingAliasBinding; std::vector pendingAliasBindings; }; struct QQmlObjectCreatorRecursionWatcher { QQmlObjectCreatorRecursionWatcher(QQmlObjectCreator *creator); bool hasRecursed() const { return watcher.hasRecursed(); } private: QExplicitlySharedDataPointer sharedState; QRecursionWatcher watcher; }; QV4::QmlContext *QQmlObjectCreator::currentQmlContext() { if (!_qmlContext->isManaged()) _qmlContext->setM(QV4::QmlContext::create(v4->rootContext(), context, _scopeObject)); return _qmlContext; } QT_END_NAMESPACE #endif // QQMLOBJECTCREATOR_P_H