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
|
/*
* Copyright (C) 2017 Jan Grulich <jgrulich@redhat.com>
* Copyright (C) 2016-2024 Matthias Klumpp <matthias@tenstral.net>
*
* 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 "contentrating.h"
#include <QDebug>
#include "chelpers.h"
using namespace AppStream;
class AppStream::ContentRatingData : public QSharedData
{
public:
ContentRatingData()
{
m_contentRating = as_content_rating_new();
}
ContentRatingData(AsContentRating *cat)
: m_contentRating(cat)
{
g_object_ref(m_contentRating);
}
~ContentRatingData()
{
g_object_unref(m_contentRating);
}
bool operator==(const ContentRatingData &rd) const
{
return rd.m_contentRating == m_contentRating;
}
AsContentRating *contentRating() const
{
return m_contentRating;
}
AsContentRating *m_contentRating;
};
AppStream::ContentRating::RatingValue
AppStream::ContentRating::stringToRatingValue(const QString &ratingValue)
{
return static_cast<ContentRating::RatingValue>(
as_content_rating_value_from_string(qPrintable(ratingValue)));
}
QString
AppStream::ContentRating::ratingValueToString(AppStream::ContentRating::RatingValue ratingValue)
{
return QString::fromUtf8(
as_content_rating_value_to_string(static_cast<AsContentRatingValue>(ratingValue)));
}
ContentRating::ContentRating()
: d(new ContentRatingData)
{
}
ContentRating::ContentRating(_AsContentRating *contentRating)
: d(new ContentRatingData(contentRating))
{
}
ContentRating::ContentRating(const ContentRating &contentRating) = default;
ContentRating::~ContentRating() = default;
ContentRating &ContentRating::operator=(const ContentRating &contentRating) = default;
bool ContentRating::operator==(const ContentRating &other) const
{
if (this->d == other.d) {
return true;
}
if (this->d && other.d) {
return *(this->d) == *other.d;
}
return false;
}
_AsContentRating *AppStream::ContentRating::cPtr() const
{
return d->contentRating();
}
QString AppStream::ContentRating::kind() const
{
return valueWrap(as_content_rating_get_kind(d->m_contentRating));
}
void AppStream::ContentRating::setKind(const QString &kind)
{
as_content_rating_set_kind(d->m_contentRating, qPrintable(kind));
}
uint AppStream::ContentRating::minimumAge() const
{
return as_content_rating_get_minimum_age(d->m_contentRating);
}
AppStream::ContentRating::RatingValue AppStream::ContentRating::value(const QString &id) const
{
return static_cast<AppStream::ContentRating::RatingValue>(
as_content_rating_get_value(d->m_contentRating, qPrintable(id)));
}
void AppStream::ContentRating::setValue(const QString &id,
AppStream::ContentRating::RatingValue ratingValue)
{
as_content_rating_set_value(d->m_contentRating,
qPrintable(id),
(AsContentRatingValue) ratingValue);
}
QString AppStream::ContentRating::description(const QString &id) const
{
return QString::fromUtf8(as_content_rating_attribute_get_description(
qPrintable(id),
as_content_rating_get_value(d->m_contentRating, qPrintable(id))));
}
QStringList AppStream::ContentRating::ratingIds() const
{
return AppStream::valueWrap(as_content_rating_get_rating_ids(d->m_contentRating));
}
QDebug operator<<(QDebug s, const AppStream::ContentRating &contentRating)
{
s.nospace() << "AppStream::ContentRating(" << contentRating.kind() << contentRating.minimumAge()
<< ")";
return s.space();
}
|