2021-12-28 15:56:41 +08:00
|
|
|
#ifndef SEARCHCONTROLLERPRIVATE_H
|
|
|
|
#define SEARCHCONTROLLERPRIVATE_H
|
|
|
|
|
|
|
|
#include <QMutex>
|
|
|
|
#include "search-controller.h"
|
|
|
|
namespace UkuiSearch {
|
|
|
|
|
|
|
|
class SearchControllerPrivate
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit SearchControllerPrivate(SearchController *parent);
|
|
|
|
~SearchControllerPrivate();
|
|
|
|
size_t refreshSearchId();
|
|
|
|
DataQueue<ResultItem>* refreshDataqueue();
|
|
|
|
DataQueue<ResultItem>* initDataQueue();
|
|
|
|
|
|
|
|
void addSearchDir(QString &path);
|
|
|
|
void setRecurse(bool recurse = true);
|
|
|
|
void addKeyword(QString &keyword);
|
|
|
|
void setActiveKeywordSegmentation(bool active);
|
|
|
|
void addFileLabel(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
|
|
|
|
|
|
|
size_t getCurrentSearchId();
|
|
|
|
DataQueue<ResultItem>* getDataQueue();
|
|
|
|
bool beginSearchIdCheck(size_t searchId);
|
|
|
|
void finishSearchIdCheck();
|
|
|
|
void stop();
|
|
|
|
QStringList getSearchDir();
|
|
|
|
bool isRecurse();
|
|
|
|
QStringList getKeyword();
|
|
|
|
bool isKeywordSegmentationActived();
|
|
|
|
QStringList getFileLabel();
|
2022-01-11 16:20:40 +08:00
|
|
|
bool isSearchFileOnly();
|
|
|
|
bool isSearchDirOnly();
|
2021-12-28 15:56:41 +08:00
|
|
|
|
|
|
|
private:
|
2022-01-11 16:20:40 +08:00
|
|
|
void copyData();
|
2022-01-12 18:01:59 +08:00
|
|
|
//TODO: 这里是否可以改为字节对齐的写法?
|
2021-12-28 15:56:41 +08:00
|
|
|
DataQueue<ResultItem>* m_dataQueue = nullptr ;
|
2022-01-12 18:01:59 +08:00
|
|
|
std::shared_ptr<DataQueue<ResultItem>> m_sharedDataueue = nullptr;
|
2021-12-28 15:56:41 +08:00
|
|
|
size_t m_searchId = 0;
|
|
|
|
QMutex m_searchIdMutex;
|
2022-01-11 16:20:40 +08:00
|
|
|
SearchController *q = nullptr;
|
|
|
|
std::shared_ptr<SearchController> m_formerController = nullptr;
|
2021-12-28 15:56:41 +08:00
|
|
|
|
|
|
|
QStringList m_keywords;
|
|
|
|
QStringList m_searchDirs;
|
|
|
|
QStringList m_FileLabels;
|
|
|
|
bool m_recurse = true;
|
|
|
|
bool m_activeKeywordSegmentation = false;
|
2022-01-11 16:20:40 +08:00
|
|
|
bool m_onlySearchFile = false;
|
|
|
|
bool m_onlySearchDir = false;
|
2021-12-28 15:56:41 +08:00
|
|
|
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // SEARCHCONTROLLERPRIVATE_H
|