2015-08-26 09:37:55 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) Filippo Cucchetto <filippocucchetto@gmail.com>
|
|
|
|
|
** Contact: http://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.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
2016-06-14 20:33:55 +03:00
|
|
|
#include "nimproject.h"
|
|
|
|
|
#include "nimbuildconfiguration.h"
|
|
|
|
|
#include "nimprojectnode.h"
|
2017-01-21 23:36:14 +01:00
|
|
|
#include "nimtoolchain.h"
|
2015-08-26 09:37:55 +02:00
|
|
|
|
2016-06-14 20:33:55 +03:00
|
|
|
#include "../nimconstants.h"
|
2015-08-26 09:37:55 +02:00
|
|
|
|
2016-10-20 16:20:01 +02:00
|
|
|
#include <coreplugin/progressmanager/progressmanager.h>
|
2015-08-26 09:37:55 +02:00
|
|
|
#include <projectexplorer/buildconfiguration.h>
|
|
|
|
|
#include <projectexplorer/kit.h>
|
|
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
2017-03-27 12:12:38 +02:00
|
|
|
#include <projectexplorer/projectnodes.h>
|
2015-08-26 09:37:55 +02:00
|
|
|
#include <projectexplorer/target.h>
|
2017-01-21 23:36:14 +01:00
|
|
|
#include <projectexplorer/toolchain.h>
|
|
|
|
|
#include <projectexplorer/kitinformation.h>
|
2015-08-26 09:37:55 +02:00
|
|
|
#include <texteditor/textdocument.h>
|
|
|
|
|
|
2016-09-30 22:52:12 +02:00
|
|
|
#include <utils/algorithm.h>
|
2016-10-20 16:20:01 +02:00
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
#include <utils/runextensions.h>
|
2016-09-30 22:52:12 +02:00
|
|
|
|
2015-08-26 09:37:55 +02:00
|
|
|
#include <QFileInfo>
|
|
|
|
|
#include <QQueue>
|
|
|
|
|
|
|
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
using namespace Utils;
|
|
|
|
|
|
|
|
|
|
namespace Nim {
|
|
|
|
|
|
|
|
|
|
const int MIN_TIME_BETWEEN_PROJECT_SCANS = 4500;
|
|
|
|
|
|
2017-03-29 11:25:01 +02:00
|
|
|
NimProject::NimProject(const FileName &fileName) : Project(Constants::C_NIM_MIMETYPE, fileName)
|
2015-08-26 09:37:55 +02:00
|
|
|
{
|
|
|
|
|
setId(Constants::C_NIMPROJECT_ID);
|
|
|
|
|
|
|
|
|
|
m_projectScanTimer.setSingleShot(true);
|
2016-10-20 16:20:01 +02:00
|
|
|
connect(&m_projectScanTimer, &QTimer::timeout, this, &NimProject::collectProjectFiles);
|
2015-08-26 09:37:55 +02:00
|
|
|
|
2016-10-20 16:20:01 +02:00
|
|
|
connect(&m_futureWatcher, &QFutureWatcher<QList<FileNode *>>::finished, this, &NimProject::updateProject);
|
|
|
|
|
|
|
|
|
|
collectProjectFiles();
|
2015-08-26 09:37:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString NimProject::displayName() const
|
|
|
|
|
{
|
2017-03-03 17:10:00 +01:00
|
|
|
return projectFilePath().toFileInfo().completeBaseName();
|
2015-08-26 09:37:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool NimProject::needsConfiguration() const
|
|
|
|
|
{
|
|
|
|
|
return targets().empty();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NimProject::scheduleProjectScan()
|
|
|
|
|
{
|
|
|
|
|
auto elapsedTime = m_lastProjectScan.elapsed();
|
|
|
|
|
if (elapsedTime < MIN_TIME_BETWEEN_PROJECT_SCANS) {
|
|
|
|
|
if (!m_projectScanTimer.isActive()) {
|
|
|
|
|
m_projectScanTimer.setInterval(MIN_TIME_BETWEEN_PROJECT_SCANS - elapsedTime);
|
|
|
|
|
m_projectScanTimer.start();
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2016-10-20 16:20:01 +02:00
|
|
|
collectProjectFiles();
|
2015-08-26 09:37:55 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-03 13:34:01 +01:00
|
|
|
bool NimProject::addFiles(const QStringList &filePaths)
|
|
|
|
|
{
|
|
|
|
|
m_excludedFiles = Utils::filtered(m_excludedFiles, [&](const QString &f) { return !filePaths.contains(f); });
|
|
|
|
|
scheduleProjectScan();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool NimProject::removeFiles(const QStringList &filePaths)
|
|
|
|
|
{
|
|
|
|
|
m_excludedFiles.append(filePaths);
|
|
|
|
|
m_excludedFiles = Utils::filteredUnique(m_excludedFiles);
|
|
|
|
|
scheduleProjectScan();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool NimProject::renameFile(const QString &filePath, const QString &newFilePath)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(filePath)
|
|
|
|
|
m_excludedFiles.removeOne(newFilePath);
|
|
|
|
|
scheduleProjectScan();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-20 16:20:01 +02:00
|
|
|
void NimProject::collectProjectFiles()
|
2015-08-26 09:37:55 +02:00
|
|
|
{
|
|
|
|
|
m_lastProjectScan.start();
|
2016-12-03 12:41:44 +01:00
|
|
|
QTC_ASSERT(!m_futureWatcher.future().isRunning(), return);
|
|
|
|
|
FileName prjDir = projectDirectory();
|
|
|
|
|
QFuture<QList<ProjectExplorer::FileNode *>> future = Utils::runAsync([prjDir] {
|
|
|
|
|
return FileNode::scanForFiles(prjDir, [](const FileName &fn) { return new FileNode(fn, FileType::Source, false); });
|
2016-10-20 16:20:01 +02:00
|
|
|
});
|
2016-12-03 12:41:44 +01:00
|
|
|
m_futureWatcher.setFuture(future);
|
|
|
|
|
Core::ProgressManager::addTask(future, tr("Scanning for Nim files"), "Nim.Project.Scan");
|
2016-10-20 16:20:01 +02:00
|
|
|
}
|
2015-08-26 09:37:55 +02:00
|
|
|
|
2016-10-20 16:20:01 +02:00
|
|
|
void NimProject::updateProject()
|
|
|
|
|
{
|
2017-03-27 12:12:38 +02:00
|
|
|
const QStringList oldFiles = m_files;
|
2015-08-26 09:37:55 +02:00
|
|
|
m_files.clear();
|
|
|
|
|
|
2016-12-03 12:41:44 +01:00
|
|
|
QList<FileNode *> fileNodes = Utils::filtered(m_futureWatcher.future().result(),
|
2016-12-03 13:34:01 +01:00
|
|
|
[&](const FileNode *fn) {
|
|
|
|
|
const FileName path = fn->filePath();
|
|
|
|
|
const QString fileName = path.fileName();
|
|
|
|
|
const bool keep = !m_excludedFiles.contains(path.toString())
|
|
|
|
|
&& !fileName.endsWith(".nimproject", HostOsInfo::fileNameCaseSensitivity())
|
2016-10-20 16:20:01 +02:00
|
|
|
&& !fileName.contains(".nimproject.user", HostOsInfo::fileNameCaseSensitivity());
|
2016-12-15 16:48:39 +01:00
|
|
|
if (!keep)
|
|
|
|
|
delete fn;
|
|
|
|
|
return keep;
|
2016-10-20 16:20:01 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
m_files = Utils::transform(fileNodes, [](const FileNode *fn) { return fn->filePath().toString(); });
|
|
|
|
|
Utils::sort(m_files, [](const QString &a, const QString &b) { return a < b; });
|
|
|
|
|
|
|
|
|
|
if (oldFiles == m_files)
|
2016-09-30 22:52:12 +02:00
|
|
|
return;
|
2015-08-26 09:37:55 +02:00
|
|
|
|
2017-03-03 15:13:06 +01:00
|
|
|
auto newRoot = new NimProjectNode(*this, projectDirectory());
|
|
|
|
|
newRoot->setDisplayName(displayName());
|
2017-03-10 17:30:40 +01:00
|
|
|
newRoot->addNestedNodes(fileNodes);
|
2017-03-03 15:13:06 +01:00
|
|
|
setRootProjectNode(newRoot);
|
2016-10-20 13:18:54 +02:00
|
|
|
emit parsingFinished();
|
2015-08-26 09:37:55 +02:00
|
|
|
}
|
|
|
|
|
|
2017-01-21 23:36:14 +01:00
|
|
|
bool NimProject::supportsKit(Kit *k, QString *errorMessage) const
|
2015-08-26 09:37:55 +02:00
|
|
|
{
|
2017-01-21 23:36:14 +01:00
|
|
|
auto tc = dynamic_cast<NimToolChain*>(ToolChainKitInformation::toolChain(k, Constants::C_NIMLANGUAGE_ID));
|
|
|
|
|
if (!tc) {
|
|
|
|
|
if (errorMessage)
|
|
|
|
|
*errorMessage = tr("No nim compiler set.");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if (!tc->compilerCommand().exists()) {
|
|
|
|
|
if (errorMessage)
|
|
|
|
|
*errorMessage = tr("Nim compiler doesn't exist");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
2015-08-26 09:37:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FileNameList NimProject::nimFiles() const
|
|
|
|
|
{
|
2017-03-27 12:12:38 +02:00
|
|
|
const QStringList nim = files(AllFiles, [](const ProjectExplorer::FileNode *fn) {
|
|
|
|
|
return fn->filePath().endsWith(".nim");
|
2017-02-23 12:19:23 +01:00
|
|
|
});
|
2017-03-27 12:12:38 +02:00
|
|
|
return Utils::transform(nim, [](const QString &fp) { return Utils::FileName::fromString(fp); });
|
2015-08-26 09:37:55 +02:00
|
|
|
}
|
|
|
|
|
|
2016-12-03 13:34:01 +01:00
|
|
|
QVariantMap NimProject::toMap() const
|
|
|
|
|
{
|
|
|
|
|
QVariantMap result = Project::toMap();
|
|
|
|
|
result[Constants::C_NIMPROJECT_EXCLUDEDFILES] = m_excludedFiles;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Project::RestoreResult NimProject::fromMap(const QVariantMap &map, QString *errorMessage)
|
|
|
|
|
{
|
|
|
|
|
m_excludedFiles = map.value(Constants::C_NIMPROJECT_EXCLUDEDFILES).toStringList();
|
|
|
|
|
return Project::fromMap(map, errorMessage);
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-27 12:12:38 +02:00
|
|
|
} // namespace Nim
|