forked from qt-creator/qt-creator
We require Qt 5.14 nowadays. Change-Id: Iff245257d3cb19207007c0445ee13814e66152dd Reviewed-by: Orgad Shaneh <orgads@gmail.com> Reviewed-by: Christian Stenger <christian.stenger@qt.io>
102 lines
3.6 KiB
C++
102 lines
3.6 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2016 Dmitry Savchenko
|
|
** Copyright (C) 2016 Vasiliy Sorokin
|
|
** Contact: https://www.qt.io/licensing/
|
|
**
|
|
** 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 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.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "qmljstodoitemsscanner.h"
|
|
|
|
#include <projectexplorer/project.h>
|
|
|
|
#include <qmljs/parser/qmljsengine_p.h>
|
|
|
|
#include <utils/stringutils.h>
|
|
|
|
namespace Todo {
|
|
namespace Internal {
|
|
|
|
QmlJsTodoItemsScanner::QmlJsTodoItemsScanner(const KeywordList &keywordList, QObject *parent) :
|
|
TodoItemsScanner(keywordList, parent)
|
|
{
|
|
QmlJS::ModelManagerInterface *model = QmlJS::ModelManagerInterface::instance();
|
|
connect(model, &QmlJS::ModelManagerInterface::documentUpdated,
|
|
this, &QmlJsTodoItemsScanner::documentUpdated, Qt::DirectConnection);
|
|
|
|
setParams(keywordList);
|
|
}
|
|
|
|
bool QmlJsTodoItemsScanner::shouldProcessFile(const QString &fileName)
|
|
{
|
|
QmlJS::ModelManagerInterface *modelManager = QmlJS::ModelManagerInterface::instance();
|
|
foreach (const QmlJS::ModelManagerInterface::ProjectInfo &info, modelManager->projectInfos()) {
|
|
if (info.sourceFiles.contains(fileName))
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
void QmlJsTodoItemsScanner::scannerParamsChanged()
|
|
{
|
|
// We need to rescan everything known to the code model
|
|
// TODO: It would be nice to only tokenize the source files, not update the code model entirely.
|
|
|
|
QmlJS::ModelManagerInterface *modelManager = QmlJS::ModelManagerInterface::instance();
|
|
|
|
QStringList filesToBeUpdated;
|
|
foreach (const QmlJS::ModelManagerInterface::ProjectInfo &info, modelManager->projectInfos())
|
|
filesToBeUpdated << info.sourceFiles;
|
|
|
|
modelManager->updateSourceFiles(filesToBeUpdated, false);
|
|
}
|
|
|
|
void QmlJsTodoItemsScanner::documentUpdated(QmlJS::Document::Ptr doc)
|
|
{
|
|
if (shouldProcessFile(doc->fileName()))
|
|
processDocument(doc);
|
|
}
|
|
|
|
void QmlJsTodoItemsScanner::processDocument(QmlJS::Document::Ptr doc)
|
|
{
|
|
QList<TodoItem> itemList;
|
|
|
|
foreach (const QmlJS::SourceLocation &sourceLocation, doc->engine()->comments()) {
|
|
QString source = doc->source().mid(sourceLocation.begin(), sourceLocation.length).trimmed();
|
|
|
|
// Process every line
|
|
// TODO: Do not create QStringList, just iterate through a string tracking line endings.
|
|
QStringList commentLines = source.split('\n', Qt::SkipEmptyParts);
|
|
quint32 startLine = sourceLocation.startLine;
|
|
for (int j = 0; j < commentLines.count(); ++j) {
|
|
const QString &commentLine = commentLines.at(j);
|
|
processCommentLine(doc->fileName(), commentLine, startLine + j, itemList);
|
|
}
|
|
|
|
}
|
|
|
|
emit itemsFetched(doc->fileName(), itemList);
|
|
}
|
|
|
|
}
|
|
}
|