Handle invalid handshake data properly in the core
[quassel.git] / src / common / internalpeer.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2015 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 #ifndef INTERNALPEER_H
22 #define INTERNALPEER_H
23
24 #include "peer.h"
25 #include "protocol.h"
26 #include "signalproxy.h"
27
28 class QEvent;
29
30 class InternalPeer : public Peer
31 {
32     Q_OBJECT
33
34 public:
35     enum EventType {
36         SyncMessageEvent = QEvent::User,
37         RpcCallEvent,
38         InitRequestEvent,
39         InitDataEvent
40     };
41
42     InternalPeer(QObject *parent = 0);
43     virtual ~InternalPeer();
44
45     Protocol::Type protocol() const { return Protocol::InternalProtocol; }
46     QString description() const;
47
48     SignalProxy *signalProxy() const;
49     void setSignalProxy(SignalProxy *proxy);
50
51     InternalPeer *peer() const;
52     void setPeer(InternalPeer *peer);
53
54     bool isOpen() const;
55     bool isSecure() const;
56     bool isLocal() const;
57
58     int lag() const;
59
60     void dispatch(const Protocol::SyncMessage &msg);
61     void dispatch(const Protocol::RpcCall &msg);
62     void dispatch(const Protocol::InitRequest &msg);
63     void dispatch(const Protocol::InitData &msg);
64
65     /* These are not needed for InternalPeer */
66     void dispatch(const Protocol::RegisterClient &) {}
67     void dispatch(const Protocol::ClientDenied &) {}
68     void dispatch(const Protocol::ClientRegistered &) {}
69     void dispatch(const Protocol::SetupData &) {}
70     void dispatch(const Protocol::SetupFailed &) {}
71     void dispatch(const Protocol::SetupDone &) {}
72     void dispatch(const Protocol::Login &) {}
73     void dispatch(const Protocol::LoginFailed &) {}
74     void dispatch(const Protocol::LoginSuccess &) {}
75     void dispatch(const Protocol::SessionState &) {}
76
77 public slots:
78     void close(const QString &reason = QString());
79
80 protected:
81     void customEvent(QEvent *event);
82
83 private slots:
84     void peerDisconnected();
85
86 private:
87     template<class T>
88     void dispatch(EventType eventType, const T &msg);
89
90 private:
91     SignalProxy *_proxy;
92     InternalPeer *_peer;
93     bool _isOpen;
94 };
95
96
97 #endif