blob: d58d867f8b7016b01731af93c89b3872d2e24dcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <utils/result.h>
#include <solutions/tasking/tasktree.h>
#include <QObject>
QT_BEGIN_NAMESPACE
class QAbstractSocket;
QT_END_NAMESPACE
namespace Valgrind::XmlProtocol {
class AnnounceThread;
class Error;
class ParserPrivate;
class Status;
/**
* Parser for the Valgrind Output XML Protocol 4
*/
class Parser : public QObject
{
Q_OBJECT
public:
explicit Parser(QObject *parent = nullptr);
~Parser() override;
QString errorString() const;
// The passed device needs to be open. The parser takes ownership of the passed device.
void setSocket(QAbstractSocket *socket);
// Alternatively, the data to be parsed may be set manually
void setData(const QByteArray &data);
void start();
bool isRunning() const;
Utils::Result<> runBlocking();
signals:
void status(const Status &status);
void error(const Error &error);
void errorCount(qint64 unique, qint64 count);
void suppressionCount(const QString &name, qint64 count);
void announceThread(const AnnounceThread &announceThread);
void done(const Utils::Result<> &result);
private:
std::unique_ptr<ParserPrivate> d;
};
class ParserTaskAdapter final
{
public:
void operator()(Parser *task, Tasking::TaskInterface *iface)
{
QObject::connect(task, &Parser::done, iface, [iface](const Utils::Result<> &result) {
iface->reportDone(Tasking::toDoneResult(result == Utils::ResultOk));
}, Qt::SingleShotConnection);
task->start();
}
};
using ParserTask = Tasking::CustomTask<Parser, ParserTaskAdapter>;
} // Valgrind::XmlProtocol
|