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"
|
|
|
|
|
#include "nimprojectmanager.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
|
|
|
|
|
|
|
|
#include <projectexplorer/buildconfiguration.h>
|
|
|
|
|
#include <projectexplorer/kit.h>
|
|
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
|
|
|
|
#include <projectexplorer/target.h>
|
|
|
|
|
#include <texteditor/textdocument.h>
|
|
|
|
|
|
2016-09-30 22:52:12 +02:00
|
|
|
#include <utils/algorithm.h>
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
NimProject::NimProject(NimProjectManager *projectManager, const QString &fileName)
|
|
|
|
|
{
|
|
|
|
|
setId(Constants::C_NIMPROJECT_ID);
|
2016-09-30 22:52:12 +02:00
|
|
|
setProjectManager(projectManager);
|
|
|
|
|
setDocument(new TextEditor::TextDocument);
|
|
|
|
|
document()->setFilePath(FileName::fromString(fileName));
|
|
|
|
|
QFileInfo fi = QFileInfo(fileName);
|
|
|
|
|
QDir dir = fi.dir();
|
|
|
|
|
setRootProjectNode(new NimProjectNode(FileName::fromString(dir.absolutePath())));
|
|
|
|
|
rootProjectNode()->setDisplayName(dir.dirName());
|
2015-08-26 09:37:55 +02:00
|
|
|
|
|
|
|
|
m_projectScanTimer.setSingleShot(true);
|
|
|
|
|
connect(&m_projectScanTimer, &QTimer::timeout, this, &NimProject::populateProject);
|
|
|
|
|
|
|
|
|
|
populateProject();
|
|
|
|
|
|
|
|
|
|
connect(&m_fsWatcher, &QFileSystemWatcher::directoryChanged, this, &NimProject::scheduleProjectScan);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString NimProject::displayName() const
|
|
|
|
|
{
|
2016-09-30 22:52:12 +02:00
|
|
|
return rootProjectNode()->displayName();
|
2015-08-26 09:37:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList NimProject::files(FilesMode) const
|
|
|
|
|
{
|
|
|
|
|
return QStringList(m_files.toList());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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 {
|
|
|
|
|
populateProject();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NimProject::populateProject()
|
|
|
|
|
{
|
|
|
|
|
m_lastProjectScan.start();
|
|
|
|
|
|
2016-09-30 22:52:12 +02:00
|
|
|
QSet<QString> oldFiles = m_files;
|
2015-08-26 09:37:55 +02:00
|
|
|
m_files.clear();
|
2016-09-30 22:52:12 +02:00
|
|
|
recursiveScanDirectory(QDir(projectDirectory().toString()), m_files);
|
2015-08-26 09:37:55 +02:00
|
|
|
|
2016-09-30 22:52:12 +02:00
|
|
|
if (m_files == oldFiles)
|
|
|
|
|
return;
|
2015-08-26 09:37:55 +02:00
|
|
|
|
2016-09-30 22:52:12 +02:00
|
|
|
QList<FileNode *> fileNodes = Utils::transform(m_files.toList(), [](const QString &f) {
|
|
|
|
|
return new FileNode(FileName::fromString(f), SourceType, false);
|
|
|
|
|
});
|
|
|
|
|
rootProjectNode()->buildTree(fileNodes);
|
2015-08-26 09:37:55 +02:00
|
|
|
|
2016-09-30 22:52:12 +02:00
|
|
|
emit fileListChanged();
|
2015-08-26 09:37:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NimProject::recursiveScanDirectory(const QDir &dir, QSet<QString> &container)
|
|
|
|
|
{
|
|
|
|
|
static const QRegExp projectFilePattern(QLatin1String(".*\\.nimproject(?:\\.user)?$"));
|
|
|
|
|
for (const QFileInfo &info : dir.entryInfoList(QDir::AllDirs |
|
|
|
|
|
QDir::Files |
|
|
|
|
|
QDir::NoDotAndDotDot |
|
|
|
|
|
QDir::NoSymLinks |
|
|
|
|
|
QDir::CaseSensitive)) {
|
|
|
|
|
if (info.isDir())
|
|
|
|
|
recursiveScanDirectory(QDir(info.filePath()), container);
|
|
|
|
|
else if (projectFilePattern.indexIn(info.fileName()) == -1)
|
|
|
|
|
container << info.filePath();
|
|
|
|
|
}
|
|
|
|
|
m_fsWatcher.addPath(dir.absolutePath());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool NimProject::supportsKit(Kit *k, QString *) const
|
|
|
|
|
{
|
|
|
|
|
return k->isValid();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FileNameList NimProject::nimFiles() const
|
|
|
|
|
{
|
|
|
|
|
FileNameList result;
|
|
|
|
|
|
|
|
|
|
QQueue<FolderNode *> folders;
|
2016-09-30 22:52:12 +02:00
|
|
|
folders.enqueue(rootProjectNode());
|
2015-08-26 09:37:55 +02:00
|
|
|
|
|
|
|
|
while (!folders.isEmpty()) {
|
|
|
|
|
FolderNode *folder = folders.takeFirst();
|
|
|
|
|
for (FileNode *file : folder->fileNodes()) {
|
|
|
|
|
if (file->displayName().endsWith(QLatin1String(".nim")))
|
|
|
|
|
result.append(file->filePath());
|
|
|
|
|
}
|
|
|
|
|
folders.append(folder->subFolderNodes());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|