2010-07-16 14:00:41 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2012-01-26 18:33:46 +01:00
|
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2010-07-16 14:00:41 +02:00
|
|
|
**
|
2012-07-19 12:26:56 +02:00
|
|
|
** Contact: http://www.qt-project.org/
|
2010-07-16 14:00:41 +02:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** 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.
|
2010-07-16 14:00:41 +02:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
2010-07-16 14:00:41 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "deployconfiguration.h"
|
|
|
|
|
|
|
|
|
|
#include "buildmanager.h"
|
|
|
|
|
#include "buildsteplist.h"
|
|
|
|
|
#include "buildstepspage.h"
|
2012-09-03 18:31:44 +02:00
|
|
|
#include "kitinformation.h"
|
2012-04-24 15:49:09 +02:00
|
|
|
#include "project.h"
|
2010-07-16 14:00:41 +02:00
|
|
|
#include "projectexplorer.h"
|
|
|
|
|
#include "projectexplorerconstants.h"
|
|
|
|
|
#include "target.h"
|
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
#include <extensionsystem/pluginmanager.h>
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QStringList>
|
2011-01-20 14:03:07 +01:00
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
const char * const BUILD_STEP_LIST_COUNT("ProjectExplorer.BuildConfiguration.BuildStepListCount");
|
|
|
|
|
const char * const BUILD_STEP_LIST_PREFIX("ProjectExplorer.BuildConfiguration.BuildStepList.");
|
|
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
2012-03-15 17:17:40 +01:00
|
|
|
DeployConfiguration::DeployConfiguration(Target *target, const Core::Id id) :
|
2010-07-16 14:00:41 +02:00
|
|
|
ProjectConfiguration(target, id),
|
|
|
|
|
m_stepList(0)
|
|
|
|
|
{
|
|
|
|
|
Q_ASSERT(target);
|
2012-03-15 17:17:40 +01:00
|
|
|
m_stepList = new BuildStepList(this, Core::Id(Constants::BUILDSTEPS_DEPLOY));
|
2010-07-16 14:00:41 +02:00
|
|
|
//: Display name of the deploy build step list. Used as part of the labels in the project window.
|
2010-08-19 12:26:21 +02:00
|
|
|
m_stepList->setDefaultDisplayName(tr("Deploy"));
|
|
|
|
|
//: Default DeployConfiguration display name
|
2012-04-24 15:49:09 +02:00
|
|
|
setDefaultDisplayName(tr("Deploy locally"));
|
2010-07-16 14:00:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DeployConfiguration::DeployConfiguration(Target *target, DeployConfiguration *source) :
|
|
|
|
|
ProjectConfiguration(target, source)
|
|
|
|
|
{
|
|
|
|
|
Q_ASSERT(target);
|
|
|
|
|
// Do not clone stepLists here, do that in the derived constructor instead
|
|
|
|
|
// otherwise BuildStepFactories might reject to set up a BuildStep for us
|
|
|
|
|
// since we are not yet the derived class!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DeployConfiguration::~DeployConfiguration()
|
|
|
|
|
{
|
|
|
|
|
delete m_stepList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BuildStepList *DeployConfiguration::stepList() const
|
|
|
|
|
{
|
|
|
|
|
return m_stepList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVariantMap DeployConfiguration::toMap() const
|
|
|
|
|
{
|
|
|
|
|
QVariantMap map(ProjectConfiguration::toMap());
|
|
|
|
|
map.insert(QLatin1String(BUILD_STEP_LIST_COUNT), 1);
|
2010-08-02 14:25:56 +02:00
|
|
|
map.insert(QLatin1String(BUILD_STEP_LIST_PREFIX) + QLatin1String("0"), m_stepList->toMap());
|
2010-07-16 14:00:41 +02:00
|
|
|
return map;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DeployConfigurationWidget *DeployConfiguration::configurationWidget() const
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-29 13:16:25 +02:00
|
|
|
bool DeployConfiguration::isEnabled() const
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString DeployConfiguration::disabledReason() const
|
|
|
|
|
{
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
bool DeployConfiguration::fromMap(const QVariantMap &map)
|
|
|
|
|
{
|
|
|
|
|
if (!ProjectConfiguration::fromMap(map))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
int maxI = map.value(QLatin1String(BUILD_STEP_LIST_COUNT), 0).toInt();
|
2010-08-19 12:26:21 +02:00
|
|
|
if (maxI != 1)
|
|
|
|
|
return false;
|
2010-08-02 14:25:56 +02:00
|
|
|
QVariantMap data = map.value(QLatin1String(BUILD_STEP_LIST_PREFIX) + QLatin1String("0")).toMap();
|
2010-07-16 14:00:41 +02:00
|
|
|
if (!data.isEmpty()) {
|
|
|
|
|
m_stepList = new BuildStepList(this, data);
|
|
|
|
|
if (m_stepList->isNull()) {
|
|
|
|
|
qWarning() << "Failed to restore deploy step list";
|
|
|
|
|
delete m_stepList;
|
|
|
|
|
m_stepList = 0;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2010-08-19 12:26:21 +02:00
|
|
|
m_stepList->setDefaultDisplayName(tr("Deploy"));
|
2010-07-16 14:00:41 +02:00
|
|
|
} else {
|
|
|
|
|
qWarning() << "No data for deploy step list found!";
|
2010-08-19 12:26:21 +02:00
|
|
|
return false;
|
2010-07-16 14:00:41 +02:00
|
|
|
}
|
|
|
|
|
|
2012-05-03 17:05:38 +02:00
|
|
|
// We assume that we hold the deploy list
|
2012-08-03 15:24:33 +02:00
|
|
|
Q_ASSERT(m_stepList && m_stepList->id() == ProjectExplorer::Constants::BUILDSTEPS_DEPLOY);
|
2010-07-16 14:00:41 +02:00
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Target *DeployConfiguration::target() const
|
|
|
|
|
{
|
|
|
|
|
return static_cast<Target *>(parent());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DeployConfiguration::cloneSteps(DeployConfiguration *source)
|
|
|
|
|
{
|
|
|
|
|
if (source == this)
|
|
|
|
|
return;
|
|
|
|
|
delete m_stepList;
|
|
|
|
|
m_stepList = new BuildStepList(this, source->stepList());
|
2010-08-30 12:25:27 +02:00
|
|
|
m_stepList->cloneSteps(source->stepList());
|
2010-07-16 14:00:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
// DeployConfigurationFactory
|
|
|
|
|
///
|
|
|
|
|
|
|
|
|
|
DeployConfigurationFactory::DeployConfigurationFactory(QObject *parent) :
|
|
|
|
|
QObject(parent)
|
2012-04-24 15:49:09 +02:00
|
|
|
{ setObjectName(QLatin1String("DeployConfigurationFactory")); }
|
2010-07-16 14:00:41 +02:00
|
|
|
|
|
|
|
|
DeployConfigurationFactory::~DeployConfigurationFactory()
|
|
|
|
|
{ }
|
|
|
|
|
|
2012-03-15 17:17:40 +01:00
|
|
|
QList<Core::Id> DeployConfigurationFactory::availableCreationIds(Target *parent) const
|
2010-07-16 14:00:41 +02:00
|
|
|
{
|
2012-04-24 15:49:09 +02:00
|
|
|
if (!canHandle(parent))
|
|
|
|
|
return QList<Core::Id>();
|
2012-03-15 17:17:40 +01:00
|
|
|
return QList<Core::Id>() << Core::Id(Constants::DEFAULT_DEPLOYCONFIGURATION_ID);
|
2010-07-16 14:00:41 +02:00
|
|
|
}
|
|
|
|
|
|
2012-04-25 16:14:25 +02:00
|
|
|
QString DeployConfigurationFactory::displayNameForId(const Core::Id id) const
|
2010-07-16 14:00:41 +02:00
|
|
|
{
|
2012-08-03 15:24:33 +02:00
|
|
|
if (id == Constants::DEFAULT_DEPLOYCONFIGURATION_ID)
|
2010-07-16 14:00:41 +02:00
|
|
|
//: Display name of the default deploy configuration
|
|
|
|
|
return tr("Deploy Configuration");
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-25 16:14:25 +02:00
|
|
|
bool DeployConfigurationFactory::canCreate(Target *parent, const Core::Id id) const
|
2010-07-16 14:00:41 +02:00
|
|
|
{
|
2012-04-24 15:49:09 +02:00
|
|
|
if (!canHandle(parent))
|
|
|
|
|
return false;
|
2012-08-03 15:24:33 +02:00
|
|
|
return id == Constants::DEFAULT_DEPLOYCONFIGURATION_ID;
|
2010-07-16 14:00:41 +02:00
|
|
|
}
|
|
|
|
|
|
2012-04-25 16:14:25 +02:00
|
|
|
DeployConfiguration *DeployConfigurationFactory::create(Target *parent, const Core::Id id)
|
2010-07-16 14:00:41 +02:00
|
|
|
{
|
|
|
|
|
if (!canCreate(parent, id))
|
|
|
|
|
return 0;
|
|
|
|
|
return new DeployConfiguration(parent, id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool DeployConfigurationFactory::canRestore(Target *parent, const QVariantMap &map) const
|
|
|
|
|
{
|
|
|
|
|
return canCreate(parent, idFromMap(map));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DeployConfiguration *DeployConfigurationFactory::restore(Target *parent, const QVariantMap &map)
|
|
|
|
|
{
|
|
|
|
|
if (!canRestore(parent, map))
|
|
|
|
|
return 0;
|
|
|
|
|
DeployConfiguration *dc = new DeployConfiguration(parent, idFromMap(map));
|
|
|
|
|
if (!dc->fromMap(map)) {
|
|
|
|
|
delete dc;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
return dc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool DeployConfigurationFactory::canClone(Target *parent, DeployConfiguration *product) const
|
|
|
|
|
{
|
|
|
|
|
return canCreate(parent, product->id());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DeployConfiguration *DeployConfigurationFactory::clone(Target *parent, DeployConfiguration *product)
|
|
|
|
|
{
|
|
|
|
|
if (!canClone(parent, product))
|
|
|
|
|
return 0;
|
|
|
|
|
return new DeployConfiguration(parent, product);
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
DeployConfigurationFactory *DeployConfigurationFactory::find(Target *parent, const QVariantMap &map)
|
|
|
|
|
{
|
|
|
|
|
QList<DeployConfigurationFactory *> factories
|
|
|
|
|
= ExtensionSystem::PluginManager::instance()->getObjects<DeployConfigurationFactory>();
|
|
|
|
|
foreach (DeployConfigurationFactory *factory, factories) {
|
|
|
|
|
if (factory->canRestore(parent, map))
|
|
|
|
|
return factory;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DeployConfigurationFactory *DeployConfigurationFactory::find(Target *parent)
|
|
|
|
|
{
|
|
|
|
|
QList<DeployConfigurationFactory *> factories
|
|
|
|
|
= ExtensionSystem::PluginManager::instance()->getObjects<DeployConfigurationFactory>();
|
|
|
|
|
foreach (DeployConfigurationFactory *factory, factories) {
|
|
|
|
|
if (!factory->availableCreationIds(parent).isEmpty())
|
|
|
|
|
return factory;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool DeployConfigurationFactory::canHandle(Target *parent) const
|
|
|
|
|
{
|
2012-09-03 18:31:44 +02:00
|
|
|
if (!parent->project()->supportsKit(parent->kit()))
|
2012-04-24 15:49:09 +02:00
|
|
|
return false;
|
2012-09-03 18:31:44 +02:00
|
|
|
return DeviceTypeKitInformation::deviceTypeId(parent->kit()) == Constants::DESKTOP_DEVICE_TYPE;
|
2012-04-24 15:49:09 +02:00
|
|
|
}
|
|
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
///
|
|
|
|
|
// DeployConfigurationWidget
|
|
|
|
|
///
|
|
|
|
|
|
|
|
|
|
DeployConfigurationWidget::DeployConfigurationWidget(QWidget *parent) : NamedWidget(parent)
|
|
|
|
|
{ }
|