2011-11-29 14:19:28 +01:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Copyright (C) 2012 Openismus GmbH.
|
|
|
|
|
** Authors: Peter Penz (ppenz@openismus.com)
|
|
|
|
|
** Patricia Santana Cruz (patriciasantanacruz@gmail.com)
|
|
|
|
|
** Contact: http://www.qt-project.org/legal
|
2011-11-29 14:19:28 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-11-29 14:19:28 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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 Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2011-11-29 14:19:28 +01:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, 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.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2011-11-29 14:19:28 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-11-29 14:19:28 +01:00
|
|
|
|
|
|
|
|
#include "makestep.h"
|
|
|
|
|
#include "autotoolsproject.h"
|
|
|
|
|
#include "autotoolsprojectconstants.h"
|
|
|
|
|
#include "autotoolsbuildconfiguration.h"
|
|
|
|
|
|
|
|
|
|
#include <projectexplorer/buildsteplist.h>
|
2012-04-24 15:49:09 +02:00
|
|
|
#include <projectexplorer/target.h>
|
2011-11-29 14:19:28 +01:00
|
|
|
#include <projectexplorer/toolchain.h>
|
|
|
|
|
#include <projectexplorer/gnumakeparser.h>
|
2012-09-03 18:31:44 +02:00
|
|
|
#include <projectexplorer/kitinformation.h>
|
2011-11-29 14:19:28 +01:00
|
|
|
#include <projectexplorer/projectexplorer.h>
|
|
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
2012-09-26 17:53:25 +02:00
|
|
|
#include <qtsupport/qtkitinformation.h>
|
|
|
|
|
#include <qtsupport/qtparser.h>
|
2011-11-29 14:19:28 +01:00
|
|
|
#include <utils/qtcprocess.h>
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QVariantMap>
|
|
|
|
|
#include <QLineEdit>
|
|
|
|
|
#include <QFormLayout>
|
2011-11-29 14:19:28 +01:00
|
|
|
|
|
|
|
|
using namespace AutotoolsProjectManager;
|
|
|
|
|
using namespace AutotoolsProjectManager::Internal;
|
2012-01-13 13:36:45 +01:00
|
|
|
using namespace AutotoolsProjectManager::Constants;
|
2011-11-29 14:19:28 +01:00
|
|
|
using namespace ProjectExplorer;
|
2012-01-13 13:36:45 +01:00
|
|
|
using namespace ProjectExplorer::Constants;
|
2011-11-29 14:19:28 +01:00
|
|
|
|
|
|
|
|
const char MAKE_STEP_ID[] = "AutotoolsProjectManager.MakeStep";
|
|
|
|
|
const char CLEAN_KEY[] = "AutotoolsProjectManager.MakeStep.Clean";
|
|
|
|
|
const char BUILD_TARGETS_KEY[] = "AutotoolsProjectManager.MakeStep.BuildTargets";
|
|
|
|
|
const char MAKE_STEP_ADDITIONAL_ARGUMENTS_KEY[] = "AutotoolsProjectManager.MakeStep.AdditionalArguments";
|
|
|
|
|
|
|
|
|
|
//////////////////////////
|
|
|
|
|
// MakeStepFactory class
|
|
|
|
|
//////////////////////////
|
|
|
|
|
MakeStepFactory::MakeStepFactory(QObject *parent) :
|
2012-01-13 13:36:45 +01:00
|
|
|
IBuildStepFactory(parent)
|
2012-04-24 15:49:09 +02:00
|
|
|
{ setObjectName(QLatin1String("Autotools::MakeStepFactory")); }
|
2011-11-29 14:19:28 +01:00
|
|
|
|
2012-03-15 17:17:40 +01:00
|
|
|
QList<Core::Id> MakeStepFactory::availableCreationIds(BuildStepList *parent) const
|
2011-11-29 14:19:28 +01:00
|
|
|
{
|
2012-08-03 15:24:33 +02:00
|
|
|
if (parent->target()->project()->id() == AUTOTOOLS_PROJECT_ID)
|
2012-03-15 17:17:40 +01:00
|
|
|
return QList<Core::Id>() << Core::Id(MAKE_STEP_ID);
|
|
|
|
|
return QList<Core::Id>();
|
2011-11-29 14:19:28 +01:00
|
|
|
}
|
|
|
|
|
|
2012-03-15 17:17:40 +01:00
|
|
|
QString MakeStepFactory::displayNameForId(const Core::Id id) const
|
2011-11-29 14:19:28 +01:00
|
|
|
{
|
2012-08-03 15:24:33 +02:00
|
|
|
if (id == MAKE_STEP_ID)
|
2011-11-29 14:19:28 +01:00
|
|
|
return tr("Make", "Display name for AutotoolsProjectManager::MakeStep id.");
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-15 17:17:40 +01:00
|
|
|
bool MakeStepFactory::canCreate(BuildStepList *parent, const Core::Id id) const
|
2011-11-29 14:19:28 +01:00
|
|
|
{
|
2012-08-03 15:24:33 +02:00
|
|
|
if (parent->target()->project()->id() == AUTOTOOLS_PROJECT_ID)
|
|
|
|
|
return id == MAKE_STEP_ID;
|
|
|
|
|
return false;
|
2011-11-29 14:19:28 +01:00
|
|
|
}
|
|
|
|
|
|
2012-03-15 17:17:40 +01:00
|
|
|
BuildStep *MakeStepFactory::create(BuildStepList *parent, const Core::Id id)
|
2011-11-29 14:19:28 +01:00
|
|
|
{
|
|
|
|
|
if (!canCreate(parent, id))
|
|
|
|
|
return 0;
|
|
|
|
|
return new MakeStep(parent);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool MakeStepFactory::canClone(BuildStepList *parent, BuildStep *source) const
|
|
|
|
|
{
|
|
|
|
|
return canCreate(parent, source->id());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BuildStep *MakeStepFactory::clone(BuildStepList *parent, BuildStep *source)
|
|
|
|
|
{
|
|
|
|
|
if (!canClone(parent, source))
|
|
|
|
|
return 0;
|
|
|
|
|
return new MakeStep(parent, static_cast<MakeStep *>(source));
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-13 13:36:45 +01:00
|
|
|
bool MakeStepFactory::canRestore(BuildStepList *parent, const QVariantMap &map) const
|
2011-11-29 14:19:28 +01:00
|
|
|
{
|
2012-03-15 17:17:40 +01:00
|
|
|
return canCreate(parent, idFromMap(map));
|
2011-11-29 14:19:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BuildStep *MakeStepFactory::restore(BuildStepList *parent, const QVariantMap &map)
|
|
|
|
|
{
|
|
|
|
|
if (!canRestore(parent, map))
|
|
|
|
|
return 0;
|
|
|
|
|
MakeStep *bs = new MakeStep(parent);
|
|
|
|
|
if (bs->fromMap(map))
|
|
|
|
|
return bs;
|
|
|
|
|
delete bs;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/////////////////////
|
|
|
|
|
// MakeStep class
|
|
|
|
|
/////////////////////
|
2012-01-13 13:36:45 +01:00
|
|
|
MakeStep::MakeStep(BuildStepList* bsl) :
|
2012-03-15 17:17:40 +01:00
|
|
|
AbstractProcessStep(bsl, Core::Id(MAKE_STEP_ID)),
|
2011-11-29 14:19:28 +01:00
|
|
|
m_clean(false)
|
|
|
|
|
{
|
|
|
|
|
ctor();
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-15 17:17:40 +01:00
|
|
|
MakeStep::MakeStep(BuildStepList *bsl, const Core::Id id) :
|
2011-11-29 14:19:28 +01:00
|
|
|
AbstractProcessStep(bsl, id),
|
|
|
|
|
m_clean(false)
|
|
|
|
|
{
|
|
|
|
|
ctor();
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-13 13:36:45 +01:00
|
|
|
MakeStep::MakeStep(BuildStepList *bsl, MakeStep *bs) :
|
2011-11-29 14:19:28 +01:00
|
|
|
AbstractProcessStep(bsl, bs),
|
|
|
|
|
m_buildTargets(bs->m_buildTargets),
|
|
|
|
|
m_additionalArguments(bs->additionalArguments()),
|
|
|
|
|
m_clean(bs->m_clean)
|
|
|
|
|
{
|
|
|
|
|
ctor();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MakeStep::ctor()
|
|
|
|
|
{
|
|
|
|
|
setDefaultDisplayName(tr("Make"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AutotoolsBuildConfiguration *MakeStep::autotoolsBuildConfiguration() const
|
|
|
|
|
{
|
|
|
|
|
return static_cast<AutotoolsBuildConfiguration *>(buildConfiguration());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MakeStep::setClean(bool clean)
|
|
|
|
|
{
|
|
|
|
|
m_clean = clean;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool MakeStep::init()
|
|
|
|
|
{
|
|
|
|
|
AutotoolsBuildConfiguration *bc = autotoolsBuildConfiguration();
|
2012-09-06 13:13:12 +02:00
|
|
|
if (!bc)
|
|
|
|
|
bc = static_cast<AutotoolsBuildConfiguration *>(target()->activeBuildConfiguration());
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
}
|
2011-11-29 14:19:28 +01:00
|
|
|
|
|
|
|
|
QString arguments = Utils::QtcProcess::joinArgs(m_buildTargets);
|
|
|
|
|
Utils::QtcProcess::addArgs(&arguments, additionalArguments());
|
|
|
|
|
|
|
|
|
|
setIgnoreReturnValue(m_clean);
|
|
|
|
|
|
|
|
|
|
ProcessParameters *pp = processParameters();
|
|
|
|
|
pp->setMacroExpander(bc->macroExpander());
|
|
|
|
|
pp->setEnvironment(bc->environment());
|
|
|
|
|
pp->setWorkingDirectory(bc->buildDirectory());
|
2012-09-11 15:59:17 +02:00
|
|
|
pp->setCommand(tc ? tc->makeCommand(bc->environment()) : QLatin1String("make"));
|
2011-11-29 14:19:28 +01:00
|
|
|
pp->setArguments(arguments);
|
|
|
|
|
|
2012-01-13 13:36:45 +01:00
|
|
|
setOutputParser(new GnuMakeParser());
|
2012-09-26 17:53:25 +02:00
|
|
|
QtSupport::BaseQtVersion *version = QtSupport::QtKitInformation::qtVersion(target()->kit());
|
|
|
|
|
if (version)
|
|
|
|
|
appendOutputParser(new QtSupport::QtParser);
|
2012-04-24 15:49:09 +02:00
|
|
|
if (tc)
|
|
|
|
|
appendOutputParser(tc->outputParser());
|
2011-11-29 14:19:28 +01:00
|
|
|
outputParser()->setWorkingDirectory(pp->effectiveWorkingDirectory());
|
|
|
|
|
|
|
|
|
|
return AbstractProcessStep::init();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MakeStep::run(QFutureInterface<bool> &interface)
|
|
|
|
|
{
|
2012-09-06 13:13:12 +02:00
|
|
|
// Warn on common error conditions:
|
|
|
|
|
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);
|
|
|
|
|
interface.reportResult(false);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-29 14:19:28 +01:00
|
|
|
AbstractProcessStep::run(interface);
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-13 13:36:45 +01:00
|
|
|
BuildStepConfigWidget *MakeStep::createConfigWidget()
|
2011-11-29 14:19:28 +01:00
|
|
|
{
|
|
|
|
|
return new MakeStepConfigWidget(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool MakeStep::immutable() const
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MakeStep::setBuildTarget(const QString &target, bool on)
|
|
|
|
|
{
|
|
|
|
|
QStringList old = m_buildTargets;
|
|
|
|
|
if (on && !old.contains(target))
|
|
|
|
|
old << target;
|
|
|
|
|
else if (!on && old.contains(target))
|
|
|
|
|
old.removeOne(target);
|
|
|
|
|
|
|
|
|
|
m_buildTargets = old;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MakeStep::setAdditionalArguments(const QString &list)
|
|
|
|
|
{
|
|
|
|
|
if (list == m_additionalArguments)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
m_additionalArguments = list;
|
|
|
|
|
|
|
|
|
|
emit additionalArgumentsChanged(list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString MakeStep::additionalArguments() const
|
|
|
|
|
{
|
|
|
|
|
return m_additionalArguments;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVariantMap MakeStep::toMap() const
|
|
|
|
|
{
|
2011-11-30 15:08:34 +01:00
|
|
|
QVariantMap map = AbstractProcessStep::toMap();
|
2011-11-29 14:19:28 +01:00
|
|
|
|
|
|
|
|
map.insert(QLatin1String(BUILD_TARGETS_KEY), m_buildTargets);
|
|
|
|
|
map.insert(QLatin1String(MAKE_STEP_ADDITIONAL_ARGUMENTS_KEY), m_additionalArguments);
|
|
|
|
|
map.insert(QLatin1String(CLEAN_KEY), m_clean);
|
|
|
|
|
return map;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool MakeStep::fromMap(const QVariantMap &map)
|
|
|
|
|
{
|
|
|
|
|
m_buildTargets = map.value(QLatin1String(BUILD_TARGETS_KEY)).toStringList();
|
|
|
|
|
m_additionalArguments = map.value(QLatin1String(MAKE_STEP_ADDITIONAL_ARGUMENTS_KEY)).toString();
|
|
|
|
|
m_clean = map.value(QLatin1String(CLEAN_KEY)).toBool();
|
|
|
|
|
|
|
|
|
|
return BuildStep::fromMap(map);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
///////////////////////////////
|
|
|
|
|
// MakeStepConfigWidget class
|
|
|
|
|
///////////////////////////////
|
|
|
|
|
MakeStepConfigWidget::MakeStepConfigWidget(MakeStep *makeStep) :
|
|
|
|
|
m_makeStep(makeStep),
|
|
|
|
|
m_summaryText(),
|
|
|
|
|
m_additionalArguments(0)
|
|
|
|
|
{
|
|
|
|
|
QFormLayout *fl = new QFormLayout(this);
|
|
|
|
|
fl->setMargin(0);
|
|
|
|
|
fl->setFieldGrowthPolicy(QFormLayout::ExpandingFieldsGrow);
|
|
|
|
|
setLayout(fl);
|
|
|
|
|
|
|
|
|
|
m_additionalArguments = new QLineEdit(this);
|
|
|
|
|
fl->addRow(tr("Arguments:"), m_additionalArguments);
|
|
|
|
|
m_additionalArguments->setText(m_makeStep->additionalArguments());
|
|
|
|
|
|
|
|
|
|
updateDetails();
|
|
|
|
|
|
|
|
|
|
connect(m_additionalArguments, SIGNAL(textChanged(QString)),
|
|
|
|
|
makeStep, SLOT(setAdditionalArguments(QString)));
|
|
|
|
|
connect(makeStep, SIGNAL(additionalArgumentsChanged(QString)),
|
|
|
|
|
this, SLOT(updateDetails()));
|
2012-09-11 15:59:17 +02:00
|
|
|
connect(m_makeStep->project(), SIGNAL(environmentChanged()), this, SLOT(updateDetails()));
|
2011-11-29 14:19:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString MakeStepConfigWidget::displayName() const
|
|
|
|
|
{
|
|
|
|
|
return tr("Make", "AutotoolsProjectManager::MakeStepConfigWidget display name.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString MakeStepConfigWidget::summaryText() const
|
|
|
|
|
{
|
|
|
|
|
return m_summaryText;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MakeStepConfigWidget::updateDetails()
|
|
|
|
|
{
|
|
|
|
|
AutotoolsBuildConfiguration *bc = m_makeStep->autotoolsBuildConfiguration();
|
2012-09-03 18:31:44 +02:00
|
|
|
ToolChain *tc = ProjectExplorer::ToolChainKitInformation::toolChain(m_makeStep->target()->kit());
|
2011-11-29 14:19:28 +01:00
|
|
|
|
|
|
|
|
if (tc) {
|
|
|
|
|
QString arguments = Utils::QtcProcess::joinArgs(m_makeStep->m_buildTargets);
|
|
|
|
|
Utils::QtcProcess::addArgs(&arguments, m_makeStep->additionalArguments());
|
|
|
|
|
|
|
|
|
|
ProcessParameters param;
|
|
|
|
|
param.setMacroExpander(bc->macroExpander());
|
|
|
|
|
param.setEnvironment(bc->environment());
|
|
|
|
|
param.setWorkingDirectory(bc->buildDirectory());
|
2012-09-11 15:59:17 +02:00
|
|
|
param.setCommand(tc->makeCommand(bc->environment()));
|
2011-11-29 14:19:28 +01:00
|
|
|
param.setArguments(arguments);
|
|
|
|
|
m_summaryText = param.summary(displayName());
|
|
|
|
|
} else {
|
2012-09-03 18:31:44 +02:00
|
|
|
m_summaryText = QLatin1String("<b>") + ProjectExplorer::ToolChainKitInformation::msgNoToolChainInTarget() + QLatin1String("</b>");
|
2011-11-29 14:19:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
emit updateSummary();
|
|
|
|
|
}
|