98 lines
3.2 KiB
C++
98 lines
3.2 KiB
C++
#include "tcpsocketinterface.h"
|
|
|
|
#include <QUrl>
|
|
|
|
TcpSocketInterface::TcpSocketInterface(QObject *parent) : NymeaInterface(parent)
|
|
{
|
|
QObject::connect(&m_socket, &QSslSocket::connected, this, &TcpSocketInterface::onConnected);
|
|
QObject::connect(&m_socket, &QSslSocket::disconnected, this, &TcpSocketInterface::disconnected);
|
|
QObject::connect(&m_socket, &QSslSocket::encrypted, this, &TcpSocketInterface::onEncrypted);
|
|
typedef void (QSslSocket:: *sslErrorsSignal)(const QList<QSslError> &);
|
|
QObject::connect(&m_socket, static_cast<sslErrorsSignal>(&QSslSocket::sslErrors), this, &TcpSocketInterface::sslErrors);
|
|
QObject::connect(&m_socket, &QSslSocket::readyRead, this, &TcpSocketInterface::socketReadyRead);
|
|
typedef void (QSslSocket:: *errorSignal)(QAbstractSocket::SocketError);
|
|
QObject::connect(&m_socket, static_cast<errorSignal>(&QSslSocket::error), this, &TcpSocketInterface::error);
|
|
QObject::connect(&m_socket, &QSslSocket::stateChanged, this, &TcpSocketInterface::onSocketStateChanged);
|
|
|
|
}
|
|
|
|
QStringList TcpSocketInterface::supportedSchemes() const
|
|
{
|
|
return {"nymea", "nymeas"};
|
|
}
|
|
|
|
void TcpSocketInterface::sendData(const QByteArray &data)
|
|
{
|
|
qint64 ret = m_socket.write(data);
|
|
if (ret != data.length()) {
|
|
qWarning() << "Error writing data to socket.";
|
|
}
|
|
}
|
|
|
|
void TcpSocketInterface::ignoreSslErrors(const QList<QSslError> &errors)
|
|
{
|
|
m_socket.ignoreSslErrors(errors);
|
|
}
|
|
|
|
void TcpSocketInterface::onConnected()
|
|
{
|
|
if (m_url.scheme() == "nymea") {
|
|
qDebug() << "TCP socket connected";
|
|
emit connected();
|
|
}
|
|
}
|
|
|
|
void TcpSocketInterface::onEncrypted()
|
|
{
|
|
qDebug() << "TCP socket encrypted";
|
|
emit connected();
|
|
}
|
|
|
|
void TcpSocketInterface::connect(const QUrl &url)
|
|
{
|
|
m_url = url;
|
|
if (url.scheme() == "nymeas") {
|
|
qDebug() << "TCP socket connecting to" << url.host() << url.port();
|
|
m_socket.connectToHostEncrypted(url.host(), url.port());
|
|
} else if (url.scheme() == "nymea") {
|
|
m_socket.connectToHost(url.host(), url.port());
|
|
} else {
|
|
qWarning() << "TCP socket: Unsupported scheme";
|
|
}
|
|
}
|
|
|
|
NymeaInterface::ConnectionState TcpSocketInterface::connectionState() const
|
|
{
|
|
switch (m_socket.state()) {
|
|
case QAbstractSocket::ConnectedState:
|
|
return NymeaInterface::ConnectionStateConnected;
|
|
case QAbstractSocket::ConnectingState:
|
|
case QAbstractSocket::HostLookupState:
|
|
return NymeaInterface::ConnectionStateConnecting;
|
|
default:
|
|
return NymeaInterface::ConnectionStateDisconnected;
|
|
}
|
|
}
|
|
|
|
void TcpSocketInterface::disconnect()
|
|
{
|
|
qDebug() << "closing socket";
|
|
m_socket.disconnectFromHost();
|
|
m_socket.close();
|
|
// QTcpSocket might endlessly wait for a timeout if we call connectToHost() for an IP which isn't
|
|
// reable at all (e.g. has disappeared from the network). Closing the socket is not enough, we need
|
|
// abort the exiting connection attempts too.
|
|
m_socket.abort();
|
|
}
|
|
|
|
void TcpSocketInterface::socketReadyRead()
|
|
{
|
|
QByteArray data = m_socket.readAll();
|
|
emit dataReady(data);
|
|
}
|
|
|
|
void TcpSocketInterface::onSocketStateChanged(const QAbstractSocket::SocketState &state)
|
|
{
|
|
qDebug() << "Socket state changed -->" << state;
|
|
}
|