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
|
/*
* Copyright (C) 2019 ~ 2020 Uniontech Software Technology Co.,Ltd.
*
* Author: LZ <zhou.lu@archermind.com>
*
* Maintainer: LZ <zhou.lu@archermind.com>
*
* 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 of the License, or
* 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 <QUrl>
#include <QDir>
#include <QFile>
#include <QDebug>
#include <QFileInfo>
#include <QFontInfo>
#include <QMimeType>
#include <QApplication>
#include <QMimeDatabase>
#include <QStandardPaths>
#include <QImageReader>
#include <QPixmap>
#include <QFile>
#include <QFontDatabase>
#include <QProcessEnvironment>
#include <QTime>
#include <polkit-qt5-1/PolkitQt1/Authority>
using namespace PolkitQt1;
QHash<QString, QPixmap> Utils::m_imgCacheHash;
QHash<QString, QString> Utils::m_fontNameCache;
Utils::Utils(QObject *parent)
: QObject(parent)
{
}
Utils::~Utils()
{
}
QString Utils::getQssContent(const QString &filePath)
{
QFile file(filePath);
QString qss;
if (file.open(QIODevice::ReadOnly)) {
qss = file.readAll();
}
return qss;
}
QString Utils::getConfigPath()
{
QDir dir(QDir(QStandardPaths::standardLocations(QStandardPaths::ConfigLocation).first())
.filePath(qApp->organizationName()));
return dir.filePath(qApp->applicationName());
}
bool Utils::isFontMimeType(const QString &filePath)
{
const QString mimeName = QMimeDatabase().mimeTypeForFile(filePath).name();
;
if (mimeName.startsWith("font/") || mimeName.startsWith("application/x-font")) {
return true;
}
return false;
}
QString Utils::suffixList()
{
return QString("Font Files (*.ttf *.ttc *.otf)");
}
QPixmap Utils::renderSVG(const QString &filePath, const QSize &size)
{
if (m_imgCacheHash.contains(filePath)) {
return m_imgCacheHash.value(filePath);
}
QImageReader reader;
QPixmap pixmap;
reader.setFileName(filePath);
if (reader.canRead()) {
const qreal ratio = qApp->devicePixelRatio();
reader.setScaledSize(size * ratio);
pixmap = QPixmap::fromImage(reader.read());
pixmap.setDevicePixelRatio(ratio);
} else {
pixmap.load(filePath);
}
m_imgCacheHash.insert(filePath, pixmap);
return pixmap;
}
QString Utils::loadFontFamilyFromFiles(const QString &fontFileName)
{
if (m_fontNameCache.contains(fontFileName)) {
return m_fontNameCache.value(fontFileName);
}
QString fontFamilyName = "";
QFile fontFile(fontFileName);
if (!fontFile.open(QIODevice::ReadOnly)) {
// qDebug() << "Open font file error";
return fontFamilyName;
}
int loadedFontID = QFontDatabase::addApplicationFontFromData(fontFile.readAll());
QStringList loadedFontFamilies = QFontDatabase::applicationFontFamilies(loadedFontID);
if (!loadedFontFamilies.empty()) {
fontFamilyName = loadedFontFamilies.at(0);
}
fontFile.close();
m_fontNameCache.insert(fontFileName, fontFamilyName);
return fontFamilyName;
}
/**
* @brief Utils::replaceEmptyByteArray 替换从qproccess获取的日志信息的字符中的空字符串 替换 \u0000,不然QByteArray会忽略这以后的内容
* @param iReplaceStr要替换的字符串
* @return 替换过的字符串
*/
QByteArray Utils::replaceEmptyByteArray(QByteArray &iReplaceStr)
{
QByteArray byteOutput = iReplaceStr;
//\u0000是空字符,\x01是标题开始,出现于系统日志部分进程进程名称最后一个字符,不替换英文情况下显示错误
return byteOutput.replace('\u0000', "").replace("\x01", "");
}
/**
* @brief Utils::isErroCommand 判断qproccess获取日志的返回值是否为报错
* @param str 要判断的字符串结果
* @return 见头文件中CommandErrorType的定义
*/
Utils::CommandErrorType Utils::isErroCommand(const QString &str)
{
if (str.contains("权限") || str.contains("permission", Qt::CaseInsensitive)) {
return PermissionError;
}
if (str.contains("请重试") || str.contains("retry", Qt::CaseInsensitive)) {
return RetryError;
}
return NoError;
}
bool Utils::checkAndDeleteDir(const QString &iFilePath)
{
QFileInfo tempFileInfo(iFilePath);
if (tempFileInfo.isDir()) {
deleteDir(iFilePath);
return true;
} else if (tempFileInfo.isFile()) {
QFile deleteFile(iFilePath);
return deleteFile.remove();
}
return false;
}
bool Utils::deleteDir(const QString &iFilePath)
{
QDir directory(iFilePath);
if (!directory.exists()) {
return true;
}
QString srcPath = QDir::toNativeSeparators(iFilePath);
if (!srcPath.endsWith(QDir::separator()))
srcPath += QDir::separator();
QStringList fileNames = directory.entryList(QDir::AllEntries | QDir::NoDotAndDotDot | QDir::Hidden);
bool error = false;
for (QStringList::size_type i = 0; i != fileNames.size(); ++i) {
QString filePath = srcPath + fileNames.at(i);
QFileInfo fileInfo(filePath);
if (fileInfo.isFile() || fileInfo.isSymLink()) {
QFile::setPermissions(filePath, QFile::WriteOwner);
if (!QFile::remove(filePath)) {
// qDebug() << "remove file" << filePath << " faild!";
error = true;
}
} else if (fileInfo.isDir()) {
if (!deleteDir(filePath)) {
error = true;
}
}
}
if (!directory.rmdir(QDir::toNativeSeparators(directory.path()))) {
// qDebug() << "remove dir" << directory.path() << " faild!";
error = true;
}
return !error;
}
void Utils::replaceColorfulFont(QString *iStr)
{
iStr->replace(QRegExp("[[0-9]{1,2}m"), "");
}
bool Utils::isWayland()
{
auto e = QProcessEnvironment::systemEnvironment();
QString XDG_SESSION_TYPE = e.value(QStringLiteral("XDG_SESSION_TYPE"));
QString WAYLAND_DISPLAY = e.value(QStringLiteral("WAYLAND_DISPLAY"));
if (XDG_SESSION_TYPE == QLatin1String("wayland") || WAYLAND_DISPLAY.contains(QLatin1String("wayland"), Qt::CaseInsensitive)) {
return true;
} else {
return false;
}
}
bool Utils::sleep(unsigned int msec)
{
QTime dieTime = QTime::currentTime().addMSecs(static_cast<int>(msec));
while (QTime::currentTime() < dieTime) {
QCoreApplication::processEvents(QEventLoop::AllEvents, 100);
}
return true;
}
QString Utils::mkMutiDir(const QString &path)
{
QDir dir(path);
if (path.isEmpty() || dir.exists()) {
return path;
}
QString parentDir = mkMutiDir(path.mid(0, path.lastIndexOf('/')));
QString dirname = path.mid(path.lastIndexOf('/') + 1);
QDir parentPath(parentDir);
if (!dirname.isEmpty())
parentPath.mkpath(dirname);
return parentDir + "/" + dirname;
}
bool Utils::checkAuthorization(const QString &actionId, qint64 applicationPid)
{
Authority::Result result;
result = Authority::instance()->checkAuthorizationSync(actionId, UnixProcessSubject(applicationPid),
Authority::AllowUserInteraction);
return result == Authority::Yes ? true : false;
}
|