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
|
/*
* 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 "systeminfo.h"
#include <QDebug>
#include "chelpers.h"
using namespace AppStream;
class AppStream::SystemInfoData : public QSharedData
{
public:
SystemInfoData()
{
sysInfo = as_system_info_new();
}
SystemInfoData(AsSystemInfo *systemInfo)
: sysInfo(systemInfo)
{
g_object_ref(sysInfo);
}
~SystemInfoData()
{
g_object_unref(sysInfo);
}
bool operator==(const SystemInfoData &rd) const
{
return rd.sysInfo == sysInfo;
}
AsSystemInfo *sysInfo;
QString lastError;
};
SystemInfo::SystemInfo()
: d(new SystemInfoData())
{
}
SystemInfo::SystemInfo(_AsSystemInfo *sysInfo)
: d(new SystemInfoData(sysInfo))
{
}
SystemInfo::~SystemInfo() = default;
_AsSystemInfo *AppStream::SystemInfo::cPtr() const
{
return d->sysInfo;
}
QString SystemInfo::osId() const
{
return valueWrap(as_system_info_get_os_id(d->sysInfo));
}
QString SystemInfo::osCid() const
{
return valueWrap(as_system_info_get_os_cid(d->sysInfo));
}
QString SystemInfo::osName() const
{
return valueWrap(as_system_info_get_os_name(d->sysInfo));
}
QString SystemInfo::osVersion() const
{
return valueWrap(as_system_info_get_os_version(d->sysInfo));
}
QString SystemInfo::osHomepage() const
{
return valueWrap(as_system_info_get_os_homepage(d->sysInfo));
}
QString SystemInfo::kernelName() const
{
return valueWrap(as_system_info_get_kernel_name(d->sysInfo));
}
QString SystemInfo::kernelVersion() const
{
return valueWrap(as_system_info_get_kernel_version(d->sysInfo));
}
ulong SystemInfo::memoryTotal() const
{
return as_system_info_get_memory_total(d->sysInfo);
}
QStringList SystemInfo::modaliases() const
{
return valueWrap(as_system_info_get_modaliases(d->sysInfo));
}
QString SystemInfo::modaliasToSyspath(const QString &modalias)
{
return valueWrap(as_system_info_modalias_to_syspath(d->sysInfo, qPrintable(modalias)));
}
bool SystemInfo::hasDeviceMatchingModalias(const QString &modaliasGlob)
{
return as_system_info_has_device_matching_modalias(d->sysInfo, qPrintable(modaliasGlob));
}
QString SystemInfo::deviceNameForModalias(const QString &modalias, bool allowFallback)
{
g_autoptr(GError) error = nullptr;
QString result;
result = valueWrap(as_system_info_get_device_name_for_modalias(d->sysInfo,
qPrintable(modalias),
allowFallback,
&error));
if (error != nullptr)
d->lastError = QString::fromUtf8(error->message);
return result;
}
CheckResult SystemInfo::hasInputControl(Relation::ControlKind kind)
{
g_autoptr(GError) error = nullptr;
CheckResult result;
result = static_cast<CheckResult>(
as_system_info_has_input_control(d->sysInfo, static_cast<AsControlKind>(kind), &error));
if (error != nullptr)
d->lastError = QString::fromUtf8(error->message);
return result;
}
void SystemInfo::setInputControl(Relation::ControlKind kind, bool found)
{
as_system_info_set_input_control(d->sysInfo, static_cast<AsControlKind>(kind), found);
}
ulong SystemInfo::displayLength(Relation::DisplaySideKind kind)
{
return as_system_info_get_display_length(d->sysInfo, static_cast<AsDisplaySideKind>(kind));
}
void SystemInfo::setDisplayLength(Relation::DisplaySideKind kind, ulong valueDip)
{
as_system_info_set_display_length(d->sysInfo, static_cast<AsDisplaySideKind>(kind), valueDip);
}
QString SystemInfo::currentDistroComponentId()
{
g_autofree gchar *res = as_get_current_distro_component_id();
return QString::fromUtf8(res);
}
QString SystemInfo::lastError() const
{
return d->lastError;
}
|