2013-01-30 18:19:31 +01:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
** Contact: http://www.qt.io/licensing
|
2013-01-30 18:19:31 +01:00
|
|
|
**
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
**
|
|
|
|
** 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
|
2015-01-14 18:07:15 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms and
|
|
|
|
** conditions see http://www.qt.io/terms-conditions. For further information
|
2014-10-01 13:21:18 +02:00
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2013-01-30 18:19:31 +01:00
|
|
|
**
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-01 13:21:18 +02:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2013-01-30 18:19:31 +01:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** In addition, as a special exception, The Qt Company gives you certain additional
|
|
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
2013-01-30 18:19:31 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "qbsbuildstep.h"
|
|
|
|
|
|
|
|
#include "qbsbuildconfiguration.h"
|
|
|
|
#include "qbsparser.h"
|
|
|
|
#include "qbsproject.h"
|
|
|
|
#include "qbsprojectmanagerconstants.h"
|
|
|
|
|
|
|
|
#include "ui_qbsbuildstepconfigwidget.h"
|
|
|
|
|
2014-03-03 17:32:40 +01:00
|
|
|
#include <coreplugin/icore.h>
|
2013-01-30 18:19:31 +01:00
|
|
|
#include <projectexplorer/buildsteplist.h>
|
|
|
|
#include <projectexplorer/kit.h>
|
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
|
|
|
#include <projectexplorer/target.h>
|
2013-06-13 17:15:44 +02:00
|
|
|
#include <qtsupport/debugginghelperbuildtask.h>
|
|
|
|
#include <qtsupport/qtversionmanager.h>
|
2013-01-30 18:19:31 +01:00
|
|
|
#include <utils/qtcassert.h>
|
2013-06-12 14:36:02 +02:00
|
|
|
#include <utils/qtcprocess.h>
|
2013-01-30 18:19:31 +01:00
|
|
|
|
|
|
|
#include <qbs.h>
|
|
|
|
|
|
|
|
static const char QBS_CONFIG[] = "Qbs.Configuration";
|
|
|
|
static const char QBS_DRY_RUN[] = "Qbs.DryRun";
|
|
|
|
static const char QBS_KEEP_GOING[] = "Qbs.DryKeepGoing";
|
|
|
|
static const char QBS_MAXJOBCOUNT[] = "Qbs.MaxJobs";
|
2014-11-20 11:10:13 +01:00
|
|
|
static const char QBS_SHOWCOMMANDLINES[] = "Qbs.ShowCommandLines";
|
2015-01-09 10:29:55 +01:00
|
|
|
static const char QBS_INSTALL[] = "Qbs.Install";
|
|
|
|
static const char QBS_CLEAN_INSTALL_ROOT[] = "Qbs.CleanInstallRoot";
|
2013-01-30 18:19:31 +01:00
|
|
|
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
// Constants:
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace QbsProjectManager {
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
// QbsBuildStep:
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
|
|
|
|
QbsBuildStep::QbsBuildStep(ProjectExplorer::BuildStepList *bsl) :
|
|
|
|
ProjectExplorer::BuildStep(bsl, Core::Id(Constants::QBS_BUILDSTEP_ID)),
|
2014-07-14 14:22:27 +02:00
|
|
|
m_job(0), m_parser(0), m_parsingProject(false)
|
2013-01-30 18:19:31 +01:00
|
|
|
{
|
2013-04-12 16:19:22 +02:00
|
|
|
setDisplayName(tr("Qbs Build"));
|
2013-05-27 11:36:44 +02:00
|
|
|
setQbsConfiguration(QVariantMap());
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QbsBuildStep::QbsBuildStep(ProjectExplorer::BuildStepList *bsl, const QbsBuildStep *other) :
|
|
|
|
ProjectExplorer::BuildStep(bsl, Core::Id(Constants::QBS_BUILDSTEP_ID)),
|
2014-07-14 14:22:27 +02:00
|
|
|
m_qbsBuildOptions(other->m_qbsBuildOptions), m_job(0), m_parser(0), m_parsingProject(false)
|
2013-06-13 17:53:02 +02:00
|
|
|
{
|
|
|
|
setQbsConfiguration(other->qbsConfiguration());
|
|
|
|
}
|
2013-01-30 18:19:31 +01:00
|
|
|
|
|
|
|
QbsBuildStep::~QbsBuildStep()
|
|
|
|
{
|
|
|
|
cancel();
|
2013-04-17 15:32:59 +02:00
|
|
|
if (m_job) {
|
|
|
|
m_job->deleteLater();
|
|
|
|
m_job = 0;
|
|
|
|
}
|
2013-01-30 18:19:31 +01:00
|
|
|
delete m_parser;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QbsBuildStep::init()
|
|
|
|
{
|
|
|
|
if (static_cast<QbsProject *>(project())->isParsing() || m_job)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
QbsBuildConfiguration *bc = static_cast<QbsBuildConfiguration *>(buildConfiguration());
|
|
|
|
if (!bc)
|
|
|
|
bc = static_cast<QbsBuildConfiguration *>(target()->activeBuildConfiguration());
|
|
|
|
|
|
|
|
if (!bc)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
delete m_parser;
|
|
|
|
m_parser = new Internal::QbsParser;
|
|
|
|
ProjectExplorer::IOutputParser *parser = target()->kit()->createOutputParser();
|
|
|
|
if (parser)
|
|
|
|
m_parser->appendOutputParser(parser);
|
|
|
|
|
|
|
|
m_changedFiles = bc->changedFiles();
|
2013-07-24 16:47:02 +02:00
|
|
|
m_activeFileTags = bc->activeFileTags();
|
2013-06-10 15:40:18 +02:00
|
|
|
m_products = bc->products();
|
2013-01-30 18:19:31 +01:00
|
|
|
|
|
|
|
connect(m_parser, SIGNAL(addOutput(QString,ProjectExplorer::BuildStep::OutputFormat)),
|
|
|
|
this, SIGNAL(addOutput(QString,ProjectExplorer::BuildStep::OutputFormat)));
|
|
|
|
connect(m_parser, SIGNAL(addTask(ProjectExplorer::Task)),
|
|
|
|
this, SIGNAL(addTask(ProjectExplorer::Task)));
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QbsBuildStep::run(QFutureInterface<bool> &fi)
|
|
|
|
{
|
|
|
|
m_fi = &fi;
|
|
|
|
|
2014-07-14 14:22:27 +02:00
|
|
|
// We need a pre-build parsing step in order not to lose project file changes done
|
|
|
|
// right before building (but before the delay has elapsed).
|
|
|
|
parseProject();
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ProjectExplorer::BuildStepConfigWidget *QbsBuildStep::createConfigWidget()
|
|
|
|
{
|
|
|
|
return new QbsBuildStepConfigWidget(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QbsBuildStep::runInGuiThread() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QbsBuildStep::cancel()
|
|
|
|
{
|
2014-07-14 14:22:27 +02:00
|
|
|
if (m_parsingProject)
|
|
|
|
qbsProject()->cancelParsing();
|
|
|
|
else if (m_job)
|
2013-01-30 18:19:31 +01:00
|
|
|
m_job->cancel();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariantMap QbsBuildStep::qbsConfiguration() const
|
|
|
|
{
|
|
|
|
return m_qbsConfiguration;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QbsBuildStep::setQbsConfiguration(const QVariantMap &config)
|
|
|
|
{
|
|
|
|
QbsProject *pro = static_cast<QbsProject *>(project());
|
|
|
|
|
|
|
|
QVariantMap tmp = config;
|
|
|
|
tmp.insert(QLatin1String(Constants::QBS_CONFIG_PROFILE_KEY), pro->projectManager()->profileForKit(target()->kit()));
|
|
|
|
if (!tmp.contains(QLatin1String(Constants::QBS_CONFIG_VARIANT_KEY)))
|
|
|
|
tmp.insert(QLatin1String(Constants::QBS_CONFIG_VARIANT_KEY),
|
|
|
|
QString::fromLatin1(Constants::QBS_VARIANT_DEBUG));
|
|
|
|
|
|
|
|
if (tmp == m_qbsConfiguration)
|
|
|
|
return;
|
|
|
|
m_qbsConfiguration = tmp;
|
2014-06-19 15:29:11 +02:00
|
|
|
QbsBuildConfiguration *bc = static_cast<QbsBuildConfiguration *>(buildConfiguration());
|
|
|
|
if (bc)
|
|
|
|
bc->emitBuildTypeChanged();
|
2013-01-30 18:19:31 +01:00
|
|
|
emit qbsConfigurationChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QbsBuildStep::dryRun() const
|
|
|
|
{
|
2013-05-23 17:15:52 +02:00
|
|
|
return m_qbsBuildOptions.dryRun();
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool QbsBuildStep::keepGoing() const
|
|
|
|
{
|
2013-05-23 17:15:52 +02:00
|
|
|
return m_qbsBuildOptions.keepGoing();
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
2014-11-20 11:10:13 +01:00
|
|
|
bool QbsBuildStep::showCommandLines() const
|
|
|
|
{
|
2015-03-09 15:48:31 +01:00
|
|
|
return m_qbsBuildOptions.echoMode() == qbs::CommandEchoModeCommandLine;
|
2014-11-20 11:10:13 +01:00
|
|
|
}
|
|
|
|
|
2015-01-09 10:29:55 +01:00
|
|
|
bool QbsBuildStep::install() const
|
|
|
|
{
|
|
|
|
return m_qbsBuildOptions.install();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QbsBuildStep::cleanInstallRoot() const
|
|
|
|
{
|
|
|
|
return m_qbsBuildOptions.removeExistingInstallation();
|
|
|
|
}
|
|
|
|
|
2013-01-30 18:19:31 +01:00
|
|
|
int QbsBuildStep::maxJobs() const
|
|
|
|
{
|
2013-05-24 16:20:10 +02:00
|
|
|
if (m_qbsBuildOptions.maxJobCount() > 0)
|
|
|
|
return m_qbsBuildOptions.maxJobCount();
|
2013-04-12 17:26:10 +02:00
|
|
|
return qbs::BuildOptions::defaultMaxJobCount();
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool QbsBuildStep::fromMap(const QVariantMap &map)
|
|
|
|
{
|
|
|
|
if (!ProjectExplorer::BuildStep::fromMap(map))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
setQbsConfiguration(map.value(QLatin1String(QBS_CONFIG)).toMap());
|
2013-05-23 17:15:52 +02:00
|
|
|
m_qbsBuildOptions.setDryRun(map.value(QLatin1String(QBS_DRY_RUN)).toBool());
|
|
|
|
m_qbsBuildOptions.setKeepGoing(map.value(QLatin1String(QBS_KEEP_GOING)).toBool());
|
|
|
|
m_qbsBuildOptions.setMaxJobCount(map.value(QLatin1String(QBS_MAXJOBCOUNT)).toInt());
|
2015-03-09 15:48:31 +01:00
|
|
|
const bool showCommandLines = map.value(QLatin1String(QBS_SHOWCOMMANDLINES)).toBool();
|
|
|
|
m_qbsBuildOptions.setEchoMode(showCommandLines ? qbs::CommandEchoModeCommandLine
|
|
|
|
: qbs::CommandEchoModeSummary);
|
2015-01-09 10:29:55 +01:00
|
|
|
m_qbsBuildOptions.setInstall(map.value(QLatin1String(QBS_INSTALL), true).toBool());
|
|
|
|
m_qbsBuildOptions.setRemoveExistingInstallation(map.value(QLatin1String(QBS_CLEAN_INSTALL_ROOT))
|
|
|
|
.toBool());
|
2013-01-30 18:19:31 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariantMap QbsBuildStep::toMap() const
|
|
|
|
{
|
|
|
|
QVariantMap map = ProjectExplorer::BuildStep::toMap();
|
|
|
|
map.insert(QLatin1String(QBS_CONFIG), m_qbsConfiguration);
|
2013-05-23 17:15:52 +02:00
|
|
|
map.insert(QLatin1String(QBS_DRY_RUN), m_qbsBuildOptions.dryRun());
|
|
|
|
map.insert(QLatin1String(QBS_KEEP_GOING), m_qbsBuildOptions.keepGoing());
|
|
|
|
map.insert(QLatin1String(QBS_MAXJOBCOUNT), m_qbsBuildOptions.maxJobCount());
|
2015-03-09 15:48:31 +01:00
|
|
|
map.insert(QLatin1String(QBS_SHOWCOMMANDLINES),
|
|
|
|
m_qbsBuildOptions.echoMode() == qbs::CommandEchoModeCommandLine);
|
2015-01-09 10:29:55 +01:00
|
|
|
map.insert(QLatin1String(QBS_INSTALL), m_qbsBuildOptions.install());
|
|
|
|
map.insert(QLatin1String(QBS_CLEAN_INSTALL_ROOT),
|
|
|
|
m_qbsBuildOptions.removeExistingInstallation());
|
2013-01-30 18:19:31 +01:00
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QbsBuildStep::buildingDone(bool success)
|
|
|
|
{
|
2014-03-03 17:23:41 +01:00
|
|
|
m_lastWasSuccess = success;
|
2013-01-30 18:19:31 +01:00
|
|
|
// Report errors:
|
2013-06-18 12:06:11 +02:00
|
|
|
foreach (const qbs::ErrorItem &item, m_job->error().items())
|
|
|
|
createTaskAndOutput(ProjectExplorer::Task::Error, item.description(),
|
2014-11-07 13:40:49 +01:00
|
|
|
item.codeLocation().filePath(), item.codeLocation().line());
|
2013-01-30 18:19:31 +01:00
|
|
|
|
2014-03-03 17:23:41 +01:00
|
|
|
QbsProject *pro = static_cast<QbsProject *>(project());
|
|
|
|
|
2014-02-18 15:12:41 +01:00
|
|
|
// Building can uncover additional target artifacts.
|
2014-07-11 12:44:12 +02:00
|
|
|
pro->updateAfterBuild();
|
|
|
|
|
|
|
|
// The reparsing, if it is necessary, has to be done before finished() is emitted, as
|
|
|
|
// otherwise a potential additional build step could conflict with the parsing step.
|
2014-07-14 14:22:27 +02:00
|
|
|
if (pro->parsingScheduled())
|
|
|
|
parseProject();
|
|
|
|
else
|
2014-07-11 12:44:12 +02:00
|
|
|
finish();
|
2014-03-03 17:23:41 +01:00
|
|
|
}
|
2014-02-18 15:12:41 +01:00
|
|
|
|
2014-07-14 14:22:27 +02:00
|
|
|
void QbsBuildStep::reparsingDone(bool success)
|
2014-03-03 17:23:41 +01:00
|
|
|
{
|
2014-07-14 14:22:27 +02:00
|
|
|
disconnect(qbsProject(), SIGNAL(projectParsingDone(bool)), this, SLOT(reparsingDone(bool)));
|
|
|
|
m_parsingProject = false;
|
|
|
|
if (m_job) { // This was a scheduled reparsing after building.
|
|
|
|
finish();
|
|
|
|
} else if (!success) {
|
|
|
|
m_lastWasSuccess = false;
|
|
|
|
finish();
|
|
|
|
} else {
|
|
|
|
build();
|
|
|
|
}
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void QbsBuildStep::handleTaskStarted(const QString &desciption, int max)
|
|
|
|
{
|
|
|
|
Q_UNUSED(desciption);
|
|
|
|
QTC_ASSERT(m_fi, return);
|
|
|
|
|
|
|
|
m_progressBase = m_fi->progressValue();
|
|
|
|
m_fi->setProgressRange(0, m_progressBase + max);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QbsBuildStep::handleProgress(int value)
|
|
|
|
{
|
|
|
|
QTC_ASSERT(m_fi, return);
|
|
|
|
m_fi->setProgressValue(m_progressBase + value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QbsBuildStep::handleCommandDescriptionReport(const QString &highlight, const QString &message)
|
|
|
|
{
|
|
|
|
Q_UNUSED(highlight);
|
|
|
|
emit addOutput(message, NormalOutput);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QbsBuildStep::handleProcessResultReport(const qbs::ProcessResult &result)
|
|
|
|
{
|
2013-05-23 17:15:52 +02:00
|
|
|
bool hasOutput = !result.stdOut().isEmpty() || !result.stdErr().isEmpty();
|
2013-01-30 18:19:31 +01:00
|
|
|
|
2013-05-24 16:20:10 +02:00
|
|
|
if (result.success() && !hasOutput)
|
2013-01-30 18:19:31 +01:00
|
|
|
return;
|
|
|
|
|
2013-05-23 17:15:52 +02:00
|
|
|
m_parser->setWorkingDirectory(result.workingDirectory());
|
2013-03-15 12:48:35 +01:00
|
|
|
|
2014-05-21 12:21:02 +02:00
|
|
|
QString commandline = result.executableFilePath() + QLatin1Char(' ')
|
|
|
|
+ Utils::QtcProcess::joinArgs(result.arguments());
|
2013-03-15 12:48:35 +01:00
|
|
|
addOutput(commandline, NormalOutput);
|
|
|
|
|
2013-05-23 17:15:52 +02:00
|
|
|
foreach (const QString &line, result.stdErr()) {
|
2013-01-30 18:19:31 +01:00
|
|
|
m_parser->stdError(line);
|
|
|
|
addOutput(line, ErrorOutput);
|
|
|
|
}
|
2013-05-23 17:15:52 +02:00
|
|
|
foreach (const QString &line, result.stdOut()) {
|
2013-01-30 18:19:31 +01:00
|
|
|
m_parser->stdOutput(line);
|
|
|
|
addOutput(line, NormalOutput);
|
|
|
|
}
|
2013-05-27 12:48:47 +02:00
|
|
|
m_parser->flush();
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void QbsBuildStep::createTaskAndOutput(ProjectExplorer::Task::TaskType type, const QString &message,
|
|
|
|
const QString &file, int line)
|
|
|
|
{
|
2015-04-20 17:13:45 +02:00
|
|
|
ProjectExplorer::Task task = ProjectExplorer::Task(type, message,
|
|
|
|
Utils::FileName::fromString(file), line,
|
|
|
|
ProjectExplorer::Constants::TASK_CATEGORY_COMPILE);
|
|
|
|
emit addTask(task, 1);
|
2013-01-30 18:19:31 +01:00
|
|
|
emit addOutput(message, NormalOutput);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString QbsBuildStep::buildVariant() const
|
|
|
|
{
|
|
|
|
return qbsConfiguration().value(QLatin1String(Constants::QBS_CONFIG_VARIANT_KEY)).toString();
|
|
|
|
}
|
|
|
|
|
2013-06-13 17:15:44 +02:00
|
|
|
bool QbsBuildStep::isQmlDebuggingEnabled() const
|
|
|
|
{
|
|
|
|
QVariantMap data = qbsConfiguration();
|
|
|
|
return data.value(QLatin1String(Constants::QBS_CONFIG_DECLARATIVE_DEBUG_KEY), false).toBool()
|
|
|
|
|| data.value(QLatin1String(Constants::QBS_CONFIG_QUICK_DEBUG_KEY), false).toBool();
|
|
|
|
}
|
|
|
|
|
2013-01-30 18:19:31 +01:00
|
|
|
void QbsBuildStep::setBuildVariant(const QString &variant)
|
|
|
|
{
|
|
|
|
if (m_qbsConfiguration.value(QLatin1String(Constants::QBS_CONFIG_VARIANT_KEY)).toString() == variant)
|
|
|
|
return;
|
|
|
|
m_qbsConfiguration.insert(QLatin1String(Constants::QBS_CONFIG_VARIANT_KEY), variant);
|
|
|
|
emit qbsConfigurationChanged();
|
2014-06-19 15:29:11 +02:00
|
|
|
QbsBuildConfiguration *bc = static_cast<QbsBuildConfiguration *>(buildConfiguration());
|
|
|
|
if (bc)
|
|
|
|
bc->emitBuildTypeChanged();
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString QbsBuildStep::profile() const
|
|
|
|
{
|
|
|
|
return qbsConfiguration().value(QLatin1String(Constants::QBS_CONFIG_PROFILE_KEY)).toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QbsBuildStep::setDryRun(bool dr)
|
|
|
|
{
|
2013-05-23 17:15:52 +02:00
|
|
|
if (m_qbsBuildOptions.dryRun() == dr)
|
2013-01-30 18:19:31 +01:00
|
|
|
return;
|
2013-05-23 17:15:52 +02:00
|
|
|
m_qbsBuildOptions.setDryRun(dr);
|
2013-01-30 18:19:31 +01:00
|
|
|
emit qbsBuildOptionsChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QbsBuildStep::setKeepGoing(bool kg)
|
|
|
|
{
|
2013-05-23 17:15:52 +02:00
|
|
|
if (m_qbsBuildOptions.keepGoing() == kg)
|
2013-01-30 18:19:31 +01:00
|
|
|
return;
|
2013-05-23 17:15:52 +02:00
|
|
|
m_qbsBuildOptions.setKeepGoing(kg);
|
2013-01-30 18:19:31 +01:00
|
|
|
emit qbsBuildOptionsChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QbsBuildStep::setMaxJobs(int jobcount)
|
|
|
|
{
|
2013-05-23 17:15:52 +02:00
|
|
|
if (m_qbsBuildOptions.maxJobCount() == jobcount)
|
2013-01-30 18:19:31 +01:00
|
|
|
return;
|
2013-05-23 17:15:52 +02:00
|
|
|
m_qbsBuildOptions.setMaxJobCount(jobcount);
|
2013-01-30 18:19:31 +01:00
|
|
|
emit qbsBuildOptionsChanged();
|
|
|
|
}
|
|
|
|
|
2014-11-20 11:10:13 +01:00
|
|
|
void QbsBuildStep::setShowCommandLines(bool show)
|
|
|
|
{
|
2015-03-09 15:48:31 +01:00
|
|
|
if (showCommandLines() == show)
|
2014-11-20 11:10:13 +01:00
|
|
|
return;
|
2015-03-09 15:48:31 +01:00
|
|
|
m_qbsBuildOptions.setEchoMode(show ? qbs::CommandEchoModeCommandLine
|
|
|
|
: qbs::CommandEchoModeSummary);
|
2014-11-20 11:10:13 +01:00
|
|
|
emit qbsBuildOptionsChanged();
|
|
|
|
}
|
|
|
|
|
2015-01-09 10:29:55 +01:00
|
|
|
void QbsBuildStep::setInstall(bool install)
|
|
|
|
{
|
|
|
|
if (m_qbsBuildOptions.install() == install)
|
|
|
|
return;
|
|
|
|
m_qbsBuildOptions.setInstall(install);
|
|
|
|
emit qbsBuildOptionsChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QbsBuildStep::setCleanInstallRoot(bool clean)
|
|
|
|
{
|
|
|
|
if (m_qbsBuildOptions.removeExistingInstallation() == clean)
|
|
|
|
return;
|
|
|
|
m_qbsBuildOptions.setRemoveExistingInstallation(clean);
|
|
|
|
emit qbsBuildOptionsChanged();
|
|
|
|
}
|
|
|
|
|
2014-07-14 14:22:27 +02:00
|
|
|
void QbsBuildStep::parseProject()
|
|
|
|
{
|
|
|
|
m_parsingProject = true;
|
|
|
|
connect(qbsProject(), SIGNAL(projectParsingDone(bool)), SLOT(reparsingDone(bool)));
|
2014-07-17 12:02:56 +02:00
|
|
|
qbsProject()->parseCurrentBuildConfiguration();
|
2014-07-14 14:22:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void QbsBuildStep::build()
|
|
|
|
{
|
|
|
|
qbs::BuildOptions options(m_qbsBuildOptions);
|
|
|
|
options.setChangedFiles(m_changedFiles);
|
|
|
|
options.setFilesToConsider(m_changedFiles);
|
|
|
|
options.setActiveFileTags(m_activeFileTags);
|
|
|
|
|
2014-11-17 16:26:23 +01:00
|
|
|
QString error;
|
|
|
|
m_job = qbsProject()->build(options, m_products, error);
|
2014-07-14 14:22:27 +02:00
|
|
|
if (!m_job) {
|
2014-11-17 16:26:23 +01:00
|
|
|
emit addOutput(error, ErrorMessageOutput);
|
2014-07-14 14:22:27 +02:00
|
|
|
m_fi->reportResult(false);
|
2014-11-17 16:26:23 +01:00
|
|
|
emit finished();
|
2014-07-14 14:22:27 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_progressBase = 0;
|
|
|
|
|
|
|
|
connect(m_job, SIGNAL(finished(bool,qbs::AbstractJob*)), this, SLOT(buildingDone(bool)));
|
|
|
|
connect(m_job, SIGNAL(taskStarted(QString,int,qbs::AbstractJob*)),
|
|
|
|
this, SLOT(handleTaskStarted(QString,int)));
|
|
|
|
connect(m_job, SIGNAL(taskProgress(int,qbs::AbstractJob*)),
|
|
|
|
this, SLOT(handleProgress(int)));
|
|
|
|
connect(m_job, SIGNAL(reportCommandDescription(QString,QString)),
|
|
|
|
this, SLOT(handleCommandDescriptionReport(QString,QString)));
|
|
|
|
connect(m_job, SIGNAL(reportProcessResult(qbs::ProcessResult)),
|
|
|
|
this, SLOT(handleProcessResultReport(qbs::ProcessResult)));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-07-11 12:44:12 +02:00
|
|
|
void QbsBuildStep::finish()
|
|
|
|
{
|
|
|
|
QTC_ASSERT(m_fi, return);
|
|
|
|
m_fi->reportResult(m_lastWasSuccess);
|
|
|
|
m_fi = 0; // do not delete, it is not ours
|
2014-07-14 14:22:27 +02:00
|
|
|
if (m_job) {
|
|
|
|
m_job->deleteLater();
|
|
|
|
m_job = 0;
|
|
|
|
}
|
2014-07-11 12:44:12 +02:00
|
|
|
|
|
|
|
emit finished();
|
|
|
|
}
|
|
|
|
|
2014-07-14 14:22:27 +02:00
|
|
|
QbsProject *QbsBuildStep::qbsProject() const
|
|
|
|
{
|
|
|
|
return static_cast<QbsProject *>(project());
|
|
|
|
}
|
|
|
|
|
2013-01-30 18:19:31 +01:00
|
|
|
// --------------------------------------------------------------------
|
|
|
|
// QbsBuildStepConfigWidget:
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
|
|
|
|
QbsBuildStepConfigWidget::QbsBuildStepConfigWidget(QbsBuildStep *step) :
|
2013-06-12 14:36:02 +02:00
|
|
|
m_step(step),
|
|
|
|
m_ignoreChange(false)
|
2013-01-30 18:19:31 +01:00
|
|
|
{
|
|
|
|
connect(m_step, SIGNAL(displayNameChanged()), this, SLOT(updateState()));
|
|
|
|
connect(m_step, SIGNAL(qbsConfigurationChanged()), this, SLOT(updateState()));
|
|
|
|
connect(m_step, SIGNAL(qbsBuildOptionsChanged()), this, SLOT(updateState()));
|
|
|
|
|
|
|
|
setContentsMargins(0, 0, 0, 0);
|
|
|
|
|
|
|
|
m_ui = new Ui::QbsBuildStepConfigWidget;
|
|
|
|
m_ui->setupUi(this);
|
|
|
|
|
2015-04-28 14:49:56 +02:00
|
|
|
m_ui->propertyEdit->setValidationFunction([this](Utils::FancyLineEdit *edit,
|
|
|
|
QString *errorMessage) {
|
|
|
|
return validateProperties(edit, errorMessage);
|
|
|
|
});
|
|
|
|
|
2013-01-30 18:19:31 +01:00
|
|
|
connect(m_ui->buildVariantComboBox, SIGNAL(currentIndexChanged(int)),
|
|
|
|
this, SLOT(changeBuildVariant(int)));
|
|
|
|
connect(m_ui->dryRunCheckBox, SIGNAL(toggled(bool)), this, SLOT(changeDryRun(bool)));
|
|
|
|
connect(m_ui->keepGoingCheckBox, SIGNAL(toggled(bool)), this, SLOT(changeKeepGoing(bool)));
|
|
|
|
connect(m_ui->jobSpinBox, SIGNAL(valueChanged(int)), this, SLOT(changeJobCount(int)));
|
2014-11-20 11:10:13 +01:00
|
|
|
connect(m_ui->showCommandLinesCheckBox, &QCheckBox::toggled, this,
|
|
|
|
&QbsBuildStepConfigWidget::changeShowCommandLines);
|
2015-01-09 10:29:55 +01:00
|
|
|
connect(m_ui->installCheckBox, &QCheckBox::toggled, this,
|
|
|
|
&QbsBuildStepConfigWidget::changeInstall);
|
|
|
|
connect(m_ui->cleanInstallRootCheckBox, &QCheckBox::toggled, this,
|
|
|
|
&QbsBuildStepConfigWidget::changeCleanInstallRoot);
|
2013-06-13 17:15:44 +02:00
|
|
|
connect(m_ui->qmlDebuggingLibraryCheckBox, SIGNAL(toggled(bool)),
|
|
|
|
this, SLOT(linkQmlDebuggingLibraryChecked(bool)));
|
|
|
|
connect(QtSupport::QtVersionManager::instance(), SIGNAL(dumpUpdatedFor(Utils::FileName)),
|
|
|
|
this, SLOT(updateQmlDebuggingOption()));
|
2013-01-30 18:19:31 +01:00
|
|
|
updateState();
|
|
|
|
}
|
|
|
|
|
2014-11-21 12:38:50 +02:00
|
|
|
QbsBuildStepConfigWidget::~QbsBuildStepConfigWidget()
|
|
|
|
{
|
|
|
|
delete m_ui;
|
|
|
|
}
|
|
|
|
|
2013-01-30 18:19:31 +01:00
|
|
|
QString QbsBuildStepConfigWidget::summaryText() const
|
|
|
|
{
|
|
|
|
return m_summary;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString QbsBuildStepConfigWidget::displayName() const
|
|
|
|
{
|
|
|
|
return m_step->displayName();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QbsBuildStepConfigWidget::updateState()
|
|
|
|
{
|
2013-06-12 14:36:02 +02:00
|
|
|
if (!m_ignoreChange) {
|
|
|
|
m_ui->dryRunCheckBox->setChecked(m_step->dryRun());
|
|
|
|
m_ui->keepGoingCheckBox->setChecked(m_step->keepGoing());
|
|
|
|
m_ui->jobSpinBox->setValue(m_step->maxJobs());
|
2014-11-20 11:10:13 +01:00
|
|
|
m_ui->showCommandLinesCheckBox->setChecked(m_step->showCommandLines());
|
2015-01-09 10:29:55 +01:00
|
|
|
m_ui->installCheckBox->setChecked(m_step->install());
|
|
|
|
m_ui->cleanInstallRootCheckBox->setChecked(m_step->cleanInstallRoot());
|
2013-06-12 14:36:02 +02:00
|
|
|
updatePropertyEdit(m_step->qbsConfiguration());
|
2013-06-13 17:15:44 +02:00
|
|
|
m_ui->qmlDebuggingLibraryCheckBox->setChecked(m_step->isQmlDebuggingEnabled());
|
2013-06-12 14:36:02 +02:00
|
|
|
}
|
2013-01-30 18:19:31 +01:00
|
|
|
|
2013-06-13 17:15:44 +02:00
|
|
|
updateQmlDebuggingOption();
|
|
|
|
|
2013-01-30 18:19:31 +01:00
|
|
|
const QString buildVariant = m_step->buildVariant();
|
|
|
|
const int idx = (buildVariant == QLatin1String(Constants::QBS_VARIANT_DEBUG)) ? 0 : 1;
|
|
|
|
m_ui->buildVariantComboBox->setCurrentIndex(idx);
|
2015-01-30 13:52:46 +01:00
|
|
|
QString command = QbsBuildConfiguration::equivalentCommandLine(m_step);
|
2013-01-30 18:19:31 +01:00
|
|
|
|
2015-04-28 14:49:56 +02:00
|
|
|
for (int i = 0; i < m_propertyCache.count(); ++i) {
|
|
|
|
command += QLatin1Char(' ') + m_propertyCache.at(i).first
|
|
|
|
+ QLatin1Char(':') + m_propertyCache.at(i).second;
|
2013-06-12 14:36:02 +02:00
|
|
|
}
|
|
|
|
|
2013-06-13 17:15:44 +02:00
|
|
|
if (m_step->isQmlDebuggingEnabled())
|
|
|
|
command += QLatin1String(" Qt.declarative.qmlDebugging:true Qt.quick.qmlDebugging:true");
|
2013-10-25 15:42:15 +02:00
|
|
|
m_ui->commandLineTextEdit->setPlainText(command);
|
2013-06-13 17:15:44 +02:00
|
|
|
|
2013-01-30 18:19:31 +01:00
|
|
|
QString summary = tr("<b>Qbs:</b> %1").arg(command);
|
2013-06-12 14:36:02 +02:00
|
|
|
if (m_summary != summary) {
|
2013-01-30 18:19:31 +01:00
|
|
|
m_summary = summary;
|
|
|
|
emit updateSummary();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-13 17:15:44 +02:00
|
|
|
void QbsBuildStepConfigWidget::updateQmlDebuggingOption()
|
|
|
|
{
|
|
|
|
QString warningText;
|
|
|
|
bool supported = QtSupport::BaseQtVersion::isQmlDebuggingSupported(m_step->target()->kit(),
|
|
|
|
&warningText);
|
|
|
|
m_ui->qmlDebuggingLibraryCheckBox->setEnabled(supported);
|
|
|
|
|
|
|
|
if (supported && m_step->isQmlDebuggingEnabled())
|
|
|
|
warningText = tr("Might make your application vulnerable. Only use in a safe environment.");
|
|
|
|
|
|
|
|
m_ui->qmlDebuggingWarningText->setText(warningText);
|
|
|
|
m_ui->qmlDebuggingWarningIcon->setVisible(!warningText.isEmpty());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-12 14:36:02 +02:00
|
|
|
void QbsBuildStepConfigWidget::updatePropertyEdit(const QVariantMap &data)
|
|
|
|
{
|
|
|
|
QVariantMap editable = data;
|
|
|
|
|
|
|
|
// remove data that is edited with special UIs:
|
|
|
|
editable.remove(QLatin1String(Constants::QBS_CONFIG_PROFILE_KEY));
|
|
|
|
editable.remove(QLatin1String(Constants::QBS_CONFIG_VARIANT_KEY));
|
2013-06-13 17:15:44 +02:00
|
|
|
editable.remove(QLatin1String(Constants::QBS_CONFIG_DECLARATIVE_DEBUG_KEY));
|
|
|
|
editable.remove(QLatin1String(Constants::QBS_CONFIG_QUICK_DEBUG_KEY));
|
2013-06-12 14:36:02 +02:00
|
|
|
|
|
|
|
QStringList propertyList;
|
|
|
|
for (QVariantMap::const_iterator i = editable.constBegin(); i != editable.constEnd(); ++i)
|
|
|
|
propertyList.append(i.key() + QLatin1Char(':') + i.value().toString());
|
|
|
|
|
|
|
|
m_ui->propertyEdit->setText(Utils::QtcProcess::joinArgs(propertyList));
|
|
|
|
}
|
|
|
|
|
2013-01-30 18:19:31 +01:00
|
|
|
void QbsBuildStepConfigWidget::changeBuildVariant(int idx)
|
|
|
|
{
|
|
|
|
QString variant;
|
|
|
|
if (idx == 1)
|
|
|
|
variant = QLatin1String(Constants::QBS_VARIANT_RELEASE);
|
|
|
|
else
|
|
|
|
variant = QLatin1String(Constants::QBS_VARIANT_DEBUG);
|
2013-06-12 14:36:02 +02:00
|
|
|
m_ignoreChange = true;
|
2013-01-30 18:19:31 +01:00
|
|
|
m_step->setBuildVariant(variant);
|
2013-06-12 14:36:02 +02:00
|
|
|
m_ignoreChange = false;
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void QbsBuildStepConfigWidget::changeDryRun(bool dr)
|
|
|
|
{
|
2013-06-12 14:36:02 +02:00
|
|
|
m_ignoreChange = true;
|
2013-01-30 18:19:31 +01:00
|
|
|
m_step->setDryRun(dr);
|
2013-06-12 14:36:02 +02:00
|
|
|
m_ignoreChange = false;
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
2014-11-20 11:10:13 +01:00
|
|
|
void QbsBuildStepConfigWidget::changeShowCommandLines(bool show)
|
|
|
|
{
|
|
|
|
m_ignoreChange = true;
|
|
|
|
m_step->setShowCommandLines(show);
|
|
|
|
m_ignoreChange = false;
|
|
|
|
}
|
|
|
|
|
2013-01-30 18:19:31 +01:00
|
|
|
void QbsBuildStepConfigWidget::changeKeepGoing(bool kg)
|
|
|
|
{
|
2013-06-12 14:36:02 +02:00
|
|
|
m_ignoreChange = true;
|
2013-01-30 18:19:31 +01:00
|
|
|
m_step->setKeepGoing(kg);
|
2013-06-12 14:36:02 +02:00
|
|
|
m_ignoreChange = false;
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void QbsBuildStepConfigWidget::changeJobCount(int count)
|
|
|
|
{
|
2013-06-12 14:36:02 +02:00
|
|
|
m_ignoreChange = true;
|
2013-01-30 18:19:31 +01:00
|
|
|
m_step->setMaxJobs(count);
|
2013-06-12 14:36:02 +02:00
|
|
|
m_ignoreChange = false;
|
|
|
|
}
|
|
|
|
|
2015-01-09 10:29:55 +01:00
|
|
|
void QbsBuildStepConfigWidget::changeInstall(bool install)
|
|
|
|
{
|
|
|
|
m_ignoreChange = true;
|
|
|
|
m_step->setInstall(install);
|
|
|
|
m_ignoreChange = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QbsBuildStepConfigWidget::changeCleanInstallRoot(bool clean)
|
|
|
|
{
|
|
|
|
m_ignoreChange = true;
|
|
|
|
m_step->setCleanInstallRoot(clean);
|
|
|
|
m_ignoreChange = false;
|
|
|
|
}
|
|
|
|
|
2015-04-28 14:49:56 +02:00
|
|
|
void QbsBuildStepConfigWidget::applyCachedProperties()
|
2013-06-12 14:36:02 +02:00
|
|
|
{
|
|
|
|
QVariantMap data;
|
|
|
|
QVariantMap tmp = m_step->qbsConfiguration();
|
|
|
|
|
|
|
|
// Insert values set up with special UIs:
|
|
|
|
data.insert(QLatin1String(Constants::QBS_CONFIG_PROFILE_KEY),
|
|
|
|
tmp.value(QLatin1String(Constants::QBS_CONFIG_PROFILE_KEY)));
|
|
|
|
data.insert(QLatin1String(Constants::QBS_CONFIG_VARIANT_KEY),
|
|
|
|
tmp.value(QLatin1String(Constants::QBS_CONFIG_VARIANT_KEY)));
|
2013-06-13 17:15:44 +02:00
|
|
|
if (tmp.contains(QLatin1String(Constants::QBS_CONFIG_DECLARATIVE_DEBUG_KEY)))
|
|
|
|
data.insert(QLatin1String(Constants::QBS_CONFIG_DECLARATIVE_DEBUG_KEY),
|
|
|
|
tmp.value(QLatin1String(Constants::QBS_CONFIG_DECLARATIVE_DEBUG_KEY)));
|
|
|
|
if (tmp.contains(QLatin1String(Constants::QBS_CONFIG_QUICK_DEBUG_KEY)))
|
|
|
|
data.insert(QLatin1String(Constants::QBS_CONFIG_QUICK_DEBUG_KEY),
|
|
|
|
tmp.value(QLatin1String(Constants::QBS_CONFIG_QUICK_DEBUG_KEY)));
|
|
|
|
|
2015-04-28 14:49:56 +02:00
|
|
|
for (int i = 0; i < m_propertyCache.count(); ++i)
|
|
|
|
data.insert(m_propertyCache.at(i).first, m_propertyCache.at(i).second);
|
2013-06-12 14:36:02 +02:00
|
|
|
|
|
|
|
m_ignoreChange = true;
|
|
|
|
m_step->setQbsConfiguration(data);
|
|
|
|
m_ignoreChange = false;
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
2013-06-13 17:15:44 +02:00
|
|
|
void QbsBuildStepConfigWidget::linkQmlDebuggingLibraryChecked(bool checked)
|
|
|
|
{
|
|
|
|
QVariantMap data = m_step->qbsConfiguration();
|
|
|
|
if (checked) {
|
|
|
|
data.insert(QLatin1String(Constants::QBS_CONFIG_DECLARATIVE_DEBUG_KEY), checked);
|
|
|
|
data.insert(QLatin1String(Constants::QBS_CONFIG_QUICK_DEBUG_KEY), checked);
|
|
|
|
} else {
|
|
|
|
data.remove(QLatin1String(Constants::QBS_CONFIG_DECLARATIVE_DEBUG_KEY));
|
|
|
|
data.remove(QLatin1String(Constants::QBS_CONFIG_QUICK_DEBUG_KEY));
|
|
|
|
}
|
|
|
|
|
|
|
|
m_ignoreChange = true;
|
|
|
|
m_step->setQbsConfiguration(data);
|
|
|
|
m_ignoreChange = false;
|
|
|
|
}
|
|
|
|
|
2015-04-28 14:49:56 +02:00
|
|
|
bool QbsBuildStepConfigWidget::validateProperties(Utils::FancyLineEdit *edit, QString *errorMessage)
|
|
|
|
{
|
|
|
|
Utils::QtcProcess::SplitError err;
|
|
|
|
QStringList argList = Utils::QtcProcess::splitArgs(edit->text(), Utils::HostOsInfo::hostOs(),
|
|
|
|
false, &err);
|
|
|
|
if (err != Utils::QtcProcess::SplitOk) {
|
|
|
|
if (errorMessage)
|
|
|
|
*errorMessage = tr("Could not split properties.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
QList<QPair<QString, QString> > properties;
|
|
|
|
foreach (const QString &arg, argList) {
|
|
|
|
int pos = arg.indexOf(QLatin1Char(':'));
|
|
|
|
QString key;
|
|
|
|
QString value;
|
|
|
|
if (pos > 0) {
|
|
|
|
key = arg.left(pos);
|
|
|
|
value = arg.mid(pos + 1);
|
|
|
|
properties.append(qMakePair(key, value));
|
|
|
|
} else {
|
|
|
|
if (errorMessage)
|
|
|
|
*errorMessage = tr("No ':' found in property definition.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_propertyCache != properties) {
|
|
|
|
m_propertyCache = properties;
|
|
|
|
applyCachedProperties();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-01-30 18:19:31 +01:00
|
|
|
// --------------------------------------------------------------------
|
|
|
|
// QbsBuildStepFactory:
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
|
|
|
|
QbsBuildStepFactory::QbsBuildStepFactory(QObject *parent) :
|
|
|
|
ProjectExplorer::IBuildStepFactory(parent)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
QList<Core::Id> QbsBuildStepFactory::availableCreationIds(ProjectExplorer::BuildStepList *parent) const
|
|
|
|
{
|
|
|
|
if (parent->id() == ProjectExplorer::Constants::BUILDSTEPS_BUILD
|
2013-05-31 14:33:24 +02:00
|
|
|
&& qobject_cast<QbsBuildConfiguration *>(parent->parent())
|
|
|
|
&& qobject_cast<QbsProject *>(parent->target()->project()))
|
2013-01-30 18:19:31 +01:00
|
|
|
return QList<Core::Id>() << Core::Id(Constants::QBS_BUILDSTEP_ID);
|
|
|
|
return QList<Core::Id>();
|
|
|
|
}
|
|
|
|
|
2014-07-01 11:08:26 +02:00
|
|
|
QString QbsBuildStepFactory::displayNameForId(Core::Id id) const
|
2013-01-30 18:19:31 +01:00
|
|
|
{
|
|
|
|
if (id == Core::Id(Constants::QBS_BUILDSTEP_ID))
|
2013-04-12 16:19:22 +02:00
|
|
|
return tr("Qbs Build");
|
2013-01-30 18:19:31 +01:00
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
2014-07-01 11:08:26 +02:00
|
|
|
bool QbsBuildStepFactory::canCreate(ProjectExplorer::BuildStepList *parent, Core::Id id) const
|
2013-01-30 18:19:31 +01:00
|
|
|
{
|
|
|
|
if (parent->id() != Core::Id(ProjectExplorer::Constants::BUILDSTEPS_BUILD)
|
2013-05-31 14:33:24 +02:00
|
|
|
|| !qobject_cast<QbsBuildConfiguration *>(parent->parent())
|
|
|
|
|| !qobject_cast<QbsProject *>(parent->target()->project()))
|
2013-01-30 18:19:31 +01:00
|
|
|
return false;
|
|
|
|
return id == Core::Id(Constants::QBS_BUILDSTEP_ID);
|
|
|
|
}
|
|
|
|
|
2014-07-01 11:08:26 +02:00
|
|
|
ProjectExplorer::BuildStep *QbsBuildStepFactory::create(ProjectExplorer::BuildStepList *parent, Core::Id id)
|
2013-01-30 18:19:31 +01:00
|
|
|
{
|
|
|
|
if (!canCreate(parent, id))
|
|
|
|
return 0;
|
|
|
|
return new QbsBuildStep(parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QbsBuildStepFactory::canRestore(ProjectExplorer::BuildStepList *parent, const QVariantMap &map) const
|
|
|
|
{
|
|
|
|
return canCreate(parent, ProjectExplorer::idFromMap(map));
|
|
|
|
}
|
|
|
|
|
|
|
|
ProjectExplorer::BuildStep *QbsBuildStepFactory::restore(ProjectExplorer::BuildStepList *parent, const QVariantMap &map)
|
|
|
|
{
|
|
|
|
if (!canRestore(parent, map))
|
|
|
|
return 0;
|
|
|
|
QbsBuildStep *bs = new QbsBuildStep(parent);
|
|
|
|
if (!bs->fromMap(map)) {
|
|
|
|
delete bs;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return bs;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QbsBuildStepFactory::canClone(ProjectExplorer::BuildStepList *parent, ProjectExplorer::BuildStep *product) const
|
|
|
|
{
|
|
|
|
return canCreate(parent, product->id());
|
|
|
|
}
|
|
|
|
|
|
|
|
ProjectExplorer::BuildStep *QbsBuildStepFactory::clone(ProjectExplorer::BuildStepList *parent, ProjectExplorer::BuildStep *product)
|
|
|
|
{
|
|
|
|
if (!canClone(parent, product))
|
|
|
|
return 0;
|
|
|
|
return new QbsBuildStep(parent, static_cast<QbsBuildStep *>(product));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
} // namespace QbsProjectManager
|