Baloo

filecontentindexer.h
1/*
2 SPDX-FileCopyrightText: 2015 Vishesh Handa <vhanda@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.1-or-later
5*/
6
7#ifndef BALOO_FILECONTENTINDEXER_H
8#define BALOO_FILECONTENTINDEXER_H
9
10#include <QRunnable>
11#include <QObject>
12#include <QAtomicInt>
13#include <QStringList>
14
15#include <QDBusServiceWatcher>
16#include <QDBusMessage>
17
18namespace Baloo {
19
20class FileContentIndexerProvider;
21class TimeEstimator;
22
23class FileContentIndexer : public QObject, public QRunnable
24{
26 Q_CLASSINFO("D-Bus Interface", "org.kde.baloo.fileindexer")
27
28 Q_PROPERTY(QString currentFile READ currentFile NOTIFY startedIndexingFile)
29public:
30 FileContentIndexer(uint batchSize, FileContentIndexerProvider *provider, TimeEstimator &timeEstimator, QObject *parent = nullptr);
31
32 QString currentFile() { return m_currentFile; }
33
34 void run() override;
35
36 void quit() {
37 m_stop.storeRelaxed(true);
38 }
39
40public Q_SLOTS:
41 Q_SCRIPTABLE void registerMonitor(const QDBusMessage& message);
42 Q_SCRIPTABLE void unregisterMonitor(const QDBusMessage& message);
43
45 Q_SCRIPTABLE void startedIndexingFile(const QString& filePath);
46 Q_SCRIPTABLE void finishedIndexingFile(const QString& filePath);
47 Q_SCRIPTABLE void committedBatch(uint time, uint batchSize);
48
49 void done();
50
51private Q_SLOTS:
52 void monitorClosed(const QString& service);
53 void slotStartedIndexingFile(const QString &filePath);
54 void slotFinishedIndexingFile(const QString &filePath);
55
56private:
57 uint m_batchSize;
58 FileContentIndexerProvider *m_provider;
59
60 QAtomicInt m_stop;
61
62 QString m_currentFile;
63 TimeEstimator &m_timeEstimator;
64
65 QStringList m_registeredMonitors;
66 QDBusServiceWatcher m_monitorWatcher;
67
68 QString m_extractorPath;
69};
70
71}
72
73#endif // BALOO_FILECONTENTINDEXER_H
Implements storage for docIds without any associated data Instantiated for:
Definition coding.cpp:11
QObject(QObject *parent)
Q_CLASSINFO(Name, Value)
Q_OBJECTQ_OBJECT
Q_PROPERTY(...)
Q_SIGNALSQ_SIGNALS
Q_SLOTSQ_SLOTS
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Apr 4 2025 12:03:41 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.