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 {
|
|
|
|
|
|
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) :
|
2016-06-15 10:37:51 +02:00
|
|
|
ProjectConfiguration(parent, source)
|
2010-07-16 14:00:41 +02:00
|
|
|
{
|
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()
|
|
|
|
|
{
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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);
|
2016-05-18 12:37:29 +02:00
|
|
|
const QList<IBuildStepFactory *> factories
|
|
|
|
|
= ExtensionSystem::PluginManager::getObjects<IBuildStepFactory>();
|
2010-07-16 14:00:41 +02:00
|
|
|
foreach (BuildStep *originalbs, source->steps()) {
|
2016-05-18 12:37:29 +02:00
|
|
|
foreach (IBuildStepFactory *factory, factories) {
|
|
|
|
|
const QList<BuildStepInfo> steps = factory->availableSteps(source);
|
|
|
|
|
const Core::Id sourceId = originalbs->id();
|
|
|
|
|
const auto canClone = [sourceId](const BuildStepInfo &info) {
|
|
|
|
|
return (info.flags & BuildStepInfo::Unclonable) == 0 && info.id == sourceId;
|
|
|
|
|
};
|
|
|
|
|
if (Utils::contains(steps, canClone)) {
|
|
|
|
|
if (BuildStep *clonebs = factory->clone(this, originalbs)) {
|
|
|
|
|
m_steps.append(clonebs);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
qWarning() << "Cloning of step " << originalbs->displayName() << " failed (continuing).";
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-07-16 14:00:41 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
2016-05-18 12:37:29 +02:00
|
|
|
const QList<IBuildStepFactory *> factories
|
|
|
|
|
= ExtensionSystem::PluginManager::getObjects<IBuildStepFactory>();
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
2016-05-18 12:37:29 +02:00
|
|
|
foreach (IBuildStepFactory *factory, factories) {
|
|
|
|
|
const QList<BuildStepInfo> steps = factory->availableSteps(this);
|
|
|
|
|
const Core::Id id = ProjectExplorer::idFromMap(bsData);
|
|
|
|
|
if (Utils::contains(steps, Utils::equal(&BuildStepInfo::id, id))) {
|
|
|
|
|
if (BuildStep *bs = factory->restore(this, bsData)) {
|
|
|
|
|
appendStep(bs);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
qWarning() << "Restoration of step" << i << "failed (continuing).";
|
|
|
|
|
}
|
2010-07-16 14:00:41 +02:00
|
|
|
}
|
|
|
|
|
}
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-19 12:36:11 +02:00
|
|
|
QList<BuildStep *> BuildStepList::steps(const std::function<bool (const BuildStep *)> &filter) const
|
|
|
|
|
{
|
|
|
|
|
return Utils::filtered(steps(), filter);
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
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;
|
|
|
|
|
}
|