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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
|
//
// Created by kat on 5/31/23.
//
/*
* Welcome to, this file.
*
* This is a metadata serialization helper.
*
* Have you ever wished turning a complex datastructure into a Metadata object was as easy in C++ as it is in python?
* Do you like macros and templates?
*
* Great news.
*
* Implement these on your `public MetadataSerializable` subclass:
* ```
void Store() override {
MSS(m_someVariable);
MSS(m_someOtherVariable);
}
void Load() override {
MSL(m_someVariable);
MSL(m_someOtherVariable);
}
```
* Then, you can turn your object into a Metadata object with `AsMetadata()`, and load it back with
`LoadFromMetadata()`.
*
* Serialized fields will be automatically repopulated.
*
* Other ser/deser formats (rapidjson objects, strings) also exist. You can use these to achieve nesting, but probably
avoid that.
* */
#include "binaryninjaapi.h"
#include "rapidjson/document.h"
#include "rapidjson/stringbuffer.h"
#include "rapidjson/prettywriter.h"
#ifndef SHAREDCACHE_METADATASERIALIZABLE_HPP
#define SHAREDCACHE_METADATASERIALIZABLE_HPP
#define MSS(name) store(#name, name)
#define MSS_CAST(name, type) store(#name, (type) name)
#define MSS_SUBCLASS(name) Serialize(#name, name)
#define MSL(name) name = load(#name, name)
#define MSL_CAST(name, storedType, type) name = (type)load(#name, (storedType) name)
#define MSL_SUBCLASS(name) Deserialize(#name, name)
using namespace BinaryNinja;
class MetadataSerializable
{
protected:
struct SerialContext
{
rapidjson::Document doc;
rapidjson::Document::AllocatorType allocator;
};
struct DeserContext
{
rapidjson::Document doc;
};
DeserContext m_activeDeserContext;
SerialContext m_activeContext;
public:
MetadataSerializable()
{
m_activeContext.doc.SetObject();
m_activeContext.allocator = m_activeContext.doc.GetAllocator();
}
// copy constructor
MetadataSerializable(const MetadataSerializable& other)
{
m_activeContext.doc.CopyFrom(other.m_activeContext.doc, m_activeContext.doc.GetAllocator());
}
// copy assignment
MetadataSerializable& operator=(const MetadataSerializable& other)
{
m_activeContext.doc.CopyFrom(other.m_activeContext.doc, m_activeContext.doc.GetAllocator());
return *this;
}
virtual ~MetadataSerializable()
{
}
void SetupSerContext(rapidjson::Document::AllocatorType* alloc = nullptr)
{
m_activeContext.doc.SetObject();
m_activeContext.allocator = m_activeContext.doc.GetAllocator();
}
void S()
{
// fixme factor out
}
void Serialize(std::string& name, bool b)
{
S();
rapidjson::Value key(name.c_str(), m_activeContext.allocator);
m_activeContext.doc.AddMember(key, b, m_activeContext.allocator);
}
void Deserialize(std::string& name, bool& b) { b = m_activeDeserContext.doc[name.c_str()].GetBool(); }
void Serialize(std::string& name, uint8_t b)
{
S();
rapidjson::Value key(name.c_str(), m_activeContext.allocator);
m_activeContext.doc.AddMember(key, b, m_activeContext.allocator);
}
void Deserialize(std::string& name, uint8_t& b)
{
b = static_cast<uint8_t>(m_activeDeserContext.doc[name.c_str()].GetUint64());
}
void Serialize(std::string& name, uint16_t b)
{
S();
rapidjson::Value key(name.c_str(), m_activeContext.allocator);
m_activeContext.doc.AddMember(key, b, m_activeContext.allocator);
}
void Deserialize(std::string& name, uint16_t& b)
{
b = static_cast<uint16_t>(m_activeDeserContext.doc[name.c_str()].GetUint64());
}
void Serialize(std::string& name, uint32_t b)
{
S();
rapidjson::Value key(name.c_str(), m_activeContext.allocator);
m_activeContext.doc.AddMember(key, b, m_activeContext.allocator);
}
void Deserialize(std::string& name, uint32_t& b)
{
b = static_cast<uint32_t>(m_activeDeserContext.doc[name.c_str()].GetUint64());
}
void Serialize(std::string& name, uint64_t b)
{
S();
rapidjson::Value key(name.c_str(), m_activeContext.allocator);
m_activeContext.doc.AddMember(key, b, m_activeContext.allocator);
}
void Deserialize(std::string& name, uint64_t& b)
{
b = m_activeDeserContext.doc[name.c_str()].GetUint64();
}
void Serialize(std::string& name, int8_t b)
{
S();
rapidjson::Value key(name.c_str(), m_activeContext.allocator);
m_activeContext.doc.AddMember(key, b, m_activeContext.allocator);
}
void Deserialize(std::string& name, int8_t& b)
{
b = m_activeDeserContext.doc[name.c_str()].GetInt64();
}
void Serialize(std::string& name, int16_t b)
{
S();
rapidjson::Value key(name.c_str(), m_activeContext.allocator);
m_activeContext.doc.AddMember(key, b, m_activeContext.allocator);
}
void Deserialize(std::string& name, int16_t& b)
{
b = m_activeDeserContext.doc[name.c_str()].GetInt64();
}
void Serialize(std::string& name, int32_t b)
{
S();
rapidjson::Value key(name.c_str(), m_activeContext.allocator);
m_activeContext.doc.AddMember(key, b, m_activeContext.allocator);
}
void Deserialize(std::string& name, int32_t& b)
{
b = m_activeDeserContext.doc[name.c_str()].GetInt();
}
void Serialize(std::string& name, int64_t b)
{
S();
rapidjson::Value key(name.c_str(), m_activeContext.allocator);
m_activeContext.doc.AddMember(key, b, m_activeContext.allocator);
}
void Deserialize(std::string& name, int64_t& b)
{
b = m_activeDeserContext.doc[name.c_str()].GetInt64();
}
void Serialize(std::string& name, std::string b)
{
S();
rapidjson::Value key(name.c_str(), m_activeContext.allocator);
rapidjson::Value value(b.c_str(), m_activeContext.allocator);
m_activeContext.doc.AddMember(key, value, m_activeContext.allocator);
}
void Deserialize(std::string& name, std::string& b)
{
b = m_activeDeserContext.doc[name.c_str()].GetString();
}
void Serialize(std::string& name, std::map<uint64_t, std::string> b)
{
S();
rapidjson::Value key(name.c_str(), m_activeContext.allocator);
rapidjson::Value bArr(rapidjson::kArrayType);
for (auto& i : b)
{
rapidjson::Value p(rapidjson::kArrayType);
p.PushBack(i.first, m_activeContext.allocator);
rapidjson::Value value(i.second.c_str(), m_activeContext.allocator);
p.PushBack(value, m_activeContext.allocator);
bArr.PushBack(p, m_activeContext.allocator);
}
m_activeContext.doc.AddMember(key, bArr, m_activeContext.allocator);
}
void Deserialize(std::string& name, std::map<uint64_t, std::string>& b)
{
for (auto& i : m_activeDeserContext.doc[name.c_str()].GetArray())
b[i.GetArray()[0].GetUint64()] = i.GetArray()[1].GetString();
}
void Serialize(std::string& name, std::unordered_map<uint64_t, std::string> b)
{
S();
rapidjson::Value key(name.c_str(), m_activeContext.allocator);
rapidjson::Value bArr(rapidjson::kArrayType);
for (auto& i : b)
{
rapidjson::Value p(rapidjson::kArrayType);
p.PushBack(i.first, m_activeContext.allocator);
rapidjson::Value value(i.second.c_str(), m_activeContext.allocator);
p.PushBack(value, m_activeContext.allocator);
bArr.PushBack(p, m_activeContext.allocator);
}
m_activeContext.doc.AddMember(key, bArr, m_activeContext.allocator);
}
void Serialize(std::string& name, std::unordered_map<std::string, std::string> b)
{
S();
rapidjson::Value key(name.c_str(), m_activeContext.allocator);
rapidjson::Value bArr(rapidjson::kArrayType);
for (auto& i : b)
{
rapidjson::Value p(rapidjson::kArrayType);
rapidjson::Value key(i.first.c_str(), m_activeContext.allocator);
rapidjson::Value value(i.second.c_str(), m_activeContext.allocator);
p.PushBack(key, m_activeContext.allocator);
p.PushBack(value, m_activeContext.allocator);
bArr.PushBack(p, m_activeContext.allocator);
}
m_activeContext.doc.AddMember(key, bArr, m_activeContext.allocator);
}
void Deserialize(std::string& name, std::unordered_map<uint64_t, std::string>& b)
{
for (auto& i : m_activeDeserContext.doc[name.c_str()].GetArray())
b[i.GetArray()[0].GetUint64()] = i.GetArray()[1].GetString();
}
void Serialize(std::string& name, std::unordered_map<uint64_t, uint64_t> b)
{
S();
rapidjson::Value key(name.c_str(), m_activeContext.allocator);
rapidjson::Value bArr(rapidjson::kArrayType);
for (auto& i : b)
{
rapidjson::Value p(rapidjson::kArrayType);
p.PushBack(i.first, m_activeContext.allocator);
p.PushBack(i.second, m_activeContext.allocator);
bArr.PushBack(p, m_activeContext.allocator);
}
m_activeContext.doc.AddMember(key, bArr, m_activeContext.allocator);
}
void Deserialize(std::string& name, std::unordered_map<uint64_t, uint64_t>& b)
{
for (auto& i : m_activeDeserContext.doc[name.c_str()].GetArray())
b[i.GetArray()[0].GetUint64()] = i.GetArray()[1].GetUint64();
}
// std::unordered_map<std::string, std::unordered_map<uint64_t, uint64_t>>
void Serialize(std::string& name, std::unordered_map<std::string, std::unordered_map<uint64_t, uint64_t>> b)
{
S();
rapidjson::Value key(name.c_str(), m_activeContext.allocator);
rapidjson::Value classes(rapidjson::kArrayType);
for (auto& i : b)
{
rapidjson::Value classArr(rapidjson::kArrayType);
rapidjson::Value classKey(i.first.c_str(), m_activeContext.allocator);
classArr.PushBack(classKey, m_activeContext.allocator);
rapidjson::Value membersArr(rapidjson::kArrayType);
for (auto& j : i.second)
{
rapidjson::Value member(rapidjson::kArrayType);
member.PushBack(j.first, m_activeContext.allocator);
member.PushBack(j.second, m_activeContext.allocator);
membersArr.PushBack(member, m_activeContext.allocator);
}
classArr.PushBack(membersArr, m_activeContext.allocator);
classes.PushBack(classArr, m_activeContext.allocator);
}
m_activeContext.doc.AddMember(key, classes, m_activeContext.allocator);
}
void Deserialize(std::string& name, std::unordered_map<std::string, std::unordered_map<uint64_t, uint64_t>>& b)
{
for (auto& i : m_activeDeserContext.doc[name.c_str()].GetArray())
{
std::string key = i.GetArray()[0].GetString();
std::unordered_map<uint64_t, uint64_t> memArray;
for (auto& member : i.GetArray()[1].GetArray())
{
memArray[member.GetArray()[0].GetUint64()] = member.GetArray()[1].GetUint64();
}
b[key] = memArray;
}
}
void Deserialize(std::string& name, std::unordered_map<std::string, std::string>& b)
{
for (auto& i : m_activeDeserContext.doc[name.c_str()].GetArray())
b[i.GetArray()[0].GetString()] = i.GetArray()[1].GetString();
}
void Serialize(std::string& name, std::vector<std::string> b)
{
S();
rapidjson::Value key(name.c_str(), m_activeContext.allocator);
rapidjson::Value bArr(rapidjson::kArrayType);
for (const auto& s : b)
{
rapidjson::Value value(s.c_str(), m_activeContext.allocator);
bArr.PushBack(value, m_activeContext.allocator);
}
m_activeContext.doc.AddMember(key, bArr, m_activeContext.allocator);
}
void Deserialize(std::string& name, std::vector<std::string>& b)
{
for (auto& i : m_activeDeserContext.doc[name.c_str()].GetArray())
b.emplace_back(i.GetString());
}
void Serialize(std::string& name, std::vector<std::pair<uint64_t, std::pair<uint64_t, uint64_t>>> b)
{
S();
rapidjson::Value key(name.c_str(), m_activeContext.allocator);
rapidjson::Value bArr(rapidjson::kArrayType);
for (auto& i : b)
{
rapidjson::Value segV(rapidjson::kArrayType);
segV.PushBack(i.first, m_activeContext.allocator);
segV.PushBack(i.second.first, m_activeContext.allocator);
segV.PushBack(i.second.second, m_activeContext.allocator);
bArr.PushBack(segV, m_activeContext.allocator);
}
m_activeContext.doc.AddMember(key, bArr, m_activeContext.allocator);
}
void Deserialize(std::string& name, std::vector<std::pair<uint64_t, std::pair<uint64_t, uint64_t>>>& b)
{
for (auto& i : m_activeDeserContext.doc[name.c_str()].GetArray())
{
std::pair<uint64_t, std::pair<uint64_t, uint64_t>> j;
j.first = i.GetArray()[0].GetUint64();
j.second.first = i.GetArray()[1].GetUint64();
j.second.second = i.GetArray()[2].GetUint64();
b.push_back(j);
}
}
void Serialize(std::string& name, std::vector<std::pair<uint64_t, bool>> b)
{
S();
rapidjson::Value key(name.c_str(), m_activeContext.allocator);
rapidjson::Value bArr(rapidjson::kArrayType);
for (auto& i : b)
{
rapidjson::Value segV(rapidjson::kArrayType);
segV.PushBack(i.first, m_activeContext.allocator);
segV.PushBack(i.second, m_activeContext.allocator);
bArr.PushBack(segV, m_activeContext.allocator);
}
m_activeContext.doc.AddMember(key, bArr, m_activeContext.allocator);
}
void Deserialize(std::string& name, std::vector<std::pair<uint64_t, bool>>& b)
{
for (auto& i : m_activeDeserContext.doc[name.c_str()].GetArray())
{
std::pair<uint64_t, bool> j;
j.first = i.GetArray()[0].GetUint64();
j.second = i.GetArray()[1].GetBool();
b.push_back(j);
}
}
void Serialize(std::string& name, std::vector<uint64_t> b)
{
S();
rapidjson::Value key(name.c_str(), m_activeContext.allocator);
rapidjson::Value bArr(rapidjson::kArrayType);
for (auto& i : b)
{
bArr.PushBack(i, m_activeContext.allocator);
}
m_activeContext.doc.AddMember(key, bArr, m_activeContext.allocator);
}
void Deserialize(std::string& name, std::vector<uint64_t>& b)
{
for (auto& i : m_activeDeserContext.doc[name.c_str()].GetArray())
{
b.push_back(i.GetUint64());
}
}
// std::unordered_map<std::string, uint64_t>
void Serialize(std::string& name, std::unordered_map<std::string, uint64_t> b)
{
S();
rapidjson::Value key(name.c_str(), m_activeContext.allocator);
rapidjson::Value bArr(rapidjson::kArrayType);
for (auto& i : b)
{
rapidjson::Value p(rapidjson::kArrayType);
rapidjson::Value key(i.first.c_str(), m_activeContext.allocator);
p.PushBack(key, m_activeContext.allocator);
p.PushBack(i.second, m_activeContext.allocator);
bArr.PushBack(p, m_activeContext.allocator);
}
m_activeContext.doc.AddMember(key, bArr, m_activeContext.allocator);
}
void Deserialize(std::string& name, std::unordered_map<std::string, uint64_t>& b)
{
for (auto& i : m_activeDeserContext.doc[name.c_str()].GetArray())
{
b[i.GetArray()[0].GetString()] = i.GetArray()[1].GetUint64();
}
}
template <typename T>
void store(std::string x, T y)
{
Serialize(x, y);
}
template <typename T>
T load(std::string x, T y)
{
T val;
Deserialize(x, val);
return val;
}
rapidjson::Document& GetDoc()
{
S();
Store();
return m_activeContext.doc;
}
public:
virtual void Store() = 0;
virtual void Load() = 0;
std::string AsString()
{
rapidjson::StringBuffer strbuf;
rapidjson::PrettyWriter<rapidjson::StringBuffer> writer(strbuf);
GetDoc().Accept(writer);
std::string s = strbuf.GetString();
return s;
}
rapidjson::Document& AsDocument() { return GetDoc(); }
void LoadFromString(const std::string& s)
{
m_activeDeserContext.doc.Parse(s.c_str());
Load();
}
void LoadFromValue(rapidjson::Value& s)
{
m_activeDeserContext.doc.CopyFrom(s, m_activeDeserContext.doc.GetAllocator());
Load();
}
Ref<Metadata> AsMetadata() { return new Metadata(AsString()); }
bool LoadFromMetadata(const Ref<Metadata>& meta)
{
if (!meta->IsString())
return false;
LoadFromString(meta->GetString());
return true;
}
};
#endif // SHAREDCACHE_METADATASERIALIZABLE_HPP
|