// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "qmljssemanticinfoupdater.h" #include "qmljseditorplugin.h" #include #include #include #include #include #include #include #include #include namespace QmlJSEditor { namespace Internal { SemanticInfoUpdater::SemanticInfoUpdater() = default; SemanticInfoUpdater::~SemanticInfoUpdater() = default; void SemanticInfoUpdater::abort() { QMutexLocker locker(&m_mutex); m_wasCancelled = true; m_condition.wakeOne(); } void SemanticInfoUpdater::update(const QmlJS::Document::Ptr &doc, const QmlJS::Snapshot &snapshot) { QMutexLocker locker(&m_mutex); m_sourceDocument = doc; m_sourceSnapshot = snapshot; m_condition.wakeOne(); } void SemanticInfoUpdater::reupdate(const QmlJS::Snapshot &snapshot) { QMutexLocker locker(&m_mutex); m_sourceDocument = m_lastSemanticInfo.document; m_sourceSnapshot = snapshot; m_condition.wakeOne(); } void SemanticInfoUpdater::run() { setPriority(QThread::LowestPriority); forever { m_mutex.lock(); while (! (m_wasCancelled || m_sourceDocument)) m_condition.wait(&m_mutex); const bool done = m_wasCancelled; QmlJS::Document::Ptr doc = m_sourceDocument; QmlJS::Snapshot snapshot = m_sourceSnapshot; m_sourceDocument.clear(); m_sourceSnapshot = QmlJS::Snapshot(); m_mutex.unlock(); if (done) break; const QmlJSTools::SemanticInfo info = makeNewSemanticInfo(doc, snapshot); m_mutex.lock(); const bool cancelledOrNewData = m_wasCancelled || m_sourceDocument; m_mutex.unlock(); if (! cancelledOrNewData) { m_lastSemanticInfo = info; emit updated(info); } } } QmlJSTools::SemanticInfo SemanticInfoUpdater::makeNewSemanticInfo(const QmlJS::Document::Ptr &doc, const QmlJS::Snapshot &snapshot) { using namespace QmlJS; QmlJSTools::SemanticInfo semanticInfo; semanticInfo.document = doc; semanticInfo.snapshot = snapshot; ModelManagerInterface *modelManager = ModelManagerInterface::instance(); Link link(semanticInfo.snapshot, modelManager->defaultVContext(doc->language(), doc), modelManager->builtins(doc)); semanticInfo.context = link(doc, &semanticInfo.semanticMessages); auto scopeChain = new ScopeChain(doc, semanticInfo.context); semanticInfo.setRootScopeChain(QSharedPointer(scopeChain)); if (doc->language() == Dialect::Json) { Utils::JsonSchema *schema = QmlJSEditorPlugin::jsonManager()->schemaForFile( doc->fileName().toString()); if (schema) { JsonCheck jsonChecker(doc); semanticInfo.staticAnalysisMessages = jsonChecker(schema); } } else { Check checker(doc, semanticInfo.context, Core::ICore::settings()); semanticInfo.staticAnalysisMessages = checker(); } return semanticInfo; } } // namespace Internal } // namespace QmlJSEditor