2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Commercial Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
** a written agreement between you and Nokia.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01: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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** If you are unsure which license is appropriate for your use, please
|
2009-06-17 00:01:27 +10:00
|
|
|
** contact the sales department at http://www.qtsoftware.com/contact.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "makestep.h"
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "qt4project.h"
|
|
|
|
#include "qt4projectmanagerconstants.h"
|
|
|
|
|
2009-02-16 13:12:12 +01:00
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
|
|
|
|
2008-12-09 15:25:01 +01:00
|
|
|
#include <QtCore/QDir>
|
|
|
|
#include <QtCore/QFileInfo>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
using ProjectExplorer::IBuildParserFactory;
|
|
|
|
using ProjectExplorer::BuildParserInterface;
|
|
|
|
using ProjectExplorer::Environment;
|
|
|
|
using ExtensionSystem::PluginManager;
|
|
|
|
using namespace Qt4ProjectManager;
|
|
|
|
using namespace Qt4ProjectManager::Internal;
|
|
|
|
|
|
|
|
MakeStep::MakeStep(Qt4Project * project)
|
2009-05-05 14:56:59 +02:00
|
|
|
: AbstractMakeStep(project)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-05-05 14:56:59 +02:00
|
|
|
MakeStep::~MakeStep()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MakeStep::init(const QString &name)
|
|
|
|
{
|
|
|
|
m_buildConfiguration = name;
|
|
|
|
Environment environment = project()->environment(name);
|
|
|
|
setEnvironment(name, environment);
|
|
|
|
|
|
|
|
QString workingDirectory;
|
|
|
|
if (project()->value(name, "useShadowBuild").toBool())
|
|
|
|
workingDirectory = project()->value(name, "buildDirectory").toString();
|
2008-12-09 11:07:24 +01:00
|
|
|
if (workingDirectory.isEmpty())
|
2008-12-02 12:01:29 +01:00
|
|
|
workingDirectory = QFileInfo(project()->file()->fileName()).absolutePath();
|
|
|
|
setWorkingDirectory(name, workingDirectory);
|
|
|
|
|
2009-06-05 16:10:26 +02:00
|
|
|
Qt4Project *qt4project = qobject_cast<Qt4Project *>(project());
|
|
|
|
QString makeCmd = qt4project->makeCommand(name);
|
2008-12-09 11:07:24 +01:00
|
|
|
if (!value(name, "makeCmd").toString().isEmpty())
|
2008-12-02 12:01:29 +01:00
|
|
|
makeCmd = value(name, "makeCmd").toString();
|
|
|
|
if (!QFileInfo(makeCmd).isAbsolute()) {
|
|
|
|
// Try to detect command in environment
|
|
|
|
QString tmp = environment.searchInPath(makeCmd);
|
2008-12-09 11:07:24 +01:00
|
|
|
if (tmp == QString::null) {
|
2008-12-02 12:01:29 +01:00
|
|
|
emit addToOutputWindow(tr("<font color=\"#ff0000\">Could not find make command: %1 "\
|
|
|
|
"in the build environment</font>").arg(makeCmd));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
makeCmd = tmp;
|
|
|
|
}
|
|
|
|
setCommand(name, makeCmd);
|
|
|
|
|
2009-06-22 16:11:45 +02:00
|
|
|
if (!value(name, "cleanConfig").isValid() && value("clean").isValid() && value("clean").toBool()) {
|
|
|
|
// Import old settings
|
|
|
|
setValue(name, "cleanConfig", true);
|
|
|
|
setValue(name, "makeargs", QStringList() << "clean");
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2009-06-22 16:11:45 +02:00
|
|
|
// If we are cleaning, then make can fail with a error code, but that doesn't mean
|
|
|
|
// we should stop the clean queue
|
|
|
|
// That is mostly so that rebuild works on a alrady clean project
|
|
|
|
setIgnoreReturnValue(name, value(name, "cleanConfig").isValid());
|
|
|
|
QStringList args = value(name, "makeargs").toStringList();
|
2009-06-24 18:06:48 +02:00
|
|
|
if (!value(name, "cleanConfig").isValid()) {
|
2009-06-10 15:37:48 +02:00
|
|
|
if (!qt4project->defaultMakeTarget(name).isEmpty())
|
|
|
|
args << qt4project->defaultMakeTarget(name);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
// -w option enables "Enter"/"Leaving directory" messages, which we need for detecting the
|
|
|
|
// absolute file path
|
|
|
|
// FIXME doing this without the user having a way to override this is rather bad
|
|
|
|
// so we only do it for unix and if the user didn't override the make command
|
|
|
|
// but for now this is the least invasive change
|
2009-06-09 18:02:23 +02:00
|
|
|
ProjectExplorer::ToolChain::ToolChainType t = qobject_cast<Qt4Project *>(project())->toolChain(name)->type();
|
2009-02-10 15:34:25 +01:00
|
|
|
if (t != ProjectExplorer::ToolChain::MSVC && t != ProjectExplorer::ToolChain::WINCE) {
|
2008-12-02 12:01:29 +01:00
|
|
|
if (value(name, "makeCmd").toString().isEmpty())
|
|
|
|
args << "-w";
|
|
|
|
}
|
|
|
|
|
2009-06-22 16:11:45 +02:00
|
|
|
setEnabled(name, true);
|
2008-12-02 12:01:29 +01:00
|
|
|
setArguments(name, args);
|
|
|
|
|
2009-06-09 18:02:23 +02:00
|
|
|
ProjectExplorer::ToolChain::ToolChainType type = qobject_cast<Qt4Project *>(project())->toolChain(name)->type();
|
2009-05-05 14:56:59 +02:00
|
|
|
if ( type == ProjectExplorer::ToolChain::MSVC || type == ProjectExplorer::ToolChain::WINCE)
|
|
|
|
setBuildParser(ProjectExplorer::Constants::BUILD_PARSER_MSVC);
|
|
|
|
else
|
|
|
|
setBuildParser(ProjectExplorer::Constants::BUILD_PARSER_GCC);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-05-05 14:56:59 +02:00
|
|
|
return AbstractMakeStep::init(name);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MakeStep::run(QFutureInterface<bool> & fi)
|
|
|
|
{
|
|
|
|
if (qobject_cast<Qt4Project *>(project())->rootProjectNode()->projectType() == ScriptTemplate) {
|
|
|
|
fi.reportResult(true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!enabled(m_buildConfiguration)) {
|
|
|
|
emit addToOutputWindow(tr("<font color=\"#0000ff\"><b>No Makefile found, assuming project is clean.</b></font>"));
|
|
|
|
fi.reportResult(true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-05-05 14:56:59 +02:00
|
|
|
AbstractMakeStep::run(fi);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString MakeStep::name()
|
|
|
|
{
|
|
|
|
return Constants::MAKESTEP;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString MakeStep::displayName()
|
|
|
|
{
|
|
|
|
return "Make";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MakeStep::immutable() const
|
|
|
|
{
|
2009-07-27 16:36:27 +02:00
|
|
|
return false;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ProjectExplorer::BuildStepConfigWidget *MakeStep::createConfigWidget()
|
|
|
|
{
|
|
|
|
return new MakeStepConfigWidget(this);
|
|
|
|
}
|
|
|
|
|
2009-07-24 18:53:54 +02:00
|
|
|
void MakeStep::setMakeArguments(const QString &buildConfiguration, const QStringList &arguments)
|
|
|
|
{
|
|
|
|
setValue(buildConfiguration, "makeargs", arguments);
|
|
|
|
emit changed();
|
|
|
|
}
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
MakeStepConfigWidget::MakeStepConfigWidget(MakeStep *makeStep)
|
|
|
|
: BuildStepConfigWidget(), m_makeStep(makeStep)
|
|
|
|
{
|
|
|
|
m_ui.setupUi(this);
|
2009-03-18 17:43:55 +01:00
|
|
|
connect(m_ui.makeLineEdit, SIGNAL(textEdited(QString)),
|
2008-12-02 12:01:29 +01:00
|
|
|
this, SLOT(makeLineEditTextEdited()));
|
2009-03-18 17:43:55 +01:00
|
|
|
connect(m_ui.makeArgumentsLineEdit, SIGNAL(textEdited(QString)),
|
2008-12-02 12:01:29 +01:00
|
|
|
this, SLOT(makeArgumentsLineEditTextEdited()));
|
2009-07-24 18:53:54 +02:00
|
|
|
|
|
|
|
connect(makeStep, SIGNAL(changed()),
|
|
|
|
this, SLOT(update()));
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString MakeStepConfigWidget::displayName() const
|
|
|
|
{
|
|
|
|
return m_makeStep->displayName();
|
|
|
|
}
|
|
|
|
|
2009-07-24 18:53:54 +02:00
|
|
|
void MakeStepConfigWidget::update()
|
|
|
|
{
|
|
|
|
init(m_buildConfiguration);
|
|
|
|
}
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void MakeStepConfigWidget::init(const QString &buildConfiguration)
|
|
|
|
{
|
|
|
|
m_buildConfiguration = buildConfiguration;
|
|
|
|
|
2009-06-22 16:11:45 +02:00
|
|
|
Qt4Project *pro = qobject_cast<Qt4Project *>(m_makeStep->project());
|
|
|
|
Q_ASSERT(pro);
|
|
|
|
|
|
|
|
if (!m_makeStep->value(buildConfiguration, "cleanConfig").isValid() && m_makeStep->value("clean").isValid() && m_makeStep->value("clean").toBool()) {
|
|
|
|
// Import old settings
|
|
|
|
m_makeStep->setValue(buildConfiguration, "cleanConfig", true);
|
|
|
|
m_makeStep->setValue(buildConfiguration, "makeargs", QStringList() << "clean");
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-06-22 16:11:45 +02:00
|
|
|
m_ui.makeLabel->setText(tr("Override %1:").arg(pro->makeCommand(buildConfiguration)));
|
|
|
|
|
|
|
|
const QString &makeCmd = m_makeStep->value(buildConfiguration, "makeCmd").toString();
|
|
|
|
m_ui.makeLineEdit->setText(makeCmd);
|
|
|
|
|
|
|
|
const QStringList &makeArguments =
|
2008-12-02 12:01:29 +01:00
|
|
|
m_makeStep->value(buildConfiguration, "makeargs").toStringList();
|
2009-06-22 16:11:45 +02:00
|
|
|
m_ui.makeArgumentsLineEdit->setText(ProjectExplorer::Environment::joinArgumentList(makeArguments));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MakeStepConfigWidget::makeLineEditTextEdited()
|
|
|
|
{
|
2008-12-17 15:51:48 +01:00
|
|
|
Q_ASSERT(!m_buildConfiguration.isNull());
|
2008-12-02 12:01:29 +01:00
|
|
|
m_makeStep->setValue(m_buildConfiguration, "makeCmd", m_ui.makeLineEdit->text());
|
|
|
|
}
|
|
|
|
|
|
|
|
void MakeStepConfigWidget::makeArgumentsLineEditTextEdited()
|
|
|
|
{
|
2008-12-17 15:51:48 +01:00
|
|
|
Q_ASSERT(!m_buildConfiguration.isNull());
|
2009-03-18 17:43:55 +01:00
|
|
|
m_makeStep->setValue(m_buildConfiguration, "makeargs",
|
|
|
|
ProjectExplorer::Environment::parseCombinedArgString(m_ui.makeArgumentsLineEdit->text()));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2009-04-20 16:25:48 +02:00
|
|
|
|
|
|
|
///
|
|
|
|
// MakeStep
|
|
|
|
///
|
|
|
|
|
|
|
|
MakeStepFactory::MakeStepFactory()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
MakeStepFactory::~MakeStepFactory()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MakeStepFactory::canCreate(const QString & name) const
|
|
|
|
{
|
|
|
|
return (name == Constants::MAKESTEP);
|
|
|
|
}
|
|
|
|
|
|
|
|
ProjectExplorer::BuildStep * MakeStepFactory::create(ProjectExplorer::Project * pro, const QString & name) const
|
|
|
|
{
|
2009-07-13 17:35:17 +02:00
|
|
|
Q_UNUSED(name)
|
2009-04-20 16:25:48 +02:00
|
|
|
return new MakeStep(static_cast<Qt4Project *>(pro));
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList MakeStepFactory::canCreateForProject(ProjectExplorer::Project *pro) const
|
|
|
|
{
|
2009-07-28 16:01:22 +02:00
|
|
|
if (qobject_cast<Qt4Project *>(pro))
|
|
|
|
return QStringList() << Constants::MAKESTEP;
|
|
|
|
else
|
|
|
|
return QStringList();
|
2009-04-20 16:25:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QString MakeStepFactory::displayNameForName(const QString &name) const
|
|
|
|
{
|
2009-07-13 17:35:17 +02:00
|
|
|
Q_UNUSED(name)
|
2009-07-28 16:01:22 +02:00
|
|
|
return tr("Make");
|
2009-04-20 16:25:48 +02:00
|
|
|
}
|