e8a15d396a
- Created kf6-attica recipe (minimal core library build providing KF6::Attica cmake target, needed by kf6-knewstuff). v6.10.0, QML/tests/examples disabled. - Added kf6-attica to redbear-full.toml config, integrate-redbear.sh symlink, and recipes/kde/ symlink. - Fixed kf6-knewstuff: removed stale find_package(KF6Attica) suppression; added kf6-attica as dependency. Now publishes to repo (core-only build produces empty package — upstream code structure yields no libs with QtQuick/widgets/tools off). - Cookbook topo-sort: changed cycle fallback from silent Ok(recipes) to Err(Recursion) — surfaces dependency graph bugs instead of hiding them. - Fixed stale QtNetwork comment: QtNetwork IS enabled in qtbase since 2026-04-29 (relibc DNS resolver hardened). - Verified: kf6-attica builds, kf6-knewstuff publishes to repo
155 lines
2.3 KiB
C++
155 lines
2.3 KiB
C++
/*
|
|
This file is part of KDE.
|
|
|
|
SPDX-FileCopyrightText: 2010 Sebastian Kügler <sebas@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
*/
|
|
|
|
#include "buildservicejob.h"
|
|
|
|
using namespace Attica;
|
|
|
|
class Q_DECL_HIDDEN BuildServiceJob::Private : public QSharedData
|
|
{
|
|
public:
|
|
QString id;
|
|
QString name;
|
|
int status;
|
|
qreal progress;
|
|
QString projectId;
|
|
QString target;
|
|
QString buildServiceId;
|
|
QString url;
|
|
QString message;
|
|
|
|
Private()
|
|
{
|
|
}
|
|
};
|
|
|
|
BuildServiceJob::BuildServiceJob()
|
|
: d(new Private)
|
|
{
|
|
}
|
|
|
|
BuildServiceJob::BuildServiceJob(const BuildServiceJob &other)
|
|
: d(other.d)
|
|
{
|
|
}
|
|
|
|
BuildServiceJob &BuildServiceJob::operator=(const Attica::BuildServiceJob &other)
|
|
{
|
|
d = other.d;
|
|
return *this;
|
|
}
|
|
|
|
BuildServiceJob::~BuildServiceJob()
|
|
{
|
|
}
|
|
|
|
void BuildServiceJob::setId(const QString &u)
|
|
{
|
|
d->id = u;
|
|
}
|
|
|
|
QString BuildServiceJob::id() const
|
|
{
|
|
return d->id;
|
|
}
|
|
|
|
void BuildServiceJob::setName(const QString &u)
|
|
{
|
|
d->name = u;
|
|
}
|
|
|
|
QString BuildServiceJob::name() const
|
|
{
|
|
return d->name;
|
|
}
|
|
|
|
void BuildServiceJob::setProgress(const qreal p)
|
|
{
|
|
d->progress = p;
|
|
}
|
|
|
|
qreal BuildServiceJob::progress() const
|
|
{
|
|
return d->progress;
|
|
}
|
|
|
|
void BuildServiceJob::setStatus(const int status)
|
|
{
|
|
d->status = status;
|
|
}
|
|
|
|
bool BuildServiceJob::isRunning() const
|
|
{
|
|
return d->status == 1;
|
|
}
|
|
|
|
bool BuildServiceJob::isCompleted() const
|
|
{
|
|
return d->status == 2;
|
|
}
|
|
|
|
bool BuildServiceJob::isFailed() const
|
|
{
|
|
return d->status == 3;
|
|
}
|
|
|
|
void BuildServiceJob::setUrl(const QString &u)
|
|
{
|
|
d->url = u;
|
|
}
|
|
|
|
QString BuildServiceJob::url() const
|
|
{
|
|
return d->url;
|
|
}
|
|
|
|
void BuildServiceJob::setMessage(const QString &u)
|
|
{
|
|
d->message = u;
|
|
}
|
|
|
|
QString BuildServiceJob::message() const
|
|
{
|
|
return d->message;
|
|
}
|
|
|
|
void BuildServiceJob::setProjectId(const QString &u)
|
|
{
|
|
d->projectId = u;
|
|
}
|
|
|
|
QString BuildServiceJob::projectId() const
|
|
{
|
|
return d->projectId;
|
|
}
|
|
|
|
void BuildServiceJob::setTarget(const QString &u)
|
|
{
|
|
d->target = u;
|
|
}
|
|
|
|
QString BuildServiceJob::target() const
|
|
{
|
|
return d->target;
|
|
}
|
|
|
|
void BuildServiceJob::setBuildServiceId(const QString &u)
|
|
{
|
|
d->buildServiceId = u;
|
|
}
|
|
|
|
QString BuildServiceJob::buildServiceId() const
|
|
{
|
|
return d->buildServiceId;
|
|
}
|
|
|
|
bool BuildServiceJob::isValid() const
|
|
{
|
|
return !(d->id.isEmpty());
|
|
}
|