ukui-search/libsearch/index/batch-indexer.h

106 lines
2.9 KiB
C
Raw Normal View History

2022-10-26 18:01:40 +08:00
/*
* Copyright (C) 2022, 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>
*
*/
#ifndef FIRSTRUNINDEXER_H
#define FIRSTRUNINDEXER_H
#include <QRunnable>
#include <QObject>
#include <QAtomicInt>
#include "common.h"
namespace UkuiSearch {
class BatchIndexer : public QObject, public QRunnable
2022-10-26 18:01:40 +08:00
{
Q_OBJECT
public:
/**
* @brief The WorkMode enum
* Update
* Add
* Rebuild
*/
enum WorkMode{
Update = 0,
Add = 1,
Rebuild
};
Q_ENUM(WorkMode)
2022-10-26 18:01:40 +08:00
/**
* @brief The Target enum
*
* All
* Basic
* Content
*/
enum Target{
None = 0,
Basic = 1u << 0,
Content = 1u << 1,
Ocr = 1u << 2,
2024-04-17 17:43:50 +08:00
Ai = 1u << 3,
All = Basic | Content | Ocr | Ai
2022-10-26 18:01:40 +08:00
};
Q_ENUM(Target)
2022-10-26 18:01:40 +08:00
Q_DECLARE_FLAGS(Targets, Target)
Q_FLAG(Targets)
2022-10-26 18:01:40 +08:00
BatchIndexer(const QStringList& folders,
const QStringList& blackList,
QAtomicInt& indexStop,
QAtomicInt& contentIndexStop,
QAtomicInt& contentIndexOcrStop,
2024-04-17 17:43:50 +08:00
QAtomicInt& aiIndexStop,
WorkMode mode = WorkMode::Update,
Targets target = Target::All);
2022-10-26 18:01:40 +08:00
void run() override;
Q_SIGNALS:
void progress(IndexType type, uint all, uint finished);
void basicIndexStart(WorkMode);
void contentIndexStart(WorkMode);
void ocrContentIndexStart(WorkMode);
2024-04-17 17:43:50 +08:00
void aiIndexStart(WorkMode);
void basicIndexDone(WorkMode);
void contentIndexDone(WorkMode);
void ocrContentIndexDone(WorkMode);
2024-04-17 17:43:50 +08:00
void aiIndexDone(WorkMode);
void done(WorkMode, Targets);
2022-10-26 18:01:40 +08:00
private:
void fetch();
void basicIndex();
void contentIndex();
void ocrIndex();
2024-04-17 17:43:50 +08:00
void aiIndex();
2022-10-26 18:01:40 +08:00
QStringList m_folders;
QStringList m_blackList;
QAtomicInt *m_indexStop = nullptr;
QAtomicInt *m_contentIndexStop = nullptr;
QAtomicInt *m_contentIndexOcrStop = nullptr;
2024-04-17 17:43:50 +08:00
QAtomicInt *m_aiIndexStop = nullptr;
WorkMode m_mode;
Targets m_target;
QStringList m_cache;
2022-10-26 18:01:40 +08:00
};
Q_DECLARE_OPERATORS_FOR_FLAGS(BatchIndexer::Targets)
2022-10-26 18:01:40 +08:00
}
#endif // FIRSTRUNINDEXER_H