Files
qt-creator/src/plugins/projectexplorer/runconfiguration.cpp
hjk 7a2d4ed080 ProjectExplorer: Don't use QObject parents for ProjectConfigurations
... for ownership.

It was not really used anymore, the target manually deletes
build/run/deploy configurations, steplist their steps and
steplists themselves are proper members in build/deploy config.

Change-Id: I8addd1db0700342629fdab004ab42aa64291e93a
Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
2023-07-31 09:54:06 +00:00

674 lines
21 KiB
C++

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "runconfiguration.h"
#include "buildconfiguration.h"
#include "buildsystem.h"
#include "environmentaspect.h"
#include "kitinformation.h"
#include "kitinformation.h"
#include "project.h"
#include "projectexplorer.h"
#include "projectexplorerconstants.h"
#include "projectexplorertr.h"
#include "projectmanager.h"
#include "projectnodes.h"
#include "runconfigurationaspects.h"
#include "runcontrol.h"
#include "target.h"
#include <coreplugin/icontext.h>
#include <coreplugin/icore.h>
#include <projectexplorer/devicesupport/idevice.h>
#include <projectexplorer/projectexplorerconstants.h>
#include <utils/algorithm.h>
#include <utils/checkablemessagebox.h>
#include <utils/detailswidget.h>
#include <utils/layoutbuilder.h>
#include <utils/outputformatter.h>
#include <utils/qtcassert.h>
#include <utils/utilsicons.h>
#include <utils/variablechooser.h>
#include <QHash>
#include <QPushButton>
#include <QTimer>
#include <QLoggingCategory>
#include <QSettings>
using namespace Utils;
using namespace ProjectExplorer::Internal;
namespace ProjectExplorer {
const char BUILD_KEY[] = "ProjectExplorer.RunConfiguration.BuildKey";
const char CUSTOMIZED_KEY[] = "ProjectExplorer.RunConfiguration.Customized";
///////////////////////////////////////////////////////////////////////
//
// IRunConfigurationAspect
//
///////////////////////////////////////////////////////////////////////
GlobalOrProjectAspect::GlobalOrProjectAspect()
{
addDataExtractor(this, &GlobalOrProjectAspect::currentSettings, &Data::currentSettings);
}
GlobalOrProjectAspect::~GlobalOrProjectAspect()
{
delete m_projectSettings;
}
void GlobalOrProjectAspect::setProjectSettings(AspectContainer *settings)
{
m_projectSettings = settings;
m_projectSettings->setAutoApply(true);
}
void GlobalOrProjectAspect::setGlobalSettings(AspectContainer *settings)
{
m_globalSettings = settings;
m_projectSettings->setAutoApply(false);
}
void GlobalOrProjectAspect::setUsingGlobalSettings(bool value)
{
m_useGlobalSettings = value;
}
AspectContainer *GlobalOrProjectAspect::currentSettings() const
{
return m_useGlobalSettings ? m_globalSettings : m_projectSettings;
}
void GlobalOrProjectAspect::fromMap(const QVariantMap &map)
{
if (m_projectSettings)
m_projectSettings->fromMap(map);
m_useGlobalSettings = map.value(id().toString() + ".UseGlobalSettings", true).toBool();
}
void GlobalOrProjectAspect::toMap(QVariantMap &map) const
{
if (m_projectSettings)
m_projectSettings->toMap(map);
map.insert(id().toString() + ".UseGlobalSettings", m_useGlobalSettings);
}
void GlobalOrProjectAspect::toActiveMap(QVariantMap &data) const
{
if (m_useGlobalSettings)
m_globalSettings->toMap(data);
else if (m_projectSettings)
m_projectSettings->toMap(data);
// The debugger accesses the data directly, so this can actually happen.
//else
// QTC_CHECK(false);
}
void GlobalOrProjectAspect::resetProjectToGlobalSettings()
{
QTC_ASSERT(m_globalSettings, return);
QVariantMap map;
m_globalSettings->toMap(map);
if (m_projectSettings)
m_projectSettings->fromMap(map);
}
/*!
\class ProjectExplorer::RunConfiguration
\inmodule QtCreator
\inheaderfile projectexplorer/runconfiguration.h
\brief The RunConfiguration class is the base class for a run configuration.
A run configuration specifies how a target should be run, while a runner
does the actual running.
The target owns the RunConfigurations and a RunControl will need to copy all
necessary data as the RunControl may continue to exist after the RunConfiguration
has been destroyed.
A RunConfiguration disables itself if the project has no parsing
data available. The disabledReason() method can be used to get a user-facing string
describing why the RunConfiguration considers itself unfit for use.
*/
static std::vector<RunConfiguration::AspectFactory> theAspectFactories;
RunConfiguration::RunConfiguration(Target *target, Utils::Id id)
: ProjectConfiguration(target, id)
{
forceDisplayNameSerialization();
connect(target, &Target::parsingFinished, this, &RunConfiguration::update);
m_expander.setDisplayName(Tr::tr("Run Settings"));
m_expander.setAccumulating(true);
m_expander.registerSubProvider([target] {
BuildConfiguration *bc = target->activeBuildConfiguration();
return bc ? bc->macroExpander() : target->macroExpander();
});
m_expander.registerPrefix("RunConfig:Env", Tr::tr("Variables in the run environment."),
[this](const QString &var) {
const auto envAspect = aspect<EnvironmentAspect>();
return envAspect ? envAspect->environment().expandedValueForKey(var) : QString();
});
m_expander.registerVariable("RunConfig:WorkingDir",
Tr::tr("The run configuration's working directory."),
[this] {
const auto wdAspect = aspect<WorkingDirectoryAspect>();
return wdAspect ? wdAspect->workingDirectory().toString() : QString();
});
m_expander.registerVariable("RunConfig:Name", Tr::tr("The run configuration's name."),
[this] { return displayName(); });
m_expander.registerFileVariables("RunConfig:Executable",
Tr::tr("The run configuration's executable."),
[this] { return commandLine().executable(); });
m_commandLineGetter = [this] {
FilePath executable;
if (const auto executableAspect = aspect<ExecutableAspect>())
executable = executableAspect->executable();
QString arguments;
if (const auto argumentsAspect = aspect<ArgumentsAspect>())
arguments = argumentsAspect->arguments();
return CommandLine{executable, arguments, CommandLine::Raw};
};
}
RunConfiguration::~RunConfiguration() = default;
QString RunConfiguration::disabledReason() const
{
BuildSystem *bs = activeBuildSystem();
return bs ? bs->disabledReason(m_buildKey) : Tr::tr("No build system active");
}
bool RunConfiguration::isEnabled() const
{
BuildSystem *bs = activeBuildSystem();
return bs && bs->hasParsingData();
}
QWidget *RunConfiguration::createConfigurationWidget()
{
Layouting::Form form;
for (BaseAspect *aspect : std::as_const(*this)) {
if (aspect->isVisible()) {
form.addItem(aspect);
form.addItem(Layouting::br);
}
}
form.addItem(Layouting::noMargin);
auto widget = form.emerge();
VariableChooser::addSupportForChildWidgets(widget, &m_expander);
auto detailsWidget = new Utils::DetailsWidget;
detailsWidget->setState(DetailsWidget::NoSummary);
detailsWidget->setWidget(widget);
return detailsWidget;
}
bool RunConfiguration::isConfigured() const
{
return !Utils::anyOf(checkForIssues(), [](const Task &t) { return t.type == Task::Error; });
}
bool RunConfiguration::isCustomized() const
{
if (m_customized)
return true;
QVariantMap state;
toMapSimple(state);
// TODO: Why do we save this at all? It's a computed value.
state.remove("RunConfiguration.WorkingDirectory.default");
return state != m_pristineState;
}
bool RunConfiguration::hasCreator() const
{
return Utils::contains(RunConfigurationFactory::creatorsForTarget(target()),
[this](const RunConfigurationCreationInfo &info) {
return info.factory->runConfigurationId() == id() && info.buildKey == buildKey();
});
}
void RunConfiguration::setPristineState()
{
if (!m_customized) {
m_pristineState.clear();
toMapSimple(m_pristineState);
m_pristineState.remove("RunConfiguration.WorkingDirectory.default");
}
}
void RunConfiguration::addAspectFactory(const AspectFactory &aspectFactory)
{
theAspectFactories.push_back(aspectFactory);
}
QMap<Utils::Id, QVariantMap> RunConfiguration::settingsData() const
{
QMap<Utils::Id, QVariantMap> data;
for (BaseAspect *aspect : *this)
aspect->toActiveMap(data[aspect->id()]);
return data;
}
AspectContainerData RunConfiguration::aspectData() const
{
AspectContainerData data;
for (BaseAspect *aspect : *this)
data.append(aspect->extractData());
return data;
}
BuildSystem *RunConfiguration::activeBuildSystem() const
{
return target()->buildSystem();
}
void RunConfiguration::setUpdater(const Updater &updater)
{
m_updater = updater;
}
Task RunConfiguration::createConfigurationIssue(const QString &description) const
{
return BuildSystemTask(Task::Error, description);
}
void RunConfiguration::toMap(QVariantMap &map) const
{
toMapSimple(map);
map.insert(CUSTOMIZED_KEY, isCustomized());
}
void RunConfiguration::toMapSimple(QVariantMap &map) const
{
ProjectConfiguration::toMap(map);
map.insert(BUILD_KEY, m_buildKey);
// FIXME: Remove this id mangling, e.g. by using a separate entry for the build key.
if (!m_buildKey.isEmpty()) {
const Utils::Id mangled = id().withSuffix(m_buildKey);
map.insert(settingsIdKey(), mangled.toSetting());
}
}
void RunConfiguration::setCommandLineGetter(const CommandLineGetter &cmdGetter)
{
m_commandLineGetter = cmdGetter;
}
CommandLine RunConfiguration::commandLine() const
{
return m_commandLineGetter();
}
bool RunConfiguration::isPrintEnvironmentEnabled() const
{
if (const auto envAspect = aspect<EnvironmentAspect>())
return envAspect->isPrintOnRunEnabled();
return false;
}
void RunConfiguration::setRunnableModifier(const RunnableModifier &runnableModifier)
{
m_runnableModifier = runnableModifier;
}
void RunConfiguration::update()
{
if (m_updater)
m_updater();
emit enabledChanged();
const bool isActive = target()->isActive() && target()->activeRunConfiguration() == this;
if (isActive && project() == ProjectManager::startupProject())
ProjectExplorerPlugin::updateRunActions();
}
BuildTargetInfo RunConfiguration::buildTargetInfo() const
{
BuildSystem *bs = target()->buildSystem();
QTC_ASSERT(bs, return {});
return bs->buildTarget(m_buildKey);
}
ProjectNode *RunConfiguration::productNode() const
{
return project()->rootProjectNode()->findProjectNode([this](const ProjectNode *candidate) {
return candidate->buildKey() == buildKey();
});
}
void RunConfiguration::fromMap(const QVariantMap &map)
{
ProjectConfiguration::fromMap(map);
if (hasError())
return;
m_customized = m_customized || map.value(CUSTOMIZED_KEY, false).toBool();
m_buildKey = map.value(BUILD_KEY).toString();
if (m_buildKey.isEmpty()) {
const Utils::Id mangledId = Utils::Id::fromSetting(map.value(settingsIdKey()));
m_buildKey = mangledId.suffixAfter(id());
// Hack for cmake projects 4.10 -> 4.11.
const QString magicSeparator = "///::///";
const int magicIndex = m_buildKey.indexOf(magicSeparator);
if (magicIndex != -1)
m_buildKey = m_buildKey.mid(magicIndex + magicSeparator.length());
}
}
/*!
\class ProjectExplorer::IRunConfigurationAspect
\brief The IRunConfigurationAspect class provides an additional
configuration aspect.
Aspects are a mechanism to add RunControl-specific options to a run
configuration without subclassing the run configuration for every addition.
This prevents a combinatorial explosion of subclasses and eliminates
the need to add all options to the base class.
*/
/*!
\internal
\class ProjectExplorer::Runnable
\brief The ProjectExplorer::Runnable class wraps information needed
to execute a process on a target device.
A target specific \l RunConfiguration implementation can specify
what information it considers necessary to execute a process
on the target. Target specific) \n RunWorker implementation
can use that information either unmodified or tweak it or ignore
it when setting up a RunControl.
From Qt Creator's core perspective a Runnable object is opaque.
*/
/*!
\internal
\brief Returns a \l Runnable described by this RunConfiguration.
*/
Runnable RunConfiguration::runnable() const
{
Runnable r;
r.command = commandLine();
if (auto workingDirectoryAspect = aspect<WorkingDirectoryAspect>())
r.workingDirectory = r.command.executable().withNewMappedPath(workingDirectoryAspect->workingDirectory());
if (auto environmentAspect = aspect<EnvironmentAspect>())
r.environment = environmentAspect->environment();
if (auto forwardingAspect = aspect<X11ForwardingAspect>())
r.extraData.insert("Ssh.X11ForwardToDisplay", forwardingAspect->display());
if (m_runnableModifier)
m_runnableModifier(r);
return r;
}
/*!
\class ProjectExplorer::RunConfigurationFactory
\inmodule QtCreator
\inheaderfile projectexplorer/runconfiguration.h
\brief The RunConfigurationFactory class is used to create and persist
run configurations.
The run configuration factory is used for restoring run configurations from
settings and for creating new run configurations in the \gui {Run Settings}
dialog.
A RunConfigurationFactory instance is responsible for handling one type of
run configurations. This can be restricted to certain project and device
types.
RunConfigurationFactory instances register themselves into a global list on
construction and deregister on destruction. It is recommended to make them
a plain data member of a structure that is allocated in your plugin's
ExtensionSystem::IPlugin::initialize() method.
*/
static QList<RunConfigurationFactory *> g_runConfigurationFactories;
/*!
Constructs a RunConfigurationFactory instance and registers it into a global
list.
Derived classes should set suitably properties to specify the type of
run configurations they can handle.
*/
RunConfigurationFactory::RunConfigurationFactory()
{
g_runConfigurationFactories.append(this);
}
/*!
De-registers the instance from the global list of factories and destructs it.
*/
RunConfigurationFactory::~RunConfigurationFactory()
{
g_runConfigurationFactories.removeOne(this);
}
QString RunConfigurationFactory::decoratedTargetName(const QString &targetName, Target *target)
{
QString displayName = targetName;
Utils::Id devType = DeviceTypeKitAspect::deviceTypeId(target->kit());
if (devType != Constants::DESKTOP_DEVICE_TYPE) {
if (IDevice::ConstPtr dev = DeviceKitAspect::device(target->kit())) {
if (displayName.isEmpty()) {
//: Shown in Run configuration if no executable is given, %1 is device name
displayName = Tr::tr("Run on %{Device:Name}");
} else {
//: Shown in Run configuration, Add menu: "name of runnable (on device name)"
displayName = Tr::tr("%1 (on %{Device:Name})").arg(displayName);
}
}
}
return displayName;
}
QList<RunConfigurationCreationInfo>
RunConfigurationFactory::availableCreators(Target *target) const
{
const QList<BuildTargetInfo> buildTargets = target->buildSystem()->applicationTargets();
const bool hasAnyQtcRunnable = Utils::anyOf(buildTargets,
Utils::equal(&BuildTargetInfo::isQtcRunnable, true));
return Utils::transform(buildTargets, [&](const BuildTargetInfo &ti) {
QString displayName = ti.displayName;
if (displayName.isEmpty())
displayName = decoratedTargetName(ti.buildKey, target);
else if (m_decorateDisplayNames)
displayName = decoratedTargetName(displayName, target);
RunConfigurationCreationInfo rci;
rci.factory = this;
rci.buildKey = ti.buildKey;
rci.projectFilePath = ti.projectFilePath;
rci.displayName = displayName;
rci.displayNameUniquifier = ti.displayNameUniquifier;
rci.creationMode = ti.isQtcRunnable || !hasAnyQtcRunnable
? RunConfigurationCreationInfo::AlwaysCreate
: RunConfigurationCreationInfo::ManualCreationOnly;
rci.useTerminal = ti.usesTerminal;
rci.buildKey = ti.buildKey;
return rci;
});
}
/*!
Adds a device type for which this RunConfigurationFactory
can create RunConfigurations.
If this function is never called for a RunConfigurationFactory,
the factory will create RunConfiguration objects for all device types.
This function should be used in the constructor of derived classes.
\sa addSupportedProjectType()
*/
void RunConfigurationFactory::addSupportedTargetDeviceType(Utils::Id id)
{
m_supportedTargetDeviceTypes.append(id);
}
void RunConfigurationFactory::setDecorateDisplayNames(bool on)
{
m_decorateDisplayNames = on;
}
/*!
Adds a project type for which this RunConfigurationFactory
can create RunConfigurations.
If this function is never called for a RunConfigurationFactory,
the factory will create RunConfigurations for all project types.
This function should be used in the constructor of derived classes.
\sa addSupportedTargetDeviceType()
*/
void RunConfigurationFactory::addSupportedProjectType(Utils::Id id)
{
m_supportedProjectTypes.append(id);
}
bool RunConfigurationFactory::canHandle(Target *target) const
{
const Project *project = target->project();
Kit *kit = target->kit();
if (containsType(target->project()->projectIssues(kit), Task::TaskType::Error))
return false;
if (!m_supportedProjectTypes.isEmpty())
if (!m_supportedProjectTypes.contains(project->id()))
return false;
if (!m_supportedTargetDeviceTypes.isEmpty())
if (!m_supportedTargetDeviceTypes.contains(
DeviceTypeKitAspect::deviceTypeId(kit)))
return false;
return true;
}
RunConfiguration *RunConfigurationFactory::create(Target *target) const
{
QTC_ASSERT(m_creator, return nullptr);
RunConfiguration *rc = m_creator(target);
QTC_ASSERT(rc, return nullptr);
// Add the universal aspects.
for (const RunConfiguration::AspectFactory &factory : theAspectFactories)
rc->registerAspect(factory(target));
return rc;
}
RunConfiguration *RunConfigurationCreationInfo::create(Target *target) const
{
QTC_ASSERT(factory->canHandle(target), return nullptr);
RunConfiguration *rc = factory->create(target);
if (!rc)
return nullptr;
rc->m_buildKey = buildKey;
rc->update();
rc->setDisplayName(displayName);
rc->setPristineState();
return rc;
}
RunConfiguration *RunConfigurationFactory::restore(Target *parent, const QVariantMap &map)
{
for (RunConfigurationFactory *factory : std::as_const(g_runConfigurationFactories)) {
if (factory->canHandle(parent)) {
const Utils::Id id = idFromMap(map);
if (id.name().startsWith(factory->m_runConfigurationId.name())) {
RunConfiguration *rc = factory->create(parent);
rc->fromMap(map);
if (!rc->hasError()) {
rc->update();
rc->setPristineState();
return rc;
}
delete rc;
return nullptr;
}
}
}
return nullptr;
}
RunConfiguration *RunConfigurationFactory::clone(Target *parent, RunConfiguration *source)
{
QVariantMap map;
source->toMap(map);
return restore(parent, map);
}
const QList<RunConfigurationCreationInfo> RunConfigurationFactory::creatorsForTarget(Target *parent)
{
QList<RunConfigurationCreationInfo> items;
for (RunConfigurationFactory *factory : std::as_const(g_runConfigurationFactories)) {
if (factory->canHandle(parent))
items.append(factory->availableCreators(parent));
}
QHash<QString, QList<RunConfigurationCreationInfo *>> itemsPerDisplayName;
for (RunConfigurationCreationInfo &item : items)
itemsPerDisplayName[item.displayName] << &item;
for (auto it = itemsPerDisplayName.cbegin(); it != itemsPerDisplayName.cend(); ++it) {
if (it.value().size() == 1)
continue;
for (RunConfigurationCreationInfo * const rci : it.value())
rci->displayName += rci->displayNameUniquifier;
}
return items;
}
FixedRunConfigurationFactory::FixedRunConfigurationFactory(const QString &displayName,
bool addDeviceName) :
m_fixedBuildTarget(displayName),
m_decorateTargetName(addDeviceName)
{ }
QList<RunConfigurationCreationInfo>
FixedRunConfigurationFactory::availableCreators(Target *parent) const
{
QString displayName = m_decorateTargetName ? decoratedTargetName(m_fixedBuildTarget, parent)
: m_fixedBuildTarget;
RunConfigurationCreationInfo rci;
rci.factory = this;
rci.displayName = displayName;
return {rci};
}
} // namespace ProjectExplorer