Baloo

commandpipe.h
1/*
2 This file is part of the KDE Baloo Project
3 SPDX-FileCopyrightText: 2021 Stefan BrĂ¼ns <stefan.bruens@rwth-aachen.de>
4
5 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
6*/
7
8#ifndef COMMANDPIPE_H
9#define COMMANDPIPE_H
10
11#include <QDataStream>
12#include <QObject>
13
14class QIODevice;
15
16namespace Baloo {
17namespace Private {
18
19/**
20 * Bidirectional communication pipe
21 *
22 */
23class ControllerPipe : public QObject
24{
26
27public:
29
30 void processIds(const QVector<quint64>& ids);
31
33 void urlStarted(const QString& url);
34 void urlFinished(const QString& url);
35 void urlFailed(const QString& url);
36 void batchFinished();
37
38public Q_SLOTS:
39 void processStatusData();
40
41private:
42 QDataStream m_commandStream;
43 QDataStream m_statusStream;
44};
45
46class WorkerPipe : public QObject
47{
49
50public:
52
53 void urlStarted(const QString& url);
54 void urlFinished(const QString& url);
55 void urlFailed(const QString& url);
56 void batchFinished();
57
58public Q_SLOTS:
59 void processIdData();
60
62 void newDocumentIds(const QVector<quint64>& ids);
63 void inputEnd();
64
65private:
66 QDataStream m_commandStream;
67 QDataStream m_statusStream;
68};
69
70} // namespace Private
71} // namespace Baloo
72#endif
Bidirectional communication pipe.
Definition commandpipe.h:24
Implements storage for docIds without any associated data Instantiated for:
Definition coding.cpp:11
Q_OBJECTQ_OBJECT
Q_SIGNALSQ_SIGNALS
Q_SLOTSQ_SLOTS
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri May 3 2024 11:51:05 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.