2021-01-29 11:43:07 +08:00
|
|
|
/*
|
2022-10-26 18:01:40 +08:00
|
|
|
* Copyright (C) 2022, KylinSoft Co., Ltd.
|
2021-01-29 11:43:07 +08:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
2022-10-26 18:01:40 +08:00
|
|
|
* Authors: iaom <zhangpengfei@kylinos.cn>
|
2021-01-29 11:43:07 +08:00
|
|
|
*
|
|
|
|
*/
|
2022-10-26 18:01:40 +08:00
|
|
|
#ifndef INDEXUPDATER_H
|
|
|
|
#define INDEXUPDATER_H
|
2020-12-30 15:31:36 +08:00
|
|
|
|
2022-10-26 18:01:40 +08:00
|
|
|
#include <QRunnable>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QVector>
|
|
|
|
#include <QAtomicInt>
|
|
|
|
#include "pending-file.h"
|
2021-12-14 14:43:35 +08:00
|
|
|
namespace UkuiSearch {
|
2022-10-26 18:01:40 +08:00
|
|
|
|
|
|
|
class IndexUpdater : public QObject, public QRunnable
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2020-12-30 15:31:36 +08:00
|
|
|
public:
|
2024-01-26 14:31:56 +08:00
|
|
|
explicit IndexUpdater(const QVector<PendingFile>& files, QAtomicInt& indexstop, QAtomicInt& contentIndexstop);
|
2022-10-26 18:01:40 +08:00
|
|
|
void run() override;
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
void done();
|
|
|
|
|
2020-12-30 15:31:36 +08:00
|
|
|
private:
|
2024-01-26 14:31:56 +08:00
|
|
|
void updateIndex();
|
2022-10-26 18:01:40 +08:00
|
|
|
|
|
|
|
QVector<PendingFile> m_cache;
|
2024-01-26 14:31:56 +08:00
|
|
|
QAtomicInt *m_contentIndexStop = nullptr;
|
|
|
|
QAtomicInt *m_indexStop = nullptr;
|
2020-12-30 15:31:36 +08:00
|
|
|
};
|
2021-04-30 16:28:50 +08:00
|
|
|
}
|
2022-10-26 18:01:40 +08:00
|
|
|
#endif // INDEXUPDATER_H
|