modernize: Use override instead of virtual
[quassel.git] / src / common / remotepeer.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #pragma once
22
23 #include "common-export.h"
24
25 #include <QDateTime>
26
27 #include "compressor.h"
28 #include "peer.h"
29 #include "protocol.h"
30 #include "signalproxy.h"
31
32 class QTimer;
33
34 class AuthHandler;
35
36 class COMMON_EXPORT RemotePeer : public Peer
37 {
38     Q_OBJECT
39
40 public:
41     // import the virtuals from the baseclass
42     using Peer::handle;
43     using Peer::dispatch;
44
45     RemotePeer(AuthHandler *authHandler, QTcpSocket *socket, Compressor::CompressionLevel level, QObject *parent = nullptr);
46
47     void setSignalProxy(SignalProxy *proxy) override;
48
49     virtual QString protocolName() const = 0;
50     QString description() const override;
51     virtual quint16 enabledFeatures() const { return 0; }
52
53     QString address() const override;
54     quint16 port() const override;
55
56     bool isOpen() const override;
57     bool isSecure() const override;
58     bool isLocal() const override;
59
60     int lag() const override;
61
62     bool compressionEnabled() const;
63     void setCompressionEnabled(bool enabled);
64
65     QTcpSocket *socket() const;
66
67 public slots:
68     void close(const QString &reason = QString()) override;
69
70 signals:
71     void transferProgress(int current, int max);
72     void socketError(QAbstractSocket::SocketError error, const QString &errorString);
73     void statusMessage(const QString &msg);
74
75 protected:
76     SignalProxy *signalProxy() const override;
77
78     void writeMessage(const QByteArray &msg);
79     virtual void processMessage(const QByteArray &msg) = 0;
80
81     // These protocol messages get handled internally and won't reach SignalProxy
82     void handle(const Protocol::HeartBeat &heartBeat);
83     void handle(const Protocol::HeartBeatReply &heartBeatReply);
84     virtual void dispatch(const Protocol::HeartBeat &msg) = 0;
85     virtual void dispatch(const Protocol::HeartBeatReply &msg) = 0;
86
87 protected slots:
88     virtual void onSocketStateChanged(QAbstractSocket::SocketState state);
89     virtual void onSocketError(QAbstractSocket::SocketError error);
90
91 private slots:
92     void onReadyRead();
93     void onCompressionError(Compressor::Error error);
94
95     void sendHeartBeat();
96     void changeHeartBeatInterval(int secs);
97
98 private:
99     bool readMessage(QByteArray &msg);
100
101 private:
102     QTcpSocket *_socket;
103     Compressor *_compressor;
104     SignalProxy *_signalProxy;
105     QTimer *_heartBeatTimer;
106     int _heartBeatCount;
107     int _lag;
108     quint32 _msgSize;
109 };