Files
qt-creator/src/plugins/genericprojectmanager/genericmakestep.cpp

400 lines
12 KiB
C++
Raw Normal View History

2009-03-10 14:20:07 +01:00
/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
2009-03-10 14:20:07 +01:00
**
** Contact: http://www.qt-project.org/
2009-03-10 14:20:07 +01:00
**
**
** GNU Lesser General Public License Usage
**
2011-04-13 08:42:33 +02:00
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this file.
** Please review the following information to ensure the GNU Lesser General
** Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
2009-03-10 14:20:07 +01:00
**
2010-12-17 16:01:08 +01:00
** In addition, as a special exception, Nokia gives you certain additional
2011-04-13 08:42:33 +02:00
** rights. These rights are described in the Nokia Qt LGPL Exception
2010-12-17 16:01:08 +01:00
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
2011-04-13 08:42:33 +02:00
** Other Usage
**
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
2009-03-10 14:20:07 +01:00
**
**************************************************************************/
#include "genericmakestep.h"
2009-03-10 14:20:07 +01:00
#include "genericprojectconstants.h"
#include "genericproject.h"
#include "ui_genericmakestep.h"
#include "genericbuildconfiguration.h"
2009-03-10 14:20:07 +01:00
#include <extensionsystem/pluginmanager.h>
#include <projectexplorer/buildsteplist.h>
#include <projectexplorer/gnumakeparser.h>
#include <projectexplorer/kitinformation.h>
#include <projectexplorer/projectexplorer.h>
#include <projectexplorer/projectexplorerconstants.h>
#include <projectexplorer/toolchain.h>
#include <coreplugin/variablemanager.h>
#include <utils/stringutils.h>
#include <utils/qtcassert.h>
#include <utils/qtcprocess.h>
using namespace Core;
using namespace ProjectExplorer;
2009-03-10 14:20:07 +01:00
namespace GenericProjectManager {
namespace Internal {
2009-03-10 14:20:07 +01:00
const char GENERIC_MS_ID[] = "GenericProjectManager.GenericMakeStep";
const char GENERIC_MS_DISPLAY_NAME[] = QT_TRANSLATE_NOOP("GenericProjectManager::Internal::GenericMakeStep",
"Make");
const char BUILD_TARGETS_KEY[] = "GenericProjectManager.GenericMakeStep.BuildTargets";
const char MAKE_ARGUMENTS_KEY[] = "GenericProjectManager.GenericMakeStep.MakeArguments";
const char MAKE_COMMAND_KEY[] = "GenericProjectManager.GenericMakeStep.MakeCommand";
const char CLEAN_KEY[] = "GenericProjectManager.GenericMakeStep.Clean";
GenericMakeStep::GenericMakeStep(BuildStepList *parent) :
AbstractProcessStep(parent, Id(GENERIC_MS_ID)),
m_clean(false)
{
ctor();
}
GenericMakeStep::GenericMakeStep(BuildStepList *parent, const Id id) :
AbstractProcessStep(parent, id),
m_clean(false)
{
ctor();
}
GenericMakeStep::GenericMakeStep(BuildStepList *parent, GenericMakeStep *bs) :
AbstractProcessStep(parent, bs),
m_buildTargets(bs->m_buildTargets),
m_makeArguments(bs->m_makeArguments),
m_makeCommand(bs->m_makeCommand),
m_clean(bs->m_clean)
2009-03-10 14:20:07 +01:00
{
ctor();
2009-03-10 14:20:07 +01:00
}
void GenericMakeStep::ctor()
2009-11-19 17:45:43 +01:00
{
setDefaultDisplayName(QCoreApplication::translate("GenericProjectManager::Internal::GenericMakeStep",
GENERIC_MS_DISPLAY_NAME));
2009-11-19 17:45:43 +01:00
}
GenericMakeStep::~GenericMakeStep()
2009-03-10 14:20:07 +01:00
{
}
2009-11-26 14:43:27 +01:00
GenericBuildConfiguration *GenericMakeStep::genericBuildConfiguration() const
{
return static_cast<GenericBuildConfiguration *>(buildConfiguration());
}
bool GenericMakeStep::init()
2009-03-10 14:20:07 +01:00
{
2009-11-26 14:43:27 +01:00
GenericBuildConfiguration *bc = genericBuildConfiguration();
if (!bc)
bc = static_cast<GenericBuildConfiguration *>(target()->activeBuildConfiguration());
2009-03-10 14:20:07 +01:00
m_tasks.clear();
ToolChain *tc = ToolChainKitInformation::toolChain(target()->kit());
if (!tc) {
m_tasks.append(Task(Task::Error, tr("Qt Creator needs a compiler set up to build. Configure a compiler in the kit options."),
Utils::FileName(), -1,
Core::Id(ProjectExplorer::Constants::TASK_CATEGORY_BUILDSYSTEM)));
return true; // otherwise the tasks will not get reported
}
ProcessParameters *pp = processParameters();
pp->setMacroExpander(bc->macroExpander());
pp->setWorkingDirectory(bc->buildDirectory());
pp->setEnvironment(bc->environment());
pp->setCommand(makeCommand());
pp->setArguments(allArguments());
// If we are cleaning, then make can fail with an error code, but that doesn't mean
// we should stop the clean queue
// That is mostly so that rebuild works on an already clean project
setIgnoreReturnValue(m_clean);
setOutputParser(new GnuMakeParser());
if (tc)
appendOutputParser(tc->outputParser());
outputParser()->setWorkingDirectory(pp->effectiveWorkingDirectory());
return AbstractProcessStep::init();
}
void GenericMakeStep::setClean(bool clean)
{
m_clean = clean;
}
bool GenericMakeStep::isClean() const
{
return m_clean;
}
QVariantMap GenericMakeStep::toMap() const
{
QVariantMap map(AbstractProcessStep::toMap());
map.insert(QLatin1String(BUILD_TARGETS_KEY), m_buildTargets);
map.insert(QLatin1String(MAKE_ARGUMENTS_KEY), m_makeArguments);
map.insert(QLatin1String(MAKE_COMMAND_KEY), m_makeCommand);
map.insert(QLatin1String(CLEAN_KEY), m_clean);
return map;
}
bool GenericMakeStep::fromMap(const QVariantMap &map)
{
m_buildTargets = map.value(QLatin1String(BUILD_TARGETS_KEY)).toStringList();
m_makeArguments = map.value(QLatin1String(MAKE_ARGUMENTS_KEY)).toString();
m_makeCommand = map.value(QLatin1String(MAKE_COMMAND_KEY)).toString();
m_clean = map.value(QLatin1String(CLEAN_KEY)).toBool();
return BuildStep::fromMap(map);
}
QString GenericMakeStep::allArguments() const
{
QString args = m_makeArguments;
Utils::QtcProcess::addArgs(&args, m_buildTargets);
return args;
}
QString GenericMakeStep::makeCommand() const
{
QString command = m_makeCommand;
if (command.isEmpty()) {
ToolChain *tc = ToolChainKitInformation::toolChain(target()->kit());
if (tc)
command = tc->makeCommand();
else
command = QLatin1String("make");
}
return command;
2009-03-10 14:20:07 +01:00
}
void GenericMakeStep::run(QFutureInterface<bool> &fi)
2009-03-10 14:20:07 +01:00
{
bool canContinue = true;
foreach (const Task &t, m_tasks) {
addTask(t);
canContinue = false;
}
if (!canContinue) {
emit addOutput(tr("Configuration is faulty. Check the Issues view for details."), BuildStep::MessageOutput);
fi.reportResult(false);
return;
}
2009-03-10 14:20:07 +01:00
AbstractProcessStep::run(fi);
}
BuildStepConfigWidget *GenericMakeStep::createConfigWidget()
2009-03-10 14:20:07 +01:00
{
return new GenericMakeStepConfigWidget(this);
2009-03-10 14:20:07 +01:00
}
bool GenericMakeStep::immutable() const
2009-03-10 14:20:07 +01:00
{
return false;
2009-03-10 14:20:07 +01:00
}
bool GenericMakeStep::buildsTarget(const QString &target) const
2009-03-10 14:20:07 +01:00
{
return m_buildTargets.contains(target);
2009-03-10 14:20:07 +01:00
}
void GenericMakeStep::setBuildTarget(const QString &target, bool on)
2009-03-10 14:20:07 +01:00
{
QStringList old = m_buildTargets;
2009-03-10 14:20:07 +01:00
if (on && !old.contains(target))
old << target;
2009-03-10 14:20:07 +01:00
else if(!on && old.contains(target))
old.removeOne(target);
m_buildTargets = old;
2009-03-10 14:20:07 +01:00
}
//
// GenericMakeStepConfigWidget
2009-03-10 14:20:07 +01:00
//
GenericMakeStepConfigWidget::GenericMakeStepConfigWidget(GenericMakeStep *makeStep)
2009-03-10 14:20:07 +01:00
: m_makeStep(makeStep)
{
m_ui = new Ui::GenericMakeStep;
m_ui->setupUi(this);
2009-03-10 14:20:07 +01:00
GenericProject *pro = static_cast<GenericProject *>(m_makeStep->target()->project());
foreach (const QString &target, pro->buildTargets()) {
QListWidgetItem *item = new QListWidgetItem(target, m_ui->targetsList);
2009-03-10 14:20:07 +01:00
item->setFlags(item->flags() | Qt::ItemIsUserCheckable);
item->setCheckState(m_makeStep->buildsTarget(item->text()) ? Qt::Checked : Qt::Unchecked);
2009-03-10 14:20:07 +01:00
}
m_ui->makeLineEdit->setText(m_makeStep->m_makeCommand);
m_ui->makeArgumentsLineEdit->setText(m_makeStep->m_makeArguments);
updateMakeOverrrideLabel();
updateDetails();
connect(m_ui->targetsList, SIGNAL(itemChanged(QListWidgetItem*)),
this, SLOT(itemChanged(QListWidgetItem*)));
connect(m_ui->makeLineEdit, SIGNAL(textEdited(QString)),
this, SLOT(makeLineEditTextEdited()));
connect(m_ui->makeArgumentsLineEdit, SIGNAL(textEdited(QString)),
this, SLOT(makeArgumentsLineEditTextEdited()));
connect(ProjectExplorerPlugin::instance(), SIGNAL(settingsChanged()),
this, SLOT(updateMakeOverrrideLabel()));
connect(ProjectExplorerPlugin::instance(), SIGNAL(settingsChanged()),
this, SLOT(updateDetails()));
connect(m_makeStep->target(), SIGNAL(kitChanged()),
this, SLOT(updateMakeOverrrideLabel()));
2009-03-10 14:20:07 +01:00
}
GenericMakeStepConfigWidget::~GenericMakeStepConfigWidget()
{
delete m_ui;
}
QString GenericMakeStepConfigWidget::displayName() const
2009-03-10 14:20:07 +01:00
{
return tr("Make", "GenericMakestep display name.");
2009-03-10 14:20:07 +01:00
}
void GenericMakeStepConfigWidget::updateMakeOverrrideLabel()
{
m_ui->makeLabel->setText(tr("Override %1:").arg(m_makeStep->makeCommand()));
}
void GenericMakeStepConfigWidget::updateDetails()
{
GenericBuildConfiguration *bc = m_makeStep->genericBuildConfiguration();
if (!bc)
bc = static_cast<GenericBuildConfiguration *>(m_makeStep->target()->activeBuildConfiguration());
ProcessParameters param;
param.setMacroExpander(bc->macroExpander());
param.setWorkingDirectory(bc->buildDirectory());
param.setEnvironment(bc->environment());
param.setCommand(m_makeStep->makeCommand());
param.setArguments(m_makeStep->allArguments());
m_summaryText = param.summary(displayName());
emit updateSummary();
}
QString GenericMakeStepConfigWidget::summaryText() const
{
return m_summaryText;
}
void GenericMakeStepConfigWidget::itemChanged(QListWidgetItem *item)
{
m_makeStep->setBuildTarget(item->text(), item->checkState() & Qt::Checked);
updateDetails();
}
void GenericMakeStepConfigWidget::makeLineEditTextEdited()
{
m_makeStep->m_makeCommand = m_ui->makeLineEdit->text();
updateDetails();
}
void GenericMakeStepConfigWidget::makeArgumentsLineEditTextEdited()
{
m_makeStep->m_makeArguments = m_ui->makeArgumentsLineEdit->text();
updateDetails();
2009-03-10 14:20:07 +01:00
}
//
// GenericMakeStepFactory
2009-03-10 14:20:07 +01:00
//
GenericMakeStepFactory::GenericMakeStepFactory(QObject *parent) :
IBuildStepFactory(parent)
{
}
bool GenericMakeStepFactory::canCreate(BuildStepList *parent, const Id id) const
{
if (parent->target()->project()->id() == Constants::GENERICPROJECT_ID)
return id == GENERIC_MS_ID;
return false;
}
BuildStep *GenericMakeStepFactory::create(BuildStepList *parent, const Id id)
{
if (!canCreate(parent, id))
return 0;
GenericMakeStep *step = new GenericMakeStep(parent);
if (parent->id() == ProjectExplorer::Constants::BUILDSTEPS_CLEAN) {
step->setClean(true);
step->setBuildTarget(QLatin1String("clean"), /* on = */ true);
} else if (parent->id() == ProjectExplorer::Constants::BUILDSTEPS_BUILD) {
step->setBuildTarget(QLatin1String("all"), /* on = */ true);
}
return step;
}
bool GenericMakeStepFactory::canClone(BuildStepList *parent, BuildStep *source) const
{
return canCreate(parent, source->id());
}
BuildStep *GenericMakeStepFactory::clone(BuildStepList *parent, BuildStep *source)
2009-03-10 14:20:07 +01:00
{
if (!canClone(parent, source))
return 0;
GenericMakeStep *old(qobject_cast<GenericMakeStep *>(source));
Q_ASSERT(old);
return new GenericMakeStep(parent, old);
2009-03-10 14:20:07 +01:00
}
bool GenericMakeStepFactory::canRestore(BuildStepList *parent, const QVariantMap &map) const
2009-03-10 14:20:07 +01:00
{
return canCreate(parent, idFromMap(map));
}
BuildStep *GenericMakeStepFactory::restore(BuildStepList *parent, const QVariantMap &map)
{
if (!canRestore(parent, map))
return 0;
GenericMakeStep *bs(new GenericMakeStep(parent));
if (bs->fromMap(map))
return bs;
delete bs;
return 0;
2009-03-10 14:20:07 +01:00
}
QList<Id> GenericMakeStepFactory::availableCreationIds(BuildStepList *parent) const
2009-03-10 14:20:07 +01:00
{
if (parent->target()->project()->id() == Constants::GENERICPROJECT_ID)
return QList<Id>() << Id(GENERIC_MS_ID);
return QList<Id>();
2009-03-10 14:20:07 +01:00
}
QString GenericMakeStepFactory::displayNameForId(const Id id) const
2009-03-10 14:20:07 +01:00
{
if (id == GENERIC_MS_ID)
return QCoreApplication::translate("GenericProjectManager::Internal::GenericMakeStep",
GENERIC_MS_DISPLAY_NAME);
return QString();
2009-03-10 14:20:07 +01:00
}
} // namespace Internal
} // namespace GenericProjectManager