2021-12-28 15:56:41 +08:00
|
|
|
|
#ifndef SEARCHCONTROLLER_H
|
|
|
|
|
#define SEARCHCONTROLLER_H
|
|
|
|
|
|
|
|
|
|
#include <QStringList>
|
2022-01-11 16:20:40 +08:00
|
|
|
|
#include <memory>
|
2021-12-28 15:56:41 +08:00
|
|
|
|
#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
|
|
|
|
//todo: url parser?
|
|
|
|
|
namespace UkuiSearch {
|
|
|
|
|
class UkuiSearchTask;
|
|
|
|
|
class ResultItem;
|
|
|
|
|
class SearchControllerPrivate;
|
2022-01-12 18:01:59 +08:00
|
|
|
|
/*
|
|
|
|
|
*搜索控制,用于传递搜索条件,搜索唯一ID,以及管理队列等。
|
|
|
|
|
*/
|
2021-12-28 15:56:41 +08:00
|
|
|
|
class SearchController
|
|
|
|
|
{
|
|
|
|
|
friend class SearchControllerPrivate;
|
|
|
|
|
public:
|
2022-01-11 16:20:40 +08:00
|
|
|
|
explicit SearchController(std::shared_ptr<SearchController> parent = nullptr);
|
2022-01-24 09:44:42 +08:00
|
|
|
|
SearchController(SearchController &) = delete;
|
|
|
|
|
SearchController &operator =(const SearchController &) = delete;
|
2021-12-28 15:56:41 +08:00
|
|
|
|
~SearchController();
|
|
|
|
|
DataQueue<ResultItem>* refreshDataqueue();
|
|
|
|
|
size_t refreshSearchId();
|
|
|
|
|
DataQueue<ResultItem>* initDataQueue();
|
2021-12-31 17:38:02 +08:00
|
|
|
|
void stop();
|
2021-12-28 15:56:41 +08:00
|
|
|
|
|
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);
|
2021-12-28 15:56:41 +08:00
|
|
|
|
void setActiveKeywordSegmentation(bool active);
|
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);
|
2022-06-13 13:38:47 +08:00
|
|
|
|
void setSearchOnlineApps(bool searchOnlineApps);
|
2023-05-19 15:15:28 +08:00
|
|
|
|
void setMaxResultNum(unsigned int maxResults);
|
|
|
|
|
void setInformNum(int num = 0);
|
2021-12-31 17:38:02 +08:00
|
|
|
|
//以上方法插件请不要调用
|
2021-12-28 15:56:41 +08:00
|
|
|
|
|
2021-12-31 17:38:02 +08:00
|
|
|
|
//以下方法插件可以调用
|
2021-12-28 15:56:41 +08:00
|
|
|
|
size_t getCurrentSearchId();
|
|
|
|
|
DataQueue<ResultItem>* getDataQueue();
|
2023-03-15 16:39:38 +08:00
|
|
|
|
SearchResultProperties getResultProperties(SearchProperty::SearchType searchType);
|
2022-06-13 13:38:47 +08:00
|
|
|
|
QStringList getCustomResultDataType(QString customSearchType);
|
2021-12-28 15:56:41 +08:00
|
|
|
|
bool beginSearchIdCheck(size_t searchId);
|
|
|
|
|
void finishSearchIdCheck();
|
2021-12-31 17:38:02 +08:00
|
|
|
|
|
2021-12-28 15:56:41 +08:00
|
|
|
|
QStringList getSearchDir();
|
|
|
|
|
bool isRecurse();
|
|
|
|
|
QStringList getKeyword();
|
|
|
|
|
bool isKeywordSegmentationActived();
|
|
|
|
|
QStringList getFileLabel();
|
2022-01-11 16:20:40 +08:00
|
|
|
|
bool isSearchFileOnly();
|
|
|
|
|
bool isSearchDirOnly();
|
2022-06-13 13:38:47 +08:00
|
|
|
|
bool isSearchOnlineApps();
|
2022-03-25 09:40:56 +08:00
|
|
|
|
void clearAllConditions();
|
|
|
|
|
void clearKeyWords();
|
|
|
|
|
void clearSearchDir();
|
2022-04-28 15:49:51 +08:00
|
|
|
|
void clearFileLabel();
|
2022-03-25 09:40:56 +08:00
|
|
|
|
|
|
|
|
|
unsigned int maxResults() const;
|
2023-05-19 15:15:28 +08:00
|
|
|
|
int informNum() const;
|
2022-03-25 09:40:56 +08:00
|
|
|
|
|
2023-03-15 16:39:38 +08:00
|
|
|
|
bool setResultProperties(SearchProperty::SearchType searchType, UkuiSearch::SearchResultProperties searchResultProperties);
|
|
|
|
|
void setCustomResultDataType(QString customSearchType, QStringList dataType);
|
2021-12-28 15:56:41 +08:00
|
|
|
|
private:
|
2022-01-11 16:20:40 +08:00
|
|
|
|
std::shared_ptr<SearchController> m_parent = nullptr;
|
|
|
|
|
SearchControllerPrivate *d = nullptr;
|
|
|
|
|
|
2021-12-28 15:56:41 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif // SEARCHCONTROLLER_H
|