Skip to content
Snippets Groups Projects
makestep.cpp 10.9 KiB
Newer Older
/**************************************************************************
con's avatar
con committed
**
** This file is part of Qt Creator
**
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
con's avatar
con committed
**
** Contact: Nokia Corporation (qt-info@nokia.com)
con's avatar
con committed
**
** Commercial Usage
** 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.
** GNU Lesser General Public License Usage
** 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.
** If you are unsure which license is appropriate for your use, please
hjk's avatar
hjk committed
** contact the sales department at http://qt.nokia.com/contact.
con's avatar
con committed
**
**************************************************************************/
hjk's avatar
hjk committed

con's avatar
con committed
#include "makestep.h"
hjk's avatar
hjk committed

con's avatar
con committed
#include "qt4project.h"
#include "qt4buildconfiguration.h"
con's avatar
con committed
#include "qt4projectmanagerconstants.h"

#include <projectexplorer/projectexplorerconstants.h>

hjk's avatar
hjk committed
#include <QtCore/QDir>
#include <QtCore/QFileInfo>
con's avatar
con committed

using ProjectExplorer::IBuildParserFactory;
using ProjectExplorer::IBuildParser;
con's avatar
con committed
using ProjectExplorer::Environment;
using ExtensionSystem::PluginManager;
using namespace Qt4ProjectManager;
using namespace Qt4ProjectManager::Internal;

dt's avatar
dt committed
MakeStep::MakeStep(ProjectExplorer::BuildConfiguration *bc)
    : AbstractMakeStep(bc), m_clean(false)
{

}

MakeStep::MakeStep(MakeStep *bs, ProjectExplorer::BuildConfiguration *bc)
    : AbstractMakeStep(bs, bc),
    m_clean(bs->m_clean),
    m_makeargs(bs->m_makeargs),
    m_makeCmd(bs->m_makeCmd)
con's avatar
con committed
{

}

con's avatar
con committed
{

}

void MakeStep::setClean(bool clean)
{
    m_clean = clean;
}

void MakeStep::restoreFromGlobalMap(const QMap<QString, QVariant> &map)
{
    if (map.value("clean").isValid() && map.value("clean").toBool())
        m_clean = true;
    ProjectExplorer::AbstractMakeStep::restoreFromGlobalMap(map);
void MakeStep::restoreFromLocalMap(const QMap<QString, QVariant> &map)
    m_makeargs = map.value("makeargs").toStringList();
    m_makeCmd = map.value("makeCmd").toString();
    if (map.value("clean").isValid() && map.value("clean").toBool())
        m_clean = true;
    ProjectExplorer::AbstractMakeStep::restoreFromLocalMap(map);
void MakeStep::storeIntoLocalMap(QMap<QString, QVariant> &map)
    map["makeargs"] = m_makeargs;
    map["makeCmd"] = m_makeCmd;
    if (m_clean)
        map["clean"] = true;
    ProjectExplorer::AbstractMakeStep::storeIntoLocalMap(map);
bool MakeStep::init()
con's avatar
con committed
{
    Qt4BuildConfiguration *bc = static_cast<Qt4BuildConfiguration *>(buildConfiguration());
    Environment environment = bc->environment();
    setEnvironment(environment);
con's avatar
con committed

dt's avatar
dt committed
    //TODO
    QString workingDirectory = bc->buildDirectory();
    setWorkingDirectory(workingDirectory);
con's avatar
con committed

    QString makeCmd = bc->makeCommand();
    if (!m_makeCmd.isEmpty())
        makeCmd = m_makeCmd;
con's avatar
con committed
    if (!QFileInfo(makeCmd).isAbsolute()) {
        // Try to detect command in environment
        QString tmp = environment.searchInPath(makeCmd);
hjk's avatar
hjk committed
        if (tmp == QString::null) {
con's avatar
con committed
            emit addToOutputWindow(tr("<font color=\"#ff0000\">Could not find make command: %1 "\
                                      "in the build environment</font>").arg(makeCmd));
            return false;
        }
        makeCmd = tmp;
    }
    setCommand(makeCmd);
con's avatar
con committed

    // 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(m_clean);
    QStringList args = m_makeargs;
        if (!bc->defaultMakeTarget().isEmpty())
            args << bc->defaultMakeTarget();
con's avatar
con committed
    }
    // -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
    ProjectExplorer::ToolChain *toolchain = bc->toolChain();
dt's avatar
dt committed
    ProjectExplorer::ToolChain::ToolChainType type =  ProjectExplorer::ToolChain::UNKNOWN;
    if (toolchain)
dt's avatar
dt committed
        type = toolchain->type();
    if (type != ProjectExplorer::ToolChain::MSVC && type != ProjectExplorer::ToolChain::WINCE) {
        if (m_makeCmd.isEmpty())
con's avatar
con committed
            args << "-w";
    }

    setEnabled(true);
    setArguments(args);
con's avatar
con committed

dt's avatar
dt committed
    if (type == ProjectExplorer::ToolChain::MSVC || type == ProjectExplorer::ToolChain::WINCE)
        setBuildParser(ProjectExplorer::Constants::BUILD_PARSER_MSVC);
    else if (ProjectExplorer::ToolChain::GCCE == type)
        setBuildParser(ProjectExplorer::Constants::BUILD_PARSER_ABLD_GCCE);
    else if (ProjectExplorer::ToolChain::WINSCW == type)
        setBuildParser(ProjectExplorer::Constants::BUILD_PARSER_ABLD_WINSCW);
    else if (ProjectExplorer::ToolChain::RVCT_ARMV5 == type ||
             ProjectExplorer::ToolChain::RVCT_ARMV6 == type)
        setBuildParser(ProjectExplorer::Constants::BUILD_PARSER_ABLD_RVCT);
    else
        setBuildParser(ProjectExplorer::Constants::BUILD_PARSER_GCC);
con's avatar
con committed

    return AbstractMakeStep::init();
con's avatar
con committed
}

