Refactor SignalProxy, network and protocol code
[quassel.git] / src / common / internalconnection.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2012 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 INTERNALCONNECTION_H
22 #define INTERNALCONNECTION_H
23
24 #include <QTcpSocket>
25
26 #include "signalproxy.h"
27
28 class QEvent;
29
30 class InternalConnection : public SignalProxy::AbstractPeer
31 {
32     Q_OBJECT
33
34 public:
35     enum EventType {
36         SyncMessageEvent = QEvent::User,
37         RpcCallEvent,
38         InitRequestEvent,
39         InitDataEvent
40     };
41
42     InternalConnection(QObject *parent = 0);
43     virtual ~InternalConnection();
44
45     QString description() const;
46
47     SignalProxy *signalProxy() const;
48     void setSignalProxy(SignalProxy *proxy);
49
50     InternalConnection *peer() const;
51     void setPeer(InternalConnection *peer);
52
53     bool isOpen() const;
54     bool isSecure() const;
55     bool isLocal() const;
56
57     int lag() const;
58
59     void dispatch(const SignalProxy::SyncMessage &msg);
60     void dispatch(const SignalProxy::RpcCall &msg);
61     void dispatch(const SignalProxy::InitRequest &msg);
62     void dispatch(const SignalProxy::InitData &msg);
63
64 public slots:
65     void close(const QString &reason = QString());
66
67 signals:
68
69     void disconnected();
70     void error(QAbstractSocket::SocketError);
71
72 protected:
73     void customEvent(QEvent *event);
74
75 private slots:
76     void peerDisconnected();
77
78 private:
79     template<class T>
80     void dispatch(EventType eventType, const T &msg);
81
82     template<class T>
83     void handle(const T &msg);
84
85 private:
86     SignalProxy *_proxy;
87     InternalConnection *_peer;
88     bool _isOpen;
89 };
90
91
92 #endif