2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-07-16 14:00:41 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
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
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2010-07-16 14:00:41 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2010-12-17 16:01:08 +01:00
|
|
|
**
|
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>
|
2014-07-07 19:02:26 +02:00
|
|
|
#include <utils/algorithm.h>
|
2010-07-16 14:00:41 +02:00
|
|
|
|
|
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
IBuildStepFactory *findCloneFactory(BuildStepList *parent, BuildStep *source)
|
|
|
|
|
{
|
2014-05-08 11:58:23 +02:00
|
|
|
return ExtensionSystem::PluginManager::getObject<IBuildStepFactory>(
|
|
|
|
|
[&parent, &source](IBuildStepFactory *factory) {
|
|
|
|
|
return factory->canClone(parent, source);
|
|
|
|
|
});
|
2010-07-16 14:00:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IBuildStepFactory *findRestoreFactory(BuildStepList *parent, const QVariantMap &map)
|
|
|
|
|
{
|
2014-05-08 11:58:23 +02:00
|
|
|
return ExtensionSystem::PluginManager::getObject<IBuildStepFactory>(
|
|
|
|
|
[&parent, &map](IBuildStepFactory *factory) {
|
|
|
|
|
return factory->canRestore(parent, map);
|
|
|
|
|
});
|
2010-07-16 14:00:41 +02:00
|
|
|
}
|
|
|
|
|
|
2013-09-26 13:01:29 +02:00
|
|
|
const char STEPS_COUNT_KEY[] = "ProjectExplorer.BuildStepList.StepsCount";
|
|
|
|
|
const char STEPS_PREFIX[] = "ProjectExplorer.BuildStepList.Step.";
|
2010-07-16 14:00:41 +02:00
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
2014-07-01 11:08:26 +02:00
|
|
|
BuildStepList::BuildStepList(QObject *parent, Core::Id id) :
|
2016-04-13 15:52:14 +02:00
|
|
|
ProjectConfiguration(parent, id)
|
2010-07-16 14:00:41 +02:00
|
|
|
{
|
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-01 11:08:26 +02:00
|
|
|
bool BuildStepList::contains(Core::Id id) const
|
2010-07-16 14:00:41 +02:00
|
|
|
{
|
2014-07-07 19:02:26 +02:00
|
|
|
return Utils::anyOf(steps(), [id](BuildStep *bs){
|
|
|
|
|
return bs->id() == id;
|
|
|
|
|
});
|
2010-07-16 14:00:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
BuildStep *bs = at(position);
|
2013-09-05 14:36:20 +02:00
|
|
|
if (BuildManager::isBuilding(bs))
|
2010-07-16 14:00:41 +02:00
|
|
|
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());
|
2016-04-13 15:52:14 +02:00
|
|
|
auto bc = qobject_cast<BuildConfiguration *>(parent());
|
2010-07-16 14:00:41 +02:00
|
|
|
if (bc)
|
|
|
|
|
return bc->target();
|
2016-04-13 15:52:14 +02:00
|
|
|
auto dc = qobject_cast<DeployConfiguration *>(parent());
|
2010-07-16 14:00:41 +02:00
|
|
|
if (dc)
|
|
|
|
|
return dc->target();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|