Bump CMake version
[quassel.git] / src / common / internalpeer.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2013 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 <QTcpSocket>
25
26 #include "protocol.h"
27 #include "signalproxy.h"
28
29 class QEvent;
30
31 class InternalPeer : public SignalProxy::AbstractPeer
32 {
33     Q_OBJECT
34
35 public:
36     enum EventType {
37         SyncMessageEvent = QEvent::User,
38         RpcCallEvent,
39         InitRequestEvent,
40         InitDataEvent
41     };
42
43     InternalPeer(QObject *parent = 0);
44     virtual ~InternalPeer();
45
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 public slots:
66     void close(const QString &reason = QString());
67
68 signals:
69
70     void disconnected();
71     void error(QAbstractSocket::SocketError);
72
73 protected:
74     void customEvent(QEvent *event);
75
76 private slots:
77     void peerDisconnected();
78
79 private:
80     template<class T>
81     void dispatch(EventType eventType, const T &msg);
82
83     template<class T>
84     void handle(const T &msg);
85
86 private:
87     SignalProxy *_proxy;
88     InternalPeer *_peer;
89     bool _isOpen;
90 };
91
92
93 #endif