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();
|
2024-08-19 10:57:18 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief init
|
|
|
|
|
* 初始化搜索结果队列,必须在搜索之前调用
|
|
|
|
|
* @return 返回一个用于接收搜索结果的队列指针,用户无需析构
|
|
|
|
|
*/
|
2021-12-28 15:56:41 +08:00
|
|
|
|
DataQueue<ResultItem>* init();
|
2024-08-19 10:57:18 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief addSearchDir
|
|
|
|
|
* 增加一个搜索目录作为搜索范围(文件)
|
|
|
|
|
* @param path 要添加的目录
|
|
|
|
|
*/
|
2023-03-07 17:33:08 +08:00
|
|
|
|
void addSearchDir(const QString &path);
|
2024-08-19 10:57:18 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief setRecurse
|
|
|
|
|
* 设置是否执行递归搜索(文件),默认为递归搜索
|
|
|
|
|
* @param recurse 是否递归
|
|
|
|
|
*/
|
2021-12-28 15:56:41 +08:00
|
|
|
|
void setRecurse(bool recurse = true);
|
2024-08-19 10:57:18 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief addKeyword
|
|
|
|
|
* 增加一个搜索关键词
|
|
|
|
|
* @param keyword 关键词
|
|
|
|
|
*/
|
2023-03-07 17:33:08 +08:00
|
|
|
|
void addKeyword(const QString &keyword);
|
2024-04-25 10:59:18 +08:00
|
|
|
|
/**
|
|
|
|
|
* @brief setMatchAllIfNoKeyword
|
2024-08-19 10:57:18 +08:00
|
|
|
|
* 是否在未添加关键词的情况下进行所有文件名匹配
|
2024-04-25 10:59:18 +08:00
|
|
|
|
* @param matchAll
|
|
|
|
|
*/
|
|
|
|
|
void setMatchAllIfNoKeyword(bool matchAll);
|
2024-08-19 10:57:18 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief addFileLabel
|
|
|
|
|
* 增加一个peony文件标签作为搜索条件
|
|
|
|
|
* @param label 文件标签
|
|
|
|
|
*/
|
2023-03-07 17:33:08 +08:00
|
|
|
|
void addFileLabel(const QString &label);
|
2024-08-19 10:57:18 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief setOnlySearchFile
|
|
|
|
|
* 设置仅搜索文件(文件搜索)
|
|
|
|
|
* @param onlySearchFile
|
|
|
|
|
*/
|
2022-01-11 16:20:40 +08:00
|
|
|
|
void setOnlySearchFile(bool onlySearchFile);
|
2024-08-19 10:57:18 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief setOnlySearchDir
|
|
|
|
|
* 设置仅搜索目录(文件搜索)
|
|
|
|
|
* @param onlySearchDir
|
|
|
|
|
*/
|
2022-01-11 16:20:40 +08:00
|
|
|
|
void setOnlySearchDir(bool onlySearchDir);
|
2024-08-19 10:57:18 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief setSearchOnlineApps
|
|
|
|
|
* 设置是否搜索应用商店中已上架但未安装的应用
|
|
|
|
|
* @param searchOnlineApps
|
|
|
|
|
*/
|
2021-12-28 15:56:41 +08:00
|
|
|
|
void setSearchOnlineApps(bool searchOnlineApps);
|
2023-07-06 15:27:23 +08:00
|
|
|
|
/**
|
|
|
|
|
* @brief setSearchHiddenFiles
|
2024-08-19 10:57:18 +08:00
|
|
|
|
* 是否搜索隐藏文件,仅支持文件名搜索
|
2023-07-06 15:27:23 +08:00
|
|
|
|
* @param searchHiddenFiles
|
|
|
|
|
*/
|
|
|
|
|
void setSearchHiddenFiles(bool searchHiddenFiles);
|
2023-03-15 16:39:38 +08:00
|
|
|
|
/**
|
2024-08-19 10:57:18 +08:00
|
|
|
|
* @brief initSearchPlugin
|
|
|
|
|
* 初始化搜索插件
|
|
|
|
|
* @param searchType 搜索插件枚举
|
|
|
|
|
* @param customSearchType 当searchType为Custom时,传入用户自定义插件类型名称
|
2023-03-15 16:39:38 +08:00
|
|
|
|
*/
|
|
|
|
|
void initSearchPlugin(SearchProperty::SearchType searchType, const QString& customSearchType = QString());
|
2022-06-13 13:38:47 +08:00
|
|
|
|
/**
|
|
|
|
|
* @brief setResultDataType
|
2024-08-19 10:57:18 +08:00
|
|
|
|
* 设置某个搜索插件searchType的搜索结果数据类型
|
|
|
|
|
* @param searchType 搜索插件枚举
|
|
|
|
|
* @param searchResultProperties 指定的结果数据类型列表
|
2022-06-13 13:38:47 +08:00
|
|
|
|
*/
|
2023-03-15 16:39:38 +08:00
|
|
|
|
bool setResultProperties(SearchProperty::SearchType searchType, SearchResultProperties searchResultProperties);
|
2024-08-19 10:57:18 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief setCustomResultDataType
|
|
|
|
|
* 当initSearchPlugin中设置的SearchType为custom时,可以用此接口设置对应的返回数据类型
|
|
|
|
|
* @param customSearchType 自定义插件名称
|
|
|
|
|
* @param dataType 数据类型列表
|
|
|
|
|
*/
|
2023-03-15 16:39:38 +08:00
|
|
|
|
void setCustomResultDataType(QString customSearchType, QStringList dataType);
|
2022-06-13 13:38:47 +08:00
|
|
|
|
|
2024-08-19 10:57:18 +08:00
|
|
|
|
/**
|
|
|
|
|
* @brief clearAllConditions
|
|
|
|
|
* 清空所有搜索条件
|
|
|
|
|
*/
|
2022-03-25 09:40:56 +08:00
|
|
|
|
void clearAllConditions();
|
2024-08-19 10:57:18 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief clearKeyWords
|
|
|
|
|
* 清空关键词条件
|
|
|
|
|
*/
|
2022-03-25 09:40:56 +08:00
|
|
|
|
void clearKeyWords();
|
2024-08-19 10:57:18 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief clearSearchDir
|
|
|
|
|
* 清空搜索目录条件
|
|
|
|
|
*/
|
2022-03-25 09:40:56 +08:00
|
|
|
|
void clearSearchDir();
|
2024-08-19 10:57:18 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief clearFileLabel
|
|
|
|
|
* 清空文件标签条件
|
|
|
|
|
*/
|
2022-04-28 15:49:51 +08:00
|
|
|
|
void clearFileLabel();
|
2023-05-19 15:15:28 +08:00
|
|
|
|
/**
|
2024-08-19 10:57:18 +08:00
|
|
|
|
* @brief setMaxResultNum
|
|
|
|
|
* 设置最大结果数量
|
2023-05-19 15:15:28 +08:00
|
|
|
|
* @param maxResults
|
|
|
|
|
*/
|
2023-03-15 16:39:38 +08:00
|
|
|
|
void setMaxResultNum(unsigned int maxResults = 99999999);
|
2023-05-19 15:15:28 +08:00
|
|
|
|
/**
|
2024-08-19 10:57:18 +08:00
|
|
|
|
* @brief setInformNum
|
|
|
|
|
* 设置搜索结果提醒数量,每当搜索结果数量达到@param num时,会发送reachInformNum信号然后重新开始计数
|
2023-05-19 15:15:28 +08:00
|
|
|
|
* @param num
|
|
|
|
|
*/
|
|
|
|
|
void setInformNum(int num);
|
2022-03-25 09:40:56 +08:00
|
|
|
|
|
2023-05-19 15:15:28 +08:00
|
|
|
|
/**
|
2024-08-19 10:57:18 +08:00
|
|
|
|
* @brief startSearch
|
|
|
|
|
* 启动搜索
|
2023-05-19 15:15:28 +08:00
|
|
|
|
* @param searchtype 搜索插件
|
|
|
|
|
* @param customSearchType 外部插件类型,当searchType为Custom时可用
|
2024-08-19 10:57:18 +08:00
|
|
|
|
* @return 返回一个代表本次搜索的唯一id
|
2023-05-19 15:15:28 +08:00
|
|
|
|
*/
|
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 查询某个插件是否处于搜索中
|
2024-08-19 10:57:18 +08:00
|
|
|
|
* @return true表示正在搜索,false表示未在搜索
|
2023-05-19 15:15:28 +08:00
|
|
|
|
*/
|
|
|
|
|
bool isSearching(SearchProperty::SearchType searchtype, QString customSearchType = {});
|
2021-12-28 15:56:41 +08:00
|
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
2024-08-19 10:57:18 +08:00
|
|
|
|
/**
|
|
|
|
|
* @brief searchFinished
|
|
|
|
|
* 搜索完成时发送
|
|
|
|
|
* @param searchId 此次搜索的唯一id
|
|
|
|
|
*/
|
2021-12-28 15:56:41 +08:00
|
|
|
|
void searchFinished(size_t searchId);
|
2024-08-19 10:57:18 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief searchError
|
|
|
|
|
* 搜索发生错误时发送
|
|
|
|
|
* @param searchId 此次搜索的唯一id
|
|
|
|
|
* @param msg 错误信息
|
|
|
|
|
*/
|
2022-04-26 10:43:02 +08:00
|
|
|
|
void searchError(size_t searchId, QString msg);
|
2024-08-19 10:57:18 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief reachInformNum
|
|
|
|
|
* 配合setInformNum使用,当搜索结果数量达到设置值时发送
|
|
|
|
|
*/
|
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
|