ukui-search/libsearch/searchinterface/ukui-search-task-private.h

72 lines
2.3 KiB
C
Raw Normal View History

2024-01-30 14:35:04 +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 UKUISEARCHPRIVATE_H
#define UKUISEARCHPRIVATE_H
#include "ukui-search-task.h"
#include <QThreadPool>
#include <QMutex>
2022-01-11 16:20:40 +08:00
#include <memory>
#include <QUuid>
2021-12-28 15:56:41 +08:00
#include "data-queue.h"
#include "search-controller.h"
#include "search-task-plugin-iface.h"
2021-12-28 15:56:41 +08:00
namespace UkuiSearch {
class UkuiSearchTaskPrivate : public QObject
{
Q_OBJECT
public:
explicit UkuiSearchTaskPrivate(UkuiSearchTask* parent);
~UkuiSearchTaskPrivate();
DataQueue<ResultItem>* init();
void addSearchDir(const QString &path);
2021-12-28 15:56:41 +08:00
void setRecurse(bool recurse = true);
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);
void initSearchPlugin(SearchType searchType, const QString& customSearchType = QString());
bool setResultDataType(SearchType searchType, ResultDataTypes dataType);
bool setCustomResultDataType(QString customSearchType, QStringList dataType);
void clearAllConditions();
void clearKeyWords();
void clearSearchDir();
void clearFileLabel();
void setPagination(unsigned int first, unsigned int maxResults);
size_t startSearch(SearchType searchtype, const QString& customSearchType = QString());
2021-12-28 15:56:41 +08:00
void stop();
private:
2022-01-11 16:20:40 +08:00
std::shared_ptr<SearchController> m_searchCotroller = nullptr;
2021-12-28 15:56:41 +08:00
size_t m_searchId = 0;
UkuiSearchTask* q = nullptr;
QUuid m_uuid;
2021-12-28 15:56:41 +08:00
Q_SIGNALS:
void searchFinished(size_t searchId);
void searchError(size_t searchId, QString msg);
2021-12-28 15:56:41 +08:00
};
}
#endif // UKUISEARCHPRIVATE_H