blob: 59b66e3fc8ca4124ff5d32d263534dbbb2396bf1 (
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
|
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "qmldebug_global.h"
#include <QObject>
#include <QUrl>
#include <QAbstractSocket>
#include <QDataStream>
namespace QmlDebug {
class QmlDebugClient;
class QmlDebugConnectionPrivate;
class QMLDEBUG_EXPORT QmlDebugConnection : public QObject
{
Q_OBJECT
Q_DECLARE_PRIVATE(QmlDebugConnection)
public:
QmlDebugConnection(QObject *parent = nullptr);
~QmlDebugConnection() override;
void connectToHost(const QString &hostName, quint16 port);
void startLocalServer(const QString &fileName);
QAbstractSocket::SocketState socketState() const;
int currentDataStreamVersion() const;
void setMaximumDataStreamVersion(int maximumVersion);
bool isConnected() const;
bool isConnecting() const;
void close();
QmlDebugClient *client(const QString &name) const;
bool addClient(const QString &name, QmlDebugClient *client);
bool removeClient(const QString &name);
float serviceVersion(const QString &serviceName) const;
bool sendMessage(const QString &name, const QByteArray &message);
static constexpr int minimumDataStreamVersion()
{
return QDataStream::Qt_4_7;
}
signals:
void connected();
void disconnected();
void connectionFailed();
void logError(const QString &error);
void logStateChange(const QString &state);
private:
void newConnection();
void socketConnected();
void socketDisconnected();
void protocolReadyRead();
QScopedPointer<QmlDebugConnectionPrivate> d_ptr;
};
} // namespace QmlDebug
|