forked from qt-creator/qt-creator
Change-Id: I7d6325059aedd92b34072de1fbb05bc72fc95efd Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
114 lines
3.2 KiB
C++
114 lines
3.2 KiB
C++
// 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 <qmljs/qmljsmodelmanagerinterface.h>
|
|
#include <qmljs/qmljsdocument.h>
|
|
#include <qmljs/qmljscheck.h>
|
|
#include <qmljs/jsoncheck.h>
|
|
#include <qmljs/qmljscontext.h>
|
|
#include <qmljs/qmljslink.h>
|
|
#include <qmljstools/qmljsmodelmanager.h>
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
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<const ScopeChain>(scopeChain));
|
|
|
|
if (doc->language() == Dialect::Json) {
|
|
JsonSchema *schema = 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
|