ukui-search/libsearch/index/index-updater.h

48 lines
1.2 KiB
C
Raw Normal View History

2022-06-18 10:46:14 +08:00
/*
2022-10-26 18:01:40 +08:00
* Copyright (C) 2022, KylinSoft Co., Ltd.
2022-06-18 10:46:14 +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>
2022-06-18 10:46:14 +08:00
*
*/
2022-10-26 18:01:40 +08:00
#ifndef INDEXUPDATER_H
#define INDEXUPDATER_H
2022-06-18 10:46:14 +08:00
2022-10-26 18:01:40 +08:00
#include <QRunnable>
#include <QObject>
#include <QVector>
#include <QAtomicInt>
#include "pending-file.h"
2022-06-18 10:46:14 +08:00
namespace UkuiSearch {
2022-10-26 18:01:40 +08:00
class IndexUpdater : public QObject, public QRunnable
{
Q_OBJECT
2022-06-18 10:46:14 +08:00
public:
2022-10-26 18:01:40 +08:00
explicit IndexUpdater(const QVector<PendingFile>& files, QAtomicInt& stop);
void run() override;
Q_SIGNALS:
void done();
2022-06-18 10:46:14 +08:00
private:
2022-10-26 18:01:40 +08:00
void UpdateIndex();
QVector<PendingFile> m_cache;
QAtomicInt *m_stop = nullptr;
2022-06-18 10:46:14 +08:00
};
}
2022-10-26 18:01:40 +08:00
#endif // INDEXUPDATER_H