/**************************************************************************** ** ** Copyright (C) Filippo Cucchetto ** 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. ** ****************************************************************************/ #include "nimproject.h" #include "nimbuildconfiguration.h" #include "nimprojectnode.h" #include "nimprojectmanager.h" #include "../nimconstants.h" #include #include #include #include #include #include #include #include #include #include #include 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); 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()); m_projectScanTimer.setSingleShot(true); connect(&m_projectScanTimer, &QTimer::timeout, this, &NimProject::collectProjectFiles); m_futureWatcher.setFuture(m_futureInterface.future()); connect(&m_futureWatcher, &QFutureWatcher>::finished, this, &NimProject::updateProject); collectProjectFiles(); } QString NimProject::displayName() const { return rootProjectNode()->displayName(); } QStringList NimProject::files(FilesMode) const { return m_files; } 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 { collectProjectFiles(); } } void NimProject::collectProjectFiles() { m_lastProjectScan.start(); QTC_ASSERT(!m_futureInterface.isRunning(), return); runAsync([this]() { m_futureInterface.reportStarted(); QList nodes = FileNode::scanForFiles(projectDirectory(), [](const FileName &fn) { return new FileNode(fn, FileType::Source, false); }, &m_futureInterface); m_futureInterface.setProgressValue(m_futureInterface.progressMaximum()); m_futureInterface.reportResult(nodes); m_futureInterface.reportFinished(); }); Core::ProgressManager::addTask(m_futureInterface.future(), tr("Scanning for Nim files"), "Nim.Project.Scan"); } void NimProject::updateProject() { QStringList oldFiles = m_files; m_files.clear(); QList fileNodes = Utils::filtered(m_futureInterface.future().result(), [](const FileNode *fn) { const QString fileName = fn->filePath().fileName(); return !fileName.endsWith(".nimproject", HostOsInfo::fileNameCaseSensitivity()) && !fileName.contains(".nimproject.user", HostOsInfo::fileNameCaseSensitivity()); }); 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) return; rootProjectNode()->buildTree(fileNodes); emit fileListChanged(); emit parsingFinished(); } bool NimProject::supportsKit(Kit *k, QString *) const { return k->isValid(); } FileNameList NimProject::nimFiles() const { FileNameList result; QQueue folders; folders.enqueue(rootProjectNode()); 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->folderNodes()); } return result; } }