/**************************************************************************** ** ** Copyright (C) 2019 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:GPL-EXCEPT$ ** 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 General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 as published by the Free Software ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** 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-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qqmljsscope_p.h" #include "qqmljstypereader_p.h" #include "qqmljsimporter_p.h" #include #include #include #include QT_BEGIN_NAMESPACE QQmlJSScope::QQmlJSScope(ScopeType type, const QQmlJSScope::Ptr &parentScope) : m_parentScope(parentScope), m_scopeType(type) {} QQmlJSScope::Ptr QQmlJSScope::create(ScopeType type, const QQmlJSScope::Ptr &parentScope) { QSharedPointer childScope(new QQmlJSScope{type, parentScope}); if (parentScope) parentScope->m_childScopes.push_back(childScope); return childScope; } void QQmlJSScope::insertJSIdentifier(const QString &name, const JavaScriptIdentifier &identifier) { Q_ASSERT(m_scopeType != QQmlJSScope::QMLScope); if (identifier.kind == JavaScriptIdentifier::LexicalScoped || identifier.kind == JavaScriptIdentifier::Injected || m_scopeType == QQmlJSScope::JSFunctionScope) { m_jsIdentifiers.insert(name, identifier); } else { auto targetScope = parentScope(); while (targetScope->m_scopeType != QQmlJSScope::JSFunctionScope) targetScope = targetScope->parentScope(); targetScope->m_jsIdentifiers.insert(name, identifier); } } void QQmlJSScope::insertPropertyIdentifier(const QQmlJSMetaProperty &property) { addOwnProperty(property); QQmlJSMetaMethod method(property.propertyName() + QLatin1String("Changed"), QLatin1String("void")); addOwnMethod(method); } bool QQmlJSScope::isIdInCurrentScope(const QString &id) const { return isIdInCurrentQMlScopes(id) || isIdInCurrentJSScopes(id); } bool QQmlJSScope::hasMethod(const QString &name) const { for (const QQmlJSScope *scope = this; scope; scope = scope->baseType().data()) { if (scope->m_methods.contains(name)) return true; } return false; } QList QQmlJSScope::methods(const QString &name) const { QList results; for (const QQmlJSScope *scope = this; scope; scope = scope->baseType().data()) results.append(scope->ownMethods(name)); return results; } bool QQmlJSScope::isIdInCurrentQMlScopes(const QString &id) const { if (m_scopeType == QQmlJSScope::QMLScope) return m_properties.contains(id) || m_methods.contains(id) || m_enumerations.contains(id); const auto qmlScope = findCurrentQMLScope(parentScope()); return qmlScope->m_properties.contains(id) || qmlScope->m_methods.contains(id) || qmlScope->m_enumerations.contains(id); } bool QQmlJSScope::isIdInCurrentJSScopes(const QString &id) const { if (m_scopeType != QQmlJSScope::QMLScope && m_jsIdentifiers.contains(id)) return true; for (auto jsScope = parentScope(); jsScope; jsScope = jsScope->parentScope()) { if (jsScope->m_scopeType != QQmlJSScope::QMLScope && jsScope->m_jsIdentifiers.contains(id)) return true; } return false; } bool QQmlJSScope::isIdInjectedFromSignal(const QString &id) const { const auto found = findJSIdentifier(id); return found.has_value() && found->kind == JavaScriptIdentifier::Injected; } std::optional QQmlJSScope::findJSIdentifier(const QString &id) const { for (const auto *scope = this; scope; scope = scope->parentScope().data()) { if (scope->m_scopeType == QQmlJSScope::JSFunctionScope || scope->m_scopeType == QQmlJSScope::JSLexicalScope) { auto it = scope->m_jsIdentifiers.find(id); if (it != scope->m_jsIdentifiers.end()) return *it; } } return std::optional{}; } void QQmlJSScope::resolveTypes(const QHash &contextualTypes) { auto findType = [&](const QString &name) { auto type = contextualTypes.constFind(name); if (type != contextualTypes.constEnd()) return *type; return QQmlJSScope::ConstPtr(); }; if (!m_baseType && !m_baseTypeName.isEmpty()) m_baseType = findType(m_baseTypeName); if (!m_attachedType && !m_attachedTypeName.isEmpty()) m_attachedType = findType(m_attachedTypeName); if (!m_valueType && !m_valueTypeName.isEmpty()) m_valueType = findType(m_valueTypeName); for (auto it = m_properties.begin(), end = m_properties.end(); it != end; ++it) { const QString typeName = it->typeName(); if (!it->type() && !typeName.isEmpty()) it->setType(findType(typeName)); } for (auto it = m_methods.begin(), end = m_methods.end(); it != end; ++it) { const QString returnTypeName = it->returnTypeName(); if (!it->returnType() && !returnTypeName.isEmpty()) it->setReturnType(findType(returnTypeName)); const auto paramTypeNames = it->parameterTypeNames(); QList> paramTypes = it->parameterTypes(); if (paramTypes.length() < paramTypeNames.length()) paramTypes.resize(paramTypeNames.length()); for (int i = 0, length = paramTypes.length(); i < length; ++i) { auto ¶mType = paramTypes[i]; const auto paramTypeName = paramTypeNames[i]; if (!paramType && !paramTypeName.isEmpty()) paramType = findType(paramTypeName); } it->setParameterTypes(paramTypes); } } void QQmlJSScope::resolveGroupedScopes() { for (auto it = m_childScopes.begin(), end = m_childScopes.end(); it != end; ++it) { QQmlJSScope::Ptr childScope = *it; if (childScope->scopeType() != QQmlJSScope::GroupedPropertyScope) continue; const QString propertyName = childScope->internalName(); for (const QQmlJSScope *type = this; type; type = type->baseType().data()) { auto propertyIt = type->m_properties.find(propertyName); if (propertyIt != type->m_properties.end()) { childScope->m_baseType = QQmlJSScope::ConstPtr(propertyIt->type()); childScope->m_baseTypeName = propertyIt->typeName(); break; } } childScope->resolveGroupedScopes(); } } QQmlJSScope::ConstPtr QQmlJSScope::findCurrentQMLScope(const QQmlJSScope::ConstPtr &scope) { auto qmlScope = scope; while (qmlScope && qmlScope->m_scopeType != QQmlJSScope::QMLScope) qmlScope = qmlScope->parentScope(); return qmlScope; } void QQmlJSScope::addExport(const QString &name, const QString &package, const QTypeRevision &version) { m_exports.append(Export(package, name, version)); } bool QQmlJSScope::hasProperty(const QString &name) const { for (const QQmlJSScope *scope = this; scope; scope = scope->baseType().data()) { if (scope->m_properties.contains(name)) return true; } return false; } QQmlJSMetaProperty QQmlJSScope::property(const QString &name) const { for (const QQmlJSScope *scope = this; scope; scope = scope->baseType().data()) { const auto it = scope->m_properties.find(name); if (it != scope->m_properties.end()) return *it; } return {}; } QQmlJSScope::Export::Export(QString package, QString type, const QTypeRevision &version) : m_package(std::move(package)), m_type(std::move(type)), m_version(version) { } bool QQmlJSScope::Export::isValid() const { return m_version.isValid() || !m_package.isEmpty() || !m_type.isEmpty(); } QQmlJSScope QDeferredFactory::create() const { QQmlJSTypeReader typeReader(m_importer, m_filePath); QQmlJSScope::Ptr result = typeReader(); m_importer->m_warnings.append(typeReader.errors()); result->setInternalName(QFileInfo(m_filePath).baseName()); return std::move(*result); } QT_END_NAMESPACE