af529748b939515c9377031c27137bf512f02fb1
[quassel.git] / src / common / syncableobject.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 <QDataStream>
24 #include <QMetaType>
25 #include <QObject>
26 #include <QVariantMap>
27
28 #include "signalproxy.h"
29
30 /**
31  * This macro needs to be declared in syncable objects, next to the Q_OBJECT macro.
32  *
33  * @note: Specializations of a base syncable object for core/client must not use the macro;
34  *        i.e., if you have Foo, ClientFoo and/or CoreFoo, the SYNCABLE_OBJECT macro would
35  *        only be declared in the class declaration of Foo.
36  */
37 #define SYNCABLE_OBJECT \
38     public: \
39         const QMetaObject *syncMetaObject() const final override { \
40             return &staticMetaObject; \
41         } \
42     private: \
43
44 #define SYNC(...) sync_call__(SignalProxy::Server, __func__, __VA_ARGS__);
45 #define REQUEST(...) sync_call__(SignalProxy::Client, __func__, __VA_ARGS__);
46
47 #define SYNC_OTHER(x, ...) sync_call__(SignalProxy::Server, #x, __VA_ARGS__);
48 #define REQUEST_OTHER(x, ...) sync_call__(SignalProxy::Client, #x, __VA_ARGS__);
49
50 #define ARG(x) const_cast<void *>(reinterpret_cast<const void *>(&x))
51 #define NO_ARG 0
52
53 class SyncableObject : public QObject
54 {
55     Q_OBJECT
56
57 public:
58     SyncableObject(QObject *parent = 0);
59     SyncableObject(const QString &objectName, QObject *parent = 0);
60     SyncableObject(const SyncableObject &other, QObject *parent = 0);
61     ~SyncableObject() override;
62
63     //! Stores the object's state into a QVariantMap.
64     /** The default implementation takes dynamic properties as well as getters that have
65      *  names starting with "init" and stores them in a QVariantMap. Override this method in
66      *  derived classes in order to store the object state in a custom form.
67      *  \note  This is used by SignalProxy to transmit the state of the object to clients
68      *         that request the initial object state. Later updates use a different mechanism
69      *         and assume that the state is completely covered by properties and init* getters.
70      *         DO NOT OVERRIDE THIS unless you know exactly what you do!
71      *
72      *  \return The object's state in a QVariantMap
73      */
74     virtual QVariantMap toVariantMap();
75
76     //! Initialize the object's state from a given QVariantMap.
77     /** \see toVariantMap() for important information concerning this method.
78      */
79     virtual void fromVariantMap(const QVariantMap &properties);
80
81     virtual bool isInitialized() const;
82
83     virtual const QMetaObject *syncMetaObject() const { return metaObject(); }
84
85     inline void setAllowClientUpdates(bool allow) { _allowClientUpdates = allow; }
86     inline bool allowClientUpdates() const { return _allowClientUpdates; }
87
88 public slots:
89     virtual void setInitialized();
90     void requestUpdate(const QVariantMap &properties);
91     virtual void update(const QVariantMap &properties);
92
93 protected:
94     void sync_call__(SignalProxy::ProxyMode modeType, const char *funcname, ...) const;
95
96     void renameObject(const QString &newName);
97     SyncableObject &operator=(const SyncableObject &other);
98
99 signals:
100     void initDone();
101     void updatedRemotely();
102     void updated();
103
104 private:
105     void synchronize(SignalProxy *proxy);
106     void stopSynchronize(SignalProxy *proxy);
107
108     bool setInitValue(const QString &property, const QVariant &value);
109
110     bool _initialized;
111     bool _allowClientUpdates;
112
113     QList<SignalProxy *> _signalProxies;
114
115     friend class SignalProxy;
116 };