2021-01-29 11:43:07 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020, 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 of the License, 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 <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Authors: zhangpengfei <zhangpengfei@kylinos.cn>
|
|
|
|
* Modified by: zhangzihao <zhangzihao@kylinos.cn>
|
|
|
|
* Modified by: zhangjiaping <zhangjiaping@kylinos.cn>
|
|
|
|
*
|
|
|
|
*/
|
2020-12-21 18:50:54 +08:00
|
|
|
#include "file-utils.h"
|
2021-08-10 17:50:50 +08:00
|
|
|
#include <QMutexLocker>
|
2021-09-23 10:31:13 +08:00
|
|
|
#include <gio/gdesktopappinfo.h>
|
2021-11-05 10:38:04 +08:00
|
|
|
#include <QDBusMessage>
|
|
|
|
#include <QDBusConnection>
|
2022-05-10 13:49:54 +08:00
|
|
|
#include <QDBusInterface>
|
|
|
|
#include <QDBusReply>
|
2023-04-19 10:31:51 +08:00
|
|
|
#include <QDesktopServices>
|
|
|
|
#include <QMimeDatabase>
|
|
|
|
#include <QCryptographicHash>
|
|
|
|
#include <QFile>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QUrl>
|
|
|
|
#include <QClipboard>
|
|
|
|
#include <QFontMetrics>
|
2023-07-27 13:59:21 +08:00
|
|
|
#include <QTextBoundaryFinder>
|
2021-11-22 16:03:31 +08:00
|
|
|
#include "gobject-template.h"
|
2022-05-17 15:33:19 +08:00
|
|
|
#include "hanzi-to-pinyin.h"
|
2023-04-19 10:31:51 +08:00
|
|
|
#include "common.h"
|
2023-09-01 17:30:21 +08:00
|
|
|
#include "icon-loader.h"
|
2024-01-23 11:18:55 +08:00
|
|
|
#include "file-indexer-config.h"
|
2021-01-22 09:49:44 +08:00
|
|
|
|
2021-12-14 14:43:35 +08:00
|
|
|
using namespace UkuiSearch;
|
2023-04-19 10:31:51 +08:00
|
|
|
|
2021-04-26 15:06:47 +08:00
|
|
|
FileUtils::FileUtils() {
|
2020-12-21 18:50:54 +08:00
|
|
|
}
|
|
|
|
|
2023-11-08 10:08:04 +08:00
|
|
|
std::string FileUtils::makeDocUterm(const QString& path) {
|
2021-04-26 15:06:47 +08:00
|
|
|
return QCryptographicHash::hash(path.toUtf8(), QCryptographicHash::Md5).toHex().toStdString();
|
2020-12-21 18:50:54 +08:00
|
|
|
}
|
2020-12-24 11:06:19 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief FileUtils::getFileIcon 获取文件图标
|
|
|
|
* @param uri "file:///home/xxx/xxx/xxxx.txt"格式
|
|
|
|
* @param checkValid
|
|
|
|
* @return
|
|
|
|
*/
|
2021-04-26 15:06:47 +08:00
|
|
|
QIcon FileUtils::getFileIcon(const QString &uri, bool checkValid) {
|
2023-04-24 14:07:56 +08:00
|
|
|
Q_UNUSED(checkValid)
|
2020-12-24 11:06:19 +08:00
|
|
|
auto file = wrapGFile(g_file_new_for_uri(uri.toUtf8().constData()));
|
|
|
|
auto info = wrapGFileInfo(g_file_query_info(file.get()->get(),
|
2021-04-26 15:06:47 +08:00
|
|
|
G_FILE_ATTRIBUTE_STANDARD_ICON,
|
|
|
|
G_FILE_QUERY_INFO_NONE,
|
|
|
|
nullptr,
|
|
|
|
nullptr));
|
|
|
|
if(!G_IS_FILE_INFO(info.get()->get()))
|
2023-09-01 17:30:21 +08:00
|
|
|
return IconLoader::loadIconQt("unknown",QIcon(":/res/icons/unknown.svg"));
|
|
|
|
|
2021-04-26 15:06:47 +08:00
|
|
|
GIcon *g_icon = g_file_info_get_icon(info.get()->get());
|
2021-09-13 21:05:49 +08:00
|
|
|
|
2020-12-24 11:06:19 +08:00
|
|
|
//do not unref the GIcon from info.
|
2021-04-26 15:06:47 +08:00
|
|
|
if(G_IS_ICON(g_icon)) {
|
|
|
|
const gchar* const* icon_names = g_themed_icon_get_names(G_THEMED_ICON(g_icon));
|
|
|
|
if(icon_names) {
|
2020-12-24 11:06:19 +08:00
|
|
|
auto p = icon_names;
|
2021-09-13 21:05:49 +08:00
|
|
|
while(*p) {
|
2023-09-01 17:30:21 +08:00
|
|
|
QIcon icon = IconLoader::loadIconQt(*p);
|
2021-09-13 21:05:49 +08:00
|
|
|
if(!icon.isNull()) {
|
|
|
|
return icon;
|
|
|
|
} else {
|
|
|
|
p++;
|
2020-12-24 11:06:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-09-01 17:30:21 +08:00
|
|
|
return IconLoader::loadIconQt("unknown", QIcon(":/res/icons/unknown.svg"));
|
2020-12-24 11:06:19 +08:00
|
|
|
}
|
|
|
|
|
2021-11-30 17:21:06 +08:00
|
|
|
QIcon FileUtils::getSettingIcon() {
|
2023-09-01 17:30:21 +08:00
|
|
|
return IconLoader::loadIconQt("ukui-control-center", QIcon(":/res/icons/ukui-control-center.svg")); //返回控制面板应用图标
|
|
|
|
// 返回控制面板应用图标
|
2021-11-30 17:21:06 +08:00
|
|
|
}
|
|
|
|
|
2023-11-08 10:08:04 +08:00
|
|
|
bool FileUtils::isOrUnder(const QString& pathA, const QString& pathB)
|
2021-07-06 16:53:32 +08:00
|
|
|
{
|
2023-04-12 15:05:25 +08:00
|
|
|
if (pathB == "/") {
|
|
|
|
return true;
|
|
|
|
}
|
2021-07-06 16:53:32 +08:00
|
|
|
|
2021-07-07 10:23:59 +08:00
|
|
|
if(pathA.length() < pathB.length())
|
2021-07-06 16:53:32 +08:00
|
|
|
return false;
|
|
|
|
|
2021-07-07 10:23:59 +08:00
|
|
|
if(pathA == pathB || pathA.startsWith(pathB + "/"))
|
2021-07-06 16:53:32 +08:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-10-26 18:01:40 +08:00
|
|
|
QMimeType FileUtils::getMimetype(const QString &path) {
|
2020-12-29 20:18:36 +08:00
|
|
|
QMimeDatabase mdb;
|
2021-04-26 15:06:47 +08:00
|
|
|
QMimeType type = mdb.mimeTypeForFile(path, QMimeDatabase::MatchContent);
|
2021-03-04 14:10:00 +08:00
|
|
|
|
|
|
|
return type;
|
2020-12-29 20:18:36 +08:00
|
|
|
}
|
|
|
|
|
2021-12-17 17:39:37 +08:00
|
|
|
QStringList FileUtils::findMultiToneWords(const QString &hanzi) {
|
2022-12-01 13:51:30 +08:00
|
|
|
QStringList output, results;
|
|
|
|
HanZiToPinYin::getInstance()->getResults(hanzi.toStdString(), results);
|
|
|
|
QString oneResult(results.join(""));
|
|
|
|
QString firstLetter;
|
|
|
|
for (QString & info : results) {
|
|
|
|
if (!info.isEmpty())
|
|
|
|
firstLetter += info.at(0);
|
|
|
|
}
|
|
|
|
return output << oneResult << firstLetter;
|
2020-12-29 20:38:47 +08:00
|
|
|
}
|
|
|
|
|
2021-09-23 10:31:13 +08:00
|
|
|
int FileUtils::openFile(QString &path, bool openInDir)
|
2021-05-27 21:10:11 +08:00
|
|
|
{
|
2022-03-07 11:38:03 +08:00
|
|
|
int res = -1;
|
2021-05-27 21:10:11 +08:00
|
|
|
if(openInDir) {
|
2021-11-05 10:38:04 +08:00
|
|
|
QStringList list;
|
|
|
|
list.append(path);
|
|
|
|
QDBusMessage message = QDBusMessage::createMethodCall("org.freedesktop.FileManager1",
|
|
|
|
"/org/freedesktop/FileManager1",
|
|
|
|
"org.freedesktop.FileManager1",
|
|
|
|
"ShowItems");
|
|
|
|
message.setArguments({list, "ukui-search"});
|
2022-03-07 11:38:03 +08:00
|
|
|
QDBusMessage messageRes = QDBusConnection::sessionBus().call(message);
|
2023-11-22 10:08:22 +08:00
|
|
|
if (QDBusMessage::ReplyMessage == messageRes.type()) {
|
2022-03-07 11:38:03 +08:00
|
|
|
res = 0;
|
2021-11-05 10:38:04 +08:00
|
|
|
} else {
|
2022-03-07 11:38:03 +08:00
|
|
|
qDebug() << "Error! QDBusMessage reply error! ReplyMessage:" << messageRes.ReplyMessage;
|
|
|
|
res = -1;
|
2021-11-05 10:38:04 +08:00
|
|
|
}
|
2021-05-27 21:10:11 +08:00
|
|
|
} else {
|
2021-09-23 10:31:13 +08:00
|
|
|
auto file = wrapGFile(g_file_new_for_uri(QUrl::fromLocalFile(path).toString().toUtf8().constData()));
|
|
|
|
auto fileInfo = wrapGFileInfo(g_file_query_info(file.get()->get(),
|
|
|
|
"standard::*," "time::*," "access::*," "mountable::*," "metadata::*," "trash::*," G_FILE_ATTRIBUTE_ID_FILE,
|
|
|
|
G_FILE_QUERY_INFO_NONE,
|
|
|
|
nullptr,
|
|
|
|
nullptr));
|
|
|
|
QString mimeType = g_file_info_get_content_type (fileInfo.get()->get());
|
|
|
|
if (mimeType == nullptr) {
|
|
|
|
if (g_file_info_has_attribute(fileInfo.get()->get(), "standard::fast-content-type")) {
|
|
|
|
mimeType = g_file_info_get_attribute_string(fileInfo.get()->get(), "standard::fast-content-type");
|
|
|
|
}
|
|
|
|
}
|
2022-03-07 11:38:03 +08:00
|
|
|
|
2023-11-14 14:39:14 +08:00
|
|
|
GError *error = nullptr;
|
|
|
|
GAppInfo *info = nullptr;
|
2021-09-23 10:31:13 +08:00
|
|
|
/*
|
|
|
|
* g_app_info_get_default_for_type function get wrong default app, so we get the
|
|
|
|
* default app info from mimeapps.list, and chose the right default app for mimeType file
|
|
|
|
*/
|
|
|
|
QString mimeAppsListPath = QStandardPaths::writableLocation(QStandardPaths::HomeLocation)
|
|
|
|
+ "/.config/mimeapps.list";
|
|
|
|
GKeyFile *keyfile = g_key_file_new();
|
|
|
|
gboolean ret = g_key_file_load_from_file(keyfile, mimeAppsListPath.toUtf8(), G_KEY_FILE_NONE, &error);
|
|
|
|
if (false == ret) {
|
|
|
|
qWarning()<<"load mimeapps list error msg"<<error->message;
|
|
|
|
info = g_app_info_get_default_for_type(mimeType.toUtf8().constData(), false);
|
|
|
|
g_error_free(error);
|
|
|
|
} else {
|
|
|
|
gchar *desktopApp = g_key_file_get_string(keyfile, "Default Applications", mimeType.toUtf8(), &error);
|
2023-11-14 14:39:14 +08:00
|
|
|
if (nullptr != desktopApp) {
|
2021-09-23 10:31:13 +08:00
|
|
|
info = (GAppInfo*)g_desktop_app_info_new(desktopApp);
|
|
|
|
g_free (desktopApp);
|
|
|
|
} else {
|
|
|
|
info = g_app_info_get_default_for_type(mimeType.toUtf8().constData(), false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_key_file_free (keyfile);
|
2023-11-14 14:39:14 +08:00
|
|
|
if (!G_IS_APP_INFO(info)) {
|
2022-03-07 11:38:03 +08:00
|
|
|
res = -1;
|
|
|
|
} else {
|
2022-05-10 13:49:54 +08:00
|
|
|
bool isSuccess(false);
|
2023-11-14 14:39:14 +08:00
|
|
|
QDBusInterface * appLaunchInterface = new QDBusInterface(QStringLiteral("com.kylin.ProcessManager"),
|
|
|
|
QStringLiteral("/com/kylin/ProcessManager/AppLauncher"),
|
|
|
|
QStringLiteral("com.kylin.ProcessManager.AppLauncher"),
|
2022-05-10 13:49:54 +08:00
|
|
|
QDBusConnection::sessionBus());
|
2023-11-14 14:39:14 +08:00
|
|
|
if (!appLaunchInterface->isValid()) {
|
2022-05-10 13:49:54 +08:00
|
|
|
qWarning() << qPrintable(QDBusConnection::sessionBus().lastError().message());
|
|
|
|
isSuccess = false;
|
|
|
|
} else {
|
|
|
|
appLaunchInterface->setTimeout(10000);
|
2023-11-14 14:39:14 +08:00
|
|
|
QDBusReply<void> reply = appLaunchInterface->call("LaunchDefaultAppWithUrl", QUrl::fromLocalFile(path).toString());
|
2022-05-10 13:49:54 +08:00
|
|
|
if(reply.isValid()) {
|
2023-11-14 14:39:14 +08:00
|
|
|
isSuccess = true;
|
2022-05-10 13:49:54 +08:00
|
|
|
} else {
|
2023-11-14 14:39:14 +08:00
|
|
|
qWarning() << "ProcessManager dbus called failed!" << reply.error();
|
2022-05-10 13:49:54 +08:00
|
|
|
isSuccess = false;
|
|
|
|
}
|
|
|
|
}
|
2023-11-14 14:39:14 +08:00
|
|
|
if (appLaunchInterface) {
|
2022-05-10 13:49:54 +08:00
|
|
|
delete appLaunchInterface;
|
|
|
|
}
|
2023-11-14 14:39:14 +08:00
|
|
|
appLaunchInterface = nullptr;
|
2023-11-08 10:08:04 +08:00
|
|
|
|
2022-05-10 13:49:54 +08:00
|
|
|
if (!isSuccess){
|
|
|
|
QDesktopServices::openUrl(QUrl::fromLocalFile(path));
|
|
|
|
}
|
2022-03-07 11:38:03 +08:00
|
|
|
res = 0;
|
2021-09-23 10:31:13 +08:00
|
|
|
}
|
2022-03-07 11:38:03 +08:00
|
|
|
g_object_unref(info);
|
2021-05-27 21:10:11 +08:00
|
|
|
}
|
2022-03-07 11:38:03 +08:00
|
|
|
return res;
|
2021-05-27 21:10:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool FileUtils::copyPath(QString &path)
|
|
|
|
{
|
|
|
|
QApplication::clipboard()->setText(path);
|
|
|
|
return true;
|
|
|
|
}
|
2021-07-31 16:12:04 +08:00
|
|
|
|
|
|
|
QString FileUtils::escapeHtml(const QString &str)
|
|
|
|
{
|
|
|
|
QString temp = str;
|
|
|
|
temp.replace("<", "<");
|
|
|
|
temp.replace(">", ">");
|
|
|
|
return temp;
|
|
|
|
}
|
2021-08-06 17:45:28 +08:00
|
|
|
|
2023-07-27 13:59:21 +08:00
|
|
|
QString FileUtils::getSnippet(const std::string &myStr, uint start, const QString &keyword)
|
2021-08-06 17:45:28 +08:00
|
|
|
{
|
2023-07-27 13:59:21 +08:00
|
|
|
QFont boldFont(qApp->font().family());
|
|
|
|
boldFont.setPointSizeF(qApp->font().pointSizeF() + 2);
|
|
|
|
boldFont.setWeight(QFont::Bold);
|
|
|
|
QFontMetricsF boldMetricsF(boldFont);
|
|
|
|
|
|
|
|
uint strLength = 240;
|
|
|
|
bool elideLeft(false);
|
|
|
|
std::string sub = myStr.substr(start, strLength);
|
|
|
|
QString content = QString::fromStdString(sub);
|
|
|
|
|
|
|
|
//不够截往前补
|
|
|
|
if (start + strLength > myStr.length()) {
|
|
|
|
//新的起始位置
|
|
|
|
int newStart = myStr.length() - strLength;
|
2021-08-06 17:45:28 +08:00
|
|
|
|
2023-07-27 13:59:21 +08:00
|
|
|
if (myStr.length() < strLength) {
|
|
|
|
newStart = 0;
|
|
|
|
sub = myStr;
|
|
|
|
} else {
|
|
|
|
sub = myStr.substr(newStart, strLength);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (horizontalAdvanceContainsKeyword(QString::fromStdString(myStr.substr(newStart, start)) + boldMetricsF.horizontalAdvance(keyword), keyword) > 2 * LABEL_MAX_WIDTH) {
|
|
|
|
if (horizontalAdvanceContainsKeyword(QString::fromStdString(myStr.substr(start)), keyword) <= 2 * LABEL_MAX_WIDTH) {
|
|
|
|
elideLeft = true;
|
|
|
|
} else {
|
|
|
|
sub = myStr.substr(start);
|
|
|
|
}
|
2021-09-23 20:49:21 +08:00
|
|
|
}
|
2023-07-27 13:59:21 +08:00
|
|
|
content = QString::fromStdString(sub);
|
2021-09-23 20:49:21 +08:00
|
|
|
}
|
2023-07-18 16:18:58 +08:00
|
|
|
|
2023-07-27 13:59:21 +08:00
|
|
|
QFont font(qApp->font().family());
|
|
|
|
font.setPointSizeF(qApp->font().pointSizeF());
|
|
|
|
QFontMetricsF fontMetricsF(font);
|
|
|
|
|
|
|
|
qreal blockLength = 0;
|
|
|
|
qreal total = 0;
|
|
|
|
int lineCount = 0;
|
|
|
|
int normalLength = 0;
|
|
|
|
int boldLength = 0;
|
|
|
|
|
|
|
|
QString snippet;
|
|
|
|
int boundaryStart = 0;
|
|
|
|
int boundaryEnd = 0;
|
|
|
|
QTextBoundaryFinder fm(QTextBoundaryFinder::Grapheme, content);
|
|
|
|
|
|
|
|
if (!elideLeft) {
|
|
|
|
for (;fm.position() != -1;fm.toNextBoundary()) {
|
|
|
|
boundaryEnd = fm.position();
|
|
|
|
QString word = content.mid(boundaryStart, boundaryEnd - boundaryStart);
|
|
|
|
if (boundaryStart == boundaryEnd) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (keyword.toUpper().contains(word.toUpper())) {
|
|
|
|
if (normalLength) {
|
|
|
|
total += fontMetricsF.horizontalAdvance(content.mid(boundaryStart - normalLength, normalLength));
|
|
|
|
normalLength = 0;
|
|
|
|
blockLength = 0;
|
|
|
|
}
|
|
|
|
boldLength += (boundaryEnd - boundaryStart);
|
|
|
|
blockLength = boldMetricsF.horizontalAdvance(content.mid(boundaryEnd - boldLength, boldLength));
|
|
|
|
} else {
|
|
|
|
if (boldLength) {
|
|
|
|
total += boldMetricsF.horizontalAdvance(content.mid(boundaryStart - boldLength, boldLength));
|
|
|
|
boldLength = 0;
|
|
|
|
blockLength = 0;
|
|
|
|
}
|
|
|
|
normalLength += (boundaryEnd - boundaryStart);
|
|
|
|
blockLength = fontMetricsF.horizontalAdvance(content.mid(boundaryEnd - normalLength, normalLength));
|
2021-08-06 17:45:28 +08:00
|
|
|
|
2023-07-27 13:59:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (total + blockLength >= LABEL_MAX_WIDTH && lineCount == 0) {
|
|
|
|
if (total + blockLength > LABEL_MAX_WIDTH) {
|
|
|
|
fm.toPreviousBoundary();
|
|
|
|
snippet.append("\n");
|
|
|
|
} else {
|
|
|
|
snippet.append(word).append("\n");
|
|
|
|
boundaryStart = boundaryEnd;
|
|
|
|
}
|
|
|
|
normalLength = 0;
|
|
|
|
boldLength = 0;
|
|
|
|
lineCount++;
|
|
|
|
total = 0;
|
|
|
|
blockLength = 0;
|
|
|
|
continue;
|
|
|
|
} else if (total + blockLength >= LABEL_MAX_WIDTH && lineCount == 1) {
|
|
|
|
qreal distance = 0;
|
|
|
|
qreal wordSize = 0;
|
|
|
|
if (total + blockLength > LABEL_MAX_WIDTH) {
|
|
|
|
boundaryEnd = boundaryStart;
|
|
|
|
fm.toPreviousBoundary();
|
|
|
|
} else {
|
|
|
|
snippet.append(word);
|
|
|
|
}
|
|
|
|
while (wordSize < fontMetricsF.horizontalAdvance("…")) {
|
|
|
|
boundaryStart = fm.position();
|
|
|
|
|
|
|
|
wordSize += keyword.toUpper().contains(content.mid(boundaryStart, boundaryEnd - boundaryStart).toUpper()) ?
|
|
|
|
boldMetricsF.horizontalAdvance(content.mid(boundaryStart, boundaryEnd - boundaryStart))
|
|
|
|
: fontMetricsF.horizontalAdvance(content.mid(boundaryStart, boundaryEnd - boundaryStart));
|
|
|
|
distance += (boundaryEnd - boundaryStart);
|
|
|
|
boundaryEnd = boundaryStart;
|
|
|
|
fm.toPreviousBoundary();
|
|
|
|
}
|
|
|
|
snippet = snippet.left(snippet.size() - distance);
|
|
|
|
snippet.append("…");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
snippet.append(word);
|
|
|
|
boundaryStart = boundaryEnd;
|
2021-08-06 17:45:28 +08:00
|
|
|
}
|
2021-09-23 20:49:21 +08:00
|
|
|
} else {
|
2023-07-27 13:59:21 +08:00
|
|
|
boundaryEnd = content.size();
|
|
|
|
for (fm.toEnd(); fm.position() != -1; fm.toPreviousBoundary()) {
|
|
|
|
boundaryStart = fm.position();
|
|
|
|
if (boundaryEnd == boundaryStart) {
|
|
|
|
continue;
|
|
|
|
}
|
2023-07-18 16:18:58 +08:00
|
|
|
|
2023-07-27 13:59:21 +08:00
|
|
|
QString word = content.mid(boundaryStart, boundaryEnd - boundaryStart);
|
|
|
|
if (keyword.toUpper().contains(word.toUpper())) {
|
|
|
|
if (normalLength) {
|
|
|
|
total += fontMetricsF.horizontalAdvance(content.mid(boundaryEnd, normalLength));
|
|
|
|
normalLength = 0;
|
|
|
|
blockLength = 0;
|
|
|
|
}
|
|
|
|
boldLength += (boundaryEnd - boundaryStart);
|
|
|
|
blockLength = boldMetricsF.horizontalAdvance(content.mid(boundaryStart, boldLength));
|
2021-09-23 20:49:21 +08:00
|
|
|
} else {
|
2023-07-27 13:59:21 +08:00
|
|
|
if (boldLength) {
|
|
|
|
total += boldMetricsF.horizontalAdvance(content.mid(boundaryEnd, boldLength));
|
|
|
|
boldLength = 0;
|
|
|
|
blockLength = 0;
|
|
|
|
}
|
|
|
|
normalLength += (boundaryEnd - boundaryStart);
|
|
|
|
blockLength = fontMetricsF.horizontalAdvance(content.mid(boundaryStart, normalLength));
|
|
|
|
|
2021-09-23 20:49:21 +08:00
|
|
|
}
|
2023-07-27 13:59:21 +08:00
|
|
|
|
|
|
|
if (total + blockLength >= LABEL_MAX_WIDTH && lineCount == 0) {
|
|
|
|
if (total + blockLength > LABEL_MAX_WIDTH) {
|
|
|
|
fm.toNextBoundary();
|
|
|
|
snippet.prepend("\n");
|
|
|
|
} else {
|
|
|
|
snippet.prepend(word).prepend("\n");
|
|
|
|
boundaryStart = boundaryEnd;
|
|
|
|
}
|
|
|
|
normalLength = 0;
|
|
|
|
boldLength = 0;
|
|
|
|
lineCount++;
|
|
|
|
total = 0;
|
|
|
|
blockLength = 0;
|
|
|
|
continue;
|
|
|
|
} else if (total + blockLength >= LABEL_MAX_WIDTH && lineCount == 1) {
|
|
|
|
qreal distance = 0;
|
|
|
|
qreal wordSize = 0;
|
|
|
|
if (total + blockLength > LABEL_MAX_WIDTH) {
|
|
|
|
boundaryStart = boundaryEnd;
|
|
|
|
fm.toNextBoundary();
|
|
|
|
} else {
|
|
|
|
snippet.prepend(word);
|
|
|
|
}
|
|
|
|
while (wordSize < fontMetricsF.horizontalAdvance("…")) {
|
|
|
|
boundaryEnd = fm.position();
|
|
|
|
QString firstLetter = content.mid(boundaryStart, boundaryEnd - boundaryStart);
|
|
|
|
wordSize += keyword.toUpper().contains(firstLetter.toUpper()) ?
|
|
|
|
boldMetricsF.horizontalAdvance(firstLetter) : fontMetricsF.horizontalAdvance(firstLetter);
|
|
|
|
distance += (boundaryEnd - boundaryStart);
|
|
|
|
boundaryStart = boundaryEnd;
|
|
|
|
fm.toNextBoundary();
|
|
|
|
}
|
|
|
|
snippet = snippet.right(snippet.size() - distance);
|
|
|
|
snippet.prepend("…");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
snippet.prepend(word);
|
|
|
|
boundaryEnd = boundaryStart;
|
2021-09-23 20:49:21 +08:00
|
|
|
}
|
2021-08-06 17:45:28 +08:00
|
|
|
}
|
2023-07-27 13:59:21 +08:00
|
|
|
|
|
|
|
return snippet;
|
2021-08-06 17:45:28 +08:00
|
|
|
}
|
2021-08-26 11:22:10 +08:00
|
|
|
|
2022-10-26 18:01:40 +08:00
|
|
|
bool FileUtils::isOpenXMLFileEncrypted(const QString &path)
|
2021-10-26 14:20:58 +08:00
|
|
|
{
|
|
|
|
QFile file(path);
|
|
|
|
file.open(QIODevice::ReadOnly|QIODevice::Text);
|
|
|
|
QByteArray encrypt = file.read(4);
|
|
|
|
file.close();
|
|
|
|
if (encrypt.length() < 4) {
|
|
|
|
qDebug() << "Reading file error!" << path;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
//比较前四位是否为对应值来判断OpenXML类型文件是否加密
|
2023-04-23 16:27:45 +08:00
|
|
|
if ((encrypt[0] & 0x50) && (encrypt[1] & 0x4b) && (encrypt[2] & 0x03) && (encrypt[3] & 0x04)) {
|
2021-10-26 14:20:58 +08:00
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
qDebug() << "Encrypt!" << path;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2021-10-27 15:16:43 +08:00
|
|
|
//todo: only support docx, pptx, xlsx
|
2022-10-26 18:01:40 +08:00
|
|
|
bool FileUtils::isEncrypedOrUnsupport(const QString& path, const QString& suffix)
|
2021-10-27 15:16:43 +08:00
|
|
|
{
|
|
|
|
QMimeType type = FileUtils::getMimetype(path);
|
|
|
|
QString name = type.name();
|
2022-10-26 18:01:40 +08:00
|
|
|
|
2021-10-27 15:16:43 +08:00
|
|
|
if(name == "application/zip") {
|
2022-10-26 18:01:40 +08:00
|
|
|
if (suffix == "docx" || suffix == "pptx" || suffix == "xlsx") {
|
2021-10-27 15:16:43 +08:00
|
|
|
|
|
|
|
return FileUtils::isOpenXMLFileEncrypted(path);
|
2022-10-26 18:01:40 +08:00
|
|
|
} else if (suffix == "uot" || suffix == "uos" || suffix == "uop") {
|
2022-05-27 16:07:09 +08:00
|
|
|
return false;
|
|
|
|
|
2022-10-26 18:01:40 +08:00
|
|
|
} else if (suffix == "ofd") {
|
2022-05-27 16:07:09 +08:00
|
|
|
return false;
|
|
|
|
|
2021-10-27 15:16:43 +08:00
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else if(name == "text/plain") {
|
2022-10-26 18:01:40 +08:00
|
|
|
if(suffix.endsWith("txt"))
|
2021-10-27 15:16:43 +08:00
|
|
|
return false;
|
|
|
|
return true;
|
2022-04-26 10:25:23 +08:00
|
|
|
} else if(name == "text/html") {
|
2022-10-26 18:01:40 +08:00
|
|
|
if(suffix.endsWith("html"))
|
2022-04-26 10:25:23 +08:00
|
|
|
return false;
|
|
|
|
return true;
|
2021-10-27 15:16:43 +08:00
|
|
|
} else if(type.inherits("application/msword") || type.name() == "application/x-ole-storage") {
|
2022-10-26 18:01:40 +08:00
|
|
|
if(suffix == "doc" || suffix == "dot" || suffix == "wps" || suffix == "ppt" ||
|
|
|
|
suffix == "pps" || suffix == "dps" || suffix == "et" || suffix == "xls" || suffix == "uof") {
|
2021-10-27 15:16:43 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
} else if(name == "application/pdf") {
|
2022-10-26 18:01:40 +08:00
|
|
|
if(suffix == "pdf")
|
2021-10-27 15:16:43 +08:00
|
|
|
return false;
|
|
|
|
return true;
|
2022-05-27 16:07:09 +08:00
|
|
|
|
|
|
|
} else if(name == "application/xml" || name == "application/uof") {
|
2022-10-26 18:01:40 +08:00
|
|
|
if(suffix == "uof") {
|
2022-05-27 16:07:09 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
|
2024-01-23 11:18:55 +08:00
|
|
|
} else if (FileIndexerConfig::getInstance()->ocrContentIndexTarget()[suffix]) {
|
2022-10-26 18:01:40 +08:00
|
|
|
return !isOcrSupportSize(path);
|
2021-10-27 15:16:43 +08:00
|
|
|
} else {
|
2022-10-26 18:01:40 +08:00
|
|
|
// qInfo() << "Unsupport format:[" << path << "][" << type.name() << "]";
|
2021-10-27 15:16:43 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2021-10-26 14:20:58 +08:00
|
|
|
|
2022-04-13 13:46:30 +08:00
|
|
|
bool FileUtils::isOcrSupportSize(QString path)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
bool res;
|
|
|
|
Pix *image = pixRead(path.toStdString().data());
|
|
|
|
if (image->h < OCR_MIN_SIZE or image->w < OCR_MIN_SIZE) {//限制图片像素尺寸
|
|
|
|
qDebug() << "file:" << path << "is not right size.";
|
|
|
|
res = false;
|
|
|
|
} else
|
|
|
|
res = true;
|
|
|
|
|
|
|
|
pixDestroy(&image);
|
|
|
|
return res;
|
|
|
|
*/
|
|
|
|
QImage file(path);
|
|
|
|
if (file.height() < OCR_MIN_SIZE or file.width() < OCR_MIN_SIZE) {//限制图片像素尺寸
|
2022-10-26 18:01:40 +08:00
|
|
|
// qDebug() << "file:" << path << "is not right size.";
|
2022-04-13 13:46:30 +08:00
|
|
|
return false;
|
|
|
|
} else
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-08-26 11:22:10 +08:00
|
|
|
QString FileUtils::getHtmlText(const QString &text, const QString &keyword)
|
|
|
|
{
|
2023-07-18 16:18:58 +08:00
|
|
|
QString htmlString = QString("<style>"
|
|
|
|
"span {"
|
|
|
|
"font-size:%0pt;"
|
|
|
|
"font-weight:bold;"
|
|
|
|
"}"
|
|
|
|
"</style>").arg(qApp->font().pointSizeF() + 2);
|
2021-08-26 11:22:10 +08:00
|
|
|
bool boldOpenned = false;
|
2023-07-27 13:59:21 +08:00
|
|
|
|
|
|
|
QTextBoundaryFinder bf(QTextBoundaryFinder::Grapheme, text);
|
|
|
|
int start = 0;
|
|
|
|
for (;bf.position() != -1; bf.toNextBoundary()) {
|
|
|
|
int end = bf.position();
|
|
|
|
if (end == start) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (keyword.toUpper().contains(text.mid(start, end - start).toUpper())) {
|
2021-08-26 11:22:10 +08:00
|
|
|
if(! boldOpenned) {
|
|
|
|
boldOpenned = true;
|
2023-07-18 16:18:58 +08:00
|
|
|
htmlString.append(QString("<span>"));
|
2021-08-26 11:22:10 +08:00
|
|
|
}
|
2023-07-27 13:59:21 +08:00
|
|
|
htmlString.append(FileUtils::escapeHtml(text.mid(start, end - start)));
|
2021-08-26 11:22:10 +08:00
|
|
|
} else {
|
|
|
|
if(boldOpenned) {
|
|
|
|
boldOpenned = false;
|
2023-07-18 16:18:58 +08:00
|
|
|
htmlString.append(QString("</span>"));
|
2021-08-26 11:22:10 +08:00
|
|
|
}
|
2023-07-27 13:59:21 +08:00
|
|
|
htmlString.append(FileUtils::escapeHtml(text.mid(start, end - start)));
|
2021-08-26 11:22:10 +08:00
|
|
|
}
|
2023-07-27 13:59:21 +08:00
|
|
|
start = end;
|
2021-08-26 11:22:10 +08:00
|
|
|
}
|
2023-07-27 13:59:21 +08:00
|
|
|
|
2021-08-26 11:22:10 +08:00
|
|
|
htmlString.replace("\n", "<br />");//替换换行符
|
2021-12-17 17:39:37 +08:00
|
|
|
return "<pre>" + htmlString + "</pre>";
|
|
|
|
}
|
|
|
|
|
|
|
|
QString FileUtils::setAllTextBold(const QString &name)
|
|
|
|
{
|
|
|
|
return QString("<h3 style=\"font-weight:normal;\"><pre>%1</pre></h3>").arg(escapeHtml(name));
|
2021-08-26 11:22:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
QString FileUtils::wrapData(QLabel *p_label, const QString &text)
|
|
|
|
{
|
|
|
|
QString wrapText = text;
|
|
|
|
|
|
|
|
QFontMetrics fontMetrics = p_label->fontMetrics();
|
2023-04-24 14:07:56 +08:00
|
|
|
int textSize = fontMetrics.horizontalAdvance(wrapText);
|
2021-08-26 11:22:10 +08:00
|
|
|
|
|
|
|
if(textSize > LABEL_MAX_WIDTH){
|
|
|
|
int lastIndex = 0;
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
for(int i = lastIndex; i < wrapText.length(); i++) {
|
|
|
|
|
2023-04-24 14:07:56 +08:00
|
|
|
if(fontMetrics.horizontalAdvance(wrapText.mid(lastIndex, i - lastIndex)) == LABEL_MAX_WIDTH) {
|
2021-08-26 11:22:10 +08:00
|
|
|
lastIndex = i;
|
|
|
|
wrapText.insert(i, '\n');
|
|
|
|
count++;
|
2023-04-24 14:07:56 +08:00
|
|
|
} else if(fontMetrics.horizontalAdvance(wrapText.mid(lastIndex, i - lastIndex)) > LABEL_MAX_WIDTH) {
|
2021-08-26 11:22:10 +08:00
|
|
|
lastIndex = i;
|
|
|
|
wrapText.insert(i - 1, '\n');
|
|
|
|
count++;
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(count == 2){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return wrapText;
|
|
|
|
}
|
2022-05-27 16:07:09 +08:00
|
|
|
|
2023-07-27 13:59:21 +08:00
|
|
|
qreal FileUtils::horizontalAdvanceContainsKeyword(const QString &content, const QString &keyword)
|
2023-07-18 16:18:58 +08:00
|
|
|
{
|
|
|
|
QFont boldFont(qApp->font().family());
|
|
|
|
boldFont.setPointSizeF(qApp->font().pointSizeF() + 2);
|
|
|
|
boldFont.setWeight(QFont::Bold);
|
|
|
|
QFontMetricsF boldMetricsF(boldFont);
|
|
|
|
|
|
|
|
QFont font(qApp->font().family());
|
|
|
|
font.setPointSizeF(qApp->font().pointSizeF());
|
|
|
|
QFontMetricsF fontMetricsF(font);
|
|
|
|
|
2023-07-27 13:59:21 +08:00
|
|
|
QTextBoundaryFinder fm(QTextBoundaryFinder::Grapheme, content);
|
|
|
|
int start = 0;
|
2023-07-18 16:18:58 +08:00
|
|
|
|
|
|
|
qreal contentSize = 0;
|
|
|
|
int boldLength = 0;
|
|
|
|
int normalLength = 0;
|
|
|
|
|
2023-07-27 13:59:21 +08:00
|
|
|
for (;fm.position() != -1;fm.toNextBoundary()) {
|
|
|
|
int end = fm.position();
|
|
|
|
if (end == start) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
QString letter = content.mid(start, end - start);
|
|
|
|
|
|
|
|
if (keyword.toUpper().contains(letter.toUpper())) {
|
2023-07-18 16:18:58 +08:00
|
|
|
if (normalLength) {
|
2023-07-27 13:59:21 +08:00
|
|
|
contentSize += fontMetricsF.horizontalAdvance(content.mid(start - normalLength, normalLength));
|
2023-07-18 16:18:58 +08:00
|
|
|
normalLength = 0;
|
|
|
|
}
|
2023-07-27 13:59:21 +08:00
|
|
|
boldLength += (end - start);
|
2023-07-18 16:18:58 +08:00
|
|
|
} else {
|
|
|
|
if (boldLength) {
|
2023-07-27 13:59:21 +08:00
|
|
|
contentSize += boldMetricsF.horizontalAdvance(content.mid(start - boldLength, boldLength));
|
2023-07-18 16:18:58 +08:00
|
|
|
boldLength = 0;
|
|
|
|
}
|
2023-07-27 13:59:21 +08:00
|
|
|
normalLength += (end - start);
|
2023-07-18 16:18:58 +08:00
|
|
|
}
|
2023-07-27 13:59:21 +08:00
|
|
|
start = end;
|
2023-07-18 16:18:58 +08:00
|
|
|
}
|
2023-07-27 13:59:21 +08:00
|
|
|
|
2023-07-18 16:18:58 +08:00
|
|
|
if (boldLength) {
|
|
|
|
contentSize += boldMetricsF.horizontalAdvance(content.right(boldLength));
|
|
|
|
}
|
|
|
|
if (normalLength) {
|
|
|
|
contentSize += fontMetricsF.horizontalAdvance(content.right(normalLength));
|
|
|
|
}
|
|
|
|
return contentSize;
|
|
|
|
}
|
|
|
|
|
2023-10-27 15:06:55 +08:00
|
|
|
QString FileUtils::getSnippetWithoutKeyword(const QString &content, int lineCount) {
|
|
|
|
QString snippet;
|
|
|
|
int numOfLine = 0;
|
|
|
|
QFont font(qApp->font().family());
|
|
|
|
font.setPointSizeF(qApp->font().pointSizeF());
|
|
|
|
QFontMetricsF fontMetricsF(font);
|
|
|
|
|
|
|
|
qreal length = 0;
|
|
|
|
int wordCount = 0;
|
|
|
|
int boundaryStart = 0;
|
|
|
|
int boundaryEnd = 0;
|
|
|
|
QTextBoundaryFinder fm(QTextBoundaryFinder::Grapheme, content);
|
|
|
|
|
|
|
|
for(;fm.position() != -1;fm.toNextBoundary()) {
|
|
|
|
boundaryEnd = fm.position();
|
|
|
|
if (boundaryEnd == boundaryStart) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (numOfLine == lineCount) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
QString word = content.mid(boundaryStart, boundaryEnd - boundaryStart);
|
|
|
|
wordCount += boundaryEnd - boundaryStart;
|
2023-10-30 16:10:47 +08:00
|
|
|
length = fontMetricsF.horizontalAdvance(content.mid(boundaryEnd - wordCount, wordCount));
|
2023-10-27 15:06:55 +08:00
|
|
|
|
|
|
|
if (length >= LABEL_MAX_WIDTH || word == "\n") {
|
|
|
|
if (word == "\n") {
|
|
|
|
boundaryStart = boundaryEnd;
|
|
|
|
} else if (length > LABEL_MAX_WIDTH) {
|
|
|
|
fm.toPreviousBoundary();
|
|
|
|
} else {
|
|
|
|
boundaryStart = boundaryEnd;
|
|
|
|
snippet.append(word);
|
|
|
|
}
|
|
|
|
snippet.append("\n");
|
|
|
|
|
|
|
|
numOfLine++;
|
|
|
|
if (numOfLine == lineCount) {
|
|
|
|
qreal distance = 1;//最后一位必然是\n
|
|
|
|
qreal wordSize = 0;
|
|
|
|
if (!(word == "\n" && length < LABEL_MAX_WIDTH)) {
|
|
|
|
if (length > LABEL_MAX_WIDTH) {
|
|
|
|
boundaryEnd = boundaryStart;
|
|
|
|
}
|
|
|
|
while (wordSize < fontMetricsF.horizontalAdvance("…")) {
|
|
|
|
boundaryStart = fm.position();
|
|
|
|
|
|
|
|
wordSize += fontMetricsF.horizontalAdvance(content.mid(boundaryStart, boundaryEnd - boundaryStart));
|
|
|
|
distance += (boundaryEnd - boundaryStart);
|
|
|
|
boundaryEnd = boundaryStart;
|
|
|
|
fm.toPreviousBoundary();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
snippet = snippet.left(snippet.size() - distance);
|
|
|
|
snippet.append("…");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
length = 0;
|
|
|
|
wordCount = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
snippet.append(word);
|
|
|
|
boundaryStart = boundaryEnd;
|
|
|
|
}
|
|
|
|
return snippet;
|
|
|
|
}
|