12
12
#include < streambuf>
13
13
#include < tuple>
14
14
15
- namespace NSaveLoad {
15
+ namespace NHandyPack {
16
16
17
17
template <class T , typename E = void >
18
18
class TSerializer {
19
19
public:
20
- static void Save (std::ostream& out, const T& object) {
21
- object.Save (out);
20
+ static void Dump (std::ostream& out, const T& object) {
21
+ object.Dump (out);
22
22
}
23
23
static void Load (std::istream& in, T& object) {
24
24
object.Load (in);
25
25
}
26
26
};
27
27
28
28
template <class T >
29
- static inline void Save (std::ostream& out, const T& t);
29
+ static inline void Dump (std::ostream& out, const T& t);
30
30
31
31
template <class T >
32
32
static inline void Load (std::istream& in, T& t);
@@ -35,45 +35,45 @@ static inline void Load(std::istream& in, T& t);
35
35
template <class A , class B >
36
36
class TSerializer <std::pair<A, B> > {
37
37
public:
38
- static void Save (std::ostream& out, const std::pair<A, B>& object) {
39
- NSaveLoad::Save (out, object.first);
40
- NSaveLoad::Save (out, object.second);
38
+ static void Dump (std::ostream& out, const std::pair<A, B>& object) {
39
+ NHandyPack::Dump (out, object.first );
40
+ NHandyPack::Dump (out, object.second );
41
41
}
42
42
static void Load (std::istream& in, std::pair<A, B>& object) {
43
- NSaveLoad ::Load (in, object.first);
44
- NSaveLoad ::Load (in, object.second);
43
+ NHandyPack ::Load (in, object.first );
44
+ NHandyPack ::Load (in, object.second );
45
45
}
46
46
};
47
47
48
48
template <std::size_t > struct int_ {};
49
49
50
50
template <class Tuple , size_t Pos>
51
- void SaveTuple (std::ostream& out, const Tuple& tuple, int_<Pos>) {
52
- SaveTuple (out, tuple, int_<Pos-1 >());
53
- NSaveLoad::Save (out, std::get<std::tuple_size<Tuple>::value-Pos>(tuple));
51
+ void DumpTuple (std::ostream& out, const Tuple& tuple, int_<Pos>) {
52
+ DumpTuple (out, tuple, int_<Pos-1 >());
53
+ NHandyPack::Dump (out, std::get<std::tuple_size<Tuple>::value-Pos>(tuple));
54
54
}
55
55
56
56
template <class Tuple >
57
- void SaveTuple (std::ostream& out, const Tuple& tuple, int_<1 >) {
58
- NSaveLoad::Save (out, std::get<std::tuple_size<Tuple>::value-1 >(tuple));
57
+ void DumpTuple (std::ostream& out, const Tuple& tuple, int_<1 >) {
58
+ NHandyPack::Dump (out, std::get<std::tuple_size<Tuple>::value-1 >(tuple));
59
59
}
60
60
61
61
template <class Tuple , size_t Pos>
62
62
void LoadTuple (std::istream& in, Tuple& tuple, int_<Pos>) {
63
63
LoadTuple (in, tuple, int_<Pos-1 >());
64
- NSaveLoad ::Load (in, std::get<std::tuple_size<Tuple>::value-Pos>(tuple));
64
+ NHandyPack ::Load (in, std::get<std::tuple_size<Tuple>::value-Pos>(tuple));
65
65
}
66
66
67
67
template <class Tuple >
68
68
void LoadTuple (std::istream& in, Tuple& tuple, int_<1 >) {
69
- NSaveLoad ::Load (in, std::get<std::tuple_size<Tuple>::value-1 >(tuple));
69
+ NHandyPack ::Load (in, std::get<std::tuple_size<Tuple>::value-1 >(tuple));
70
70
}
71
71
72
72
template <class ... Args>
73
73
class TSerializer <std::tuple<Args...>> {
74
74
public:
75
- static void Save (std::ostream& out, const std::tuple<Args...>& object) {
76
- SaveTuple (out, object, int_<sizeof ...(Args)>());
75
+ static void Dump (std::ostream& out, const std::tuple<Args...>& object) {
76
+ DumpTuple (out, object, int_<sizeof ...(Args)>());
77
77
}
78
78
static void Load (std::istream& in, std::tuple<Args...>& object) {
79
79
LoadTuple (in, object, int_<sizeof ...(Args)>());
@@ -83,11 +83,11 @@ class TSerializer<std::tuple<Args...>> {
83
83
template <class TVec , class TObj >
84
84
class TVectorSerializer {
85
85
public:
86
- static inline void Save (std::ostream& out, const TVec& object) {
86
+ static inline void Dump (std::ostream& out, const TVec& object) {
87
87
uint32_t size = object.size ();
88
88
out.write ((const char *)(&size), sizeof (size));
89
89
for (const auto & obj: object) {
90
- NSaveLoad::Save (out, obj);
90
+ NHandyPack::Dump (out, obj);
91
91
}
92
92
}
93
93
@@ -98,7 +98,7 @@ class TVectorSerializer {
98
98
object.reserve (size);
99
99
for (size_t i = 0 ; i < size; ++i) {
100
100
TObj obj;
101
- NSaveLoad ::Load (in, obj);
101
+ NHandyPack ::Load (in, obj);
102
102
object.push_back (std::move (obj));
103
103
}
104
104
}
@@ -107,11 +107,11 @@ class TVectorSerializer {
107
107
template <class TVec , class TKey , class TValue >
108
108
class TMapSerializer {
109
109
public:
110
- static inline void Save (std::ostream& out, const TVec& object) {
110
+ static inline void Dump (std::ostream& out, const TVec& object) {
111
111
uint32_t size = object.size ();
112
112
out.write ((const char *)(&size), sizeof (size));
113
113
for (const auto & obj: object) {
114
- NSaveLoad::Save (out, obj);
114
+ NHandyPack::Dump (out, obj);
115
115
}
116
116
}
117
117
@@ -121,7 +121,7 @@ class TMapSerializer {
121
121
object.clear ();
122
122
for (size_t i = 0 ; i < size; ++i) {
123
123
std::pair<TKey, TValue> obj;
124
- NSaveLoad ::Load (in, obj);
124
+ NHandyPack ::Load (in, obj);
125
125
object.insert (std::move (obj));
126
126
}
127
127
}
@@ -130,11 +130,11 @@ class TMapSerializer {
130
130
template <class TVec , class TKey , class TValue >
131
131
class TUnorderedMapSerializer {
132
132
public:
133
- static inline void Save (std::ostream& out, const TVec& object) {
133
+ static inline void Dump (std::ostream& out, const TVec& object) {
134
134
uint32_t size = object.size ();
135
135
out.write ((const char *)(&size), sizeof (size));
136
136
for (const auto & obj: object) {
137
- NSaveLoad::Save (out, obj);
137
+ NHandyPack::Dump (out, obj);
138
138
}
139
139
}
140
140
@@ -145,7 +145,7 @@ class TUnorderedMapSerializer {
145
145
object.reserve (size);
146
146
for (size_t i = 0 ; i < size; ++i) {
147
147
std::pair<TKey, TValue> obj;
148
- NSaveLoad ::Load (in, obj);
148
+ NHandyPack ::Load (in, obj);
149
149
object.insert (std::move (obj));
150
150
}
151
151
}
@@ -154,11 +154,11 @@ class TUnorderedMapSerializer {
154
154
template <class TVec , class TObj >
155
155
class TSetSerializer {
156
156
public:
157
- static inline void Save (std::ostream& out, const TVec& object) {
157
+ static inline void Dump (std::ostream& out, const TVec& object) {
158
158
uint32_t size = object.size ();
159
159
out.write ((const char *)(&size), sizeof (size));
160
160
for (const auto & obj: object) {
161
- NSaveLoad::Save (out, obj);
161
+ NHandyPack::Dump (out, obj);
162
162
}
163
163
}
164
164
@@ -168,7 +168,7 @@ class TSetSerializer {
168
168
object.clear ();
169
169
for (size_t i = 0 ; i < size; ++i) {
170
170
TObj obj;
171
- NSaveLoad ::Load (in, obj);
171
+ NHandyPack ::Load (in, obj);
172
172
object.insert (std::move (obj));
173
173
}
174
174
}
@@ -186,7 +186,7 @@ template <class T> class TSerializer<std::unordered_set<T> >: public TSetSeriali
186
186
template <class T >
187
187
class TPodSerializer {
188
188
public:
189
- static inline void Save (std::ostream& out, const T& object) {
189
+ static inline void Dump (std::ostream& out, const T& object) {
190
190
out.write ((const char *)(&object), sizeof (T));
191
191
}
192
192
static inline void Load (std::istream& in, T& object) {
@@ -198,14 +198,14 @@ template<class T>
198
198
class TSerializer <T, typename std::enable_if<!std::is_class<T>::value>::type>: public TPodSerializer<T> {};
199
199
200
200
template <class T >
201
- static inline void Save (std::ostream& out, const T& t) {
202
- TSerializer<T>::Save (out, t);
201
+ static inline void Dump (std::ostream& out, const T& t) {
202
+ TSerializer<T>::Dump (out, t);
203
203
}
204
204
205
205
template <class T , class ... Args>
206
- static inline void Save (std::ostream& out, const T& first, const Args&... args) {
207
- NSaveLoad::Save (out, first);
208
- NSaveLoad::Save (out, args...);
206
+ static inline void Dump (std::ostream& out, const T& first, const Args&... args) {
207
+ NHandyPack::Dump (out, first);
208
+ NHandyPack::Dump (out, args...);
209
209
}
210
210
211
211
template <class T >
@@ -215,17 +215,17 @@ static inline void Load(std::istream& in, T& t) {
215
215
216
216
template <class T , class ... Args>
217
217
static inline void Load (std::istream& in, T& first, Args&... args) {
218
- NSaveLoad ::Load (in, first);
219
- NSaveLoad ::Load (in, args...);
218
+ NHandyPack ::Load (in, first);
219
+ NHandyPack ::Load (in, args...);
220
220
}
221
221
222
- #define SAVELOAD (...) \
223
- inline virtual void Save (std::ostream& out) const { \
224
- NSaveLoad::Save (out, __VA_ARGS__); \
222
+ #define HANDYPACK (...) \
223
+ inline virtual void Dump (std::ostream& out) const { \
224
+ NHandyPack::Dump (out, __VA_ARGS__); \
225
225
} \
226
226
\
227
227
inline virtual void Load (std::istream& in) { \
228
- NSaveLoad ::Load (in, __VA_ARGS__); \
228
+ NHandyPack ::Load (in, __VA_ARGS__); \
229
229
}
230
230
231
231
@@ -242,6 +242,6 @@ struct imemstream: virtual membuf, std::istream {
242
242
}
243
243
};
244
244
245
- #define SAVELOAD_POD (TypeName ) template <> class TSerializer <TypeName>: public TPodSerializer<TypeName> {};
245
+ #define HANDYPACK_POD (TypeName ) template <> class TSerializer <TypeName>: public TPodSerializer<TypeName> {};
246
246
247
- } // NSaveLoad
247
+ } // NHandyPack
0 commit comments