a3d7703eb3c20ad25557279f9406b5834dd7b515
[quassel.git] / src / common / signalproxy.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 <QEvent>
24 #include <QSet>
25
26 #include <functional>
27 #include <initializer_list>
28
29 #include "protocol.h"
30
31 struct QMetaObject;
32 class QIODevice;
33
34 class Peer;
35 class SyncableObject;
36
37 class SignalProxy : public QObject
38 {
39     Q_OBJECT
40
41     class SignalRelay;
42
43 public:
44     enum ProxyMode {
45         Server,
46         Client
47     };
48
49     enum EventType {
50         RemovePeerEvent = QEvent::User
51     };
52
53     SignalProxy(QObject *parent);
54     SignalProxy(ProxyMode mode, QObject *parent);
55     virtual ~SignalProxy();
56
57     void setProxyMode(ProxyMode mode);
58     inline ProxyMode proxyMode() const { return _proxyMode; }
59
60     void setHeartBeatInterval(int secs);
61     inline int heartBeatInterval() const { return _heartBeatInterval; }
62     void setMaxHeartBeatCount(int max);
63     inline int maxHeartBeatCount() const { return _maxHeartBeatCount; }
64
65     bool addPeer(Peer *peer);
66
67     bool attachSignal(QObject *sender, const char *signal, const QByteArray &sigName = QByteArray());
68     bool attachSlot(const QByteArray &sigName, QObject *recv, const char *slot);
69
70     void synchronize(SyncableObject *obj);
71     void stopSynchronize(SyncableObject *obj);
72
73     class ExtendedMetaObject;
74     ExtendedMetaObject *extendedMetaObject(const QMetaObject *meta) const;
75     ExtendedMetaObject *createExtendedMetaObject(const QMetaObject *meta, bool checkConflicts = false);
76     inline ExtendedMetaObject *extendedMetaObject(const QObject *obj) const { return extendedMetaObject(metaObject(obj)); }
77     inline ExtendedMetaObject *createExtendedMetaObject(const QObject *obj, bool checkConflicts = false) { return createExtendedMetaObject(metaObject(obj), checkConflicts); }
78
79     bool isSecure() const { return _secure; }
80     void dumpProxyStats();
81     void dumpSyncMap(SyncableObject *object);
82
83     static SignalProxy *current();
84
85     /**@{*/
86     /**
87      * This method allows to send a signal only to a limited set of peers
88      * @param peers A list of peers that should receive it
89      * @param closure Code you want to execute within of that restricted environment
90      */
91     void restrictTargetPeers(QSet<Peer*> peers, std::function<void()> closure);
92     void restrictTargetPeers(Peer *peer, std::function<void()> closure) {
93         QSet<Peer*> set;
94         set.insert(peer);
95         restrictTargetPeers(set, std::move(closure));
96     }
97
98     //A better version, but only implemented on Qt5 if Initializer Lists exist
99 #ifdef Q_COMPILER_INITIALIZER_LISTS
100     void restrictTargetPeers(std::initializer_list<Peer*> peers, std::function<void()> closure) {
101         restrictTargetPeers(QSet<Peer*>(peers), std::move(closure));
102     }
103 #endif
104     /**}@*/
105
106     inline int peerCount() const { return _peerMap.size(); }
107     QVariantList peerData();
108
109     Peer *peerById(int peerId);
110
111     /**
112      * @return If handling a signal, the Peer from which the current signal originates
113      */
114     Peer *sourcePeer();
115     void setSourcePeer(Peer *sourcePeer);
116
117     /**
118      * @return If sending a signal, the Peer to which the current signal is directed
119      */
120     Peer *targetPeer();
121     void setTargetPeer(Peer *targetPeer);
122
123 public slots:
124     void detachObject(QObject *obj);
125     void detachSignals(QObject *sender);
126     void detachSlots(QObject *receiver);
127
128 protected:
129     void customEvent(QEvent *event);
130     void sync_call__(const SyncableObject *obj, ProxyMode modeType, const char *funcname, va_list ap);
131     void renameObject(const SyncableObject *obj, const QString &newname, const QString &oldname);
132
133 private slots:
134     void removePeerBySender();
135     void objectRenamed(const QByteArray &classname, const QString &newname, const QString &oldname);
136     void updateSecureState();
137
138 signals:
139     void peerRemoved(Peer *peer);
140     void connected();
141     void disconnected();
142     void objectInitialized(SyncableObject *);
143     void heartBeatIntervalChanged(int secs);
144     void maxHeartBeatCountChanged(int max);
145     void lagUpdated(int lag);
146     void secureStateChanged(bool);
147
148 private:
149     template<class T>
150     class PeerMessageEvent;
151
152     void init();
153     void initServer();
154     void initClient();
155
156     static const QMetaObject *metaObject(const QObject *obj);
157
158     void removePeer(Peer *peer);
159     void removeAllPeers();
160
161     int nextPeerId() {
162         return _lastPeerId++;
163     }
164
165     template<class T>
166     void dispatch(const T &protoMessage);
167     template<class T>
168     void dispatch(Peer *peer, const T &protoMessage);
169
170     void handle(Peer *peer, const Protocol::SyncMessage &syncMessage);
171     void handle(Peer *peer, const Protocol::RpcCall &rpcCall);
172     void handle(Peer *peer, const Protocol::InitRequest &initRequest);
173     void handle(Peer *peer, const Protocol::InitData &initData);
174
175     template<class T>
176     void handle(Peer *, T) { Q_ASSERT(0); }
177
178     bool invokeSlot(QObject *receiver, int methodId, const QVariantList &params, QVariant &returnValue, Peer *peer = 0);
179     bool invokeSlot(QObject *receiver, int methodId, const QVariantList &params = QVariantList(), Peer *peer = 0);
180
181     void requestInit(SyncableObject *obj);
182     QVariantMap initData(SyncableObject *obj) const;
183     void setInitData(SyncableObject *obj, const QVariantMap &properties);
184
185     static void disconnectDevice(QIODevice *dev, const QString &reason = QString());
186
187     QHash<int, Peer*> _peerMap;
188
189     // containg a list of argtypes for fast access
190     QHash<const QMetaObject *, ExtendedMetaObject *> _extendedMetaObjects;
191
192     // SignalRelay for all manually attached signals
193     SignalRelay *_signalRelay;
194
195     // RPC function -> (object, slot ID)
196     typedef QPair<QObject *, int> MethodId;
197     typedef QMultiHash<QByteArray, MethodId> SlotHash;
198     SlotHash _attachedSlots;
199
200     // slaves for sync
201     typedef QHash<QString, SyncableObject *> ObjectId;
202     QHash<QByteArray, ObjectId> _syncSlave;
203
204     ProxyMode _proxyMode;
205     int _heartBeatInterval;
206     int _maxHeartBeatCount;
207
208     bool _secure; // determines if all connections are in a secured state (using ssl or internal connections)
209
210     int _lastPeerId = 0;
211
212     QSet<Peer *> _restrictedTargets;
213     bool _restrictMessageTarget = false;
214
215     Peer *_sourcePeer = nullptr;
216     Peer *_targetPeer = nullptr;
217
218     friend class SignalRelay;
219     friend class SyncableObject;
220     friend class Peer;
221 };
222
223
224 // ==================================================
225 //  ExtendedMetaObject
226 // ==================================================
227 class SignalProxy::ExtendedMetaObject
228 {
229     class MethodDescriptor
230     {
231     public:
232         MethodDescriptor(const QMetaMethod &method);
233         MethodDescriptor() : _returnType(-1), _minArgCount(-1), _receiverMode(SignalProxy::Client) {}
234
235         inline const QByteArray &methodName() const { return _methodName; }
236         inline const QList<int> &argTypes() const { return _argTypes; }
237         inline int returnType() const { return _returnType; }
238         inline int minArgCount() const { return _minArgCount; }
239         inline SignalProxy::ProxyMode receiverMode() const { return _receiverMode; }
240
241     private:
242         QByteArray _methodName;
243         QList<int> _argTypes;
244         int _returnType;
245         int _minArgCount;
246         SignalProxy::ProxyMode _receiverMode; // Only acceptable as a Sync Call if the receiving SignalProxy is in this mode.
247     };
248
249
250 public:
251     ExtendedMetaObject(const QMetaObject *meta, bool checkConflicts);
252
253     inline const QByteArray &methodName(int methodId) { return methodDescriptor(methodId).methodName(); }
254     inline const QList<int> &argTypes(int methodId) { return methodDescriptor(methodId).argTypes(); }
255     inline int returnType(int methodId) { return methodDescriptor(methodId).returnType(); }
256     inline int minArgCount(int methodId) { return methodDescriptor(methodId).minArgCount(); }
257     inline SignalProxy::ProxyMode receiverMode(int methodId) { return methodDescriptor(methodId).receiverMode(); }
258
259     inline int methodId(const QByteArray &methodName) { return _methodIds.contains(methodName) ? _methodIds[methodName] : -1; }
260
261     inline int updatedRemotelyId() { return _updatedRemotelyId; }
262
263     inline const QHash<QByteArray, int> &slotMap() { return _methodIds; }
264     const QHash<int, int> &receiveMap();
265
266     const QMetaObject *metaObject() const { return _meta; }
267
268     static QByteArray methodName(const QMetaMethod &method);
269     static QString methodBaseName(const QMetaMethod &method);
270
271 private:
272     const MethodDescriptor &methodDescriptor(int methodId);
273
274     const QMetaObject *_meta;
275     int _updatedRemotelyId; // id of the updatedRemotely() signal - makes things faster
276
277     QHash<int, MethodDescriptor> _methods;
278     QHash<QByteArray, int> _methodIds;
279     QHash<int, int> _receiveMap; // if slot x is called then hand over the result to slot y
280 };