void MakeStep::run(QFutureInterface<bool> & fi)
{
dt's avatar
dt committed
    if (static_cast<Qt4Project *>(buildConfiguration()->project())->rootProjectNode()->projectType() == ScriptTemplate) {
con's avatar
con committed
        fi.reportResult(true);
        return;
    }

con's avatar
con committed
}

QString MakeStep::name()
{
    return Constants::MAKESTEP;
}

QString MakeStep::displayName()
{
    return "Make";
}

bool MakeStep::immutable() const
{
    return false;
con's avatar
con committed
}

ProjectExplorer::BuildStepConfigWidget *MakeStep::createConfigWidget()
{
    return new MakeStepConfigWidget(this);
}

QStringList MakeStep::makeArguments()
    return m_makeargs;
void MakeStep::setMakeArguments(const QStringList &arguments)
    m_makeargs = arguments;
con's avatar
con committed
MakeStepConfigWidget::MakeStepConfigWidget(MakeStep *makeStep)
    : BuildStepConfigWidget(), m_makeStep(makeStep)
{
    m_ui.setupUi(this);
    connect(m_ui.makeLineEdit, SIGNAL(textEdited(QString)),
con's avatar
con committed
            this, SLOT(makeLineEditTextEdited()));
    connect(m_ui.makeArgumentsLineEdit, SIGNAL(textEdited(QString)),
con's avatar
con committed
            this, SLOT(makeArgumentsLineEditTextEdited()));

    connect(makeStep, SIGNAL(changed()),
            this, SLOT(update()));
dt's avatar
dt committed
    connect(makeStep->buildConfiguration()->project(), SIGNAL(buildDirectoryChanged()),
            this, SLOT(updateDetails()));

    connect(ProjectExplorer::ProjectExplorerPlugin::instance(), SIGNAL(settingsChanged()),
            this, SLOT(updateMakeOverrideLabel()));
    connect(ProjectExplorer::ProjectExplorerPlugin::instance(), SIGNAL(settingsChanged()),
            this, SLOT(updateDetails()));
void MakeStepConfigWidget::updateMakeOverrideLabel()
{
    Qt4BuildConfiguration *qt4bc = static_cast<Qt4BuildConfiguration *>(m_makeStep->buildConfiguration());
    m_ui.makeLabel->setText(tr("Override %1:").arg(qt4bc->makeCommand()));
dt's avatar
dt committed
void MakeStepConfigWidget::updateDetails()
dt's avatar
dt committed
{
    Qt4BuildConfiguration *bc = static_cast<Qt4BuildConfiguration *>(m_makeStep->buildConfiguration());
    QString workingDirectory = bc->buildDirectory();
    QString makeCmd = bc->makeCommand();
    if (!m_makeStep->m_makeCmd.isEmpty())
        makeCmd = m_makeStep->m_makeCmd;
dt's avatar
dt committed
    if (!QFileInfo(makeCmd).isAbsolute()) {
        Environment environment = bc->environment();
dt's avatar
dt committed
        // Try to detect command in environment
        QString tmp = environment.searchInPath(makeCmd);
        if (tmp == QString::null) {
            m_summaryText = tr("<b>Make Step:</b> %1 not found in the environment.").arg(makeCmd);
            emit updateSummary();
            return;
        }
        makeCmd = tmp;
    }
    // -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
dt's avatar
dt committed
    // 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
    QStringList args = m_makeStep->makeArguments();
dt's avatar
dt committed
    ProjectExplorer::ToolChain::ToolChainType t = ProjectExplorer::ToolChain::UNKNOWN;
    ProjectExplorer::ToolChain *toolChain = bc->toolChain();
dt's avatar
dt committed
    if (toolChain)
        t = toolChain->type();
dt's avatar
dt committed
    if (t != ProjectExplorer::ToolChain::MSVC && t != ProjectExplorer::ToolChain::WINCE) {
        if (m_makeStep->m_makeCmd.isEmpty())
dt's avatar
dt committed
            args << "-w";
    }
    m_summaryText = tr("<b>Make:</b> %1 %2 in %3").arg(QFileInfo(makeCmd).fileName(), args.join(" "),
                                                       QDir::toNativeSeparators(workingDirectory));
dt's avatar
dt committed
    emit updateSummary();
}

QString MakeStepConfigWidget::summaryText() const
{
    return m_summaryText;
con's avatar
con committed
}

QString MakeStepConfigWidget::displayName() const
{
    return m_makeStep->displayName();
}

void MakeStepConfigWidget::update()
{
void MakeStepConfigWidget::init()
con's avatar
con committed
{
    updateMakeOverrideLabel();
    const QString &makeCmd = m_makeStep->m_makeCmd;
    m_ui.makeLineEdit->setText(makeCmd);

    const QStringList &makeArguments = m_makeStep->makeArguments();
    m_ui.makeArgumentsLineEdit->setText(ProjectExplorer::Environment::joinArgumentList(makeArguments));
dt's avatar
dt committed
    updateDetails();
con's avatar
con committed
}

void MakeStepConfigWidget::makeLineEditTextEdited()
{
    m_makeStep->m_makeCmd = m_ui.makeLineEdit->text();
dt's avatar
dt committed
    updateDetails();
con's avatar
con committed
}

void MakeStepConfigWidget::makeArgumentsLineEditTextEdited()
{
    m_makeStep->setMakeArguments(
            ProjectExplorer::Environment::parseCombinedArgString(m_ui.makeArgumentsLineEdit->text()));
dt's avatar
dt committed
    updateDetails();
con's avatar
con committed
}

///
// MakeStep
///

MakeStepFactory::MakeStepFactory()
{
}

MakeStepFactory::~MakeStepFactory()
{
}

bool MakeStepFactory::canCreate(const QString & name) const
{
    return (name == Constants::MAKESTEP);
}

dt's avatar
dt committed
ProjectExplorer::BuildStep *MakeStepFactory::create(ProjectExplorer::BuildConfiguration *bc, const QString & name) const
dt's avatar
dt committed
    return new MakeStep(bc);
}

ProjectExplorer::BuildStep *MakeStepFactory::clone(ProjectExplorer::BuildStep *bs, ProjectExplorer::BuildConfiguration *bc) const
{
    return new MakeStep(static_cast<MakeStep *>(bs), bc);
QStringList MakeStepFactory::canCreateForBuildConfiguration(ProjectExplorer::BuildConfiguration *pro) const
    if (qobject_cast<Qt4BuildConfiguration *>(pro))
        return QStringList() << Constants::MAKESTEP;
    else
        return QStringList();
}

QString MakeStepFactory::displayNameForName(const QString &name) const
{
    return tr("Make");