84 lines
3.3 KiB
C++
84 lines
3.3 KiB
C++
/*
|
|
* 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>
|
|
*
|
|
*/
|
|
#ifndef FILEUTILS_H
|
|
#define FILEUTILS_H
|
|
#include <QString>
|
|
#include <QIcon>
|
|
#include <QMap>
|
|
#include <QMimeType>
|
|
#include <QLabel>
|
|
#include "libsearch_global.h"
|
|
|
|
namespace UkuiSearch {
|
|
class LIBSEARCH_EXPORT FileUtils {
|
|
public:
|
|
static QString getHtmlText(const QString &text, const QString &keyword);
|
|
static QString setAllTextBold(const QString &name);
|
|
static QString wrapData(QLabel *p_label, const QString &text);
|
|
static std::string makeDocUterm(QString path);
|
|
static QIcon getFileIcon(const QString &uri, bool checkValid = true);
|
|
static QIcon getAppIcon(const QString &path);
|
|
static QIcon getSettingIcon(const QString &setting, const bool is_white);
|
|
static QIcon getSettingIcon();
|
|
|
|
static QString getFileName(const QString &uri);
|
|
static QString getAppName(const QString &path);
|
|
static QString getSettingName(const QString &setting);
|
|
//A is or under B
|
|
static bool isOrUnder(QString pathA, QString pathB);
|
|
static QStringList findMultiToneWords(const QString &hanzi);
|
|
|
|
//parse text,docx.....
|
|
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);
|
|
|
|
static int openFile(QString &path, bool openInDir = false);
|
|
static bool copyPath(QString &path);
|
|
static QString escapeHtml(const QString &str);
|
|
static QString chineseSubString(const std::string &myStr, uint start, uint length);
|
|
static QIcon iconFromTheme(const QString &name, const QIcon &iconDefault);
|
|
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);
|
|
static bool isOcrSupportSize(QString path);
|
|
|
|
private:
|
|
FileUtils();
|
|
};
|
|
|
|
}
|
|
|
|
#endif // FILEUTILS_H
|