2009-11-23 12:11:48 +01:00
|
|
|
/**************************************************************************
|
|
|
|
**
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
**
|
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
**
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
**
|
|
|
|
** 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
|
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
|
|
|
**
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
#include "genericbuildconfiguration.h"
|
2010-01-07 18:17:24 +01:00
|
|
|
|
|
|
|
#include "genericmakestep.h"
|
2009-11-23 13:29:45 +01:00
|
|
|
#include "genericproject.h"
|
2010-02-08 15:50:06 +01:00
|
|
|
#include "generictarget.h"
|
2009-11-23 12:11:48 +01:00
|
|
|
|
2010-01-07 18:17:24 +01:00
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
|
|
#include <QtGui/QInputDialog>
|
|
|
|
|
2009-11-23 12:11:48 +01:00
|
|
|
using namespace GenericProjectManager;
|
|
|
|
using namespace GenericProjectManager::Internal;
|
|
|
|
using ProjectExplorer::BuildConfiguration;
|
|
|
|
|
2010-01-18 12:11:04 +01:00
|
|
|
namespace {
|
|
|
|
const char * const GENERIC_BC_ID("GenericProjectManager.GenericBuildConfiguration");
|
|
|
|
|
|
|
|
const char * const BUILD_DIRECTORY_KEY("GenericProjectManager.GenericBuildConfiguration.BuildDirectory");
|
|
|
|
}
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
GenericBuildConfiguration::GenericBuildConfiguration(GenericTarget *parent)
|
|
|
|
: BuildConfiguration(parent, QLatin1String(GENERIC_BC_ID))
|
2009-11-23 12:11:48 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
GenericBuildConfiguration::GenericBuildConfiguration(GenericTarget *parent, const QString &id)
|
|
|
|
: BuildConfiguration(parent, id)
|
2009-12-08 12:21:11 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
GenericBuildConfiguration::GenericBuildConfiguration(GenericTarget *parent, GenericBuildConfiguration *source) :
|
|
|
|
BuildConfiguration(parent, source),
|
2009-12-08 12:21:11 +01:00
|
|
|
m_buildDirectory(source->m_buildDirectory)
|
2009-11-23 12:11:48 +01:00
|
|
|
{
|
2010-02-25 14:23:11 +01:00
|
|
|
cloneSteps(source);
|
2010-01-18 12:11:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
GenericBuildConfiguration::~GenericBuildConfiguration()
|
|
|
|
{
|
|
|
|
}
|
2009-11-23 12:11:48 +01:00
|
|
|
|
2010-01-18 12:11:04 +01:00
|
|
|
QVariantMap GenericBuildConfiguration::toMap() const
|
|
|
|
{
|
|
|
|
QVariantMap map(BuildConfiguration::toMap());
|
|
|
|
map.insert(QLatin1String(BUILD_DIRECTORY_KEY), m_buildDirectory);
|
|
|
|
return map;
|
2009-11-23 12:11:48 +01:00
|
|
|
}
|
2009-11-25 18:50:20 +01:00
|
|
|
|
2010-01-18 12:11:04 +01:00
|
|
|
bool GenericBuildConfiguration::fromMap(const QVariantMap &map)
|
2009-12-08 12:21:11 +01:00
|
|
|
{
|
2010-01-18 12:11:04 +01:00
|
|
|
m_buildDirectory = map.value(QLatin1String(BUILD_DIRECTORY_KEY)).toString();
|
|
|
|
|
|
|
|
return BuildConfiguration::fromMap(map);
|
2009-12-08 12:21:11 +01:00
|
|
|
}
|
|
|
|
|
2009-11-25 18:50:20 +01:00
|
|
|
ProjectExplorer::Environment GenericBuildConfiguration::environment() const
|
|
|
|
{
|
|
|
|
return ProjectExplorer::Environment::systemEnvironment();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString GenericBuildConfiguration::buildDirectory() const
|
|
|
|
{
|
2009-12-08 12:21:11 +01:00
|
|
|
QString buildDirectory = m_buildDirectory;
|
2009-11-25 18:50:20 +01:00
|
|
|
if (buildDirectory.isEmpty()) {
|
2010-02-08 15:50:06 +01:00
|
|
|
QFileInfo fileInfo(target()->project()->file()->fileName());
|
2009-11-25 18:50:20 +01:00
|
|
|
|
|
|
|
buildDirectory = fileInfo.absolutePath();
|
|
|
|
}
|
|
|
|
return buildDirectory;
|
|
|
|
}
|
|
|
|
|
2009-12-07 15:55:00 +01:00
|
|
|
void GenericBuildConfiguration::setBuildDirectory(const QString &buildDirectory)
|
|
|
|
{
|
2009-12-08 12:21:11 +01:00
|
|
|
if (m_buildDirectory == buildDirectory)
|
2009-12-07 15:55:00 +01:00
|
|
|
return;
|
2009-12-08 12:21:11 +01:00
|
|
|
m_buildDirectory = buildDirectory;
|
2009-12-07 15:55:00 +01:00
|
|
|
emit buildDirectoryChanged();
|
|
|
|
}
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
GenericTarget *GenericBuildConfiguration::genericTarget() const
|
2009-11-26 14:43:27 +01:00
|
|
|
{
|
2010-02-08 15:50:06 +01:00
|
|
|
return static_cast<GenericTarget *>(target());
|
2009-11-26 14:43:27 +01:00
|
|
|
}
|
|
|
|
|
2010-01-07 18:17:24 +01:00
|
|
|
|
|
|
|
/*!
|
|
|
|
\class GenericBuildConfigurationFactory
|
|
|
|
*/
|
|
|
|
|
2010-01-18 12:11:04 +01:00
|
|
|
GenericBuildConfigurationFactory::GenericBuildConfigurationFactory(QObject *parent) :
|
|
|
|
ProjectExplorer::IBuildConfigurationFactory(parent)
|
2010-01-07 18:17:24 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
GenericBuildConfigurationFactory::~GenericBuildConfigurationFactory()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
QStringList GenericBuildConfigurationFactory::availableCreationIds(ProjectExplorer::Target *parent) const
|
2010-01-07 18:17:24 +01:00
|
|
|
{
|
2010-02-08 15:50:06 +01:00
|
|
|
if (!qobject_cast<GenericTarget *>(parent))
|
|
|
|
return QStringList();
|
2010-01-18 12:11:04 +01:00
|
|
|
return QStringList() << QLatin1String(GENERIC_BC_ID);
|
2010-01-07 18:17:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString GenericBuildConfigurationFactory::displayNameForId(const QString &id) const
|
|
|
|
{
|
2010-01-18 12:11:04 +01:00
|
|
|
if (id == QLatin1String(GENERIC_BC_ID))
|
|
|
|
return tr("Build");
|
|
|
|
return QString();
|
2010-01-07 18:17:24 +01:00
|
|
|
}
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
bool GenericBuildConfigurationFactory::canCreate(ProjectExplorer::Target *parent, const QString &id) const
|
2010-01-07 18:17:24 +01:00
|
|
|
{
|
2010-02-08 15:50:06 +01:00
|
|
|
if (!qobject_cast<GenericTarget *>(parent))
|
2010-01-18 12:11:04 +01:00
|
|
|
return false;
|
|
|
|
if (id == QLatin1String(GENERIC_BC_ID))
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
BuildConfiguration *GenericBuildConfigurationFactory::create(ProjectExplorer::Target *parent, const QString &id)
|
2010-01-18 12:11:04 +01:00
|
|
|
{
|
|
|
|
if (!canCreate(parent, id))
|
|
|
|
return 0;
|
2010-02-08 15:50:06 +01:00
|
|
|
GenericTarget *target(static_cast<GenericTarget *>(parent));
|
2010-01-18 12:11:04 +01:00
|
|
|
|
2010-01-07 18:17:24 +01:00
|
|
|
//TODO asking for name is duplicated everywhere, but maybe more
|
|
|
|
// wizards will show up, that incorporate choosing the name
|
|
|
|
bool ok;
|
|
|
|
QString buildConfigurationName = QInputDialog::getText(0,
|
|
|
|
tr("New configuration"),
|
|
|
|
tr("New Configuration Name:"),
|
|
|
|
QLineEdit::Normal,
|
|
|
|
QString(),
|
|
|
|
&ok);
|
|
|
|
if (!ok || buildConfigurationName.isEmpty())
|
|
|
|
return false;
|
2010-02-08 15:50:06 +01:00
|
|
|
GenericBuildConfiguration *bc = new GenericBuildConfiguration(target);
|
2010-01-07 18:17:24 +01:00
|
|
|
bc->setDisplayName(buildConfigurationName);
|
|
|
|
|
|
|
|
GenericMakeStep *makeStep = new GenericMakeStep(bc);
|
|
|
|
bc->insertBuildStep(0, makeStep);
|
|
|
|
makeStep->setBuildTarget("all", /* on = */ true);
|
2010-02-08 15:50:06 +01:00
|
|
|
|
|
|
|
target->addBuildConfiguration(bc); // also makes the name unique...
|
2010-01-07 18:17:24 +01:00
|
|
|
return bc;
|
|
|
|
}
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
bool GenericBuildConfigurationFactory::canClone(ProjectExplorer::Target *parent, ProjectExplorer::BuildConfiguration *source) const
|
2010-01-07 18:17:24 +01:00
|
|
|
{
|
2010-01-18 12:11:04 +01:00
|
|
|
return canCreate(parent, source->id());
|
2010-01-07 18:17:24 +01:00
|
|
|
}
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
BuildConfiguration *GenericBuildConfigurationFactory::clone(ProjectExplorer::Target *parent, BuildConfiguration *source)
|
2010-01-07 18:17:24 +01:00
|
|
|
{
|
2010-01-18 12:11:04 +01:00
|
|
|
if (!canClone(parent, source))
|
|
|
|
return 0;
|
2010-02-08 15:50:06 +01:00
|
|
|
GenericTarget *target(static_cast<GenericTarget *>(parent));
|
|
|
|
return new GenericBuildConfiguration(target, qobject_cast<GenericBuildConfiguration *>(source));
|
2010-01-18 12:11:04 +01:00
|
|
|
}
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
bool GenericBuildConfigurationFactory::canRestore(ProjectExplorer::Target *parent, const QVariantMap &map) const
|
2010-01-18 12:11:04 +01:00
|
|
|
{
|
|
|
|
QString id(ProjectExplorer::idFromMap(map));
|
|
|
|
return canCreate(parent, id);
|
|
|
|
}
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
BuildConfiguration *GenericBuildConfigurationFactory::restore(ProjectExplorer::Target *parent, const QVariantMap &map)
|
2010-01-18 12:11:04 +01:00
|
|
|
{
|
|
|
|
if (!canRestore(parent, map))
|
|
|
|
return 0;
|
2010-02-08 15:50:06 +01:00
|
|
|
GenericTarget *target(static_cast<GenericTarget *>(parent));
|
|
|
|
GenericBuildConfiguration *bc(new GenericBuildConfiguration(target));
|
2010-01-18 12:11:04 +01:00
|
|
|
if (bc->fromMap(map))
|
|
|
|
return bc;
|
|
|
|
delete bc;
|
|
|
|
return 0;
|
2010-01-07 18:17:24 +01:00
|
|
|
}
|