2021-12-28 15:56:41 +08:00
|
|
|
#ifndef UKUISEARCH_H
|
|
|
|
#define UKUISEARCH_H
|
|
|
|
|
|
|
|
#include "result-item.h"
|
|
|
|
#include "data-queue.h"
|
|
|
|
#include "common-defines.h"
|
|
|
|
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);
|
|
|
|
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);
|
2022-01-24 09:44:42 +08:00
|
|
|
void initSearchPlugin(SearchType searchType);
|
2022-06-13 13:38:47 +08:00
|
|
|
/**
|
|
|
|
* @brief setResultDataType
|
|
|
|
* @param searchType
|
|
|
|
* @param dataType
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
bool setResultDataType(SearchType searchType, UkuiSearch::ResultDataTypes dataType);
|
|
|
|
bool setCustomResultDataType(QString customSearchType, QStringList dataType);
|
|
|
|
|
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
|
|
|
void setPagination(unsigned int first, unsigned int maxResults);
|
|
|
|
|
2022-01-12 18:01:59 +08:00
|
|
|
size_t startSearch(SearchType searchtype, QString customSearchType = QString());
|
2021-12-28 15:56:41 +08:00
|
|
|
void stop();
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
void searchFinished(size_t searchId);
|
2022-04-26 10:43:02 +08:00
|
|
|
void searchError(size_t searchId, QString msg);
|
2021-12-28 15:56:41 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
UkuiSearchTaskPrivate* d = nullptr;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // UKUISEARCH_H
|