forked from qt-creator/qt-creator
This patchset will add support for version 2 of the CMakePresets feature that has been implemented in CMake 3.20 https://cmake.org/cmake/help/v3.20/manual/cmake-presets.7.html Task-number: QTCREATORBUG-24555 Change-Id: I08934243cc04487d38c4b59c2ad4a4a8d0484492 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
173 lines
7.4 KiB
C++
173 lines
7.4 KiB
C++
// Copyright (C) 2022 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 "presetsmacros.h"
|
|
#include "presetsparser.h"
|
|
|
|
#include <utils/environment.h>
|
|
#include <utils/filepath.h>
|
|
#include <utils/hostosinfo.h>
|
|
|
|
#include <QRegularExpression>
|
|
|
|
namespace CMakeProjectManager::Internal::CMakePresets::Macros {
|
|
|
|
void expandAllButEnv(const PresetsDetails::ConfigurePreset &preset,
|
|
const Utils::FilePath &sourceDirectory,
|
|
QString &value)
|
|
{
|
|
value.replace("${dollar}", "$");
|
|
|
|
value.replace("${sourceDir}", sourceDirectory.toString());
|
|
value.replace("${sourceParentDir}", sourceDirectory.parentDir().toString());
|
|
value.replace("${sourceDirName}", sourceDirectory.fileName());
|
|
|
|
value.replace("${presetName}", preset.name);
|
|
if (preset.generator)
|
|
value.replace("${generator}", preset.generator.value());
|
|
}
|
|
|
|
void expandAllButEnv(const PresetsDetails::BuildPreset &preset,
|
|
const Utils::FilePath &sourceDirectory,
|
|
QString &value)
|
|
{
|
|
value.replace("${dollar}", "$");
|
|
|
|
value.replace("${sourceDir}", sourceDirectory.toString());
|
|
value.replace("${sourceParentDir}", sourceDirectory.parentDir().toString());
|
|
value.replace("${sourceDirName}", sourceDirectory.fileName());
|
|
|
|
value.replace("${presetName}", preset.name);
|
|
}
|
|
|
|
template<class PresetType>
|
|
void expand(const PresetType &preset,
|
|
Utils::Environment &env,
|
|
const Utils::FilePath &sourceDirectory)
|
|
{
|
|
const QHash<QString, QString> presetEnv = preset.environment ? preset.environment.value()
|
|
: QHash<QString, QString>();
|
|
for (auto it = presetEnv.constKeyValueBegin(); it != presetEnv.constKeyValueEnd(); ++it) {
|
|
const QString key = it->first;
|
|
QString value = it->second;
|
|
|
|
expandAllButEnv(preset, sourceDirectory, value);
|
|
|
|
QRegularExpression envRegex(R"((\$env\{(\w+)\}))");
|
|
for (const QRegularExpressionMatch &match : envRegex.globalMatch(value)) {
|
|
if (match.captured(2) != key)
|
|
value.replace(match.captured(1), presetEnv.value(match.captured(2)));
|
|
else
|
|
value.replace(match.captured(1), "");
|
|
}
|
|
|
|
QString sep;
|
|
bool append = true;
|
|
if (key.compare("PATH", Qt::CaseInsensitive) == 0) {
|
|
sep = Utils::OsSpecificAspects::pathListSeparator(env.osType());
|
|
const int index = value.indexOf("$penv{PATH}", 0, Qt::CaseInsensitive);
|
|
if (index != 0)
|
|
append = false;
|
|
value.replace("$penv{PATH}", "", Qt::CaseInsensitive);
|
|
}
|
|
|
|
QRegularExpression penvRegex(R"((\$penv\{(\w+)\}))");
|
|
for (const QRegularExpressionMatch &match : penvRegex.globalMatch(value))
|
|
value.replace(match.captured(1), env.value(match.captured(2)));
|
|
|
|
if (append)
|
|
env.appendOrSet(key, value, sep);
|
|
else
|
|
env.prependOrSet(key, value, sep);
|
|
}
|
|
}
|
|
|
|
template<class PresetType>
|
|
void expand(const PresetType &preset,
|
|
Utils::EnvironmentItems &envItems,
|
|
const Utils::FilePath &sourceDirectory)
|
|
{
|
|
const QHash<QString, QString> presetEnv = preset.environment ? preset.environment.value()
|
|
: QHash<QString, QString>();
|
|
|
|
for (auto it = presetEnv.constKeyValueBegin(); it != presetEnv.constKeyValueEnd(); ++it) {
|
|
const QString key = it->first;
|
|
QString value = it->second;
|
|
|
|
expandAllButEnv(preset, sourceDirectory, value);
|
|
|
|
QRegularExpression envRegex(R"((\$env\{(\w+)\}))");
|
|
for (const QRegularExpressionMatch &match : envRegex.globalMatch(value)) {
|
|
if (match.captured(2) != key)
|
|
value.replace(match.captured(1), presetEnv.value(match.captured(2)));
|
|
else
|
|
value.replace(match.captured(1), "");
|
|
}
|
|
|
|
auto operation = Utils::EnvironmentItem::Operation::SetEnabled;
|
|
if (key.compare("PATH", Qt::CaseInsensitive) == 0) {
|
|
operation = Utils::EnvironmentItem::Operation::Append;
|
|
const int index = value.indexOf("$penv{PATH}", 0, Qt::CaseInsensitive);
|
|
if (index != 0)
|
|
operation = Utils::EnvironmentItem::Operation::Prepend;
|
|
value.replace("$penv{PATH}", "", Qt::CaseInsensitive);
|
|
}
|
|
|
|
QRegularExpression penvRegex(R"((\$penv\{(\w+)\}))");
|
|
for (const QRegularExpressionMatch &match : penvRegex.globalMatch(value))
|
|
value.replace(match.captured(1), QString("${%1}").arg(match.captured(2)));
|
|
|
|
envItems.emplace_back(Utils::EnvironmentItem(key, value, operation));
|
|
}
|
|
}
|
|
|
|
template<class PresetType>
|
|
void expand(const PresetType &preset,
|
|
const Utils::Environment &env,
|
|
const Utils::FilePath &sourceDirectory,
|
|
QString &value)
|
|
{
|
|
expandAllButEnv(preset, sourceDirectory, value);
|
|
|
|
const QHash<QString, QString> presetEnv = preset.environment ? preset.environment.value()
|
|
: QHash<QString, QString>();
|
|
|
|
QRegularExpression envRegex(R"((\$env\{(\w+)\}))");
|
|
for (const QRegularExpressionMatch &match : envRegex.globalMatch(value))
|
|
value.replace(match.captured(1), presetEnv.value(match.captured(2)));
|
|
|
|
QRegularExpression penvRegex(R"((\$penv\{(\w+)\}))");
|
|
for (const QRegularExpressionMatch &match : penvRegex.globalMatch(value))
|
|
value.replace(match.captured(1), env.value(match.captured(2)));
|
|
}
|
|
|
|
// Expand for PresetsDetails::ConfigurePreset
|
|
template void expand<PresetsDetails::ConfigurePreset>(const PresetsDetails::ConfigurePreset &preset,
|
|
Utils::Environment &env,
|
|
const Utils::FilePath &sourceDirectory);
|
|
|
|
template void expand<PresetsDetails::ConfigurePreset>(const PresetsDetails::ConfigurePreset &preset,
|
|
Utils::EnvironmentItems &envItems,
|
|
const Utils::FilePath &sourceDirectory);
|
|
|
|
template void expand<PresetsDetails::ConfigurePreset>(const PresetsDetails::ConfigurePreset &preset,
|
|
const Utils::Environment &env,
|
|
const Utils::FilePath &sourceDirectory,
|
|
QString &value);
|
|
|
|
// Expand for PresetsDetails::BuildPreset
|
|
template void expand<PresetsDetails::BuildPreset>(const PresetsDetails::BuildPreset &preset,
|
|
Utils::Environment &env,
|
|
const Utils::FilePath &sourceDirectory);
|
|
|
|
template void expand<PresetsDetails::BuildPreset>(const PresetsDetails::BuildPreset &preset,
|
|
Utils::EnvironmentItems &envItems,
|
|
const Utils::FilePath &sourceDirectory);
|
|
|
|
template void expand<PresetsDetails::BuildPreset>(const PresetsDetails::BuildPreset &preset,
|
|
const Utils::Environment &env,
|
|
const Utils::FilePath &sourceDirectory,
|
|
QString &value);
|
|
|
|
} // namespace CMakeProjectManager::Internal::CMakePresets::Macros
|