2023-04-11 10:19:35 +08:00
|
|
|
|
/*
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2023, 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: iaom <zhangpengfei@kylinos.cn>
|
|
|
|
|
*/
|
2021-12-28 15:56:41 +08:00
|
|
|
|
#ifndef UKUISEARCH_H
|
|
|
|
|
#define UKUISEARCH_H
|
|
|
|
|
|
|
|
|
|
#include "result-item.h"
|
|
|
|
|
#include "data-queue.h"
|
2023-03-15 16:39:38 +08:00
|
|
|
|
#include "search-result-property.h"
|
2021-12-28 15:56:41 +08:00
|
|
|
|
namespace UkuiSearch {
|
|
|
|
|
class UkuiSearchTaskPrivate;
|
|
|
|
|
class UkuiSearchTask : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
explicit UkuiSearchTask(QObject *parent = nullptr);
|
|
|
|
|
~UkuiSearchTask();
|
|
|
|
|
DataQueue<ResultItem>* init();
|
2023-03-07 17:33:08 +08:00
|
|
|
|
void addSearchDir(const QString &path);
|
2021-12-28 15:56:41 +08:00
|
|
|
|
void setRecurse(bool recurse = true);
|
2023-03-07 17:33:08 +08:00
|
|
|
|
void addKeyword(const QString &keyword);
|
2024-04-25 10:59:18 +08:00
|
|
|
|
/**
|
|
|
|
|
* 是否在未添加关键词的情况下进行所有文件名匹配
|
|
|
|
|
* @brief setMatchAllIfNoKeyword
|
|
|
|
|
* @param matchAll
|
|
|
|
|
*/
|
|
|
|
|
void setMatchAllIfNoKeyword(bool matchAll);
|
2023-03-07 17:33:08 +08:00
|
|
|
|
void addFileLabel(const QString &label);
|
2022-01-11 16:20:40 +08:00
|
|
|
|
void setOnlySearchFile(bool onlySearchFile);
|
|
|
|
|
void setOnlySearchDir(bool onlySearchDir);
|
2021-12-28 15:56:41 +08:00
|
|
|
|
void setSearchOnlineApps(bool searchOnlineApps);
|
2023-07-06 15:27:23 +08:00
|
|
|
|
/**
|
|
|
|
|
* 是否搜索隐藏文件
|
|
|
|
|
* @brief setSearchHiddenFiles
|
|
|
|
|
* @param searchHiddenFiles
|
|
|
|
|
*/
|
|
|
|
|
void setSearchHiddenFiles(bool searchHiddenFiles);
|
2023-03-15 16:39:38 +08:00
|
|
|
|
/**
|
|
|
|
|
* @brief initSearchPlugin 初始化搜索插件
|
|
|
|
|
* @param searchType
|
|
|
|
|
* @param customSearchType
|
|
|
|
|
*/
|
|
|
|
|
void initSearchPlugin(SearchProperty::SearchType searchType, const QString& customSearchType = QString());
|
2022-06-13 13:38:47 +08:00
|
|
|
|
/**
|
|
|
|
|
* @brief setResultDataType
|
|
|
|
|
* @param searchType
|
|
|
|
|
* @param dataType
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2023-03-15 16:39:38 +08:00
|
|
|
|
bool setResultProperties(SearchProperty::SearchType searchType, SearchResultProperties searchResultProperties);
|
|
|
|
|
void setCustomResultDataType(QString customSearchType, QStringList dataType);
|
2022-06-13 13:38:47 +08:00
|
|
|
|
|
2022-03-25 09:40:56 +08:00
|
|
|
|
void clearAllConditions();
|
|
|
|
|
void clearKeyWords();
|
|
|
|
|
void clearSearchDir();
|
2022-04-28 15:49:51 +08:00
|
|
|
|
void clearFileLabel();
|
2023-05-19 15:15:28 +08:00
|
|
|
|
/**
|
|
|
|
|
* @brief setMaxResultNum 设置最大结果数量
|
|
|
|
|
* @param maxResults
|
|
|
|
|
*/
|
2023-03-15 16:39:38 +08:00
|
|
|
|
void setMaxResultNum(unsigned int maxResults = 99999999);
|
2023-05-19 15:15:28 +08:00
|
|
|
|
/**
|
|
|
|
|
* @brief setInformNum 设置搜索结果提醒数量
|
|
|
|
|
* @param num
|
|
|
|
|
*/
|
|
|
|
|
void setInformNum(int num);
|
2022-03-25 09:40:56 +08:00
|
|
|
|
|
2023-05-19 15:15:28 +08:00
|
|
|
|
/**
|
|
|
|
|
* @brief startSearch 启动搜索
|
|
|
|
|
* @param searchtype 搜索插件
|
|
|
|
|
* @param customSearchType 外部插件类型,当searchType为Custom时可用
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2023-03-15 16:39:38 +08:00
|
|
|
|
size_t startSearch(SearchProperty::SearchType searchtype, QString customSearchType = QString());
|
2023-05-19 15:15:28 +08:00
|
|
|
|
/**
|
|
|
|
|
* @brief stop 停止搜索
|
|
|
|
|
*/
|
2021-12-28 15:56:41 +08:00
|
|
|
|
void stop();
|
2023-05-19 15:15:28 +08:00
|
|
|
|
/**
|
|
|
|
|
* @brief isSearching 查询某个插件是否处于搜索中
|
|
|
|
|
*/
|
|
|
|
|
bool isSearching(SearchProperty::SearchType searchtype, QString customSearchType = {});
|
2021-12-28 15:56:41 +08:00
|
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
|
void searchFinished(size_t searchId);
|
2022-04-26 10:43:02 +08:00
|
|
|
|
void searchError(size_t searchId, QString msg);
|
2023-05-19 15:15:28 +08:00
|
|
|
|
void reachInformNum();
|
2021-12-28 15:56:41 +08:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
UkuiSearchTaskPrivate* d = nullptr;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif // UKUISEARCH_H
|