SessionState needs to be a registered meta type
[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 "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     QString description() const;
46
47     SignalProxy *signalProxy() const;
48     void setSignalProxy(SignalProxy *proxy);
49
50     InternalPeer *peer() const;
51     void setPeer(InternalPeer *peer);
52
53     bool isOpen() const;
54     bool isSecure() const;
55     bool isLocal() const;
56
57     int lag() const;
58
59     void dispatch(const Protocol::SyncMessage &msg);
60     void dispatch(const Protocol::RpcCall &msg);
61     void dispatch(const Protocol::InitRequest &msg);
62     void dispatch(const Protocol::InitData &msg);
63
64     /* These are not needed for InternalPeer */
65     void dispatch(const Protocol::RegisterClient &) {}
66     void dispatch(const Protocol::ClientDenied &) {}
67     void dispatch(const Protocol::ClientRegistered &) {}
68     void dispatch(const Protocol::SetupData &) {}
69     void dispatch(const Protocol::SetupFailed &) {}
70     void dispatch(const Protocol::SetupDone &) {}
71     void dispatch(const Protocol::Login &) {}
72     void dispatch(const Protocol::LoginFailed &) {}
73     void dispatch(const Protocol::LoginSuccess &) {}
74     void dispatch(const Protocol::SessionState &) {}
75
76 public slots:
77     void close(const QString &reason = QString());
78
79 protected:
80     void customEvent(QEvent *event);
81
82 private slots:
83     void peerDisconnected();
84
85 private:
86     template<class T>
87     void dispatch(EventType eventType, const T &msg);
88
89 private:
90     SignalProxy *_proxy;
91     InternalPeer *_peer;
92     bool _isOpen;
93 };
94
95
96 #endif