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-05-28 15:55:26 +08:00
|
|
|
|
#include <QXmlStreamReader>
|
2021-01-22 09:49:44 +08:00
|
|
|
|
|
2021-04-30 16:28:50 +08:00
|
|
|
|
using namespace Zeeker;
|
2021-01-10 09:23:02 +08:00
|
|
|
|
size_t FileUtils::_max_index_count = 0;
|
|
|
|
|
size_t FileUtils::_current_index_count = 0;
|
2021-01-22 17:15:43 +08:00
|
|
|
|
unsigned short FileUtils::_index_status = 0;
|
2021-04-16 15:35:54 +08:00
|
|
|
|
FileUtils::SearchMethod FileUtils::searchMethod = FileUtils::SearchMethod::DIRECTSEARCH;
|
2020-12-26 12:45:28 +08:00
|
|
|
|
QMap<QString, QStringList> FileUtils::map_chinese2pinyin = QMap<QString, QStringList>();
|
2020-12-21 18:50:54 +08:00
|
|
|
|
|
2021-04-26 15:06:47 +08:00
|
|
|
|
FileUtils::FileUtils() {
|
2020-12-21 18:50:54 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-26 15:06:47 +08:00
|
|
|
|
std::string FileUtils::makeDocUterm(QString path) {
|
|
|
|
|
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) {
|
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()))
|
2020-12-25 19:16:44 +08:00
|
|
|
|
return QIcon::fromTheme("unknown");
|
2021-04-26 15:06:47 +08:00
|
|
|
|
GIcon *g_icon = g_file_info_get_icon(info.get()->get());
|
2020-12-24 11:06:19 +08:00
|
|
|
|
QString icon_name;
|
|
|
|
|
//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-04-26 15:06:47 +08:00
|
|
|
|
if(*p)
|
|
|
|
|
icon_name = QString(*p);
|
|
|
|
|
if(checkValid) {
|
|
|
|
|
while(*p) {
|
2020-12-24 11:06:19 +08:00
|
|
|
|
QIcon icon = QIcon::fromTheme(*p);
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(!icon.isNull()) {
|
|
|
|
|
icon_name = QString(*p);
|
2020-12-24 11:06:19 +08:00
|
|
|
|
break;
|
|
|
|
|
} else {
|
|
|
|
|
p++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-08-06 10:54:48 +08:00
|
|
|
|
if(!QIcon::hasThemeIcon(icon_name)) {
|
2020-12-25 19:16:44 +08:00
|
|
|
|
return QIcon::fromTheme("unknown");
|
|
|
|
|
}
|
2020-12-24 11:06:19 +08:00
|
|
|
|
return QIcon::fromTheme(icon_name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief FileUtils::getAppIcon 获取应用图标
|
|
|
|
|
* @param path .desktop文件的完整路径
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
QIcon FileUtils::getAppIcon(const QString &path) {
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
ba = path.toUtf8();
|
|
|
|
|
GKeyFile * keyfile;
|
|
|
|
|
keyfile = g_key_file_new();
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(!g_key_file_load_from_file(keyfile, ba.data(), G_KEY_FILE_NONE, NULL)) {
|
|
|
|
|
g_key_file_free(keyfile);
|
2020-12-25 19:16:44 +08:00
|
|
|
|
return QIcon::fromTheme("unknown");
|
2020-12-24 11:06:19 +08:00
|
|
|
|
}
|
|
|
|
|
QString icon = QString(g_key_file_get_locale_string(keyfile, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_ICON, NULL, NULL));
|
|
|
|
|
g_key_file_free(keyfile);
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(QIcon::fromTheme(icon).isNull()) {
|
2020-12-24 11:06:19 +08:00
|
|
|
|
return QIcon(":/res/icons/desktop.png");
|
|
|
|
|
}
|
|
|
|
|
return QIcon::fromTheme(icon);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief FileUtils::getSettingIcon 获取设置图标
|
|
|
|
|
* @param setting 设置项传入参数,格式为 About/About->Properties
|
2020-12-25 19:16:44 +08:00
|
|
|
|
* @param is_white 选择是否返回白色图标
|
2020-12-24 11:06:19 +08:00
|
|
|
|
* @return
|
|
|
|
|
*/
|
2020-12-25 19:16:44 +08:00
|
|
|
|
QIcon FileUtils::getSettingIcon(const QString& setting, const bool& is_white) {
|
2020-12-24 11:06:19 +08:00
|
|
|
|
QString name = setting.left(setting.indexOf("/"));
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(! name.isEmpty()) {
|
2020-12-30 17:23:03 +08:00
|
|
|
|
name.replace(QString(name.at(0)), QString(name.at(0).toUpper()));
|
|
|
|
|
}
|
2020-12-25 19:16:44 +08:00
|
|
|
|
QString path;
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(is_white) {
|
2020-12-25 19:16:44 +08:00
|
|
|
|
path = QString("/usr/share/ukui-control-center/shell/res/secondaryleftmenu/%1White.svg").arg(name);
|
|
|
|
|
} else {
|
|
|
|
|
path = QString("/usr/share/ukui-control-center/shell/res/secondaryleftmenu/%1.svg").arg(name);
|
|
|
|
|
}
|
2020-12-24 11:06:19 +08:00
|
|
|
|
QFile file(path);
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(file.exists()) {
|
2020-12-24 11:06:19 +08:00
|
|
|
|
return QIcon(path);
|
|
|
|
|
} else {
|
2021-01-14 15:19:25 +08:00
|
|
|
|
return QIcon::fromTheme("ukui-control-center"); //无插件图标时,返回控制面板应用图标
|
|
|
|
|
// if (is_white) {
|
|
|
|
|
// return QIcon(QString("/usr/share/ukui-control-center/shell/res/secondaryleftmenu/%1White.svg").arg("About"));
|
|
|
|
|
// } else {
|
|
|
|
|
// return QIcon(QString("/usr/share/ukui-control-center/shell/res/secondaryleftmenu/%1.svg").arg("About"));
|
|
|
|
|
// }
|
2020-12-24 11:06:19 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief FileUtils::getFileName 获取文件名
|
2021-01-20 15:33:49 +08:00
|
|
|
|
* @param uri 格式为"file:///home/xxx/xxx/xxxx.txt"
|
2020-12-24 11:06:19 +08:00
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
QString FileUtils::getFileName(const QString& uri) {
|
2021-01-20 15:33:49 +08:00
|
|
|
|
QFileInfo info(uri);
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(info.exists()) {
|
2021-01-20 15:33:49 +08:00
|
|
|
|
return info.fileName();
|
|
|
|
|
} else {
|
2020-12-25 19:16:44 +08:00
|
|
|
|
return "Unknown File";
|
|
|
|
|
}
|
2021-01-20 15:33:49 +08:00
|
|
|
|
// QUrl url = uri;
|
|
|
|
|
// if (url.fileName().isEmpty()) {
|
|
|
|
|
// return "Unknown File";
|
|
|
|
|
// }
|
|
|
|
|
// return url.fileName();
|
2020-12-24 11:06:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief FileUtils::getAppName 获取应用名
|
|
|
|
|
* @param path .destop文件的完整路径
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
QString FileUtils::getAppName(const QString& path) {
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
ba = path.toUtf8();
|
|
|
|
|
GKeyFile * keyfile;
|
|
|
|
|
keyfile = g_key_file_new();
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(!g_key_file_load_from_file(keyfile, ba.data(), G_KEY_FILE_NONE, NULL)) {
|
|
|
|
|
g_key_file_free(keyfile);
|
2020-12-24 11:06:19 +08:00
|
|
|
|
return "Unknown App";
|
|
|
|
|
}
|
|
|
|
|
QString name = QString(g_key_file_get_locale_string(keyfile, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_NAME, NULL, NULL));
|
|
|
|
|
g_key_file_free(keyfile);
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief FileUtils::getSettingName 获取设置项名
|
|
|
|
|
* @param setting 设置项传入参数,格式为 About/About->Properties
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
QString FileUtils::getSettingName(const QString& setting) {
|
2020-12-25 19:16:44 +08:00
|
|
|
|
return setting.right(setting.length() - setting.lastIndexOf("/") - 1);
|
2020-12-24 11:06:19 +08:00
|
|
|
|
}
|
2020-12-26 12:45:28 +08:00
|
|
|
|
|
2021-07-06 16:53:32 +08:00
|
|
|
|
bool FileUtils::isOrUnder(QString pathA, QString pathB)
|
|
|
|
|
{
|
2021-07-07 10:23:59 +08:00
|
|
|
|
if(pathA[0] != "/")
|
2021-07-06 16:53:32 +08:00
|
|
|
|
pathA.prepend("/");
|
2021-07-07 14:20:22 +08:00
|
|
|
|
if(pathB[0] != "/")
|
2021-07-06 16:53:32 +08:00
|
|
|
|
pathB.prepend("/");
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-26 12:45:28 +08:00
|
|
|
|
|
2021-04-26 15:06:47 +08:00
|
|
|
|
void FileUtils::loadHanziTable(const QString &fileName) {
|
2020-12-26 12:45:28 +08:00
|
|
|
|
QFile file(fileName);
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(!file.open(QFile::ReadOnly | QFile::Text)) {
|
2020-12-26 12:45:28 +08:00
|
|
|
|
qDebug("File: '%s' open failed!", file.fileName().toStdString().c_str());
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 读取汉字对照表文件并转换为QMap存储 */
|
|
|
|
|
while(!file.atEnd()) {
|
|
|
|
|
QString content = QString::fromUtf8(file.readLine());
|
|
|
|
|
FileUtils::map_chinese2pinyin[content.split(" ").last().trimmed()] = content.split(" ").first().split(",");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
file.close();
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-26 15:06:47 +08:00
|
|
|
|
QMimeType FileUtils::getMimetype(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-01-03 16:58:26 +08:00
|
|
|
|
//aborted
|
2021-04-26 15:06:47 +08:00
|
|
|
|
QString FileUtils::find(const QString &hanzi) {
|
2021-01-09 11:25:07 +08:00
|
|
|
|
// static QMap<QString, QStringList> map = loadHanziTable("://index/pinyinWithoutTone.txt");
|
|
|
|
|
// static QMap<QString, QStringList> map;
|
2020-12-26 12:45:28 +08:00
|
|
|
|
QString output;
|
|
|
|
|
QStringList stringList = hanzi.split("");
|
|
|
|
|
|
|
|
|
|
/* 遍历查找汉字-拼音对照表的内容并将汉字替换为拼音 */
|
2021-04-26 15:06:47 +08:00
|
|
|
|
for(const QString &str : stringList) {
|
|
|
|
|
if(FileUtils::map_chinese2pinyin.contains(str))
|
2020-12-26 12:45:28 +08:00
|
|
|
|
output += FileUtils::map_chinese2pinyin[str].first();
|
|
|
|
|
else
|
|
|
|
|
output += str;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return output;
|
|
|
|
|
}
|
2020-12-29 16:41:30 +08:00
|
|
|
|
|
2020-12-30 15:56:23 +08:00
|
|
|
|
//DFS多音字太多直接GG
|
2021-04-26 15:06:47 +08:00
|
|
|
|
void stitchMultiToneWordsDFS(const QString& hanzi, const QString& resultAllPinYin, const QString& resultFirst, QStringList& resultList) {
|
|
|
|
|
if(hanzi.size() == 0) {
|
2020-12-29 19:30:48 +08:00
|
|
|
|
resultList.append(resultAllPinYin);
|
|
|
|
|
resultList.append(resultFirst);
|
2020-12-29 16:41:30 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(FileUtils::map_chinese2pinyin.contains(hanzi.at(0))) {
|
|
|
|
|
for(auto i : FileUtils::map_chinese2pinyin[hanzi.at(0)]) {
|
2020-12-29 19:30:48 +08:00
|
|
|
|
stitchMultiToneWordsDFS(hanzi.right(hanzi.size() - 1), resultAllPinYin + i, resultFirst + i.at(0), resultList);
|
2020-12-29 16:41:30 +08:00
|
|
|
|
}
|
2021-04-26 15:06:47 +08:00
|
|
|
|
} else {
|
2020-12-29 19:30:48 +08:00
|
|
|
|
stitchMultiToneWordsDFS(hanzi.right(hanzi.size() - 1), resultAllPinYin + hanzi.at(0), resultFirst + hanzi.at(0), resultList);
|
2020-12-29 16:41:30 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-30 15:56:23 +08:00
|
|
|
|
//BFS+Stack多音字太多会爆栈
|
2021-04-26 15:06:47 +08:00
|
|
|
|
void stitchMultiToneWordsBFSStack(const QString& hanzi, QStringList& resultList) {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
QString tempHanzi, resultAllPinYin, resultFirst;
|
|
|
|
|
QQueue<QString> tempQueue;
|
|
|
|
|
tempHanzi = hanzi;
|
|
|
|
|
int tempQueueSize = 0;
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(FileUtils::map_chinese2pinyin.contains(tempHanzi.at(0))) {
|
|
|
|
|
for(auto i : FileUtils::map_chinese2pinyin[tempHanzi.at(0)]) {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
tempQueue.enqueue(i);
|
|
|
|
|
}
|
2021-04-26 15:06:47 +08:00
|
|
|
|
} else {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
tempQueue.enqueue(tempHanzi.at(0));
|
|
|
|
|
}
|
|
|
|
|
tempHanzi = tempHanzi.right(tempHanzi.size() - 1);
|
2021-04-26 15:06:47 +08:00
|
|
|
|
while(tempHanzi.size() != 0) {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
tempQueueSize = tempQueue.size();
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(FileUtils::map_chinese2pinyin.contains(tempHanzi.at(0))) {
|
|
|
|
|
for(int j = 0; j < tempQueueSize; ++j) {
|
|
|
|
|
for(auto i : FileUtils::map_chinese2pinyin[tempHanzi.at(0)]) {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
tempQueue.enqueue(tempQueue.head() + i);
|
|
|
|
|
}
|
|
|
|
|
tempQueue.dequeue();
|
|
|
|
|
}
|
2021-04-26 15:06:47 +08:00
|
|
|
|
} else {
|
|
|
|
|
for(int j = 0; j < tempQueueSize; ++j) {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
tempQueue.enqueue(tempQueue.head() + tempHanzi.at(0));
|
|
|
|
|
tempQueue.dequeue();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
tempHanzi = tempHanzi.right(tempHanzi.size() - 1);
|
|
|
|
|
}
|
2021-04-26 15:06:47 +08:00
|
|
|
|
while(!tempQueue.empty()) {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
resultList.append(tempQueue.dequeue());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//BFS+Heap,多音字太多会耗尽内存
|
2021-04-26 15:06:47 +08:00
|
|
|
|
void stitchMultiToneWordsBFSHeap(const QString& hanzi, QStringList& resultList) {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
QString tempHanzi, resultAllPinYin, resultFirst;
|
|
|
|
|
QQueue<QString>* tempQueue = new QQueue<QString>;
|
|
|
|
|
tempHanzi = hanzi;
|
|
|
|
|
int tempQueueSize = 0;
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(FileUtils::map_chinese2pinyin.contains(tempHanzi.at(0))) {
|
|
|
|
|
for(auto i : FileUtils::map_chinese2pinyin[tempHanzi.at(0)]) {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
tempQueue->enqueue(i);
|
|
|
|
|
}
|
2021-04-26 15:06:47 +08:00
|
|
|
|
} else {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
tempQueue->enqueue(tempHanzi.at(0));
|
|
|
|
|
}
|
|
|
|
|
tempHanzi = tempHanzi.right(tempHanzi.size() - 1);
|
2021-04-26 15:06:47 +08:00
|
|
|
|
while(tempHanzi.size() != 0) {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
tempQueueSize = tempQueue->size();
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(FileUtils::map_chinese2pinyin.contains(tempHanzi.at(0))) {
|
|
|
|
|
for(int j = 0; j < tempQueueSize; ++j) {
|
|
|
|
|
for(auto i : FileUtils::map_chinese2pinyin[tempHanzi.at(0)]) {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
tempQueue->enqueue(tempQueue->head() + i);
|
|
|
|
|
}
|
|
|
|
|
tempQueue->dequeue();
|
|
|
|
|
}
|
2021-04-26 15:06:47 +08:00
|
|
|
|
} else {
|
|
|
|
|
for(int j = 0; j < tempQueueSize; ++j) {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
tempQueue->enqueue(tempQueue->head() + tempHanzi.at(0));
|
|
|
|
|
tempQueue->dequeue();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
tempHanzi = tempHanzi.right(tempHanzi.size() - 1);
|
|
|
|
|
}
|
2021-04-26 15:06:47 +08:00
|
|
|
|
while(!tempQueue->empty()) {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
resultList.append(tempQueue->dequeue());
|
|
|
|
|
}
|
|
|
|
|
delete tempQueue;
|
|
|
|
|
tempQueue = nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//BFS+Heap+超过3个多音字只建一个索引,比较折中的方案
|
2021-04-26 15:06:47 +08:00
|
|
|
|
void stitchMultiToneWordsBFSHeapLess3(const QString& hanzi, QStringList& resultList) {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
QString tempHanzi, resultAllPinYin, resultFirst;
|
|
|
|
|
QQueue<QString>* tempQueue = new QQueue<QString>;
|
|
|
|
|
QQueue<QString>* tempQueueFirst = new QQueue<QString>;
|
|
|
|
|
tempHanzi = hanzi;
|
|
|
|
|
int tempQueueSize = 0;
|
|
|
|
|
int multiToneWordNum = 0;
|
2021-04-26 15:06:47 +08:00
|
|
|
|
for(auto i : hanzi) {
|
|
|
|
|
if(FileUtils::map_chinese2pinyin.contains(i)) {
|
|
|
|
|
if(FileUtils::map_chinese2pinyin[i].size() > 1) {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
++multiToneWordNum;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(multiToneWordNum > 3) {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
QString oneResult, oneResultFirst;
|
2021-04-26 15:06:47 +08:00
|
|
|
|
for(auto i : hanzi) {
|
|
|
|
|
if(FileUtils::map_chinese2pinyin.contains(i)) {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
oneResult += FileUtils::map_chinese2pinyin[i].first();
|
|
|
|
|
oneResultFirst += FileUtils::map_chinese2pinyin[i].first().at(0);
|
2021-04-26 15:06:47 +08:00
|
|
|
|
} else {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
oneResult += i;
|
|
|
|
|
oneResultFirst += i;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
resultList.append(oneResult);
|
|
|
|
|
resultList.append(oneResultFirst);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(FileUtils::map_chinese2pinyin.contains(tempHanzi.at(0))) {
|
|
|
|
|
for(auto i : FileUtils::map_chinese2pinyin[tempHanzi.at(0)]) {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
tempQueue->enqueue(i);
|
|
|
|
|
tempQueueFirst->enqueue(i.at(0));
|
|
|
|
|
}
|
2021-04-26 15:06:47 +08:00
|
|
|
|
} else {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
tempQueue->enqueue(tempHanzi.at(0));
|
|
|
|
|
tempQueueFirst->enqueue(tempHanzi.at(0));
|
|
|
|
|
}
|
|
|
|
|
tempHanzi = tempHanzi.right(tempHanzi.size() - 1);
|
2021-04-26 15:06:47 +08:00
|
|
|
|
while(tempHanzi.size() != 0) {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
tempQueueSize = tempQueue->size();
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(FileUtils::map_chinese2pinyin.contains(tempHanzi.at(0))) {
|
|
|
|
|
for(int j = 0; j < tempQueueSize; ++j) {
|
|
|
|
|
for(auto i : FileUtils::map_chinese2pinyin[tempHanzi.at(0)]) {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
tempQueue->enqueue(tempQueue->head() + i);
|
|
|
|
|
tempQueueFirst->enqueue(tempQueueFirst->head() + i.at(0));
|
|
|
|
|
}
|
|
|
|
|
tempQueue->dequeue();
|
|
|
|
|
tempQueueFirst->dequeue();
|
|
|
|
|
}
|
2021-04-26 15:06:47 +08:00
|
|
|
|
} else {
|
|
|
|
|
for(int j = 0; j < tempQueueSize; ++j) {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
tempQueue->enqueue(tempQueue->head() + tempHanzi.at(0));
|
|
|
|
|
tempQueueFirst->enqueue(tempQueueFirst->head() + tempHanzi.at(0));
|
|
|
|
|
tempQueue->dequeue();
|
|
|
|
|
tempQueueFirst->dequeue();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
tempHanzi = tempHanzi.right(tempHanzi.size() - 1);
|
|
|
|
|
}
|
2021-04-26 15:06:47 +08:00
|
|
|
|
while(!tempQueue->empty()) {
|
2020-12-30 15:56:23 +08:00
|
|
|
|
resultList.append(tempQueue->dequeue());
|
|
|
|
|
resultList.append(tempQueueFirst->dequeue());
|
|
|
|
|
}
|
|
|
|
|
delete tempQueue;
|
|
|
|
|
delete tempQueueFirst;
|
|
|
|
|
tempQueue = nullptr;
|
|
|
|
|
tempQueueFirst = nullptr;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-03 16:58:26 +08:00
|
|
|
|
//BFS+Stack+超过3个多音字只建一个索引,比较折中的方案
|
2021-04-26 15:06:47 +08:00
|
|
|
|
void stitchMultiToneWordsBFSStackLess3(const QString& hanzi, QStringList& resultList) {
|
2021-01-03 16:58:26 +08:00
|
|
|
|
QString tempHanzi, resultAllPinYin, resultFirst;
|
|
|
|
|
QQueue<QString> tempQueue;
|
|
|
|
|
QQueue<QString> tempQueueFirst;
|
|
|
|
|
tempHanzi = hanzi;
|
|
|
|
|
int tempQueueSize = 0;
|
|
|
|
|
int multiToneWordNum = 0;
|
2021-04-26 15:06:47 +08:00
|
|
|
|
for(auto i : hanzi) {
|
|
|
|
|
if(FileUtils::map_chinese2pinyin.contains(i)) {
|
|
|
|
|
if(FileUtils::map_chinese2pinyin[i].size() > 1) {
|
2021-01-03 16:58:26 +08:00
|
|
|
|
++multiToneWordNum;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(multiToneWordNum > 3) {
|
2021-01-03 16:58:26 +08:00
|
|
|
|
QString oneResult, oneResultFirst;
|
2021-04-26 15:06:47 +08:00
|
|
|
|
for(auto i : hanzi) {
|
|
|
|
|
if(FileUtils::map_chinese2pinyin.contains(i)) {
|
2021-01-03 16:58:26 +08:00
|
|
|
|
oneResult += FileUtils::map_chinese2pinyin[i].first();
|
|
|
|
|
oneResultFirst += FileUtils::map_chinese2pinyin[i].first().at(0);
|
2021-04-26 15:06:47 +08:00
|
|
|
|
} else {
|
2021-01-03 16:58:26 +08:00
|
|
|
|
oneResult += i;
|
|
|
|
|
oneResultFirst += i;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
resultList.append(oneResult);
|
|
|
|
|
resultList.append(oneResultFirst);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(FileUtils::map_chinese2pinyin.contains(tempHanzi.at(0))) {
|
|
|
|
|
for(auto i : FileUtils::map_chinese2pinyin[tempHanzi.at(0)]) {
|
2021-01-03 16:58:26 +08:00
|
|
|
|
tempQueue.enqueue(i);
|
|
|
|
|
tempQueueFirst.enqueue(i.at(0));
|
|
|
|
|
}
|
2021-04-26 15:06:47 +08:00
|
|
|
|
} else {
|
2021-01-03 16:58:26 +08:00
|
|
|
|
tempQueue.enqueue(tempHanzi.at(0));
|
|
|
|
|
tempQueueFirst.enqueue(tempHanzi.at(0));
|
|
|
|
|
}
|
|
|
|
|
tempHanzi = tempHanzi.right(tempHanzi.size() - 1);
|
2021-04-26 15:06:47 +08:00
|
|
|
|
while(tempHanzi.size() != 0) {
|
2021-01-03 16:58:26 +08:00
|
|
|
|
tempQueueSize = tempQueue.size();
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(FileUtils::map_chinese2pinyin.contains(tempHanzi.at(0))) {
|
|
|
|
|
for(int j = 0; j < tempQueueSize; ++j) {
|
|
|
|
|
for(auto i : FileUtils::map_chinese2pinyin[tempHanzi.at(0)]) {
|
2021-01-03 16:58:26 +08:00
|
|
|
|
tempQueue.enqueue(tempQueue.head() + i);
|
|
|
|
|
tempQueueFirst.enqueue(tempQueueFirst.head() + i.at(0));
|
|
|
|
|
}
|
|
|
|
|
tempQueue.dequeue();
|
|
|
|
|
tempQueueFirst.dequeue();
|
|
|
|
|
}
|
2021-04-26 15:06:47 +08:00
|
|
|
|
} else {
|
|
|
|
|
for(int j = 0; j < tempQueueSize; ++j) {
|
2021-01-03 16:58:26 +08:00
|
|
|
|
tempQueue.enqueue(tempQueue.head() + tempHanzi.at(0));
|
|
|
|
|
tempQueueFirst.enqueue(tempQueueFirst.head() + tempHanzi.at(0));
|
|
|
|
|
tempQueue.dequeue();
|
|
|
|
|
tempQueueFirst.dequeue();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
tempHanzi = tempHanzi.right(tempHanzi.size() - 1);
|
|
|
|
|
}
|
2021-04-26 15:06:47 +08:00
|
|
|
|
while(!tempQueue.empty()) {
|
2021-01-03 16:58:26 +08:00
|
|
|
|
resultList.append(tempQueue.dequeue());
|
|
|
|
|
resultList.append(tempQueueFirst.dequeue());
|
|
|
|
|
}
|
2021-01-09 11:25:07 +08:00
|
|
|
|
// delete tempQueue;
|
|
|
|
|
// delete tempQueueFirst;
|
|
|
|
|
// tempQueue = nullptr;
|
|
|
|
|
// tempQueueFirst = nullptr;
|
2021-01-03 16:58:26 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-26 15:06:47 +08:00
|
|
|
|
QStringList FileUtils::findMultiToneWords(const QString& hanzi) {
|
2021-01-09 11:25:07 +08:00
|
|
|
|
// QStringList* output = new QStringList();
|
2020-12-29 16:41:30 +08:00
|
|
|
|
QStringList output;
|
2020-12-29 19:30:48 +08:00
|
|
|
|
QString tempAllPinYin, tempFirst;
|
2020-12-29 16:41:30 +08:00
|
|
|
|
QStringList stringList = hanzi.split("");
|
|
|
|
|
|
2021-01-09 11:25:07 +08:00
|
|
|
|
// stitchMultiToneWordsDFS(hanzi, tempAllPinYin, tempFirst, output);
|
2021-01-03 16:58:26 +08:00
|
|
|
|
stitchMultiToneWordsBFSStackLess3(hanzi, output);
|
2021-01-09 11:25:07 +08:00
|
|
|
|
// qDebug() << output;
|
2020-12-29 16:41:30 +08:00
|
|
|
|
return output;
|
2020-12-29 20:38:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-29 20:18:36 +08:00
|
|
|
|
/**
|
|
|
|
|
* @brief FileUtils::getDocxTextContent
|
|
|
|
|
* @param path: abs path
|
|
|
|
|
* @return docx to QString
|
|
|
|
|
*/
|
2021-04-26 15:06:47 +08:00
|
|
|
|
void FileUtils::getDocxTextContent(QString &path, QString &textcontent) {
|
2021-04-08 16:11:58 +08:00
|
|
|
|
//fix me :optimized by xpath??
|
2020-12-29 20:18:36 +08:00
|
|
|
|
QFileInfo info = QFileInfo(path);
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(!info.exists() || info.isDir())
|
2021-01-12 16:07:50 +08:00
|
|
|
|
return;
|
2020-12-31 21:14:13 +08:00
|
|
|
|
QuaZip file(path);
|
|
|
|
|
if(!file.open(QuaZip::mdUnzip))
|
2021-01-12 16:07:50 +08:00
|
|
|
|
return;
|
2020-12-29 20:18:36 +08:00
|
|
|
|
|
2021-06-25 16:30:46 +08:00
|
|
|
|
if(!file.setCurrentFile("word/document.xml", QuaZip::csSensitive)) {
|
|
|
|
|
file.close();
|
2021-01-12 16:07:50 +08:00
|
|
|
|
return;
|
2021-06-25 16:30:46 +08:00
|
|
|
|
}
|
2020-12-29 20:18:36 +08:00
|
|
|
|
QuaZipFile fileR(&file);
|
|
|
|
|
|
|
|
|
|
fileR.open(QIODevice::ReadOnly); //读取方式打开
|
|
|
|
|
|
2021-05-28 15:55:26 +08:00
|
|
|
|
QXmlStreamReader reader(&fileR);
|
|
|
|
|
|
|
|
|
|
while (!reader.atEnd()){
|
|
|
|
|
if(reader.readNextStartElement() and reader.name().toString() == "t"){
|
|
|
|
|
textcontent.append(reader.readElementText().replace("\n", "").replace("\r", " "));
|
|
|
|
|
if(textcontent.length() >= MAX_CONTENT_LENGTH/3){
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fileR.close();
|
|
|
|
|
file.close();
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/* //原加载DOM文档方式;
|
2020-12-29 20:18:36 +08:00
|
|
|
|
QDomDocument doc;
|
|
|
|
|
doc.setContent(fileR.readAll());
|
2021-04-08 16:11:58 +08:00
|
|
|
|
fileR.close();
|
2020-12-29 20:18:36 +08:00
|
|
|
|
QDomElement first = doc.firstChildElement("w:document");
|
2021-01-19 20:59:46 +08:00
|
|
|
|
QDomElement body = first.firstChildElement("w:body");
|
2021-04-26 15:06:47 +08:00
|
|
|
|
while(!body.isNull()) {
|
|
|
|
|
QDomElement wp = body.firstChildElement("w:p");
|
|
|
|
|
while(!wp.isNull()) {
|
|
|
|
|
QDomElement wr = wp.firstChildElement("w:r");
|
|
|
|
|
while(!wr.isNull()) {
|
2021-01-19 20:59:46 +08:00
|
|
|
|
QDomElement wt = wr.firstChildElement("w:t");
|
2021-06-10 20:43:57 +08:00
|
|
|
|
textcontent.append(wt.text().replace("\n", "")).replace("\r", " ");
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(textcontent.length() >= MAX_CONTENT_LENGTH / 3) {
|
2021-03-16 17:21:10 +08:00
|
|
|
|
file.close();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2021-01-19 20:59:46 +08:00
|
|
|
|
wr = wr.nextSiblingElement();
|
|
|
|
|
}
|
|
|
|
|
wp = wp.nextSiblingElement();
|
2020-12-29 20:18:36 +08:00
|
|
|
|
}
|
2021-01-19 20:59:46 +08:00
|
|
|
|
body = body.nextSiblingElement();
|
2020-12-29 20:18:36 +08:00
|
|
|
|
}
|
2021-01-19 20:59:46 +08:00
|
|
|
|
file.close();
|
2021-01-12 16:07:50 +08:00
|
|
|
|
return;
|
2021-05-28 15:55:26 +08:00
|
|
|
|
*/
|
2020-12-29 20:18:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-26 15:06:47 +08:00
|
|
|
|
void FileUtils::getPptxTextContent(QString &path, QString &textcontent) {
|
2021-04-08 16:11:58 +08:00
|
|
|
|
QFileInfo info = QFileInfo(path);
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(!info.exists() || info.isDir())
|
2021-04-08 16:11:58 +08:00
|
|
|
|
return;
|
|
|
|
|
QuaZip file(path);
|
|
|
|
|
if(!file.open(QuaZip::mdUnzip))
|
|
|
|
|
return;
|
|
|
|
|
QString prefix("ppt/slides/slide");
|
|
|
|
|
QStringList fileList;
|
2021-04-26 15:06:47 +08:00
|
|
|
|
for(QString i : file.getFileNameList()) {
|
2021-04-08 16:11:58 +08:00
|
|
|
|
if(i.startsWith(prefix))
|
2021-04-26 15:06:47 +08:00
|
|
|
|
fileList << i;
|
2021-04-08 16:11:58 +08:00
|
|
|
|
}
|
2021-06-25 16:30:46 +08:00
|
|
|
|
if(fileList.isEmpty()) {
|
|
|
|
|
file.close();
|
2021-04-08 16:11:58 +08:00
|
|
|
|
return;
|
2021-06-25 16:30:46 +08:00
|
|
|
|
}
|
2021-05-28 15:55:26 +08:00
|
|
|
|
|
|
|
|
|
for(int i = 0; i < fileList.size(); ++i){
|
|
|
|
|
QString name = prefix + QString::number(i + 1) + ".xml";
|
|
|
|
|
if(!file.setCurrentFile(name)) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
QuaZipFile fileR(&file);
|
|
|
|
|
fileR.open(QIODevice::ReadOnly);
|
|
|
|
|
|
|
|
|
|
QXmlStreamReader reader(&fileR);
|
|
|
|
|
|
|
|
|
|
while (!reader.atEnd()){
|
|
|
|
|
if(reader.readNextStartElement() and reader.name().toString() == "t"){
|
|
|
|
|
textcontent.append(reader.readElementText().replace("\n", "").replace("\r", " "));
|
|
|
|
|
if(textcontent.length() >= MAX_CONTENT_LENGTH/3){
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
fileR.close();
|
|
|
|
|
}
|
|
|
|
|
file.close();
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/*
|
2021-04-08 16:11:58 +08:00
|
|
|
|
QDomElement sptree;
|
|
|
|
|
QDomElement sp;
|
|
|
|
|
QDomElement txbody;
|
|
|
|
|
QDomElement ap;
|
|
|
|
|
QDomElement ar;
|
2021-04-13 13:57:02 +08:00
|
|
|
|
QDomDocument doc;
|
2021-04-08 16:11:58 +08:00
|
|
|
|
QDomElement at;
|
2021-04-13 13:57:02 +08:00
|
|
|
|
// QDomNodeList atList;
|
2021-04-26 15:06:47 +08:00
|
|
|
|
for(int i = 0; i < fileList.size(); ++i) {
|
|
|
|
|
QString name = prefix + QString::number(i + 1) + ".xml";
|
|
|
|
|
if(!file.setCurrentFile(name)) {
|
2021-04-08 16:11:58 +08:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
QuaZipFile fileR(&file);
|
|
|
|
|
fileR.open(QIODevice::ReadOnly);
|
2021-04-13 13:57:02 +08:00
|
|
|
|
doc.clear();
|
2021-04-08 16:11:58 +08:00
|
|
|
|
doc.setContent(fileR.readAll());
|
|
|
|
|
fileR.close();
|
2021-04-13 13:57:02 +08:00
|
|
|
|
|
|
|
|
|
//fix me :optimized by xpath??
|
|
|
|
|
//This method looks better but slower,
|
|
|
|
|
//If xml file is very large with many useless node,this method will take a lot of time.
|
|
|
|
|
|
|
|
|
|
// atList = doc.elementsByTagName("a:t");
|
|
|
|
|
// for(int i = 0; i<atList.size(); ++i)
|
|
|
|
|
// {
|
|
|
|
|
// at = atList.at(i).toElement();
|
|
|
|
|
// if(!at.isNull())
|
|
|
|
|
// {
|
|
|
|
|
// textcontent.append(at.text().replace("\r","")).replace("\t"," ");
|
|
|
|
|
// if(textcontent.length() >= MAX_CONTENT_LENGTH/3)
|
|
|
|
|
// {
|
|
|
|
|
// file.close();
|
|
|
|
|
// return;
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
//This is ugly but seems more efficient when handel a large file.
|
2021-04-08 16:11:58 +08:00
|
|
|
|
sptree = doc.firstChildElement("p:sld").firstChildElement("p:cSld").firstChildElement("p:spTree");
|
2021-04-26 15:06:47 +08:00
|
|
|
|
while(!sptree.isNull()) {
|
|
|
|
|
sp = sptree.firstChildElement("p:sp");
|
|
|
|
|
while(!sp.isNull()) {
|
|
|
|
|
txbody = sp.firstChildElement("p:txBody");
|
|
|
|
|
while(!txbody.isNull()) {
|
2021-04-08 16:11:58 +08:00
|
|
|
|
ap = txbody.firstChildElement("a:p");
|
2021-04-26 15:06:47 +08:00
|
|
|
|
while(!ap.isNull()) {
|
2021-04-08 16:11:58 +08:00
|
|
|
|
ar = ap.firstChildElement("a:r");
|
2021-04-26 15:06:47 +08:00
|
|
|
|
while(!ar.isNull()) {
|
2021-04-08 16:11:58 +08:00
|
|
|
|
at = ar.firstChildElement("a:t");
|
2021-04-26 15:06:47 +08:00
|
|
|
|
textcontent.append(at.text().replace("\r", "")).replace("\t", "");
|
|
|
|
|
if(textcontent.length() >= MAX_CONTENT_LENGTH / 3) {
|
2021-04-08 16:11:58 +08:00
|
|
|
|
file.close();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
ar = ar.nextSiblingElement();
|
|
|
|
|
}
|
|
|
|
|
ap = ap.nextSiblingElement();
|
|
|
|
|
}
|
|
|
|
|
txbody = txbody.nextSiblingElement();
|
|
|
|
|
}
|
|
|
|
|
sp = sp.nextSiblingElement();
|
|
|
|
|
}
|
|
|
|
|
sptree = sptree.nextSiblingElement();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
file.close();
|
|
|
|
|
return;
|
2021-05-28 15:55:26 +08:00
|
|
|
|
*/
|
2021-04-08 16:11:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-26 15:06:47 +08:00
|
|
|
|
void FileUtils::getXlsxTextContent(QString &path, QString &textcontent) {
|
2021-04-13 14:53:55 +08:00
|
|
|
|
QFileInfo info = QFileInfo(path);
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(!info.exists() || info.isDir())
|
2021-04-13 14:53:55 +08:00
|
|
|
|
return;
|
|
|
|
|
QuaZip file(path);
|
|
|
|
|
if(!file.open(QuaZip::mdUnzip))
|
|
|
|
|
return;
|
|
|
|
|
|
2021-06-25 16:30:46 +08:00
|
|
|
|
if(!file.setCurrentFile("xl/sharedStrings.xml", QuaZip::csSensitive)) {
|
|
|
|
|
file.close();
|
2021-04-13 14:53:55 +08:00
|
|
|
|
return;
|
2021-06-25 16:30:46 +08:00
|
|
|
|
}
|
2021-04-13 14:53:55 +08:00
|
|
|
|
QuaZipFile fileR(&file);
|
|
|
|
|
|
2021-05-28 15:55:26 +08:00
|
|
|
|
fileR.open(QIODevice::ReadOnly);
|
2021-04-13 14:53:55 +08:00
|
|
|
|
|
2021-05-28 15:55:26 +08:00
|
|
|
|
QXmlStreamReader reader(&fileR);
|
|
|
|
|
|
|
|
|
|
while (!reader.atEnd()){
|
|
|
|
|
if(reader.readNextStartElement() and reader.name().toString() == "t"){
|
|
|
|
|
textcontent.append(reader.readElementText().replace("\n", "").replace("\r", " "));
|
|
|
|
|
if(textcontent.length() >= MAX_CONTENT_LENGTH/3){
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fileR.close();
|
|
|
|
|
file.close();
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/*
|
2021-04-13 14:53:55 +08:00
|
|
|
|
QDomDocument doc;
|
|
|
|
|
doc.setContent(fileR.readAll());
|
|
|
|
|
fileR.close();
|
|
|
|
|
QDomElement sst = doc.firstChildElement("sst");
|
|
|
|
|
QDomElement si;
|
|
|
|
|
QDomElement r;
|
|
|
|
|
QDomElement t;
|
2021-04-26 15:06:47 +08:00
|
|
|
|
while(!sst.isNull()) {
|
|
|
|
|
si = sst.firstChildElement("si");
|
|
|
|
|
while(!si.isNull()) {
|
|
|
|
|
r = si.firstChildElement("r");
|
|
|
|
|
if(r.isNull()) {
|
|
|
|
|
t = si.firstChildElement("t");
|
|
|
|
|
} else {
|
2021-04-13 14:53:55 +08:00
|
|
|
|
t = r.firstChildElement("t");
|
|
|
|
|
}
|
|
|
|
|
if(t.isNull())
|
|
|
|
|
continue;
|
2021-04-26 15:06:47 +08:00
|
|
|
|
textcontent.append(t.text().replace("\r", "").replace("\n", ""));
|
|
|
|
|
if(textcontent.length() >= MAX_CONTENT_LENGTH / 3) {
|
2021-04-13 14:53:55 +08:00
|
|
|
|
file.close();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
si = si.nextSiblingElement();
|
|
|
|
|
}
|
|
|
|
|
sst = sst.nextSiblingElement();
|
|
|
|
|
}
|
|
|
|
|
file.close();
|
|
|
|
|
return;
|
2021-05-28 15:55:26 +08:00
|
|
|
|
*/
|
2021-04-13 14:53:55 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-26 15:06:47 +08:00
|
|
|
|
void FileUtils::getPdfTextContent(QString &path, QString &textcontent) {
|
2021-04-15 09:19:36 +08:00
|
|
|
|
Poppler::Document *doc = Poppler::Document::load(path);
|
2021-06-25 16:30:46 +08:00
|
|
|
|
if(doc->isLocked()) {
|
|
|
|
|
delete doc;
|
2021-04-15 09:19:36 +08:00
|
|
|
|
return;
|
2021-06-25 16:30:46 +08:00
|
|
|
|
}
|
2021-04-15 09:19:36 +08:00
|
|
|
|
const QRectF qf;
|
|
|
|
|
int pageNum = doc->numPages();
|
2021-04-26 15:06:47 +08:00
|
|
|
|
for(int i = 0; i < pageNum; ++i) {
|
2021-05-28 15:55:26 +08:00
|
|
|
|
textcontent.append(doc->page(i)->text(qf).replace("\n", "").replace("\r", " "));
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(textcontent.length() >= MAX_CONTENT_LENGTH / 3)
|
2021-04-15 09:19:36 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
delete doc;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-26 15:06:47 +08:00
|
|
|
|
void FileUtils::getTxtContent(QString &path, QString &textcontent) {
|
2020-12-29 20:18:36 +08:00
|
|
|
|
QFile file(path);
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(!file.open(QIODevice::ReadOnly | QIODevice::Text))
|
2021-01-12 16:07:50 +08:00
|
|
|
|
return;
|
2021-01-14 20:56:14 +08:00
|
|
|
|
|
2021-04-08 16:11:58 +08:00
|
|
|
|
QByteArray encodedString = file.read(MAX_CONTENT_LENGTH);
|
2021-01-14 20:56:14 +08:00
|
|
|
|
|
|
|
|
|
uchardet_t chardet = uchardet_new();
|
2021-04-26 15:06:47 +08:00
|
|
|
|
if(uchardet_handle_data(chardet, encodedString.constData(), encodedString.size()) != 0)
|
|
|
|
|
qWarning() << "Txt file encoding format detect fail!" << path;
|
2021-01-14 20:56:14 +08:00
|
|
|
|
|
|
|
|
|
uchardet_data_end(chardet);
|
|
|
|
|
const char *codec = uchardet_get_charset(chardet);
|
|
|
|
|
|
|
|
|
|
if(QTextCodec::codecForName(codec) == 0)
|
2021-04-26 15:06:47 +08:00
|
|
|
|
qWarning() << "Unsupported Text encoding format" << path << QString::fromLocal8Bit(codec);
|
2021-01-14 20:56:14 +08:00
|
|
|
|
|
2021-04-26 15:06:47 +08:00
|
|
|
|
QTextStream stream(encodedString, QIODevice::ReadOnly);
|
2021-01-14 20:56:14 +08:00
|
|
|
|
stream.setCodec(codec);
|
2021-02-07 10:11:30 +08:00
|
|
|
|
uchardet_delete(chardet);
|
2021-01-14 20:56:14 +08:00
|
|
|
|
|
2021-05-28 15:55:26 +08:00
|
|
|
|
textcontent = stream.readAll().replace("\n", "").replace("\r", " ");
|
2021-01-19 19:26:39 +08:00
|
|
|
|
|
|
|
|
|
file.close();
|
|
|
|
|
encodedString.clear();
|
|
|
|
|
chardet = NULL;
|
|
|
|
|
stream.flush();
|
|
|
|
|
|
2021-01-12 16:07:50 +08:00
|
|
|
|
return;
|
2020-12-29 16:41:30 +08:00
|
|
|
|
}
|
2021-05-27 21:10:11 +08:00
|
|
|
|
|
|
|
|
|
bool FileUtils::openFile(QString &path, bool openInDir)
|
|
|
|
|
{
|
|
|
|
|
if(openInDir) {
|
|
|
|
|
return QDesktopServices::openUrl(QUrl::fromLocalFile(path.left(path.lastIndexOf("/"))));
|
|
|
|
|
} else {
|
|
|
|
|
return QDesktopServices::openUrl(QUrl::fromLocalFile(path));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
QString FileUtils::chineseSubString(const std::string &myStr, int start, int length)
|
|
|
|
|
{
|
|
|
|
|
std::string afterSub = "";
|
|
|
|
|
//越界保护
|
|
|
|
|
if(start < 0 || length < 0){
|
|
|
|
|
return " ";
|
|
|
|
|
}
|
|
|
|
|
if (length >= myStr.length()) {
|
|
|
|
|
return QString::fromStdString(myStr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString sub = "";
|
|
|
|
|
QFont ft(QApplication::font().family(),QApplication::font().pointSize());
|
|
|
|
|
QFontMetrics fm (ft);
|
|
|
|
|
|
|
|
|
|
if (start + length <= myStr.length()) {
|
|
|
|
|
afterSub = myStr.substr(start,length); //截取
|
|
|
|
|
sub = QString::fromStdString(afterSub); //转QString
|
|
|
|
|
|
|
|
|
|
if(start + length < myStr.length()){
|
|
|
|
|
sub.replace(sub.length()-3,3,"..."); //替换后三位
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
sub.append("..."); //直接加
|
|
|
|
|
}
|
|
|
|
|
sub = fm.elidedText(sub, Qt::ElideRight, 2*LABEL_MAX_WIDTH); //超过两行则省略
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
int newStart = myStr.length()-length; //更新截取位置
|
|
|
|
|
afterSub = myStr.substr(newStart, length);
|
|
|
|
|
sub=QString::fromStdString(afterSub);
|
|
|
|
|
|
|
|
|
|
sub.replace(0,3,"...").append("...");
|
|
|
|
|
sub = fm.elidedText(sub, Qt::ElideLeft, 2*LABEL_MAX_WIDTH);
|
|
|
|
|
}
|
|
|
|
|
return sub;
|
|
|
|
|
}
|