-
Notifications
You must be signed in to change notification settings - Fork 0
/
BinaryStream.hxx
319 lines (267 loc) · 6.73 KB
/
BinaryStream.hxx
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
/*
____ _ __ ____ __ ____
/ __/___(_) / ___ ____/ __ \__ _____ ___ / /_ / _/__ ____
_\ \/ __/ / _ \/ -_) __/ /_/ / // / -_|_-</ __/ _/ // _ \/ __/
/___/\__/_/_.__/\__/_/ \___\_\_,_/\__/___/\__/ /___/_//_/\__(_)
Copyright 2012 SciberQuest Inc.
*/
#ifndef __BinaryStream_hxx
#define __BinaryStream_hxx
#include "SharedArray.hxx"
#include <cstdlib>
#include <string>
using std::string;
#include <map>
using std::map;
#include <vector>
using std::vector;
/// Serialize objects into a binary stream.
class BinaryStream
{
public:
BinaryStream();
BinaryStream(const BinaryStream &s);
~BinaryStream();
const BinaryStream &operator=(const BinaryStream &other);
/**
Release all resources, set to a uninitialized state.
*/
void Clear();
/**
Alolocate nBytes for the stream.
*/
void Resize(int nBytes);
/**
Add nBytes to the stream.
*/
void Grow(int nBytes);
/**
Get apointer to the stream internal representation.
*/
char *GetData(){ return this->Data; }
/**
Get the size of the data in the stream.
*/
size_t GetSize(){ return this->DataP-this->Data; }
/**
Set the stream position to the head of the strem
*/
void Rewind()
{
this->DataP=this->Data;
}
/**
Insert/Extract to/from the stream.
*/
template <typename T> void Pack(T *val);
template <typename T> void Pack(T val);
template <typename T> void UnPack(T &val);
template <typename T> void Pack(const T *val, int n);
template <typename T> void UnPack(T *val, int n);
// specializations
void Pack(const string &str);
void UnPack(string &str);
template<typename T> void Pack(vector<T> &v);
template<typename T> void UnPack(vector<T> &v);
template<typename T> void Pack(SharedArray<T> &v);
template<typename T> void UnPack(SharedArray<T> &v);
void Pack(map<string,int> &m);
void UnPack(map<string,int> &m);
private:
size_t Size;
char *Data;
char *DataP;
};
//-----------------------------------------------------------------------------
inline
BinaryStream::BinaryStream()
:
Size(0),
Data(0),
DataP(0)
{
// this->Size=64;
// this->Data=(char*)malloc(this->Size);
// this->DataP=this->Data;
// for (int i=0; i<this->Size; ++i)
// {
// this->Data[i]='\0';
// }
}
//-----------------------------------------------------------------------------
inline
BinaryStream::~BinaryStream()
{
this->Clear();
}
//-----------------------------------------------------------------------------
inline
BinaryStream::BinaryStream(const BinaryStream &other)
{
*this=other;
}
//-----------------------------------------------------------------------------
inline
const BinaryStream &BinaryStream::operator=(const BinaryStream &other)
{
if (&other==this) return *this;
this->Clear();
this->Resize(other.Size);
this->DataP=other.DataP;
for (size_t i=0; i<other.Size; ++i)
{
this->Data[i]=other.Data[i];
}
return *this;
}
//-----------------------------------------------------------------------------
inline
void BinaryStream::Clear()
{
free(this->Data);
this->Data=0;
this->DataP=0;
this->Size=0;
}
//-----------------------------------------------------------------------------
inline
void BinaryStream::Resize(int nBytes)
{
char *origData=this->Data;
this->Data=(char *)realloc(this->Data,nBytes);
// update the stream pointer
if (this->Data!=origData)
{
this->DataP=this->Data+(this->DataP-origData);
}
this->Size=nBytes;
}
//-----------------------------------------------------------------------------
inline
void BinaryStream::Grow(int nBytes)
{
this->Resize(this->Size+nBytes);
}
//-----------------------------------------------------------------------------
template <typename T>
void BinaryStream::Pack(T *val)
{
cerr << "Error: Packing a pointer." << endl;
}
//-----------------------------------------------------------------------------
template <typename T>
void BinaryStream::Pack(T val)
{
this->Grow(sizeof(T));
*((T *)this->DataP)=val;
this->DataP+=sizeof(T);
}
//-----------------------------------------------------------------------------
template <typename T>
void BinaryStream::UnPack(T &val)
{
val=*((T *)this->DataP);
this->DataP+=sizeof(T);
}
//-----------------------------------------------------------------------------
template <typename T>
void BinaryStream::Pack(const T *val, int n)
{
const int nBytes=n*sizeof(T);
this->Grow(nBytes);
for (int i=0; i<n; ++i,this->DataP+=sizeof(T))
{
*((T *)this->DataP)=val[i];
}
}
//-----------------------------------------------------------------------------
template <typename T>
void BinaryStream::UnPack(T *val, int n)
{
for (int i=0; i<n; ++i, this->DataP+=sizeof(T))
{
val[i]=*((T *)this->DataP);
}
}
//-----------------------------------------------------------------------------
inline
void BinaryStream::Pack(const string &str)
{
int strLen=str.size();
this->Pack(strLen);
this->Pack(str.c_str(),strLen);
}
//-----------------------------------------------------------------------------
inline
void BinaryStream::UnPack(string &str)
{
int strLen=0;
this->UnPack(strLen);
str.resize(strLen);
str.assign(this->DataP,strLen);
this->DataP+=strLen;
}
//-----------------------------------------------------------------------------
template<typename T>
void BinaryStream::Pack(vector<T> &v)
{
const int vLen=v.size();
this->Pack(vLen);
this->Pack(&v[0],vLen);
}
//-----------------------------------------------------------------------------
template<typename T>
void BinaryStream::UnPack(vector<T> &v)
{
int vLen;
this->UnPack(vLen);
v.resize(vLen);
this->UnPack(&v[0],vLen);
}
//-----------------------------------------------------------------------------
template<typename T>
void BinaryStream::Pack(SharedArray<T> &v)
{
const int vLen=v.Size();
this->Pack(vLen);
this->Pack(v.GetPointer(),vLen);
}
//-----------------------------------------------------------------------------
template<typename T>
void BinaryStream::UnPack(SharedArray<T> &v)
{
int vLen;
this->UnPack(vLen);
v.Resize(vLen);
this->UnPack(v.GetPointer(),vLen);
}
//-----------------------------------------------------------------------------
inline
void BinaryStream::Pack(map<string,int> &m)
{
const int mLen=m.size();
this->Pack(mLen);
map<string,int>::iterator it=m.begin();
map<string,int>::iterator end=m.end();
for (;it!=end; ++it)
{
this->Pack(it->first);
this->Pack(it->second);
}
}
//-----------------------------------------------------------------------------
inline
void BinaryStream::UnPack(map<string,int> &m)
{
int mLen=0;
this->UnPack(mLen);
for (int i=0; i<mLen; ++i)
{
string key;
this->UnPack(key);
int val;
this->UnPack(val);
m[key]=val;
}
}
#endif