2011-10-25 23:14:27 +03:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
2013-01-28 17:12:19 +01:00
|
|
|
** Copyright (c) 2013 Dmitry Savchenko
|
|
|
|
|
** Copyright (c) 2013 Vasiliy Sorokin
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2011-10-25 23:14:27 +03:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-10-25 23:14:27 +03:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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.
|
2011-10-25 23:14:27 +03:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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
|
2011-10-25 23:14:27 +03:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-10-25 23:14:27 +03:00
|
|
|
|
|
|
|
|
#include "todoitemsprovider.h"
|
|
|
|
|
#include "constants.h"
|
|
|
|
|
#include "cpptodoitemsscanner.h"
|
|
|
|
|
#include "qmljstodoitemsscanner.h"
|
2012-02-24 09:43:52 +01:00
|
|
|
#include "todoitemsmodel.h"
|
|
|
|
|
#include "todoitemsscanner.h"
|
2011-10-25 23:14:27 +03:00
|
|
|
|
|
|
|
|
#include <projectexplorer/projectexplorer.h>
|
|
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
|
|
|
|
#include <projectexplorer/session.h>
|
|
|
|
|
|
|
|
|
|
#include <QTimer>
|
|
|
|
|
|
|
|
|
|
namespace Todo {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
TodoItemsProvider::TodoItemsProvider(Settings settings, QObject *parent) :
|
|
|
|
|
QObject(parent),
|
|
|
|
|
m_settings(settings)
|
|
|
|
|
{
|
|
|
|
|
setupItemsModel();
|
|
|
|
|
setupStartupProjectBinding();
|
|
|
|
|
setupCurrentEditorBinding();
|
|
|
|
|
setupUpdateListTimer();
|
|
|
|
|
createScanners();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TodoItemsModel *TodoItemsProvider::todoItemsModel()
|
|
|
|
|
{
|
|
|
|
|
return m_itemsModel;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TodoItemsProvider::settingsChanged(const Settings &newSettings)
|
|
|
|
|
{
|
|
|
|
|
if (newSettings.keywords != m_settings.keywords)
|
|
|
|
|
foreach (TodoItemsScanner *scanner, m_scanners)
|
|
|
|
|
scanner->setKeywordList(newSettings.keywords);
|
|
|
|
|
|
|
|
|
|
m_settings = newSettings;
|
|
|
|
|
|
|
|
|
|
updateList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TodoItemsProvider::updateList()
|
|
|
|
|
{
|
|
|
|
|
m_itemsList.clear();
|
|
|
|
|
|
|
|
|
|
// Show only items of the current file if any
|
|
|
|
|
if (m_settings.scanningScope == ScanningScopeCurrentFile) {
|
|
|
|
|
if (m_currentEditor)
|
2013-07-04 13:30:26 +02:00
|
|
|
m_itemsList = m_itemsHash.value(m_currentEditor->document()->filePath());
|
2011-10-25 23:14:27 +03:00
|
|
|
// Show only items of the startup project if any
|
2013-07-17 00:01:45 +03:00
|
|
|
} else {
|
2011-10-25 23:14:27 +03:00
|
|
|
if (m_startupProject)
|
|
|
|
|
setItemsListWithinStartupProject();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_itemsModel->todoItemsListUpdated();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TodoItemsProvider::createScanners()
|
|
|
|
|
{
|
|
|
|
|
qRegisterMetaType<QList<TodoItem> >("QList<TodoItem>");
|
|
|
|
|
|
2013-04-02 11:28:11 +02:00
|
|
|
if (CppTools::CppModelManagerInterface::instance())
|
2011-10-25 23:14:27 +03:00
|
|
|
m_scanners << new CppTodoItemsScanner(m_settings.keywords, this);
|
|
|
|
|
|
|
|
|
|
if (QmlJS::ModelManagerInterface::instance())
|
|
|
|
|
m_scanners << new QmlJsTodoItemsScanner(m_settings.keywords, this);
|
|
|
|
|
|
|
|
|
|
foreach (TodoItemsScanner *scanner, m_scanners)
|
|
|
|
|
connect(scanner, SIGNAL(itemsFetched(QString,QList<TodoItem>)), this,
|
|
|
|
|
SLOT(itemsFetched(QString,QList<TodoItem>)), Qt::QueuedConnection);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TodoItemsProvider::setItemsListWithinStartupProject()
|
|
|
|
|
{
|
|
|
|
|
QHashIterator<QString, QList<TodoItem> > it(m_itemsHash);
|
2013-04-10 16:12:39 +02:00
|
|
|
QSet<QString> fileNames = QSet<QString>::fromList(m_startupProject->files(ProjectExplorer::Project::ExcludeGeneratedFiles));
|
2011-10-25 23:14:27 +03:00
|
|
|
while (it.hasNext()) {
|
|
|
|
|
it.next();
|
|
|
|
|
if (fileNames.contains(it.key()))
|
|
|
|
|
m_itemsList << it.value();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TodoItemsProvider::itemsFetched(const QString &fileName, const QList<TodoItem> &items)
|
|
|
|
|
{
|
|
|
|
|
// Replace old items with new ones
|
|
|
|
|
m_itemsHash.insert(fileName, items);
|
|
|
|
|
|
|
|
|
|
m_shouldUpdateList = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TodoItemsProvider::startupProjectChanged(ProjectExplorer::Project *project)
|
|
|
|
|
{
|
|
|
|
|
m_startupProject = project;
|
|
|
|
|
updateList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TodoItemsProvider::projectsFilesChanged()
|
|
|
|
|
{
|
|
|
|
|
updateList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TodoItemsProvider::currentEditorChanged(Core::IEditor *editor)
|
|
|
|
|
{
|
|
|
|
|
m_currentEditor = editor;
|
|
|
|
|
if (m_settings.scanningScope == ScanningScopeCurrentFile)
|
|
|
|
|
updateList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TodoItemsProvider::updateListTimeoutElapsed()
|
|
|
|
|
{
|
|
|
|
|
if (m_shouldUpdateList) {
|
|
|
|
|
m_shouldUpdateList = false;
|
|
|
|
|
updateList();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TodoItemsProvider::setupStartupProjectBinding()
|
|
|
|
|
{
|
|
|
|
|
ProjectExplorer::ProjectExplorerPlugin *projectExplorerPlugin = ProjectExplorer::ProjectExplorerPlugin::instance();
|
|
|
|
|
|
|
|
|
|
m_startupProject = projectExplorerPlugin->startupProject();
|
|
|
|
|
connect(projectExplorerPlugin->session(), SIGNAL(startupProjectChanged(ProjectExplorer::Project*)),
|
|
|
|
|
SLOT(startupProjectChanged(ProjectExplorer::Project*)));
|
|
|
|
|
connect(projectExplorerPlugin, SIGNAL(fileListChanged()), SLOT(projectsFilesChanged()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TodoItemsProvider::setupCurrentEditorBinding()
|
|
|
|
|
{
|
|
|
|
|
Core::EditorManager *editorManager = Core::EditorManager::instance();
|
|
|
|
|
|
2012-05-08 09:43:14 +02:00
|
|
|
m_currentEditor = Core::EditorManager::currentEditor();
|
2011-10-25 23:14:27 +03:00
|
|
|
connect(editorManager, SIGNAL(currentEditorChanged(Core::IEditor*)),
|
|
|
|
|
SLOT(currentEditorChanged(Core::IEditor*)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TodoItemsProvider::setupUpdateListTimer()
|
|
|
|
|
{
|
|
|
|
|
m_shouldUpdateList = false;
|
|
|
|
|
QTimer *timer = new QTimer(this);
|
|
|
|
|
connect(timer, SIGNAL(timeout()), SLOT(updateListTimeoutElapsed()));
|
|
|
|
|
timer->start(Constants::OUTPUT_PANE_UPDATE_INTERVAL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TodoItemsProvider::setupItemsModel()
|
|
|
|
|
{
|
|
|
|
|
m_itemsModel = new TodoItemsModel(this);
|
|
|
|
|
m_itemsModel->setTodoItemsList(&m_itemsList);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|