blob: 3c60badd2d2ab939149f3aec64d63527c4ebc12f (
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
// Copyright (C) 2017-2015 Ford Motor Company
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QCONNECTIONTCPIPBACKEND_P_H
#define QCONNECTIONTCPIPBACKEND_P_H
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists purely as an
// implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//
#include "qconnectionfactories_p.h"
#include <QtNetwork/qtcpserver.h>
#include <QtNetwork/qtcpsocket.h>
QT_BEGIN_NAMESPACE
class TcpClientIo final : public QtROClientIoDevice
{
Q_OBJECT
public:
explicit TcpClientIo(QObject *parent = nullptr);
~TcpClientIo() override;
QIODevice *connection() const override;
void connectToServer() override;
bool isOpen() const override;
public Q_SLOTS:
void onError(QAbstractSocket::SocketError error);
void onStateChanged(QAbstractSocket::SocketState state);
protected:
void doClose() override;
void doDisconnectFromServer() override;
private:
QTcpSocket *m_socket;
};
class TcpServerIo final : public QtROServerIoDevice
{
Q_OBJECT
public:
explicit TcpServerIo(QTcpSocket *conn, QObject *parent = nullptr);
QIODevice *connection() const override;
protected:
void doClose() override;
private:
QTcpSocket *m_connection;
};
class TcpServerImpl final : public QConnectionAbstractServer
{
Q_OBJECT
Q_DISABLE_COPY(TcpServerImpl)
public:
explicit TcpServerImpl(QObject *parent);
~TcpServerImpl() override;
bool hasPendingConnections() const override;
QtROServerIoDevice *configureNewConnection() override;
QUrl address() const override;
bool listen(const QUrl &address) override;
QAbstractSocket::SocketError serverError() const override;
void close() override;
private:
QTcpServer m_server;
QUrl m_originalUrl; // necessary because of a QHostAddress bug
};
QT_END_NAMESPACE
#endif // QCONNECTIONTCPIPBACKEND_P_H
|