/**************************************************************************** ** ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. ** ** 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. ** ****************************************************************************/ #include "qmljssemanticinfoupdater.h" #include "qmljseditorplugin.h" #include #include #include #include #include #include #include #include #include namespace QmlJSEditor { namespace Internal { SemanticInfoUpdater::SemanticInfoUpdater(QObject *parent) : QThread(parent) , m_wasCancelled(false) { } SemanticInfoUpdater::~SemanticInfoUpdater() { } 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); ScopeChain *scopeChain = new ScopeChain(doc, semanticInfo.context); semanticInfo.setRootScopeChain(QSharedPointer(scopeChain)); if (doc->language() == Language::Json) { Utils::JsonSchema *schema = QmlJSEditorPlugin::instance()->jsonManager()->schemaForFile(doc->fileName()); if (schema) { JsonCheck jsonChecker(doc); semanticInfo.staticAnalysisMessages = jsonChecker(schema); } } else { Check checker(doc, semanticInfo.context); semanticInfo.staticAnalysisMessages = checker(); } return semanticInfo; } } // namespace Internal } // namespace QmlJSEditor