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 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
|
/*
* Copyright (C) 2023, KylinSoft Co., Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*
**/
#include "utils.h"
#include <QDebug>
#include <QDir>
#include <QSettings>
#include <QProcess>
#include <QFile>
#include <QRegularExpression>
#ifdef WITHKYSEC
#include <kysec/libkysec.h>
#include <kysec/status.h>
#endif
void Utils::centerToScreen(QWidget* widget) {
if (!widget)
return;
QDesktopWidget* m = QApplication::desktop();
QRect desk_rect = m->screenGeometry(m->screenNumber(QCursor::pos()));
int desk_x = desk_rect.width();
int desk_y = desk_rect.height();
int x = widget->width();
int y = widget->height();
widget->move(desk_x / 2 - x / 2 + desk_rect.left(), desk_y / 2 - y / 2 + desk_rect.top());
}
QVariantMap Utils::getModuleHideStatus() {
QDBusInterface m_interface( "org.ukui.ukcc.session",
"/",
"org.ukui.ukcc.session.interface",
QDBusConnection::sessionBus());
QDBusReply<QVariantMap> obj_reply = m_interface.call("getModuleHideStatus");
if (!obj_reply.isValid()) {
qDebug()<<"execute dbus method getModuleHideStatus failed";
}
return obj_reply.value();
}
QString Utils::getCpuInfo() {
QFile file("/proc/cpuinfo");
if (file.open(QIODevice::ReadOnly)) {
QString buffer = file.readAll();
QStringList modelLine = buffer.split('\n').filter(QRegularExpression("^model name"));
QStringList modelLineWayland = buffer.split('\n').filter(QRegularExpression("^Hardware"));
QStringList lines = buffer.split('\n');
if (modelLine.isEmpty()) {
if (modelLineWayland.isEmpty()) {
return "Unknown";
}
modelLine = modelLineWayland;
}
int count = lines.filter(QRegularExpression("^processor")).count();
QString result;
result.append(modelLine.first().split(':').at(1));
result = result.trimmed();
return result;
}
return QString();
}
QString Utils::getCpuArchitecture()
{
QString cpuArchitecture;
// 设置系统环境变量
QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
env.insert("LANG","en_US");
QProcess *process = new QProcess;
process->setProcessEnvironment(env);
process->start("lscpu");
process->waitForFinished();
QByteArray ba = process->readAllStandardOutput();
delete process;
QString cpuinfo = QString(ba.data());
QStringList cpuinfo_list = cpuinfo.split("\n");
for (int i = 0; i < cpuinfo_list.count(); i++) {
QString mstring = cpuinfo_list.at(i);
if (mstring.contains("Architecture")) {
// 去除空格
mstring = mstring.remove(QRegExp("\\s"));
QStringList list = mstring.split(":");
cpuArchitecture = list.at(1);
break;
}
}
return cpuArchitecture;
}
bool Utils::isExistEffect() {
QString filename = QDir::homePath() + "/.config/ukui-kwinrc";
QSettings kwinSettings(filename, QSettings::IniFormat);
QStringList keys = kwinSettings.childGroups();
kwinSettings.beginGroup("Plugins");
bool kwin = kwinSettings.value("blurEnabled", kwin).toBool();
if (!kwinSettings.childKeys().contains("blurEnabled")) {
kwin = true;
}
kwinSettings.endGroup();
QFileInfo dir(filename);
if (!dir.isFile()) {
return true;
}
if (keys.contains("Compositing")) {
kwinSettings.beginGroup("Compositing");
QString xder;
bool kwinOG = false;
bool kwinEN = true;
xder = kwinSettings.value("Backend", xder).toString();
kwinOG = kwinSettings.value("OpenGLIsUnsafe", kwinOG).toBool();
kwinEN = kwinSettings.value("Enabled", kwinEN).toBool();
if ("XRender" == xder || kwinOG || !kwinEN) {
return false;
} else {
return true;
}
kwinSettings.endGroup();
}
return true;
}
void Utils::setKwinMouseSize(int size) {
QString filename = QDir::homePath() + "/.config/kcminputrc";
QSettings *mouseSettings = new QSettings(filename, QSettings::IniFormat);
mouseSettings->beginGroup("Mouse");
mouseSettings->setValue("cursorSize", size);
mouseSettings->endGroup();
delete mouseSettings;
mouseSettings = nullptr;
QDBusMessage message = QDBusMessage::createSignal("/KGlobalSettings", "org.kde.KGlobalSettings", "notifyChange");
QList<QVariant> args;
args.append(5);
args.append(0);
message.setArguments(args);
QDBusConnection::sessionBus().send(message);
}
bool Utils::isWayland() {
QString sessionType = getenv("XDG_SESSION_TYPE");
if (!sessionType.compare("wayland", Qt::CaseSensitive)) {
return true;
} else {
return false;
}
}
bool Utils::isCommunity()
{
QString filename = "/etc/os-release";
QSettings osSettings(filename, QSettings::IniFormat);
QString versionID = osSettings.value("VERSION_ID").toString();
if (versionID.compare("22.04", Qt::CaseSensitive)) {
return false;
}
return true;
}
QRect Utils::sizeOnCursor()
{
QDesktopWidget* m = QApplication::desktop();
QRect desk_rect = m->screenGeometry(m->screenNumber(QCursor::pos()));
return desk_rect;
}
bool Utils::isTablet()
{
return QFile::exists("/etc/apt/ota_version");
}
bool Utils::isExitBattery()
{
/* 默认机器没有电池 */
bool hasBat = false;
QDBusInterface *brightnessInterface = new QDBusInterface("org.freedesktop.UPower",
"/org/freedesktop/UPower/devices/DisplayDevice",
"org.freedesktop.DBus.Properties",
QDBusConnection::systemBus());
if (!brightnessInterface->isValid()) {
qDebug() << "Create UPower Interface Failed : " << QDBusConnection::systemBus().lastError();
return false;
}
QDBusReply<QVariant> briginfo;
briginfo = brightnessInterface ->call("Get", "org.freedesktop.UPower.Device", "PowerSupply");
if (briginfo.value().toBool()) {
hasBat = true ;
}
delete brightnessInterface;
return hasBat;
}
QString Utils::getHostName()
{
QString hostname;
// 设置系统环境变量
QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
env.insert("LANG","en_US");
QProcess *process = new QProcess;
process->setProcessEnvironment(env);
process->start("hostname");
process->waitForFinished();
QByteArray ba = process->readAllStandardOutput();
delete process;
hostname = ba.data();
hostname.replace(QString("\n"),QString(""));
return hostname;
}
bool Utils::isZJY()
{
QString filename = "/etc/os-release";
QSettings osSettings(filename, QSettings::IniFormat);
QString versionID = osSettings.value("PROJECT_CODENAME").toString();
if (versionID.compare("v10sp1-zyj", Qt::CaseSensitive)) {
return false;
}
return true;
}
QString Utils::getUkccVersion()
{
FILE *pp = NULL;
char *line = NULL;
size_t len = 0;
ssize_t read;
char *q = NULL;
QString version = "none";
pp = popen("dpkg -l ukui-control-center | grep ukui-control-center", "r");
if(NULL == pp)
return version;
while((read = getline(&line, &len, pp)) != -1){
q = strrchr(line, '\n');
*q = '\0';
QString content = line;
QStringList list = content.split(" ");
list.removeAll("");
if (list.size() >= 3)
version = list.at(2);
}
free(line);
line = NULL;
pclose(pp);
return version;
}
|