// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause #ifndef CONNECTION_H #define CONNECTION_H #include #include #include #include #include #include #include static const int MaxBufferSize = 1024000; class Connection : public QTcpSocket { Q_OBJECT public: enum ConnectionState { WaitingForGreeting, ReadingGreeting, ReadyForUse }; enum DataType { PlainText, Ping, Pong, Greeting, Undefined }; Connection(QObject *parent = nullptr); Connection(qintptr socketDescriptor, QObject *parent = nullptr); ~Connection(); QString name() const; void setGreetingMessage(const QString &message); bool sendMessage(const QString &message); signals: void readyForUse(); void newMessage(const QString &from, const QString &message); protected: void timerEvent(QTimerEvent *timerEvent) override; private slots: void processReadyRead(); void sendPing(); void sendGreetingMessage(); private: bool hasEnoughData(); void processGreeting(); void processData(); QCborStreamReader reader; QCborStreamWriter writer; QString greetingMessage; QString username; QTimer pingTimer; QElapsedTimer pongTime; QString buffer; ConnectionState state; DataType currentDataType; int transferTimerId; bool isGreetingMessageSent; }; #endif