-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement the developer element for unique developer IDs
Resolves: #244
- Loading branch information
Showing
23 changed files
with
862 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
/* | ||
* Copyright (C) 2016-2023 Matthias Klumpp <[email protected]> | ||
* | ||
* Licensed under the GNU Lesser General Public License Version 2.1 | ||
* | ||
* This library is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation, either version 2.1 of the license, or | ||
* (at your option) any later version. | ||
* | ||
* This library is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with this library. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include "appstream.h" | ||
#include "developer.h" | ||
|
||
#include <QDebug> | ||
#include "chelpers.h" | ||
|
||
using namespace AppStream; | ||
|
||
class AppStream::DeveloperData : public QSharedData | ||
{ | ||
public: | ||
DeveloperData() | ||
{ | ||
devp = as_developer_new(); | ||
} | ||
|
||
DeveloperData(AsDeveloper *developer) | ||
: devp(developer) | ||
{ | ||
g_object_ref(devp); | ||
} | ||
|
||
~DeveloperData() | ||
{ | ||
g_object_unref(devp); | ||
} | ||
|
||
bool operator==(const DeveloperData &rd) const | ||
{ | ||
return rd.devp == devp; | ||
} | ||
|
||
AsDeveloper *devp; | ||
}; | ||
|
||
Developer::Developer() | ||
: d(new DeveloperData) | ||
{ | ||
} | ||
|
||
Developer::Developer(_AsDeveloper *devp) | ||
: d(new DeveloperData(devp)) | ||
{ | ||
} | ||
|
||
Developer::Developer(const Developer &devp) = default; | ||
|
||
Developer::~Developer() = default; | ||
|
||
Developer &Developer::operator=(const Developer &devp) = default; | ||
|
||
bool Developer::operator==(const Developer &other) const | ||
{ | ||
if (this->d == other.d) { | ||
return true; | ||
} | ||
if (this->d && other.d) { | ||
return *(this->d) == *other.d; | ||
} | ||
return false; | ||
} | ||
|
||
_AsDeveloper *AppStream::Developer::asDeveloper() const | ||
{ | ||
return d->devp; | ||
} | ||
|
||
QString AppStream::Developer::id() const | ||
{ | ||
return valueWrap(as_developer_get_id(d->devp)); | ||
} | ||
|
||
void AppStream::Developer::setId(const QString &id) | ||
{ | ||
as_developer_set_id(d->devp, qPrintable(id)); | ||
} | ||
|
||
QString Developer::name() const | ||
{ | ||
return valueWrap(as_developer_get_name(d->devp)); | ||
} | ||
|
||
void Developer::setName(const QString &name, const QString &lang) | ||
{ | ||
as_developer_set_name(d->devp, qPrintable(name), lang.isEmpty() ? NULL : qPrintable(lang)); | ||
} | ||
|
||
QDebug operator<<(QDebug s, const AppStream::Developer &devp) | ||
{ | ||
s.nospace() << "AppStream::Developer(" << devp.id() << ":" << devp.name() << ")"; | ||
return s.space(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* Copyright (C) 2016-2023 Matthias Klumpp <[email protected]> | ||
* | ||
* Licensed under the GNU Lesser General Public License Version 2.1 | ||
* | ||
* This library is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation, either version 2.1 of the license, or | ||
* (at your option) any later version. | ||
* | ||
* This library is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with this library. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <QSharedDataPointer> | ||
#include <QString> | ||
#include <QObject> | ||
#include "appstreamqt_export.h" | ||
|
||
struct _AsDeveloper; | ||
|
||
namespace AppStream | ||
{ | ||
|
||
class DeveloperData; | ||
|
||
class APPSTREAMQT_EXPORT Developer | ||
{ | ||
Q_GADGET | ||
|
||
public: | ||
Developer(); | ||
Developer(_AsDeveloper *devp); | ||
Developer(const Developer &devp); | ||
~Developer(); | ||
|
||
Developer &operator=(const Developer &devp); | ||
bool operator==(const Developer &r) const; | ||
|
||
/** | ||
* \returns the internally stored AsDeveloper | ||
*/ | ||
_AsDeveloper *asDeveloper() const; | ||
|
||
QString id() const; | ||
void setId(const QString &id); | ||
|
||
QString name() const; | ||
void setName(const QString &name, const QString &lang = {}); | ||
|
||
private: | ||
QSharedDataPointer<DeveloperData> d; | ||
}; | ||
} | ||
|
||
APPSTREAMQT_EXPORT QDebug operator<<(QDebug s, const AppStream::Developer &devp); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.