2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-07-16 14:00:41 +02:00
|
|
|
**
|
2013-01-28 17:12:19 +01:00
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2010-07-16 14:00:41 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-07-16 14:00:41 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2010-07-16 14:00:41 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02: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.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-07-16 14:00:41 +02:00
|
|
|
|
|
|
|
|
#include "buildsteplist.h"
|
|
|
|
|
|
|
|
|
|
#include "buildconfiguration.h"
|
|
|
|
|
#include "buildmanager.h"
|
|
|
|
|
#include "buildstep.h"
|
|
|
|
|
#include "deployconfiguration.h"
|
|
|
|
|
#include "projectexplorer.h"
|
|
|
|
|
#include "target.h"
|
|
|
|
|
|
|
|
|
|
#include <extensionsystem/pluginmanager.h>
|
|
|
|
|
|
|
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
IBuildStepFactory *findCloneFactory(BuildStepList *parent, BuildStep *source)
|
|
|
|
|
{
|
2012-06-18 11:34:15 +02:00
|
|
|
QList<IBuildStepFactory *> factories = ExtensionSystem::PluginManager::getObjects<IBuildStepFactory>();
|
2012-11-28 20:44:03 +02:00
|
|
|
foreach (IBuildStepFactory *factory, factories)
|
2010-07-16 14:00:41 +02:00
|
|
|
if (factory->canClone(parent, source))
|
|
|
|
|
return factory;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IBuildStepFactory *findRestoreFactory(BuildStepList *parent, const QVariantMap &map)
|
|
|
|
|
{
|
2012-06-18 11:34:15 +02:00
|
|
|
QList<IBuildStepFactory *> factories = ExtensionSystem::PluginManager::getObjects<IBuildStepFactory>();
|
2012-11-28 20:44:03 +02:00
|
|
|
foreach (IBuildStepFactory *factory, factories)
|
2010-07-16 14:00:41 +02:00
|
|
|
if (factory->canRestore(parent, map))
|
|
|
|
|
return factory;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char * const STEPS_COUNT_KEY("ProjectExplorer.BuildStepList.StepsCount");
|
|
|
|
|
const char * const STEPS_PREFIX("ProjectExplorer.BuildStepList.Step.");
|
|
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
2012-03-15 17:17:40 +01:00
|
|
|
BuildStepList::BuildStepList(QObject *parent, const Core::Id id) :
|
2010-07-16 14:00:41 +02:00
|
|
|
ProjectConfiguration(parent, id),
|
|
|
|
|
m_isNull(false)
|
|
|
|
|
{
|
|
|
|
|
Q_ASSERT(parent);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BuildStepList::BuildStepList(QObject *parent, BuildStepList *source) :
|
|
|
|
|
ProjectConfiguration(parent, source),
|
|
|
|
|
m_isNull(source->m_isNull)
|
|
|
|
|
{
|
2012-03-28 15:45:39 +02:00
|
|
|
setDisplayName(source->displayName());
|
2010-07-16 14:00:41 +02:00
|
|
|
Q_ASSERT(parent);
|
|
|
|
|
// do not clone the steps here:
|
|
|
|
|
// The BC is not fully set up yet and thus some of the buildstepfactories
|
|
|
|
|
// will fail to clone the buildsteps!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BuildStepList::BuildStepList(QObject *parent, const QVariantMap &data) :
|
2012-03-15 17:17:40 +01:00
|
|
|
ProjectConfiguration(parent, Core::Id())
|
2010-07-16 14:00:41 +02:00
|
|
|
{
|
|
|
|
|
Q_ASSERT(parent);
|
|
|
|
|
m_isNull = !fromMap(data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BuildStepList::~BuildStepList()
|
|
|
|
|
{
|
|
|
|
|
qDeleteAll(m_steps);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVariantMap BuildStepList::toMap() const
|
|
|
|
|
{
|
|
|
|
|
QVariantMap map(ProjectConfiguration::toMap());
|
|
|
|
|
// Save build steps
|
|
|
|
|
map.insert(QString::fromLatin1(STEPS_COUNT_KEY), m_steps.count());
|
|
|
|
|
for (int i = 0; i < m_steps.count(); ++i)
|
|
|
|
|
map.insert(QString::fromLatin1(STEPS_PREFIX) + QString::number(i), m_steps.at(i)->toMap());
|
|
|
|
|
|
|
|
|
|
return map;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool BuildStepList::isNull() const
|
|
|
|
|
{
|
|
|
|
|
return m_isNull;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int BuildStepList::count() const
|
|
|
|
|
{
|
|
|
|
|
return m_steps.count();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool BuildStepList::isEmpty() const
|
|
|
|
|
{
|
|
|
|
|
return m_steps.isEmpty();
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-15 17:17:40 +01:00
|
|
|
bool BuildStepList::contains(const Core::Id id) const
|
2010-07-16 14:00:41 +02:00
|
|
|
{
|
|
|
|
|
foreach (BuildStep *bs, steps()) {
|
|
|
|
|
if (bs->id() == id)
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BuildStepList::cloneSteps(BuildStepList *source)
|
|
|
|
|
{
|
|
|
|
|
Q_ASSERT(source);
|
|
|
|
|
foreach (BuildStep *originalbs, source->steps()) {
|
|
|
|
|
IBuildStepFactory *factory(findCloneFactory(this, originalbs));
|
|
|
|
|
if (!factory)
|
|
|
|
|
continue;
|
|
|
|
|
BuildStep *clonebs(factory->clone(this, originalbs));
|
|
|
|
|
if (clonebs)
|
|
|
|
|
m_steps.append(clonebs);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool BuildStepList::fromMap(const QVariantMap &map)
|
|
|
|
|
{
|
2010-08-25 13:09:55 +02:00
|
|
|
// We need the ID set before trying to restore the steps!
|
|
|
|
|
if (!ProjectConfiguration::fromMap(map))
|
|
|
|
|
return false;
|
|
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
int maxSteps = map.value(QString::fromLatin1(STEPS_COUNT_KEY), 0).toInt();
|
|
|
|
|
for (int i = 0; i < maxSteps; ++i) {
|
|
|
|
|
QVariantMap bsData(map.value(QString::fromLatin1(STEPS_PREFIX) + QString::number(i)).toMap());
|
|
|
|
|
if (bsData.isEmpty()) {
|
|
|
|
|
qWarning() << "No step data found for" << i << "(continuing).";
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2012-04-24 15:49:09 +02:00
|
|
|
IBuildStepFactory *factory = findRestoreFactory(this, bsData);
|
2010-07-16 14:00:41 +02:00
|
|
|
if (!factory) {
|
2013-02-15 13:08:50 +01:00
|
|
|
qWarning() << "No factory for step" << i << "in list" << displayName() << "found (continuing).";
|
2010-07-16 14:00:41 +02:00
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
BuildStep *bs(factory->restore(this, bsData));
|
|
|
|
|
if (!bs) {
|
|
|
|
|
qWarning() << "Restoration of step" << i << "failed (continuing).";
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
insertStep(m_steps.count(), bs);
|
|
|
|
|
}
|
2010-08-25 13:09:55 +02:00
|
|
|
return true;
|
2010-07-16 14:00:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<BuildStep *> BuildStepList::steps() const
|
|
|
|
|
{
|
|
|
|
|
return m_steps;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BuildStepList::insertStep(int position, BuildStep *step)
|
|
|
|
|
{
|
|
|
|
|
m_steps.insert(position, step);
|
|
|
|
|
emit stepInserted(position);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool BuildStepList::removeStep(int position)
|
|
|
|
|
{
|
|
|
|
|
ProjectExplorer::BuildManager *bm =
|
|
|
|
|
ProjectExplorer::ProjectExplorerPlugin::instance()->buildManager();
|
|
|
|
|
BuildStep *bs = at(position);
|
|
|
|
|
if (bm->isBuilding(bs))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
emit aboutToRemoveStep(position);
|
|
|
|
|
m_steps.removeAt(position);
|
|
|
|
|
delete bs;
|
|
|
|
|
emit stepRemoved(position);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BuildStepList::moveStepUp(int position)
|
|
|
|
|
{
|
|
|
|
|
m_steps.swap(position - 1, position);
|
|
|
|
|
emit stepMoved(position, position - 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BuildStep *BuildStepList::at(int position)
|
|
|
|
|
{
|
|
|
|
|
return m_steps.at(position);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Target *BuildStepList::target() const
|
|
|
|
|
{
|
|
|
|
|
Q_ASSERT(parent());
|
|
|
|
|
BuildConfiguration *bc = qobject_cast<BuildConfiguration *>(parent());
|
|
|
|
|
if (bc)
|
|
|
|
|
return bc->target();
|
|
|
|
|
DeployConfiguration *dc = qobject_cast<DeployConfiguration *>(parent());
|
|
|
|
|
if (dc)
|
|
|
|
|
return dc->target();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|