109 lines
2.9 KiB
C++
109 lines
2.9 KiB
C++
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
|
*
|
|
* This file is part of nymea.
|
|
*
|
|
* nymea is free software: you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
* as published by the Free Software Foundation, either version 3
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* nymea is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with nymea. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef TCPSERVER_H
|
|
#define TCPSERVER_H
|
|
|
|
#include <QObject>
|
|
#include <QTcpServer>
|
|
#include <QTcpSocket>
|
|
#include <QNetworkInterface>
|
|
#include <QUuid>
|
|
#include <QTimer>
|
|
#include <QSslConfiguration>
|
|
#include <QDebug>
|
|
|
|
#include "transportinterface.h"
|
|
|
|
#include "loggingcategories.h"
|
|
|
|
namespace nymeaserver {
|
|
|
|
class SslServer: public QTcpServer
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SslServer(bool sslEnabled, const QSslConfiguration &config, QObject *parent = nullptr):
|
|
QTcpServer(parent),
|
|
m_sslEnabled(sslEnabled),
|
|
m_config(config)
|
|
{
|
|
|
|
}
|
|
|
|
signals:
|
|
void clientConnected(QSslSocket *socket);
|
|
void clientDisconnected(QSslSocket *socket);
|
|
void dataAvailable(QSslSocket *socket, const QByteArray &data);
|
|
|
|
protected:
|
|
void incomingConnection(qintptr socketDescriptor) override;
|
|
|
|
private slots:
|
|
void onClientDisconnected();
|
|
void onSocketReadyRead();
|
|
|
|
private:
|
|
bool m_sslEnabled = false;
|
|
QSslConfiguration m_config;
|
|
};
|
|
|
|
class TcpServer : public TransportInterface
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit TcpServer(const ServerConfiguration &configuration, const QSslConfiguration &sslConfiguration, QObject *parent = nullptr);
|
|
~TcpServer() override;
|
|
|
|
QUrl serverUrl() const;
|
|
|
|
void sendData(const QUuid &clientId, const QByteArray &data) override;
|
|
void sendData(const QList<QUuid> &clients, const QByteArray &data) override;
|
|
|
|
void terminateClientConnection(const QUuid &clientId) override;
|
|
|
|
private:
|
|
QTimer *m_timer = nullptr;
|
|
|
|
SslServer *m_server = nullptr;
|
|
QHash<QUuid, QTcpSocket *> m_clientList;
|
|
|
|
QSslConfiguration m_sslConfig;
|
|
|
|
private slots:
|
|
void onClientConnected(QSslSocket *socket);
|
|
void onClientDisconnected(QSslSocket *socket);
|
|
void onDataAvailable(QSslSocket *socket, const QByteArray &data);
|
|
void onError(QAbstractSocket::SocketError error);
|
|
|
|
public slots:
|
|
void setServerName(const QString &serverName) override;
|
|
bool startServer() override;
|
|
bool stopServer() override;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // TCPSERVER_H
|