This repository was archived by the owner on Oct 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathArchive.h
817 lines (689 loc) · 25.4 KB
/
Archive.h
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
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
/**
* Pakal persist serializer - version 1.0
* --------------------------------------------------------
* Copyright (C) 2015-2020, by Luis Alberto Gudiño Salinas ([email protected])
* Report bugs and download new versions at https://github.com/elios264/pakal_persist
*
* This library is distributed under the MIT License. See notice at the end
* of this comment.
*
* This work is based on the sweet persist, which is:
* Copyright (C) 2006 - 2011, by Charles Baker (http://www.sweetsoftware.co.nz/persist_overview.html)
*
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
#pragma once
#include <string>
#include "PersistUtils.h"
#include <map>
#include <vector>
#include <cassert>
#include <functional>
namespace Pakal
{
enum class ArchiveType
{
Reader,
Writer,
Resolver,
};
class SimpleFactoyManager : public IFactoryManager
{
std::map<std::string, std::function<void*()>> m_factories;
public:
void* create_object(const std::string& className) override;
template<class T>
void declare_object(const std::string& objectName, std::function<T*()> factory)
{
m_factories[objectName] = [factory]() { return static_cast<void*>(factory()); };
}
};
class Archive
{
ArchiveType m_type;
std::map<void*, std::vector<const void*>> m_insertion_order;
IFactoryManager* m_object_factory;
short m_is_pointer;
Archive(const Archive& other) = delete;
Archive& operator=(const Archive& other) = delete;
template< typename C, std::enable_if_t<!trait_utils::has_reserve<C>::value>* = nullptr >
inline void try_reserve(C&, std::size_t) {}
template< typename C, std::enable_if_t<trait_utils::has_reserve<C>::value>* = nullptr>
inline void try_reserve(C& c, std::size_t n)
{
c.reserve(c.size() + n);
}
template<class T, std::enable_if_t<trait_utils::has_member_persist<T>::value>* = nullptr>
inline void call_persist(T& object)
{
object.persist(this);
}
template<class T, std::enable_if_t<trait_utils::has_static_persist<T>::value>* = nullptr>
inline void call_persist(T& object)
{
Persist<T>::persist(this, object);
}
template<class T, std::enable_if_t<trait_utils::has_persist<T>::value>* = nullptr>
inline void container_value(const T& object);
template<class T, std::enable_if_t<!trait_utils::has_persist<T>::value>* = nullptr >
inline void container_value(const T& object);
template<class T>
T* create_polymorphic_object()
{
auto className = get_object_class_name();
auto newObject = *className && m_object_factory ? m_object_factory->create_object(className) : nullptr;
return newObject ? static_cast<T*>(newObject) : create_non_polymorphic_object<T>();
}
template<class T, std::enable_if_t<std::is_constructible<T>::value>* = nullptr >
inline T* create_non_polymorphic_object() { return new T(); }
template<class T, std::enable_if_t<!std::is_constructible<T>::value>* = nullptr >
inline T* create_non_polymorphic_object()
{
assert(("could not instanciate object for deserialization since is not constructible nor in the factory", false));
return nullptr;
}
protected:
static constexpr const char* address_kwd = "address";
static constexpr const char* class_kwd = "class";
virtual bool has_object(const char* name) = 0;
virtual void begin_object(const char* name,bool isContainer = false) = 0;
virtual void end_object_as_reference() = 0;
virtual void end_object_as_value(const void* address) = 0;
virtual void refer_object(const char* name, void*& value) = 0;
virtual size_t get_children_name_count(const char* name) = 0;
virtual void set_object_class_name(const char* className) = 0;
virtual const char* get_object_class_name() = 0;
inline void set_type(ArchiveType type) { m_type = type; }
inline void clear_read_cache() { m_insertion_order.clear(); }
static inline void assert_if_reserved(const char* name)
{
assert(("sorry keywords address and class are reserved for internal use", strcmp(address_kwd, name) != 0 && strcmp(class_kwd, name) != 0));
};
explicit Archive(ArchiveType type, IFactoryManager* factory = nullptr) : m_type(type), m_object_factory(factory), m_is_pointer(0) {}
virtual ~Archive() {}
public:
inline ArchiveType get_type() { return m_type; }
inline void set_type_name(const std::string& typeName)
{
if (m_is_pointer > 0 && m_type == ArchiveType::Writer)
set_object_class_name(typeName.c_str());
}
virtual void value(const char* name, bool& value) = 0;
virtual void value(const char* name, char& value) = 0;
virtual void value(const char* name, signed char& value) = 0;
virtual void value(const char* name, unsigned char& value) = 0;
virtual void value(const char* name, short& value) = 0;
virtual void value(const char* name, unsigned short& value) = 0;
virtual void value(const char* name, int& value) = 0;
virtual void value(const char* name, unsigned int& value) = 0;
virtual void value(const char* name, long& value) = 0;
virtual void value(const char* name, unsigned long& value) = 0;
virtual void value(const char* name, float& value) = 0;
virtual void value(const char* name, double& value) = 0;
virtual void value(const char* name, char* value, size_t max) = 0;
virtual void value(const char* name, std::string& value) = 0;
template<class T, std::enable_if_t<std::is_pointer<T>::value>* = nullptr>
void value(const char* name, T& object);
//for an object that has a member called persist
template<class T, std::enable_if_t<trait_utils::has_persist<T>::value>* = nullptr>
void value(const char* name, T& object);
//for an enum, is treated as the underlying type
template<class T, std::enable_if_t<std::is_enum<T>::value>* = nullptr>
void value(const char* name, T& object);
//for stl container or array with default childName to "item"
template<class T, std::enable_if_t<trait_utils::has_persist<T>::value == false && std::is_enum<T>::value == false && std::is_pointer<T>::value==false>* = nullptr >
void value(const char* name, T& object);
//for stl container that is not associative
template <template<typename ...> class stl_container, typename T,typename...etc, std::enable_if_t<!trait_utils::iterates_with_pair<stl_container<T,etc...>>::value>* = nullptr>
void value(const char* name, const char* childName, stl_container<T, etc...>& container);
//for an associative stl container like a map
template <template<typename ...> class stl_container, typename Key,typename Value,typename...etc, std::enable_if_t<trait_utils::iterates_with_pair<stl_container<Key,Value,etc...>>::value>* = nullptr>
void value(const char* name, const char* childName, stl_container<Key,Value,etc...>& container, const char* keyName = "key", const char* valueName = "value");
////for an array
template <class T, size_t Length>
void value(const char* name, const char* childName, T (&container)[Length]);
//----------------Pointers as values--------------------------------------------
template<class T, std::enable_if_t<trait_utils::has_persist<T>::value>* = nullptr>
void value(const char* name, T*& object);
template<class T, std::enable_if_t<!trait_utils::has_persist<T>::value>* = nullptr>
void value(const char* name, T*& object);
template <template<typename ...> class stl_container, typename T, typename...etc ,std::enable_if_t<!trait_utils::iterates_with_pair<stl_container<T*, etc...>>::value>* = nullptr>
void value(const char* name, const char* childName, stl_container<T*, etc...>& container);
template <template<typename ...> class stl_container, typename Key, typename Value, typename...etc, std::enable_if_t<trait_utils::iterates_with_pair<stl_container<Key, Value*, etc...>>::value>* = nullptr>
void value(const char* name, const char* childName, stl_container<Key, Value*, etc...>& container, const char* keyName = "key", const char* valueName = "value");
template <class T, size_t Length>
void value(const char* name, const char* childName, T*(&container)[Length]);
//---------Pointers as references------------------------------
//for a pointer to an object just store the address
template <class T>
void refer(const char* name, T*& object);
//for stl container of pointers just store the addresses
template <template<typename ...> class stl_container, typename T, typename...etc, std::enable_if_t<!trait_utils::iterates_with_pair<stl_container<T*, etc...>>::value>* = nullptr>
void refer(const char* name, const char* childName, stl_container<T*,etc...>& container);
//for associative stl container just store the addresses of the value field,
template <template<typename ...> class stl_container,typename Key,typename Value,typename...etc, std::enable_if_t<trait_utils::iterates_with_pair<stl_container<Key,Value*,etc...>>::value>* = nullptr>
void refer(const char* name, const char* childName, stl_container<Key,Value*,etc...>& container,const char* keyName = "key", const char* valueName = "value");
//for an array of pointers, just store the adresses
template <class T, size_t Length>
void refer(const char* name, const char* childName, T*(&values)[Length]);
};
template<class T, std::enable_if_t<std::is_pointer<T>::value>*>
void Archive::value(const char* name, T& object)
{
typename std::remove_pointer<T>::type* pointerObject = object;
value(name, pointerObject);
object = pointerObject;
}
template<class T, std::enable_if_t<trait_utils::has_persist<T>::value>*>
void Archive::value(const char* name, T& object)
{
begin_object(name);
call_persist(object);
end_object_as_value(&object);
}
template<class T, std::enable_if_t<std::is_enum<T>::value>*>
void Archive::value(const char* name, T& Enum)
{
auto n = static_cast<typename std::underlying_type<T>::type>(Enum);
value(name, n);
Enum = static_cast<T>(n);
}
template<class T, std::enable_if_t<trait_utils::has_persist<T>::value == false && std::is_enum<T>::value == false && std::is_pointer<T>::value == false>* >
void Archive::value(const char* name, T& object)
{
static_assert(trait_utils::is_container<T>::value || std::is_array<T>::value, "T/Key must have a persist method or to be a stl container or an array or a pointer or an enum or a basic type");
value(name, "item", object);
}
template<template<typename...> class stl_container, typename T, typename... etc, std::enable_if_t<!trait_utils::iterates_with_pair<stl_container<T, etc...>>::value>*>
void Archive::value(const char* name, const char* childName, stl_container<T, etc...>& container)
{
if (*name)
begin_object(name,true);
switch (m_type)
{
case ArchiveType::Reader:
{
size_t count = get_children_name_count(childName);
try_reserve(container, count);
std::vector<const void*>& orderList = m_insertion_order[&container];
orderList.reserve(count);
for (size_t i = 0; i < count; i++)
{
begin_object(childName);
T&& value = T();
container_value(value);
const void* finalAddress = &*container.insert(container.end(), value);
orderList.push_back(finalAddress);
end_object_as_value(finalAddress);
}
}
break;
case ArchiveType::Resolver:
{
std::vector<const void*>& orderList = m_insertion_order[&container];
for(const void* elementAddr : orderList)
{
const T* element = static_cast<const T*>(elementAddr);
begin_object(childName);
container_value(*element);
end_object_as_value(element);
}
m_insertion_order.erase(&container);
}
break;
case ArchiveType::Writer:
{
for (const T& element : container)
{
begin_object(childName);
container_value(element);
end_object_as_value(&element);
}
}
break;
}
if (*name)
end_object_as_value(&container);
}
template<template <typename ...> class stl_container, typename Key, typename Value, typename ... etc, std::enable_if_t<trait_utils::iterates_with_pair<stl_container<Key, Value, etc...>>::value>*>
void Archive::value(const char* name, const char* childName, stl_container<Key, Value, etc...>& container, const char* keyName, const char* valueName)
{
static_assert(!std::is_pointer<Key>::value, "pointers are not currently supported as key on a map");
if (*name)
begin_object(name,true);
switch (m_type)
{
case ArchiveType::Reader:
{
size_t count = get_children_name_count(childName);
std::vector<const void*>& orderList = m_insertion_order[&container];
orderList.reserve(count);
for (size_t i = 0; i < count; i++)
{
begin_object(childName);
{
Key&& key = Key();
Value* valueAddress = nullptr;
if (has_object(keyName))
{
begin_object(keyName);
container_value(key);
auto& addresses = *container.insert(std::make_pair(key, Value())).first;
valueAddress = &addresses.second;
orderList.push_back(&addresses);
end_object_as_value(&addresses.first);
}
else
{
value(keyName, key);
auto& addresses = *container.insert(std::make_pair(key, Value())).first;
valueAddress = &addresses.second;
orderList.push_back(&addresses);
}
value(valueName, *valueAddress);
}
end_object_as_value(nullptr);
}
}
break;
case ArchiveType::Resolver:
{
std::vector<const void*>& orderList = m_insertion_order[&container];
for (const void* elementAddr : orderList)
{
const auto* element = static_cast<const typename stl_container<Key, Value, etc...>::value_type*>(elementAddr);
begin_object(childName);
{
value(keyName, const_cast<Key&>(element->first));
value(valueName, const_cast<Value&>(element->second));
}
end_object_as_value(&element);
}
m_insertion_order.erase(&container);
}
break;
case ArchiveType::Writer:
{
for (auto& element : container)
{
begin_object(childName);
{
value(keyName, const_cast<Key&>(element.first));
value(valueName, element.second);
}
end_object_as_value(&element);
}
}
break;
}
if (*name)
end_object_as_value(&container);
}
template<class T, size_t Length>
void Archive::value(const char* name, const char* childName, T(& container)[Length])
{
if (*name)
begin_object(name,true);
size_t count = Length;
if (m_type == ArchiveType::Reader || m_type == ArchiveType::Resolver)
{
count = get_children_name_count(childName) > Length ? Length : get_children_name_count(childName);
}
for (size_t i = 0; i < count; i++)
{
begin_object(childName);
container_value(container[i]);
end_object_as_value(&container[i]);
}
if (*name)
end_object_as_value(&container);
}
template<class T, std::enable_if_t<!trait_utils::has_persist<T>::value>*>
void Archive::value(const char* name, T*& object)
{
if (m_type == ArchiveType::Reader)
{
object = create_non_polymorphic_object<T>();
}
value(name, *object);
}
template<class T, std::enable_if_t<trait_utils::has_persist<T>::value>*>
void Archive::value(const char* name, T*& object)
{
begin_object(name);
if (m_type == ArchiveType::Reader) object = create_polymorphic_object<T>();
m_is_pointer++;
call_persist(*object);
m_is_pointer--;
end_object_as_value(object);
}
template<template <typename ...> class stl_container, typename T, typename ... etc, std::enable_if_t<!trait_utils::iterates_with_pair<stl_container<T*, etc...>>::value>*>
void Archive::value(const char* name, const char* childName, stl_container<T*, etc...>& container)
{
if (*name)
begin_object(name,true);
switch (m_type)
{
case ArchiveType::Reader:
{
size_t count = get_children_name_count(childName);
try_reserve(container, count);
std::vector<const void*>& orderList = m_insertion_order[&container];
orderList.reserve(count);
for (size_t i = 0; i < count; i++)
{
begin_object(childName);
T* object = create_polymorphic_object<T>();
container_value(*object);
orderList.push_back(object);
container.insert(container.end(), object);
end_object_as_value(object);
}
}
break;
case ArchiveType::Resolver:
{
std::vector<const void*>& orderList = m_insertion_order[&container];
for (const void* elementAddr : orderList)
{
const T* element = static_cast<const T*>(elementAddr);
begin_object(childName);
container_value(*element);
end_object_as_value(element);
}
m_insertion_order.erase(&container);
}
break;
case ArchiveType::Writer:
{
for (const T* element : container)
{
begin_object(childName);
m_is_pointer++;
container_value(*element);
m_is_pointer--;
end_object_as_value(element);
}
}
break;
}
if (*name)
end_object_as_value(&container);
}
template<template <typename ...> class stl_container, typename Key, typename Value, typename ... etc, std::enable_if_t<trait_utils::iterates_with_pair<stl_container<Key, Value*, etc...>>::value>*>
void Archive::value(const char* name, const char* childName, stl_container<Key, Value*, etc...>& container, const char* keyName , const char* valueName )
{
static_assert(!std::is_pointer<Key>::value, "pointers are not currently supported as key on a map");
if (*name)
begin_object(name,true);
switch (m_type)
{
case ArchiveType::Reader:
{
size_t count = get_children_name_count(childName);
std::vector<const void*>& orderList = m_insertion_order[&container];
orderList.reserve(count);
for (size_t i = 0; i < count; i++)
{
begin_object(childName);
{
Key&& key = Key();
Value** valueAddress = nullptr;
if (has_object(keyName))
{
begin_object(keyName);
container_value(key);
auto& addresses = *container.insert(std::make_pair(key, nullptr)).first;
orderList.push_back(&addresses);
valueAddress = &addresses.second;
end_object_as_value(&addresses.first);
}
else
{
value(keyName, key);
auto& addresses = *container.insert(std::make_pair(key, nullptr)).first;
valueAddress = &addresses.second;
orderList.push_back(&addresses);
}
value(valueName, *valueAddress);
}
end_object_as_value(nullptr);
}
}
break;
case ArchiveType::Resolver:
{
std::vector<const void*>& orderList = m_insertion_order[&container];
for (const void* elementAddr : orderList)
{
const auto* element = static_cast<const typename stl_container<Key, Value*, etc...>::value_type*>(elementAddr);
begin_object(childName);
{
value(keyName, const_cast<Key&>(element->first));
value(valueName, *element->second);
}
end_object_as_value(&element);
}
m_insertion_order.erase(&container);
}
break;
case ArchiveType::Writer:
{
for (auto& element : container)
{
begin_object(childName);
{
value(keyName, const_cast<Key&>(element.first));
m_is_pointer++;
value(valueName, *element.second);
m_is_pointer--;
}
end_object_as_value(&element);
}
}
break;
}
if (*name)
end_object_as_value(&container);
}
template<class T, size_t Length>
void Archive::value(const char* name, const char* childName, T*(&container)[Length])
{
if (*name)
begin_object(name,true);
size_t count = Length;
if (m_type == ArchiveType::Reader || m_type == ArchiveType::Resolver)
{
count = get_children_name_count(childName) > Length ? Length : get_children_name_count(childName);
}
switch (m_type)
{
case ArchiveType::Reader:
{
for (size_t i = 0; i < count; i++)
{
begin_object(childName);
T* object = create_polymorphic_object<T>();
container_value(*object);
container[i] = object;
end_object_as_value(object);
}
}
break;
case ArchiveType::Resolver:
case ArchiveType::Writer:
{
for (size_t i = 0; i < count; i++)
{
begin_object(childName);
m_is_pointer++;
container_value(*container[i]);
m_is_pointer--;
end_object_as_value(container[i]);
}
}
break;
}
if (*name)
end_object_as_value(&container);
}
template<class T>
void Archive::refer(const char* name, T*& object)
{
if (m_type == ArchiveType::Resolver || m_type == ArchiveType::Writer)
{
refer_object(name, *reinterpret_cast<void**>(&object));
}
}
template<template <typename ...> class stl_container, typename T, typename ... etc, std::enable_if_t<!trait_utils::iterates_with_pair<stl_container<T*, etc...>>::value>*>
void Archive::refer(const char* name, const char* childName, stl_container<T*, etc...>& container)
{
if (*name)
begin_object(name,true);
switch (m_type)
{
case ArchiveType::Resolver:
{
size_t count = get_children_name_count(childName);
try_reserve(container, count);
for (size_t i = 0; i < count; i++)
{
begin_object(childName);
T* pointer = nullptr;
refer(address_kwd, pointer);
container.insert(container.end(), pointer);
end_object_as_reference();
}
}
break;
case ArchiveType::Writer:
{
for (const T* e : container)
{
begin_object(childName);
T* ptr = const_cast<T*>(e);
refer(address_kwd, ptr);
end_object_as_reference();
}
}
break;
case ArchiveType::Reader:
break;
}
if (*name)
end_object_as_value(&container);
}
template<template <typename ...> class stl_container, typename Key, typename Value, typename ... etc, std::enable_if_t<trait_utils::iterates_with_pair<stl_container<Key, Value*, etc...>>::value>*>
void Archive::refer(const char* name, const char* childName, stl_container<Key, Value*, etc...>& container, const char* keyName, const char* valueName )
{
static_assert(!std::is_pointer<Key>::value, "pointers are not currently supported as key on a map");
if (*name)
begin_object(name,true);
switch (m_type)
{
case ArchiveType::Resolver:
{
size_t count = get_children_name_count(childName);
for (size_t i = 0; i < count; i++)
{
begin_object(childName);
{
Key&& key = Key();
Value** valueAddress = nullptr;
if (has_object(keyName))
{
begin_object(keyName);
container_value(key);
auto& addresses = *container.insert(std::make_pair(key, nullptr)).first;
valueAddress = &addresses.second;
end_object_as_value(&addresses.first);
}
else
{
value(keyName, key);
auto& addresses = *container.insert(std::make_pair(key, nullptr)).first;
valueAddress = &addresses.second;
}
refer(valueName, *valueAddress);
}
end_object_as_value(nullptr);
}
}
break;
case ArchiveType::Writer:
{
for (auto& e : container)
{
begin_object(childName);
{
value(keyName, const_cast<Key&>(e.first));
refer(valueName, e.second);
}
end_object_as_value(&e);
}
}
break;
case ArchiveType::Reader:
break;
}
if (*name)
end_object_as_value(&container);
}
template<class T, size_t Length>
void Archive::refer(const char* name, const char* childName, T*(& container)[Length])
{
if (*name)
begin_object(name,true);
size_t count = m_type == ArchiveType::Resolver
? (get_children_name_count(childName) > Length ? Length : get_children_name_count(childName))
: Length;
switch (m_type)
{
case ArchiveType::Resolver:
case ArchiveType::Writer:
{
for (size_t i = 0; i < count; i++)
{
begin_object(childName);
refer(address_kwd, container[i]);
end_object_as_reference();
}
}
break;
case ArchiveType::Reader:
break;
}
if (*name)
end_object_as_value(&container);
}
template<class T, std::enable_if_t<trait_utils::has_persist<T>::value>*>
void Archive::container_value(const T& obj)
{
call_persist(const_cast<T&>(obj));
}
template<class T, std::enable_if_t<!trait_utils::has_persist<T>::value>*>
void Archive::container_value(const T& obj)
{
value("value", const_cast<T&>(obj));
}
}