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
|
|
|
#ifndef FILEUTILS_H
|
|
|
|
#define FILEUTILS_H
|
|
|
|
#include <QString>
|
2020-12-24 11:06:19 +08:00
|
|
|
#include <QIcon>
|
2020-12-26 12:45:28 +08:00
|
|
|
#include <QMap>
|
2021-03-04 14:10:00 +08:00
|
|
|
#include <QMimeType>
|
2021-08-26 11:22:10 +08:00
|
|
|
#include <QLabel>
|
2020-12-30 14:42:04 +08:00
|
|
|
#include "libsearch_global.h"
|
2022-04-13 13:46:30 +08:00
|
|
|
|
2021-12-14 14:43:35 +08:00
|
|
|
namespace UkuiSearch {
|
2021-04-26 15:06:47 +08:00
|
|
|
class LIBSEARCH_EXPORT FileUtils {
|
2020-12-21 18:50:54 +08:00
|
|
|
public:
|
2021-12-17 17:39:37 +08:00
|
|
|
static QString getHtmlText(const QString &text, const QString &keyword);
|
|
|
|
static QString setAllTextBold(const QString &name);
|
2021-08-26 11:22:10 +08:00
|
|
|
static QString wrapData(QLabel *p_label, const QString &text);
|
2023-07-18 16:18:58 +08:00
|
|
|
static qreal horizontalAdvanceContainsKeyword(const QString &content, const QString &keyword);
|
2021-12-17 17:39:37 +08:00
|
|
|
static std::string makeDocUterm(QString path);
|
|
|
|
static QIcon getFileIcon(const QString &uri, bool checkValid = true);
|
2021-11-30 17:21:06 +08:00
|
|
|
static QIcon getSettingIcon();
|
2020-12-24 11:06:19 +08:00
|
|
|
|
2021-12-17 17:39:37 +08:00
|
|
|
static QString getFileName(const QString &uri);
|
|
|
|
static QString getAppName(const QString &path);
|
|
|
|
static QString getSettingName(const QString &setting);
|
2021-07-06 16:53:32 +08:00
|
|
|
//A is or under B
|
|
|
|
static bool isOrUnder(QString pathA, QString pathB);
|
2021-12-17 17:39:37 +08:00
|
|
|
static QStringList findMultiToneWords(const QString &hanzi);
|
2020-12-26 12:45:28 +08:00
|
|
|
|
2020-12-29 20:18:36 +08:00
|
|
|
//parse text,docx.....
|
2022-10-26 18:01:40 +08:00
|
|
|
static QMimeType getMimetype(const QString &path);
|
|
|
|
static void getDocxTextContent(const QString &path, QString &textcontent);
|
|
|
|
static void getPptxTextContent(const QString &path, QString &textcontent);
|
|
|
|
static void getXlsxTextContent(const QString &path, QString &textcontent);
|
|
|
|
static void getPdfTextContent(const QString &path, QString &textcontent);
|
|
|
|
static void getTxtContent(const QString &path, QString &textcontent);
|
|
|
|
static void getUOFTextContent(const QString &path, QString &textContent);
|
|
|
|
static void getUOF2TextContent(const QString &path, QString &textContent);
|
|
|
|
static void getUOF2PPTContent(const QString &path, QString &textContent);
|
|
|
|
static void getOFDTextContent(const QString &path, QString &textContent);
|
2021-05-27 21:10:11 +08:00
|
|
|
|
2021-09-23 10:31:13 +08:00
|
|
|
static int openFile(QString &path, bool openInDir = false);
|
2021-05-27 21:10:11 +08:00
|
|
|
static bool copyPath(QString &path);
|
2021-12-17 17:39:37 +08:00
|
|
|
static QString escapeHtml(const QString &str);
|
2023-07-27 13:59:21 +08:00
|
|
|
static QString getSnippet(const std::string &myStr, uint start, const QString &keyword);
|
2023-10-27 15:06:55 +08:00
|
|
|
static QString getSnippetWithoutKeyword(const QString &content, int lineCount);
|
2022-10-26 18:01:40 +08:00
|
|
|
static bool isOpenXMLFileEncrypted(const QString &path);
|
|
|
|
/**
|
|
|
|
* @brief isEncrypedOrUnsupport
|
|
|
|
* @param path
|
|
|
|
* @param suffix
|
|
|
|
* @return true if file(path) is not a support format for content index.
|
|
|
|
*/
|
|
|
|
static bool isEncrypedOrUnsupport(const QString &path, const QString &suffix);
|
2022-04-13 13:46:30 +08:00
|
|
|
static bool isOcrSupportSize(QString path);
|
2022-05-09 14:47:40 +08:00
|
|
|
|
2020-12-21 18:50:54 +08:00
|
|
|
private:
|
|
|
|
FileUtils();
|
|
|
|
};
|
|
|
|
|
2021-04-30 16:28:50 +08:00
|
|
|
}
|
|
|
|
|
2020-12-21 18:50:54 +08:00
|
|
|
#endif // FILEUTILS_H
|