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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
|
/*
* Copyright (C) 2014 Christian Mollekopf <chrigi_1@fastmail.fm>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) version 3, or any
* later version accepted by the membership of KDE e.V. (or its
* successor approved by the membership of KDE e.V.), which shall
* act as a proxy defined in Section 6 of version 3 of the license.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include "sink_export.h"
#include <QSharedPointer>
#include <QVariant>
#include <QByteArray>
#include <QDebug>
#include <QUuid>
#include "bufferadaptor.h"
namespace Sink {
namespace ApplicationDomain {
/**
* The domain type interface has two purposes:
* * provide a unified interface to read buffers (for zero-copy reading)
* * record changes to generate changesets for modifications
*
* ApplicationDomainTypes don't adhere to any standard and are meant to be extended frequently (hence the non-typesafe interface).
*/
class SINK_EXPORT ApplicationDomainType {
public:
typedef QSharedPointer<ApplicationDomainType> Ptr;
ApplicationDomainType();
explicit ApplicationDomainType(const QByteArray &resourceInstanceIdentifier);
explicit ApplicationDomainType(const QByteArray &resourceInstanceIdentifier, const QByteArray &identifier, qint64 revision, const QSharedPointer<BufferAdaptor> &adaptor);
ApplicationDomainType(const ApplicationDomainType &other);
ApplicationDomainType& operator=(const ApplicationDomainType &other);
template <typename DomainType>
static typename DomainType::Ptr getInMemoryRepresentation(const ApplicationDomainType &domainType, const QList<QByteArray> properties = QList<QByteArray>())
{
auto memoryAdaptor = QSharedPointer<Sink::ApplicationDomain::MemoryBufferAdaptor>::create(*(domainType.mAdaptor), properties);
//The identifier still internal refers to the memory-mapped pointer, we need to copy the memory or it will become invalid
return QSharedPointer<DomainType>::create(domainType.mResourceInstanceIdentifier, QByteArray(domainType.mIdentifier.constData(), domainType.mIdentifier.size()), domainType.mRevision, memoryAdaptor);
}
template <class DomainType>
static DomainType createEntity()
{
DomainType object;
object.mIdentifier = QUuid::createUuid().toByteArray();
return object;
}
template <class DomainType>
static DomainType createEntity(const QByteArray &resourceInstanceIdentifier)
{
DomainType object(resourceInstanceIdentifier);
object.mIdentifier = QUuid::createUuid().toByteArray();
return object;
}
virtual ~ApplicationDomainType();
bool hasProperty(const QByteArray &key) const;
QVariant getProperty(const QByteArray &key) const;
void setProperty(const QByteArray &key, const QVariant &value);
void setProperty(const QByteArray &key, const ApplicationDomainType &value);
QByteArray getBlobProperty(const QByteArray &key) const;
void setBlobProperty(const QByteArray &key, const QByteArray &value);
void setChangedProperties(const QSet<QByteArray> &changeset);
QByteArrayList changedProperties() const;
QByteArrayList availableProperties() const;
qint64 revision() const;
QByteArray resourceInstanceIdentifier() const;
QByteArray identifier() const;
private:
friend QDebug operator<<(QDebug, const ApplicationDomainType &);
QSharedPointer<BufferAdaptor> mAdaptor;
QSet<QByteArray> mChangeSet;
/*
* Each domain object needs to store the resource, identifier, revision triple so we can link back to the storage location.
*/
QByteArray mResourceInstanceIdentifier;
QByteArray mIdentifier;
qint64 mRevision;
};
/*
* Should this be specific to the synclistresultset, in other cases we may want to take revision and resource into account.
*/
inline bool operator==(const ApplicationDomainType& lhs, const ApplicationDomainType& rhs)
{
return lhs.identifier() == rhs.identifier()
&& lhs.resourceInstanceIdentifier() == rhs.resourceInstanceIdentifier();
}
inline QDebug operator<< (QDebug d, const ApplicationDomainType &type)
{
d << "ApplicationDomainType(\n";
for (const auto &property : type.mAdaptor->availableProperties()) {
d << " " << property << "\t" << type.getProperty(property) << "\n";
}
d << ")";
return d;
}
struct SINK_EXPORT Entity : public ApplicationDomainType {
typedef QSharedPointer<Entity> Ptr;
using ApplicationDomainType::ApplicationDomainType;
virtual ~Entity();
};
struct SINK_EXPORT Event : public Entity {
typedef QSharedPointer<Event> Ptr;
using Entity::Entity;
virtual ~Event();
};
struct SINK_EXPORT Todo : public Entity {
typedef QSharedPointer<Todo> Ptr;
using Entity::Entity;
virtual ~Todo();
};
struct SINK_EXPORT Calendar : public Entity {
typedef QSharedPointer<Calendar> Ptr;
using Entity::Entity;
virtual ~Calendar();
};
struct SINK_EXPORT Mail : public Entity {
typedef QSharedPointer<Mail> Ptr;
using Entity::Entity;
virtual ~Mail();
};
struct SINK_EXPORT Folder : public Entity {
typedef QSharedPointer<Folder> Ptr;
using Entity::Entity;
virtual ~Folder();
};
/**
* Represents an sink resource.
*
* This type is used for configuration of resources,
* and for creating and removing resource instances.
*/
struct SINK_EXPORT SinkResource : public ApplicationDomainType {
typedef QSharedPointer<SinkResource> Ptr;
explicit SinkResource(const QByteArray &resourceInstanceIdentifier, const QByteArray &identifier, qint64 revision, const QSharedPointer<BufferAdaptor> &adaptor);
explicit SinkResource(const QByteArray &identifier);
SinkResource();
virtual ~SinkResource();
};
struct SINK_EXPORT SinkAccount : public ApplicationDomainType {
typedef QSharedPointer<SinkAccount> Ptr;
explicit SinkAccount(const QByteArray &resourceInstanceIdentifier, const QByteArray &identifier, qint64 revision, const QSharedPointer<BufferAdaptor> &adaptor);
explicit SinkAccount(const QByteArray &identifier);
SinkAccount();
virtual ~SinkAccount();
};
struct SINK_EXPORT Identity : public ApplicationDomainType {
typedef QSharedPointer<Identity> Ptr;
explicit Identity(const QByteArray &resourceInstanceIdentifier, const QByteArray &identifier, qint64 revision, const QSharedPointer<BufferAdaptor> &adaptor);
explicit Identity(const QByteArray &identifier);
Identity();
virtual ~Identity();
};
/**
* All types need to be registered here an MUST return a different name.
*
* Do not store these types to disk, they may change over time.
*/
template<class DomainType>
QByteArray SINK_EXPORT getTypeName();
template<>
QByteArray SINK_EXPORT getTypeName<Event>();
template<>
QByteArray SINK_EXPORT getTypeName<Todo>();
template<>
QByteArray SINK_EXPORT getTypeName<SinkResource>();
template<>
QByteArray SINK_EXPORT getTypeName<SinkAccount>();
template<>
QByteArray SINK_EXPORT getTypeName<Identity>();
template<>
QByteArray SINK_EXPORT getTypeName<Mail>();
template<>
QByteArray SINK_EXPORT getTypeName<Folder>();
/**
* Type implementation.
*
* Needs to be implemented for every application domain type.
* Contains all non-resource specific, but type-specific code.
*/
template<typename DomainType>
class SINK_EXPORT TypeImplementation;
}
}
Q_DECLARE_METATYPE(Sink::ApplicationDomain::ApplicationDomainType)
Q_DECLARE_METATYPE(Sink::ApplicationDomain::ApplicationDomainType::Ptr)
Q_DECLARE_METATYPE(Sink::ApplicationDomain::Entity)
Q_DECLARE_METATYPE(Sink::ApplicationDomain::Entity::Ptr)
Q_DECLARE_METATYPE(Sink::ApplicationDomain::Event)
Q_DECLARE_METATYPE(Sink::ApplicationDomain::Event::Ptr)
Q_DECLARE_METATYPE(Sink::ApplicationDomain::Mail)
Q_DECLARE_METATYPE(Sink::ApplicationDomain::Mail::Ptr)
Q_DECLARE_METATYPE(Sink::ApplicationDomain::Folder)
Q_DECLARE_METATYPE(Sink::ApplicationDomain::Folder::Ptr)
Q_DECLARE_METATYPE(Sink::ApplicationDomain::SinkResource)
Q_DECLARE_METATYPE(Sink::ApplicationDomain::SinkResource::Ptr)
Q_DECLARE_METATYPE(Sink::ApplicationDomain::SinkAccount)
Q_DECLARE_METATYPE(Sink::ApplicationDomain::SinkAccount::Ptr)
Q_DECLARE_METATYPE(Sink::ApplicationDomain::Identity)
Q_DECLARE_METATYPE(Sink::ApplicationDomain::Identity::Ptr)
|