summaryrefslogtreecommitdiff
path: root/g_object.h
blob: 725fbc1562d78353572c07b3126d63d61a0676e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#pragma once

// qt
#include <QDebug>
#include <QJsonDocument>
#include <QJsonObject>
#include <QMetaProperty>
#include <QObject>

#define JSON_CONSTRUCTOR(base_class, derived_class)                            \
public:                                                                        \
    Q_INVOKABLE derived_class(                                                 \
        const QJsonObject& json,                                               \
        QObject* parent = nullptr                                              \
    )                                                                          \
        : base_class(json, parent)                                             \
    {                                                                          \
        constructFromJson(json);                                               \
    }

#define JSON_VALUE_CONSTRUCTOR(base_class, derived_class)                      \
public:                                                                        \
    Q_INVOKABLE derived_class(                                                 \
        const QJsonValue& json,                                                \
        QObject* parent = nullptr                                              \
    )                                                                          \
        : base_class(json.toObject(), parent)                                  \
    {                                                                          \
        constructFromJson(json.toObject());                                    \
    }

#define JSON_ASSING_OPERATOR(base_class, derived_class)                        \
public:                                                                        \
    Q_INVOKABLE derived_class& operator=(const QJsonObject& json)              \
    {                                                                          \
        constructFromJson(json);                                               \
        return *this;                                                          \
    }

#define JSON_VALUE_ASSING_OPERATOR(base_class, derived_class)                  \
public:                                                                        \
    Q_INVOKABLE derived_class& operator=(const QJsonValue& json)               \
    {                                                                          \
        *this = json.toObject();                                               \
        return *this;                                                          \
    }

#define COPY_CONSTRUCTOR(base_class, derived_class)                            \
public:                                                                        \
    Q_INVOKABLE derived_class(                                                 \
        const derived_class& other,                                            \
        QObject* parent = nullptr                                              \
    )                                                                          \
        : base_class(other, parent)                                            \
    {                                                                          \
        *this = other;                                                         \
    }

#define ASSIGN_OPERATOR(base_class, derived_class)                             \
public:                                                                        \
    derived_class& operator=(const derived_class& other)                       \
    {                                                                          \
        base_class::operator=(other);                                          \
        return *this;                                                          \
    }

#define COMPARE_OPERATOR(base_class, derived_class)                            \
public:                                                                        \
    bool operator==(const derived_class& other) const                          \
    {                                                                          \
        if (!base_class::operator==(other))                                    \
            return false;                                                      \
        for (int i = metaObject()->propertyOffset();                           \
             i < metaObject()->propertyCount();                                \
             i++)                                                              \
        {                                                                      \
            auto key = metaObject()->property(i).name();                       \
                                                                               \
            if (property(key) != other.property(key))                          \
            {                                                                  \
                return false;                                                  \
            }                                                                  \
        }                                                                      \
                                                                               \
        return true;                                                           \
    }

#define JSON_VALUE_OPERATOR(base_class)                                        \
public:                                                                        \
    operator const QJsonValue() const                                          \
    {                                                                          \
        return (base_class::operator const QJsonObject());                     \
    }

#define DEFAULT_DESTRUCTOR(classname)                                          \
public:                                                                        \
    Q_INVOKABLE ~classname() Q_DECL_OVERRIDE = default

#define DEFAULT_CONSTRUCTOR(base_class, derived_class)                         \
public:                                                                        \
    Q_INVOKABLE derived_class(QObject* parent = nullptr)                       \
        : base_class(parent)                                                   \
    {                                                                          \
    }

#define G_OBJECT(base_class, derived_class)                                   \
    /*Q_OBJECT*/                                                               \
    JSON_CONSTRUCTOR(base_class, derived_class)                                \
    JSON_VALUE_CONSTRUCTOR(base_class, derived_class)                          \
    COPY_CONSTRUCTOR(base_class, derived_class)

class G_Object : public QObject
{
    Q_OBJECT

    // constructors
public:
    G_Object(QObject* parent = nullptr);

    G_Object(const QJsonObject& json, QObject* parent = nullptr);
    G_Object(const QJsonValue& json, QObject* parent = nullptr);

    G_Object(const G_Object& other, QObject* parent = nullptr);

    // operators
public:
    virtual G_Object& operator=(const G_Object& other);
    virtual G_Object& operator=(const QJsonObject& json);
    virtual G_Object& operator=(const QJsonValue& json);
    virtual operator const QJsonObject() const;
    virtual operator const QJsonValue() const;
    virtual bool operator==(const G_Object& other) const;

protected:
    bool constructFromJson(const QJsonObject& json);
};

QDebug operator<<(QDebug d, const G_Object& o);