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
|
|
|
**
|
|
|
|
|
** Contact: Qt Software Information (qt-info@nokia.com)
|
|
|
|
|
**
|
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
|
|
|
|
|
** contact the sales department at qt-sales@nokia.com.
|
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 "buildstep.h"
|
|
|
|
|
#include "buildconfiguration.h"
|
|
|
|
|
|
2008-12-09 15:25:01 +01:00
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
namespace ProjectExplorer {
|
|
|
|
|
|
|
|
|
|
BuildStep::BuildStep(Project * pro)
|
|
|
|
|
: m_project(pro)
|
|
|
|
|
{
|
|
|
|
|
m_configuration = new BuildConfiguration("");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BuildStep::~BuildStep()
|
|
|
|
|
{
|
|
|
|
|
qDeleteAll(m_buildConfigurations);
|
|
|
|
|
delete m_configuration;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Project * BuildStep::project() const
|
|
|
|
|
{
|
|
|
|
|
return m_project;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BuildStep::addBuildConfiguration(const QString &name)
|
|
|
|
|
{
|
|
|
|
|
m_buildConfigurations.push_back(new BuildConfiguration(name));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BuildStep::removeBuildConfiguration(const QString &name)
|
|
|
|
|
{
|
2008-12-09 11:07:24 +01:00
|
|
|
for (int i = 0; i != m_buildConfigurations.size(); ++i)
|
|
|
|
|
if (m_buildConfigurations.at(i)->name() == name) {
|
2008-12-02 12:01:29 +01:00
|
|
|
delete m_buildConfigurations.at(i);
|
|
|
|
|
m_buildConfigurations.removeAt(i);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BuildStep::copyBuildConfiguration(const QString &source, const QString &dest)
|
|
|
|
|
{
|
2008-12-09 11:07:24 +01:00
|
|
|
for (int i = 0; i != m_buildConfigurations.size(); ++i)
|
|
|
|
|
if (m_buildConfigurations.at(i)->name() == source)
|
2008-12-02 12:01:29 +01:00
|
|
|
m_buildConfigurations.push_back(new BuildConfiguration(dest, m_buildConfigurations.at(i)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BuildStep::setValue(const QString &buildConfiguration, const QString &name, const QVariant &value)
|
|
|
|
|
{
|
|
|
|
|
BuildConfiguration *bc = getBuildConfiguration(buildConfiguration);
|
2008-12-17 15:51:48 +01:00
|
|
|
Q_ASSERT(bc);
|
2008-12-02 12:01:29 +01:00
|
|
|
bc->setValue(name, value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BuildStep::setValue(const QString &name, const QVariant &value)
|
|
|
|
|
{
|
|
|
|
|
m_configuration->setValue(name, value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVariant BuildStep::value(const QString &buildConfiguration, const QString &name) const
|
|
|
|
|
{
|
|
|
|
|
BuildConfiguration *bc = getBuildConfiguration(buildConfiguration);
|
|
|
|
|
if (bc)
|
|
|
|
|
return bc->getValue(name);
|
|
|
|
|
else
|
|
|
|
|
return QVariant();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVariant BuildStep::value(const QString &name) const
|
|
|
|
|
{
|
|
|
|
|
return m_configuration->getValue(name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BuildStep::setValuesFromMap(const QMap<QString, QVariant> & values)
|
|
|
|
|
{
|
|
|
|
|
m_configuration->setValuesFromMap(values);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BuildStep::setValuesFromMap(const QString & buildConfiguration, const QMap<QString, QVariant> & values)
|
|
|
|
|
{
|
|
|
|
|
getBuildConfiguration(buildConfiguration)->setValuesFromMap(values);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMap<QString, QVariant> BuildStep::valuesToMap()
|
|
|
|
|
{
|
|
|
|
|
return m_configuration->toMap();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMap<QString, QVariant> BuildStep::valuesToMap(const QString & buildConfiguration)
|
|
|
|
|
{
|
|
|
|
|
return getBuildConfiguration(buildConfiguration)->toMap();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BuildConfiguration * BuildStep::getBuildConfiguration(const QString & name) const
|
|
|
|
|
{
|
|
|
|
|
for (int i = 0; i != m_buildConfigurations.size(); ++i)
|
|
|
|
|
if (m_buildConfigurations.at(i)->name() == name)
|
|
|
|
|
return m_buildConfigurations.at(i);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool BuildStep::immutable() const
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IBuildStepFactory::IBuildStepFactory()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IBuildStepFactory::~IBuildStepFactory()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace ProjectExplorer
|