forked from qt-creator/qt-creator
JsonWizardFileGenerator's path member variables become FilePath and GeneratedFile gets the QString based file setter and getter removed. Also, a couple of other function parameters become FilePath. TODOs notes added for further changes. Change-Id: Ic4b791ed71c3c03adb8f15771e2dfa9af593abd8 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: hjk <hjk@qt.io>
138 lines
4.8 KiB
C++
138 lines
4.8 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
|
|
|
#include "jsonwizardscannergenerator.h"
|
|
|
|
#include "../projectmanager.h"
|
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
|
|
|
#include <utils/algorithm.h>
|
|
#include <utils/filepath.h>
|
|
#include <utils/macroexpander.h>
|
|
#include <utils/mimeutils.h>
|
|
#include <utils/qtcassert.h>
|
|
|
|
#include <QCoreApplication>
|
|
#include <QDir>
|
|
#include <QVariant>
|
|
|
|
#include <limits>
|
|
|
|
namespace ProjectExplorer {
|
|
namespace Internal {
|
|
|
|
bool JsonWizardScannerGenerator::setup(const QVariant &data, QString *errorMessage)
|
|
{
|
|
if (data.isNull())
|
|
return true;
|
|
|
|
if (data.type() != QVariant::Map) {
|
|
*errorMessage = QCoreApplication::translate("ProjectExplorer::Internal::JsonWizard",
|
|
"Key is not an object.");
|
|
return false;
|
|
}
|
|
|
|
QVariantMap gen = data.toMap();
|
|
|
|
m_binaryPattern = gen.value(QLatin1String("binaryPattern")).toString();
|
|
const QStringList patterns = gen.value(QLatin1String("subdirectoryPatterns")).toStringList();
|
|
for (const QString &pattern : patterns) {
|
|
QRegularExpression regexp(pattern);
|
|
if (!regexp.isValid()) {
|
|
*errorMessage = QCoreApplication::translate("ProjectExplorer::Internal::JsonWizard",
|
|
"Pattern \"%1\" is no valid regular expression.");
|
|
return false;
|
|
}
|
|
m_subDirectoryExpressions << regexp;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
Core::GeneratedFiles JsonWizardScannerGenerator::fileList(Utils::MacroExpander *expander,
|
|
const Utils::FilePath &wizardDir,
|
|
const Utils::FilePath &projectDir,
|
|
QString *errorMessage)
|
|
{
|
|
Q_UNUSED(wizardDir)
|
|
errorMessage->clear();
|
|
|
|
Core::GeneratedFiles result;
|
|
|
|
QRegularExpression binaryPattern;
|
|
if (!m_binaryPattern.isEmpty()) {
|
|
binaryPattern = QRegularExpression(expander->expand(m_binaryPattern));
|
|
if (!binaryPattern.isValid()) {
|
|
qWarning() << QCoreApplication::translate("ProjectExplorer::Internal::JsonWizard",
|
|
"ScannerGenerator: Binary pattern \"%1\" not valid.")
|
|
.arg(m_binaryPattern);
|
|
return result;
|
|
}
|
|
}
|
|
|
|
result = scan(projectDir, projectDir);
|
|
|
|
static const auto getDepth =
|
|
[](const Utils::FilePath &filePath) { return int(filePath.path().count('/')); };
|
|
int minDepth = std::numeric_limits<int>::max();
|
|
for (auto it = result.begin(); it != result.end(); ++it) {
|
|
const Utils::FilePath relPath = projectDir.relativePath(it->filePath());
|
|
it->setBinary(binaryPattern.match(relPath.toString()).hasMatch());
|
|
bool found = ProjectManager::canOpenProjectForMimeType(Utils::mimeTypeForFile(relPath));
|
|
if (found) {
|
|
it->setAttributes(it->attributes() | Core::GeneratedFile::OpenProjectAttribute);
|
|
minDepth = std::min(minDepth, getDepth(it->filePath()));
|
|
}
|
|
}
|
|
|
|
// Project files that appear on a lower level in the file system hierarchy than
|
|
// other project files are not candidates for opening.
|
|
for (Core::GeneratedFile &f : result) {
|
|
if (f.attributes().testFlag(Core::GeneratedFile::OpenProjectAttribute)
|
|
&& getDepth(f.filePath()) > minDepth) {
|
|
f.setAttributes(f.attributes().setFlag(Core::GeneratedFile::OpenProjectAttribute,
|
|
false));
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
bool JsonWizardScannerGenerator::matchesSubdirectoryPattern(const Utils::FilePath &path)
|
|
{
|
|
for (const QRegularExpression ®exp : qAsConst(m_subDirectoryExpressions)) {
|
|
if (regexp.match(path.path()).hasMatch())
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
Core::GeneratedFiles JsonWizardScannerGenerator::scan(const Utils::FilePath &dir,
|
|
const Utils::FilePath &base)
|
|
{
|
|
Core::GeneratedFiles result;
|
|
|
|
if (!dir.exists())
|
|
return result;
|
|
|
|
const Utils::FilePaths entries = dir.dirEntries({{}, QDir::AllEntries | QDir::NoDotAndDotDot},
|
|
QDir::DirsLast | QDir::Name);
|
|
for (const Utils::FilePath &fi : entries) {
|
|
const Utils::FilePath relativePath = base.relativePath(fi);
|
|
if (fi.isDir() && matchesSubdirectoryPattern(relativePath)) {
|
|
result += scan(fi, base);
|
|
} else {
|
|
Core::GeneratedFile f(fi);
|
|
f.setAttributes(f.attributes() | Core::GeneratedFile::KeepExistingFileAttribute);
|
|
|
|
result.append(f);
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
} // namespace Internal
|
|
} // namespace ProjectExplorer
|