1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
|
/*
SPDX-FileCopyrightText: 2007 Andreas Pakulat <apaku@gmx.de>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include "builderjob.h"
#include "debug.h"
#include <KConfigGroup>
#include <KLocalizedString>
#include <interfaces/iproject.h>
#include <interfaces/icore.h>
#include <interfaces/isession.h>
#include <interfaces/idocumentcontroller.h>
#include <interfaces/idocument.h>
#include <project/projectmodel.h>
#include <project/interfaces/iprojectbuilder.h>
#include <project/interfaces/ibuildsystemmanager.h>
using namespace KDevelop;
struct SubJobData
{
BuilderJob::BuildType type;
KJob* job;
ProjectBaseItem* item;
};
Q_DECLARE_TYPEINFO(SubJobData, Q_MOVABLE_TYPE);
namespace KDevelop
{
class BuilderJobPrivate
{
public:
explicit BuilderJobPrivate( BuilderJob* job )
: q(job)
, failOnFirstError(true)
{
}
BuilderJob* q;
void addJob( BuilderJob::BuildType, ProjectBaseItem* );
bool failOnFirstError;
QString buildTypeToString( BuilderJob::BuildType type ) const;
bool hasJobForProject( BuilderJob::BuildType type, IProject* project ) const
{
for (const SubJobData& data : m_metadata) {
if (data.type == type && data.item->project() == project) {
return true;
}
}
return false;
}
/**
* a structure to keep metadata of all registered jobs
*/
QVector<SubJobData> m_metadata;
/**
* get the subjob list and clear this composite job
*/
QVector<SubJobData> takeJobList();
};
}
QString BuilderJobPrivate::buildTypeToString(BuilderJob::BuildType type) const
{
switch( type ) {
case BuilderJob::Build:
return i18nc( "@info:status", "build" );
case BuilderJob::Clean:
return i18nc( "@info:status", "clean" );
case BuilderJob::Configure:
return i18nc( "@info:status", "configure" );
case BuilderJob::Install:
return i18nc( "@info:status", "install" );
case BuilderJob::Prune:
return i18nc( "@info:status", "prune" );
}
return QString();
}
void BuilderJobPrivate::addJob( BuilderJob::BuildType t, ProjectBaseItem* item )
{
Q_ASSERT(item);
qCDebug(PROJECT) << "adding build job for item:" << item->text();
Q_ASSERT(item->project());
qCDebug(PROJECT) << "project for item:" << item->project()->name();
Q_ASSERT(item->project()->projectItem());
qCDebug(PROJECT) << "project item for the project:" << item->project()->projectItem()->text();
if( !item->project()->buildSystemManager() )
{
qCWarning(PROJECT) << "no buildsystem manager for:" << item->text() << item->project()->name();
return;
}
qCDebug(PROJECT) << "got build system manager";
Q_ASSERT(item->project()->buildSystemManager()->builder());
KJob* j = nullptr;
switch( t )
{
case BuilderJob::Build:
j = item->project()->buildSystemManager()->builder()->build( item );
break;
case BuilderJob::Clean:
j = item->project()->buildSystemManager()->builder()->clean( item );
break;
case BuilderJob::Install:
j = item->project()->buildSystemManager()->builder()->install( item );
break;
case BuilderJob::Prune:
if (!hasJobForProject(t, item->project())) {
j = item->project()->buildSystemManager()->builder()->prune( item->project() );
}
break;
case BuilderJob::Configure:
if (!hasJobForProject(t, item->project())) {
j = item->project()->buildSystemManager()->builder()->configure( item->project() );
}
break;
}
if( j )
{
q->addCustomJob( t, j, item );
}
}
BuilderJob::BuilderJob()
: d_ptr(new BuilderJobPrivate(this))
{
}
BuilderJob::~BuilderJob() = default;
void BuilderJob::addItems( BuildType t, const QList<ProjectBaseItem*>& items )
{
Q_D(BuilderJob);
for (ProjectBaseItem* item : items) {
d->addJob( t, item );
}
}
void BuilderJob::addProjects( BuildType t, const QList<IProject*>& projects )
{
Q_D(BuilderJob);
for (IProject* project : projects) {
d->addJob( t, project->projectItem() );
}
}
void BuilderJob::addItem( BuildType t, ProjectBaseItem* item )
{
Q_D(BuilderJob);
d->addJob( t, item );
}
void BuilderJob::addCustomJob( BuilderJob::BuildType type, KJob* job, ProjectBaseItem* item )
{
Q_D(BuilderJob);
if (auto* builderJob = qobject_cast<BuilderJob*>(job)) {
// If a subjob is a builder job itself, re-own its job list to avoid having recursive composite jobs.
const QVector<SubJobData> subjobs = builderJob->d_func()->takeJobList();
builderJob->deleteLater();
for (const SubJobData& subjob : subjobs) {
subjob.job->setParent(this);
addSubjob( subjob.job );
}
d->m_metadata << subjobs;
} else {
job->setParent(this);
addSubjob( job );
SubJobData data;
data.type = type;
data.job = job;
data.item = item;
d->m_metadata << data;
}
}
QVector< SubJobData > BuilderJobPrivate::takeJobList()
{
QVector< SubJobData > ret = m_metadata;
m_metadata.clear();
q->clearSubjobs();
q->setObjectName( QString() );
return ret;
}
void BuilderJob::updateJobName()
{
Q_D(BuilderJob);
// Which items are mentioned in the set
// Make it a list to preserve ordering; search overhead (n^2) isn't too big
QList< ProjectBaseItem* > registeredItems;
// Which build types are mentioned in the set
// (Same rationale applies)
QList< BuildType > buildTypes;
// Whether there are jobs without any specific item
bool hasNullItems = false;
for (const SubJobData& subjob : qAsConst(d->m_metadata)) {
if( subjob.item ) {
if( !registeredItems.contains( subjob.item ) ) {
registeredItems.append( subjob.item );
}
if( !buildTypes.contains( subjob.type ) ) {
buildTypes.append( subjob.type );
}
} else {
hasNullItems = true;
}
}
QString itemNames;
if( !hasNullItems ) {
QStringList itemNamesList;
itemNamesList.reserve(registeredItems.size());
for (ProjectBaseItem* item : qAsConst(registeredItems)) {
itemNamesList << item->text();
}
itemNames = itemNamesList.join(QLatin1String(", "));
} else {
itemNames = i18nc( "Unspecified set of build items (e. g. projects, targets)", "Various items" );
}
QString methodNames;
QStringList methodNamesList;
methodNamesList.reserve(buildTypes.size());
for (BuildType type : qAsConst(buildTypes)) {
methodNamesList << d->buildTypeToString( type );
}
methodNames = methodNamesList.join(QLatin1String(", "));
QString jobName = QStringLiteral( "%1: %2" ).arg( itemNames, methodNames );
setObjectName( jobName );
}
void BuilderJob::start()
{
// Automatically save all documents before starting to build
// might need an option to turn off at some point
// Also should be moved into the builder and there try to find target(s) for the given item and then just save the documents of that target -> list??
if( ICore::self()->activeSession()->config()->group("Project Manager").readEntry( "Save All Documents Before Building", true ) )
{
ICore::self()->documentController()->saveAllDocuments( IDocument::Silent );
}
ExecuteCompositeJob::start();
}
|