Document WSClient
This commit is contained in:
parent
ea9716949d
commit
7d706b122d
@ -23,21 +23,86 @@
|
|||||||
#include <QTcpSocket>
|
#include <QTcpSocket>
|
||||||
#include <QString>
|
#include <QString>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Represents a WebSocket client (generally WebAO) connected to the server.
|
||||||
|
*
|
||||||
|
* @details To give a common interface to both desktop AO and WebAO clients, the incoming data from
|
||||||
|
* WebSocket connections are directed through local TCP sockets.
|
||||||
|
*
|
||||||
|
* This class is a very thin layer -- see WSProxy for the actual mechanics of this WebSocket-to-TCP proxy solution.
|
||||||
|
*/
|
||||||
class WSClient : public QObject {
|
class WSClient : public QObject {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
WSClient(QTcpSocket* p_tcp_socket, QWebSocket* p_web_socket, QObject* parent = nullptr);
|
/**
|
||||||
|
* @brief Creates an instance of the WSClient class.
|
||||||
|
*
|
||||||
|
* @param p_tcp_socket The locally created TCP socket to direct data through.
|
||||||
|
* @param p_web_socket The WebSocket that actually represents the connecting client.
|
||||||
|
* @param parent Qt-based parent, passed along to inherited constructor from QObject.
|
||||||
|
*
|
||||||
|
* @pre This class will not connect up the ports to each other in any way. Unless some setup is done, this class
|
||||||
|
* by default will never be prompted to read and/or write from/to either of the sockets.
|
||||||
|
*/
|
||||||
|
WSClient(QTcpSocket* p_tcp_socket, QWebSocket* p_web_socket, QObject* parent = nullptr)
|
||||||
|
: QObject(parent), tcp_socket(p_tcp_socket), web_socket(p_web_socket) {};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Destructor for the WSClient class.
|
||||||
|
*
|
||||||
|
* @details Marks the TCP and WebSocket for later deletion.
|
||||||
|
*/
|
||||||
~WSClient();
|
~WSClient();
|
||||||
public slots:
|
public slots:
|
||||||
|
/**
|
||||||
|
* @brief A slot that can be signalled when #tcp_socket has data ready for reading.
|
||||||
|
* Will read all data in the socket.
|
||||||
|
*
|
||||||
|
* @details The incoming data is separated per-packet due to the WebAO bug, and the packets are sent
|
||||||
|
* through #web_socket.
|
||||||
|
*/
|
||||||
void onTcpData();
|
void onTcpData();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief A slot that can be signalled to push packets received from WebSocket into the
|
||||||
|
* associated local TCP socket.
|
||||||
|
*
|
||||||
|
* @param message The incoming packet.
|
||||||
|
*/
|
||||||
void onWsData(QString message);
|
void onWsData(QString message);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief A slot that can be signalled when the WebSocket client disconnect.
|
||||||
|
* Disconnects the associated TCP socket.
|
||||||
|
*
|
||||||
|
* @see onTcpDisconnect() for the opposite scenario.
|
||||||
|
*/
|
||||||
void onWsDisconnect();
|
void onWsDisconnect();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief A slot that can be signalled when the TCP socket is disconnected.
|
||||||
|
* Severs the connection to the WebSocket.
|
||||||
|
*
|
||||||
|
* @see onWsDisconnect() for the opposite scenario.
|
||||||
|
*/
|
||||||
void onTcpDisconnect();
|
void onTcpDisconnect();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief A slot that can be signalled when the TCP socket is connected.
|
||||||
|
* Sends identification over the socket.
|
||||||
|
*/
|
||||||
void onTcpConnect();
|
void onTcpConnect();
|
||||||
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
/**
|
||||||
|
* @brief The local TCP socket used as a proxy to connect with the server.
|
||||||
|
*/
|
||||||
QTcpSocket* tcp_socket;
|
QTcpSocket* tcp_socket;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief The WebSocket representing an incoming connection.
|
||||||
|
*/
|
||||||
QWebSocket* web_socket;
|
QWebSocket* web_socket;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ class WSProxy : public QObject {
|
|||||||
* @param p_local_port The port through which the TCP connection should be directed. Should the same as with
|
* @param p_local_port The port through which the TCP connection should be directed. Should the same as with
|
||||||
* non-WebAO connections.
|
* non-WebAO connections.
|
||||||
* @param p_ws_port The WebSocket port. Should the same that is opened for WebSockets connections.
|
* @param p_ws_port The WebSocket port. Should the same that is opened for WebSockets connections.
|
||||||
* @param p_parent Qt-based parent, passed along to inherited constructor from QObject.
|
* @param parent Qt-based parent, passed along to inherited constructor from QObject.
|
||||||
*/
|
*/
|
||||||
WSProxy(int p_local_port, int p_ws_port, QObject* parent);
|
WSProxy(int p_local_port, int p_ws_port, QObject* parent);
|
||||||
|
|
||||||
|
@ -17,13 +17,6 @@
|
|||||||
//////////////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////////////
|
||||||
#include "include/ws_client.h"
|
#include "include/ws_client.h"
|
||||||
|
|
||||||
WSClient::WSClient(QTcpSocket* p_tcp_socket, QWebSocket* p_web_socket, QObject* parent)
|
|
||||||
: QObject(parent)
|
|
||||||
{
|
|
||||||
tcp_socket = p_tcp_socket;
|
|
||||||
web_socket = p_web_socket;
|
|
||||||
}
|
|
||||||
|
|
||||||
void WSClient::onWsData(QString message)
|
void WSClient::onWsData(QString message)
|
||||||
{
|
{
|
||||||
tcp_socket->write(message.toUtf8());
|
tcp_socket->write(message.toUtf8());
|
||||||
|
Loading…
Reference in New Issue
Block a user