1 // Copyright (c) 2009-2010 Satoshi Nakamoto
\r
2 // Distributed under the MIT/X11 software license, see the accompanying
\r
3 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
\r
7 #include <boost/type_traits/is_fundamental.hpp>
\r
8 #if defined(_MSC_VER) || defined(__BORLANDC__)
\r
9 typedef __int64 int64;
\r
10 typedef unsigned __int64 uint64;
\r
12 typedef long long int64;
\r
13 typedef unsigned long long uint64;
\r
15 #if defined(_MSC_VER) && _MSC_VER < 1300
\r
16 #define for if (false) ; else for
\r
22 static const int VERSION = 203;
\r
23 static const char* pszSubVer = ".0";
\r
29 /////////////////////////////////////////////////////////////////
\r
31 // Templates for serializing to anything that looks like a stream,
\r
32 // i.e. anything that supports .read(char*, int) and .write(char*, int)
\r
38 SER_NETWORK = (1 << 0),
\r
39 SER_DISK = (1 << 1),
\r
40 SER_GETHASH = (1 << 2),
\r
43 SER_SKIPSIG = (1 << 16),
\r
44 SER_BLOCKHEADERONLY = (1 << 17),
\r
47 #define IMPLEMENT_SERIALIZE(statements) \
\r
48 unsigned int GetSerializeSize(int nType=0, int nVersion=VERSION) const \
\r
50 CSerActionGetSerializeSize ser_action; \
\r
51 const bool fGetSize = true; \
\r
52 const bool fWrite = false; \
\r
53 const bool fRead = false; \
\r
54 unsigned int nSerSize = 0; \
\r
55 ser_streamplaceholder s; \
\r
57 s.nVersion = nVersion; \
\r
61 template<typename Stream> \
\r
62 void Serialize(Stream& s, int nType=0, int nVersion=VERSION) const \
\r
64 CSerActionSerialize ser_action; \
\r
65 const bool fGetSize = false; \
\r
66 const bool fWrite = true; \
\r
67 const bool fRead = false; \
\r
68 unsigned int nSerSize = 0; \
\r
71 template<typename Stream> \
\r
72 void Unserialize(Stream& s, int nType=0, int nVersion=VERSION) \
\r
74 CSerActionUnserialize ser_action; \
\r
75 const bool fGetSize = false; \
\r
76 const bool fWrite = false; \
\r
77 const bool fRead = true; \
\r
78 unsigned int nSerSize = 0; \
\r
82 #define READWRITE(obj) (nSerSize += ::SerReadWrite(s, (obj), nType, nVersion, ser_action))
\r
92 #define WRITEDATA(s, obj) s.write((char*)&(obj), sizeof(obj))
\r
93 #define READDATA(s, obj) s.read((char*)&(obj), sizeof(obj))
\r
95 inline unsigned int GetSerializeSize(char a, int, int=0) { return sizeof(a); }
\r
96 inline unsigned int GetSerializeSize(signed char a, int, int=0) { return sizeof(a); }
\r
97 inline unsigned int GetSerializeSize(unsigned char a, int, int=0) { return sizeof(a); }
\r
98 inline unsigned int GetSerializeSize(signed short a, int, int=0) { return sizeof(a); }
\r
99 inline unsigned int GetSerializeSize(unsigned short a, int, int=0) { return sizeof(a); }
\r
100 inline unsigned int GetSerializeSize(signed int a, int, int=0) { return sizeof(a); }
\r
101 inline unsigned int GetSerializeSize(unsigned int a, int, int=0) { return sizeof(a); }
\r
102 inline unsigned int GetSerializeSize(signed long a, int, int=0) { return sizeof(a); }
\r
103 inline unsigned int GetSerializeSize(unsigned long a, int, int=0) { return sizeof(a); }
\r
104 inline unsigned int GetSerializeSize(int64 a, int, int=0) { return sizeof(a); }
\r
105 inline unsigned int GetSerializeSize(uint64 a, int, int=0) { return sizeof(a); }
\r
106 inline unsigned int GetSerializeSize(float a, int, int=0) { return sizeof(a); }
\r
107 inline unsigned int GetSerializeSize(double a, int, int=0) { return sizeof(a); }
\r
109 template<typename Stream> inline void Serialize(Stream& s, char a, int, int=0) { WRITEDATA(s, a); }
\r
110 template<typename Stream> inline void Serialize(Stream& s, signed char a, int, int=0) { WRITEDATA(s, a); }
\r
111 template<typename Stream> inline void Serialize(Stream& s, unsigned char a, int, int=0) { WRITEDATA(s, a); }
\r
112 template<typename Stream> inline void Serialize(Stream& s, signed short a, int, int=0) { WRITEDATA(s, a); }
\r
113 template<typename Stream> inline void Serialize(Stream& s, unsigned short a, int, int=0) { WRITEDATA(s, a); }
\r
114 template<typename Stream> inline void Serialize(Stream& s, signed int a, int, int=0) { WRITEDATA(s, a); }
\r
115 template<typename Stream> inline void Serialize(Stream& s, unsigned int a, int, int=0) { WRITEDATA(s, a); }
\r
116 template<typename Stream> inline void Serialize(Stream& s, signed long a, int, int=0) { WRITEDATA(s, a); }
\r
117 template<typename Stream> inline void Serialize(Stream& s, unsigned long a, int, int=0) { WRITEDATA(s, a); }
\r
118 template<typename Stream> inline void Serialize(Stream& s, int64 a, int, int=0) { WRITEDATA(s, a); }
\r
119 template<typename Stream> inline void Serialize(Stream& s, uint64 a, int, int=0) { WRITEDATA(s, a); }
\r
120 template<typename Stream> inline void Serialize(Stream& s, float a, int, int=0) { WRITEDATA(s, a); }
\r
121 template<typename Stream> inline void Serialize(Stream& s, double a, int, int=0) { WRITEDATA(s, a); }
\r
123 template<typename Stream> inline void Unserialize(Stream& s, char& a, int, int=0) { READDATA(s, a); }
\r
124 template<typename Stream> inline void Unserialize(Stream& s, signed char& a, int, int=0) { READDATA(s, a); }
\r
125 template<typename Stream> inline void Unserialize(Stream& s, unsigned char& a, int, int=0) { READDATA(s, a); }
\r
126 template<typename Stream> inline void Unserialize(Stream& s, signed short& a, int, int=0) { READDATA(s, a); }
\r
127 template<typename Stream> inline void Unserialize(Stream& s, unsigned short& a, int, int=0) { READDATA(s, a); }
\r
128 template<typename Stream> inline void Unserialize(Stream& s, signed int& a, int, int=0) { READDATA(s, a); }
\r
129 template<typename Stream> inline void Unserialize(Stream& s, unsigned int& a, int, int=0) { READDATA(s, a); }
\r
130 template<typename Stream> inline void Unserialize(Stream& s, signed long& a, int, int=0) { READDATA(s, a); }
\r
131 template<typename Stream> inline void Unserialize(Stream& s, unsigned long& a, int, int=0) { READDATA(s, a); }
\r
132 template<typename Stream> inline void Unserialize(Stream& s, int64& a, int, int=0) { READDATA(s, a); }
\r
133 template<typename Stream> inline void Unserialize(Stream& s, uint64& a, int, int=0) { READDATA(s, a); }
\r
134 template<typename Stream> inline void Unserialize(Stream& s, float& a, int, int=0) { READDATA(s, a); }
\r
135 template<typename Stream> inline void Unserialize(Stream& s, double& a, int, int=0) { READDATA(s, a); }
\r
137 inline unsigned int GetSerializeSize(bool a, int, int=0) { return sizeof(char); }
\r
138 template<typename Stream> inline void Serialize(Stream& s, bool a, int, int=0) { char f=a; WRITEDATA(s, f); }
\r
139 template<typename Stream> inline void Unserialize(Stream& s, bool& a, int, int=0) { char f; READDATA(s, f); a=f; }
\r
148 // size < 253 -- 1 byte
\r
149 // size <= USHRT_MAX -- 3 bytes (253 + 2 bytes)
\r
150 // size <= UINT_MAX -- 5 bytes (254 + 4 bytes)
\r
151 // size > UINT_MAX -- 9 bytes (255 + 8 bytes)
\r
153 inline unsigned int GetSizeOfCompactSize(uint64 nSize)
\r
155 if (nSize < UCHAR_MAX-2) return sizeof(unsigned char);
\r
156 else if (nSize <= USHRT_MAX) return sizeof(unsigned char) + sizeof(unsigned short);
\r
157 else if (nSize <= UINT_MAX) return sizeof(unsigned char) + sizeof(unsigned int);
\r
158 else return sizeof(unsigned char) + sizeof(uint64);
\r
161 template<typename Stream>
\r
162 void WriteCompactSize(Stream& os, uint64 nSize)
\r
164 if (nSize < UCHAR_MAX-2)
\r
166 unsigned char chSize = nSize;
\r
167 WRITEDATA(os, chSize);
\r
169 else if (nSize <= USHRT_MAX)
\r
171 unsigned char chSize = UCHAR_MAX-2;
\r
172 unsigned short xSize = nSize;
\r
173 WRITEDATA(os, chSize);
\r
174 WRITEDATA(os, xSize);
\r
176 else if (nSize <= UINT_MAX)
\r
178 unsigned char chSize = UCHAR_MAX-1;
\r
179 unsigned int xSize = nSize;
\r
180 WRITEDATA(os, chSize);
\r
181 WRITEDATA(os, xSize);
\r
185 unsigned char chSize = UCHAR_MAX;
\r
186 WRITEDATA(os, chSize);
\r
187 WRITEDATA(os, nSize);
\r
192 template<typename Stream>
\r
193 uint64 ReadCompactSize(Stream& is)
\r
195 unsigned char chSize;
\r
196 READDATA(is, chSize);
\r
197 uint64 nSizeRet = 0;
\r
198 if (chSize < UCHAR_MAX-2)
\r
202 else if (chSize == UCHAR_MAX-2)
\r
204 unsigned short nSize;
\r
205 READDATA(is, nSize);
\r
208 else if (chSize == UCHAR_MAX-1)
\r
210 unsigned int nSize;
\r
211 READDATA(is, nSize);
\r
217 READDATA(is, nSize);
\r
220 if (nSizeRet > (uint64)INT_MAX)
\r
221 throw std::ios_base::failure("ReadCompactSize() : size too large");
\r
228 // Wrapper for serializing arrays and POD
\r
229 // There's a clever template way to make arrays serialize normally, but MSVC6 doesn't support it
\r
231 #define FLATDATA(obj) REF(CFlatData((char*)&(obj), (char*)&(obj) + sizeof(obj)))
\r
238 CFlatData(void* pbeginIn, void* pendIn) : pbegin((char*)pbeginIn), pend((char*)pendIn) { }
\r
239 char* begin() { return pbegin; }
\r
240 const char* begin() const { return pbegin; }
\r
241 char* end() { return pend; }
\r
242 const char* end() const { return pend; }
\r
244 unsigned int GetSerializeSize(int, int=0) const
\r
246 return pend - pbegin;
\r
249 template<typename Stream>
\r
250 void Serialize(Stream& s, int, int=0) const
\r
252 s.write(pbegin, pend - pbegin);
\r
255 template<typename Stream>
\r
256 void Unserialize(Stream& s, int, int=0)
\r
258 s.read(pbegin, pend - pbegin);
\r
265 // string stored as a fixed length field
\r
267 template<std::size_t LEN>
\r
268 class CFixedFieldString
\r
271 const string* pcstr;
\r
274 explicit CFixedFieldString(const string& str) : pcstr(&str), pstr(NULL) { }
\r
275 explicit CFixedFieldString(string& str) : pcstr(&str), pstr(&str) { }
\r
277 unsigned int GetSerializeSize(int, int=0) const
\r
282 template<typename Stream>
\r
283 void Serialize(Stream& s, int, int=0) const
\r
286 strncpy(pszBuf, pcstr->c_str(), LEN);
\r
287 s.write(pszBuf, LEN);
\r
290 template<typename Stream>
\r
291 void Unserialize(Stream& s, int, int=0)
\r
294 throw std::ios_base::failure("CFixedFieldString::Unserialize : trying to unserialize to const string");
\r
295 char pszBuf[LEN+1];
\r
296 s.read(pszBuf, LEN);
\r
297 pszBuf[LEN] = '\0';
\r
307 // Forward declarations
\r
311 template<typename C> unsigned int GetSerializeSize(const basic_string<C>& str, int, int=0);
\r
312 template<typename Stream, typename C> void Serialize(Stream& os, const basic_string<C>& str, int, int=0);
\r
313 template<typename Stream, typename C> void Unserialize(Stream& is, basic_string<C>& str, int, int=0);
\r
316 template<typename T, typename A> unsigned int GetSerializeSize_impl(const std::vector<T, A>& v, int nType, int nVersion, const boost::true_type&);
\r
317 template<typename T, typename A> unsigned int GetSerializeSize_impl(const std::vector<T, A>& v, int nType, int nVersion, const boost::false_type&);
\r
318 template<typename T, typename A> inline unsigned int GetSerializeSize(const std::vector<T, A>& v, int nType, int nVersion=VERSION);
\r
319 template<typename Stream, typename T, typename A> void Serialize_impl(Stream& os, const std::vector<T, A>& v, int nType, int nVersion, const boost::true_type&);
\r
320 template<typename Stream, typename T, typename A> void Serialize_impl(Stream& os, const std::vector<T, A>& v, int nType, int nVersion, const boost::false_type&);
\r
321 template<typename Stream, typename T, typename A> inline void Serialize(Stream& os, const std::vector<T, A>& v, int nType, int nVersion=VERSION);
\r
322 template<typename Stream, typename T, typename A> void Unserialize_impl(Stream& is, std::vector<T, A>& v, int nType, int nVersion, const boost::true_type&);
\r
323 template<typename Stream, typename T, typename A> void Unserialize_impl(Stream& is, std::vector<T, A>& v, int nType, int nVersion, const boost::false_type&);
\r
324 template<typename Stream, typename T, typename A> inline void Unserialize(Stream& is, std::vector<T, A>& v, int nType, int nVersion=VERSION);
\r
326 // others derived from vector
\r
327 extern inline unsigned int GetSerializeSize(const CScript& v, int nType, int nVersion=VERSION);
\r
328 template<typename Stream> void Serialize(Stream& os, const CScript& v, int nType, int nVersion=VERSION);
\r
329 template<typename Stream> void Unserialize(Stream& is, CScript& v, int nType, int nVersion=VERSION);
\r
332 template<typename K, typename T> unsigned int GetSerializeSize(const std::pair<K, T>& item, int nType, int nVersion=VERSION);
\r
333 template<typename Stream, typename K, typename T> void Serialize(Stream& os, const std::pair<K, T>& item, int nType, int nVersion=VERSION);
\r
334 template<typename Stream, typename K, typename T> void Unserialize(Stream& is, std::pair<K, T>& item, int nType, int nVersion=VERSION);
\r
337 template<typename K, typename T, typename Pred, typename A> unsigned int GetSerializeSize(const std::map<K, T, Pred, A>& m, int nType, int nVersion=VERSION);
\r
338 template<typename Stream, typename K, typename T, typename Pred, typename A> void Serialize(Stream& os, const std::map<K, T, Pred, A>& m, int nType, int nVersion=VERSION);
\r
339 template<typename Stream, typename K, typename T, typename Pred, typename A> void Unserialize(Stream& is, std::map<K, T, Pred, A>& m, int nType, int nVersion=VERSION);
\r
342 template<typename K, typename Pred, typename A> unsigned int GetSerializeSize(const std::set<K, Pred, A>& m, int nType, int nVersion=VERSION);
\r
343 template<typename Stream, typename K, typename Pred, typename A> void Serialize(Stream& os, const std::set<K, Pred, A>& m, int nType, int nVersion=VERSION);
\r
344 template<typename Stream, typename K, typename Pred, typename A> void Unserialize(Stream& is, std::set<K, Pred, A>& m, int nType, int nVersion=VERSION);
\r
351 // If none of the specialized versions above matched, default to calling member function.
\r
352 // "int nType" is changed to "long nType" to keep from getting an ambiguous overload error.
\r
353 // The compiler will only cast int to long if none of the other templates matched.
\r
354 // Thanks to Boost serialization for this idea.
\r
356 template<typename T>
\r
357 inline unsigned int GetSerializeSize(const T& a, long nType, int nVersion=VERSION)
\r
359 return a.GetSerializeSize((int)nType, nVersion);
\r
362 template<typename Stream, typename T>
\r
363 inline void Serialize(Stream& os, const T& a, long nType, int nVersion=VERSION)
\r
365 a.Serialize(os, (int)nType, nVersion);
\r
368 template<typename Stream, typename T>
\r
369 inline void Unserialize(Stream& is, T& a, long nType, int nVersion=VERSION)
\r
371 a.Unserialize(is, (int)nType, nVersion);
\r
381 template<typename C>
\r
382 unsigned int GetSerializeSize(const basic_string<C>& str, int, int)
\r
384 return GetSizeOfCompactSize(str.size()) + str.size() * sizeof(str[0]);
\r
387 template<typename Stream, typename C>
\r
388 void Serialize(Stream& os, const basic_string<C>& str, int, int)
\r
390 WriteCompactSize(os, str.size());
\r
392 os.write((char*)&str[0], str.size() * sizeof(str[0]));
\r
395 template<typename Stream, typename C>
\r
396 void Unserialize(Stream& is, basic_string<C>& str, int, int)
\r
398 unsigned int nSize = ReadCompactSize(is);
\r
401 is.read((char*)&str[0], nSize * sizeof(str[0]));
\r
409 template<typename T, typename A>
\r
410 unsigned int GetSerializeSize_impl(const std::vector<T, A>& v, int nType, int nVersion, const boost::true_type&)
\r
412 return (GetSizeOfCompactSize(v.size()) + v.size() * sizeof(T));
\r
415 template<typename T, typename A>
\r
416 unsigned int GetSerializeSize_impl(const std::vector<T, A>& v, int nType, int nVersion, const boost::false_type&)
\r
418 unsigned int nSize = GetSizeOfCompactSize(v.size());
\r
419 for (typename std::vector<T, A>::const_iterator vi = v.begin(); vi != v.end(); ++vi)
\r
420 nSize += GetSerializeSize((*vi), nType, nVersion);
\r
424 template<typename T, typename A>
\r
425 inline unsigned int GetSerializeSize(const std::vector<T, A>& v, int nType, int nVersion)
\r
427 return GetSerializeSize_impl(v, nType, nVersion, boost::is_fundamental<T>());
\r
431 template<typename Stream, typename T, typename A>
\r
432 void Serialize_impl(Stream& os, const std::vector<T, A>& v, int nType, int nVersion, const boost::true_type&)
\r
434 WriteCompactSize(os, v.size());
\r
436 os.write((char*)&v[0], v.size() * sizeof(T));
\r
439 template<typename Stream, typename T, typename A>
\r
440 void Serialize_impl(Stream& os, const std::vector<T, A>& v, int nType, int nVersion, const boost::false_type&)
\r
442 WriteCompactSize(os, v.size());
\r
443 for (typename std::vector<T, A>::const_iterator vi = v.begin(); vi != v.end(); ++vi)
\r
444 ::Serialize(os, (*vi), nType, nVersion);
\r
447 template<typename Stream, typename T, typename A>
\r
448 inline void Serialize(Stream& os, const std::vector<T, A>& v, int nType, int nVersion)
\r
450 Serialize_impl(os, v, nType, nVersion, boost::is_fundamental<T>());
\r
454 template<typename Stream, typename T, typename A>
\r
455 void Unserialize_impl(Stream& is, std::vector<T, A>& v, int nType, int nVersion, const boost::true_type&)
\r
457 //unsigned int nSize = ReadCompactSize(is);
\r
459 //is.read((char*)&v[0], nSize * sizeof(T));
\r
461 // Limit size per read so bogus size value won't cause out of memory
\r
463 unsigned int nSize = ReadCompactSize(is);
\r
464 unsigned int i = 0;
\r
467 unsigned int blk = min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
\r
469 is.read((char*)&v[i], blk * sizeof(T));
\r
474 template<typename Stream, typename T, typename A>
\r
475 void Unserialize_impl(Stream& is, std::vector<T, A>& v, int nType, int nVersion, const boost::false_type&)
\r
477 //unsigned int nSize = ReadCompactSize(is);
\r
479 //for (std::vector<T, A>::iterator vi = v.begin(); vi != v.end(); ++vi)
\r
480 // Unserialize(is, (*vi), nType, nVersion);
\r
483 unsigned int nSize = ReadCompactSize(is);
\r
484 unsigned int i = 0;
\r
485 unsigned int nMid = 0;
\r
486 while (nMid < nSize)
\r
488 nMid += 5000000 / sizeof(T);
\r
492 for (; i < nMid; i++)
\r
493 Unserialize(is, v[i], nType, nVersion);
\r
497 template<typename Stream, typename T, typename A>
\r
498 inline void Unserialize(Stream& is, std::vector<T, A>& v, int nType, int nVersion)
\r
500 Unserialize_impl(is, v, nType, nVersion, boost::is_fundamental<T>());
\r
506 // others derived from vector
\r
508 inline unsigned int GetSerializeSize(const CScript& v, int nType, int nVersion)
\r
510 return GetSerializeSize((const vector<unsigned char>&)v, nType, nVersion);
\r
513 template<typename Stream>
\r
514 void Serialize(Stream& os, const CScript& v, int nType, int nVersion)
\r
516 Serialize(os, (const vector<unsigned char>&)v, nType, nVersion);
\r
519 template<typename Stream>
\r
520 void Unserialize(Stream& is, CScript& v, int nType, int nVersion)
\r
522 Unserialize(is, (vector<unsigned char>&)v, nType, nVersion);
\r
530 template<typename K, typename T>
\r
531 unsigned int GetSerializeSize(const std::pair<K, T>& item, int nType, int nVersion)
\r
533 return GetSerializeSize(item.first, nType, nVersion) + GetSerializeSize(item.second, nType, nVersion);
\r
536 template<typename Stream, typename K, typename T>
\r
537 void Serialize(Stream& os, const std::pair<K, T>& item, int nType, int nVersion)
\r
539 Serialize(os, item.first, nType, nVersion);
\r
540 Serialize(os, item.second, nType, nVersion);
\r
543 template<typename Stream, typename K, typename T>
\r
544 void Unserialize(Stream& is, std::pair<K, T>& item, int nType, int nVersion)
\r
546 Unserialize(is, item.first, nType, nVersion);
\r
547 Unserialize(is, item.second, nType, nVersion);
\r
555 template<typename K, typename T, typename Pred, typename A>
\r
556 unsigned int GetSerializeSize(const std::map<K, T, Pred, A>& m, int nType, int nVersion)
\r
558 unsigned int nSize = GetSizeOfCompactSize(m.size());
\r
559 for (typename std::map<K, T, Pred, A>::const_iterator mi = m.begin(); mi != m.end(); ++mi)
\r
560 nSize += GetSerializeSize((*mi), nType, nVersion);
\r
564 template<typename Stream, typename K, typename T, typename Pred, typename A>
\r
565 void Serialize(Stream& os, const std::map<K, T, Pred, A>& m, int nType, int nVersion)
\r
567 WriteCompactSize(os, m.size());
\r
568 for (typename std::map<K, T, Pred, A>::const_iterator mi = m.begin(); mi != m.end(); ++mi)
\r
569 Serialize(os, (*mi), nType, nVersion);
\r
572 template<typename Stream, typename K, typename T, typename Pred, typename A>
\r
573 void Unserialize(Stream& is, std::map<K, T, Pred, A>& m, int nType, int nVersion)
\r
576 unsigned int nSize = ReadCompactSize(is);
\r
577 typename std::map<K, T, Pred, A>::iterator mi = m.begin();
\r
578 for (unsigned int i = 0; i < nSize; i++)
\r
581 Unserialize(is, item, nType, nVersion);
\r
582 mi = m.insert(mi, item);
\r
591 template<typename K, typename Pred, typename A>
\r
592 unsigned int GetSerializeSize(const std::set<K, Pred, A>& m, int nType, int nVersion)
\r
594 unsigned int nSize = GetSizeOfCompactSize(m.size());
\r
595 for (typename std::set<K, Pred, A>::const_iterator it = m.begin(); it != m.end(); ++it)
\r
596 nSize += GetSerializeSize((*it), nType, nVersion);
\r
600 template<typename Stream, typename K, typename Pred, typename A>
\r
601 void Serialize(Stream& os, const std::set<K, Pred, A>& m, int nType, int nVersion)
\r
603 WriteCompactSize(os, m.size());
\r
604 for (typename std::set<K, Pred, A>::const_iterator it = m.begin(); it != m.end(); ++it)
\r
605 Serialize(os, (*it), nType, nVersion);
\r
608 template<typename Stream, typename K, typename Pred, typename A>
\r
609 void Unserialize(Stream& is, std::set<K, Pred, A>& m, int nType, int nVersion)
\r
612 unsigned int nSize = ReadCompactSize(is);
\r
613 typename std::set<K, Pred, A>::iterator it = m.begin();
\r
614 for (unsigned int i = 0; i < nSize; i++)
\r
617 Unserialize(is, key, nType, nVersion);
\r
618 it = m.insert(it, key);
\r
625 // Support for IMPLEMENT_SERIALIZE and READWRITE macro
\r
627 class CSerActionGetSerializeSize { };
\r
628 class CSerActionSerialize { };
\r
629 class CSerActionUnserialize { };
\r
631 template<typename Stream, typename T>
\r
632 inline unsigned int SerReadWrite(Stream& s, const T& obj, int nType, int nVersion, CSerActionGetSerializeSize ser_action)
\r
634 return ::GetSerializeSize(obj, nType, nVersion);
\r
637 template<typename Stream, typename T>
\r
638 inline unsigned int SerReadWrite(Stream& s, const T& obj, int nType, int nVersion, CSerActionSerialize ser_action)
\r
640 ::Serialize(s, obj, nType, nVersion);
\r
644 template<typename Stream, typename T>
\r
645 inline unsigned int SerReadWrite(Stream& s, T& obj, int nType, int nVersion, CSerActionUnserialize ser_action)
\r
647 ::Unserialize(s, obj, nType, nVersion);
\r
651 struct ser_streamplaceholder
\r
666 // Allocator that clears its contents before deletion
\r
668 template<typename T>
\r
669 struct secure_allocator : public std::allocator<T>
\r
671 // MSVC8 default copy constructor is broken
\r
672 typedef std::allocator<T> base;
\r
673 typedef typename base::size_type size_type;
\r
674 typedef typename base::difference_type difference_type;
\r
675 typedef typename base::pointer pointer;
\r
676 typedef typename base::const_pointer const_pointer;
\r
677 typedef typename base::reference reference;
\r
678 typedef typename base::const_reference const_reference;
\r
679 typedef typename base::value_type value_type;
\r
680 secure_allocator() throw() {}
\r
681 secure_allocator(const secure_allocator& a) throw() : base(a) {}
\r
682 ~secure_allocator() throw() {}
\r
683 template<typename _Other> struct rebind
\r
684 { typedef secure_allocator<_Other> other; };
\r
686 void deallocate(T* p, std::size_t n)
\r
689 memset(p, 0, sizeof(T) * n);
\r
690 allocator<T>::deallocate(p, n);
\r
697 // Double ended buffer combining vector and stream-like interfaces.
\r
698 // >> and << read and write unformatted data using the above serialization templates.
\r
699 // Fills with data in linear time; some stringstream implementations take N^2 time.
\r
704 typedef vector<char, secure_allocator<char> > vector_type;
\r
706 unsigned int nReadPos;
\r
713 typedef vector_type::allocator_type allocator_type;
\r
714 typedef vector_type::size_type size_type;
\r
715 typedef vector_type::difference_type difference_type;
\r
716 typedef vector_type::reference reference;
\r
717 typedef vector_type::const_reference const_reference;
\r
718 typedef vector_type::value_type value_type;
\r
719 typedef vector_type::iterator iterator;
\r
720 typedef vector_type::const_iterator const_iterator;
\r
721 typedef vector_type::reverse_iterator reverse_iterator;
\r
723 explicit CDataStream(int nTypeIn=0, int nVersionIn=VERSION)
\r
725 Init(nTypeIn, nVersionIn);
\r
728 CDataStream(const_iterator pbegin, const_iterator pend, int nTypeIn=0, int nVersionIn=VERSION) : vch(pbegin, pend)
\r
730 Init(nTypeIn, nVersionIn);
\r
733 #if !defined(_MSC_VER) || _MSC_VER >= 1300
\r
734 CDataStream(const char* pbegin, const char* pend, int nTypeIn=0, int nVersionIn=VERSION) : vch(pbegin, pend)
\r
736 Init(nTypeIn, nVersionIn);
\r
740 CDataStream(const vector_type& vchIn, int nTypeIn=0, int nVersionIn=VERSION) : vch(vchIn.begin(), vchIn.end())
\r
742 Init(nTypeIn, nVersionIn);
\r
745 CDataStream(const vector<char>& vchIn, int nTypeIn=0, int nVersionIn=VERSION) : vch(vchIn.begin(), vchIn.end())
\r
747 Init(nTypeIn, nVersionIn);
\r
750 CDataStream(const vector<unsigned char>& vchIn, int nTypeIn=0, int nVersionIn=VERSION) : vch((char*)&vchIn.begin()[0], (char*)&vchIn.end()[0])
\r
752 Init(nTypeIn, nVersionIn);
\r
755 void Init(int nTypeIn=0, int nVersionIn=VERSION)
\r
759 nVersion = nVersionIn;
\r
761 exceptmask = ios::badbit | ios::failbit;
\r
764 CDataStream& operator+=(const CDataStream& b)
\r
766 vch.insert(vch.end(), b.begin(), b.end());
\r
770 friend CDataStream operator+(const CDataStream& a, const CDataStream& b)
\r
772 CDataStream ret = a;
\r
779 return (string(begin(), end()));
\r
786 const_iterator begin() const { return vch.begin() + nReadPos; }
\r
787 iterator begin() { return vch.begin() + nReadPos; }
\r
788 const_iterator end() const { return vch.end(); }
\r
789 iterator end() { return vch.end(); }
\r
790 size_type size() const { return vch.size() - nReadPos; }
\r
791 bool empty() const { return vch.size() == nReadPos; }
\r
792 void resize(size_type n, value_type c=0) { vch.resize(n + nReadPos, c); }
\r
793 void reserve(size_type n) { vch.reserve(n + nReadPos); }
\r
794 const_reference operator[](size_type pos) const { return vch[pos + nReadPos]; }
\r
795 reference operator[](size_type pos) { return vch[pos + nReadPos]; }
\r
796 void clear() { vch.clear(); nReadPos = 0; }
\r
797 iterator insert(iterator it, const char& x=char()) { return vch.insert(it, x); }
\r
798 void insert(iterator it, size_type n, const char& x) { vch.insert(it, n, x); }
\r
800 void insert(iterator it, const_iterator first, const_iterator last)
\r
802 if (it == vch.begin() + nReadPos && last - first <= nReadPos)
\r
804 // special case for inserting at the front when there's room
\r
805 nReadPos -= (last - first);
\r
806 memcpy(&vch[nReadPos], &first[0], last - first);
\r
809 vch.insert(it, first, last);
\r
812 #if !defined(_MSC_VER) || _MSC_VER >= 1300
\r
813 void insert(iterator it, const char* first, const char* last)
\r
815 if (it == vch.begin() + nReadPos && last - first <= nReadPos)
\r
817 // special case for inserting at the front when there's room
\r
818 nReadPos -= (last - first);
\r
819 memcpy(&vch[nReadPos], &first[0], last - first);
\r
822 vch.insert(it, first, last);
\r
826 iterator erase(iterator it)
\r
828 if (it == vch.begin() + nReadPos)
\r
830 // special case for erasing from the front
\r
831 if (++nReadPos >= vch.size())
\r
833 // whenever we reach the end, we take the opportunity to clear the buffer
\r
835 return vch.erase(vch.begin(), vch.end());
\r
837 return vch.begin() + nReadPos;
\r
840 return vch.erase(it);
\r
843 iterator erase(iterator first, iterator last)
\r
845 if (first == vch.begin() + nReadPos)
\r
847 // special case for erasing from the front
\r
848 if (last == vch.end())
\r
851 return vch.erase(vch.begin(), vch.end());
\r
855 nReadPos = (last - vch.begin());
\r
860 return vch.erase(first, last);
\r
863 inline void Compact()
\r
865 vch.erase(vch.begin(), vch.begin() + nReadPos);
\r
869 bool Rewind(size_type n)
\r
871 // Rewind by n characters if the buffer hasn't been compacted yet
\r
882 void setstate(short bits, const char* psz)
\r
885 if (state & exceptmask)
\r
886 throw std::ios_base::failure(psz);
\r
889 bool eof() const { return size() == 0; }
\r
890 bool fail() const { return state & (ios::badbit | ios::failbit); }
\r
891 bool good() const { return !eof() && (state == 0); }
\r
892 void clear(short n) { state = n; } // name conflict with vector clear()
\r
893 short exceptions() { return exceptmask; }
\r
894 short exceptions(short mask) { short prev = exceptmask; exceptmask = mask; setstate(0, "CDataStream"); return prev; }
\r
895 CDataStream* rdbuf() { return this; }
\r
896 int in_avail() { return size(); }
\r
898 void SetType(int n) { nType = n; }
\r
899 int GetType() { return nType; }
\r
900 void SetVersion(int n) { nVersion = n; }
\r
901 int GetVersion() { return nVersion; }
\r
902 void ReadVersion() { *this >> nVersion; }
\r
903 void WriteVersion() { *this << nVersion; }
\r
905 CDataStream& read(char* pch, int nSize)
\r
907 // Read from the beginning of the buffer
\r
908 assert(nSize >= 0);
\r
909 unsigned int nReadPosNext = nReadPos + nSize;
\r
910 if (nReadPosNext >= vch.size())
\r
912 if (nReadPosNext > vch.size())
\r
914 setstate(ios::failbit, "CDataStream::read() : end of data");
\r
915 memset(pch, 0, nSize);
\r
916 nSize = vch.size() - nReadPos;
\r
918 memcpy(pch, &vch[nReadPos], nSize);
\r
923 memcpy(pch, &vch[nReadPos], nSize);
\r
924 nReadPos = nReadPosNext;
\r
928 CDataStream& ignore(int nSize)
\r
930 // Ignore from the beginning of the buffer
\r
931 assert(nSize >= 0);
\r
932 unsigned int nReadPosNext = nReadPos + nSize;
\r
933 if (nReadPosNext >= vch.size())
\r
935 if (nReadPosNext > vch.size())
\r
937 setstate(ios::failbit, "CDataStream::ignore() : end of data");
\r
938 nSize = vch.size() - nReadPos;
\r
944 nReadPos = nReadPosNext;
\r
948 CDataStream& write(const char* pch, int nSize)
\r
950 // Write to the end of the buffer
\r
951 assert(nSize >= 0);
\r
952 vch.insert(vch.end(), pch, pch + nSize);
\r
956 template<typename Stream>
\r
957 void Serialize(Stream& s, int nType=0, int nVersion=VERSION) const
\r
959 // Special case: stream << stream concatenates like stream += stream
\r
961 s.write((char*)&vch[0], vch.size() * sizeof(vch[0]));
\r
964 template<typename T>
\r
965 unsigned int GetSerializeSize(const T& obj)
\r
967 // Tells the size of the object if serialized to this stream
\r
968 return ::GetSerializeSize(obj, nType, nVersion);
\r
971 template<typename T>
\r
972 CDataStream& operator<<(const T& obj)
\r
974 // Serialize to this stream
\r
975 ::Serialize(*this, obj, nType, nVersion);
\r
979 template<typename T>
\r
980 CDataStream& operator>>(T& obj)
\r
982 // Unserialize from this stream
\r
983 ::Unserialize(*this, obj, nType, nVersion);
\r
988 #ifdef TESTCDATASTREAM
\r
991 // n=1000 0 seconds
\r
992 // n=2000 0 seconds
\r
993 // n=4000 0 seconds
\r
994 // n=8000 0 seconds
\r
995 // n=16000 0 seconds
\r
996 // n=32000 0 seconds
\r
997 // n=64000 1 seconds
\r
998 // n=128000 1 seconds
\r
999 // n=256000 2 seconds
\r
1000 // n=512000 4 seconds
\r
1001 // n=1024000 8 seconds
\r
1002 // n=2048000 16 seconds
\r
1003 // n=4096000 32 seconds
\r
1005 // n=1000 1 seconds
\r
1006 // n=2000 1 seconds
\r
1007 // n=4000 13 seconds
\r
1008 // n=8000 87 seconds
\r
1009 // n=16000 400 seconds
\r
1010 // n=32000 1660 seconds
\r
1011 // n=64000 6749 seconds
\r
1012 // n=128000 27241 seconds
\r
1013 // n=256000 109804 seconds
\r
1014 #include <iostream>
\r
1015 int main(int argc, char *argv[])
\r
1017 vector<unsigned char> vch(0xcc, 250);
\r
1018 printf("CDataStream:\n");
\r
1019 for (int n = 1000; n <= 4500000; n *= 2)
\r
1022 time_t nStart = time(NULL);
\r
1023 for (int i = 0; i < n; i++)
\r
1024 ss.write((char*)&vch[0], vch.size());
\r
1025 printf("n=%-10d %d seconds\n", n, time(NULL) - nStart);
\r
1027 printf("stringstream:\n");
\r
1028 for (int n = 1000; n <= 4500000; n *= 2)
\r
1031 time_t nStart = time(NULL);
\r
1032 for (int i = 0; i < n; i++)
\r
1033 ss.write((char*)&vch[0], vch.size());
\r
1034 printf("n=%-10d %d seconds\n", n, time(NULL) - nStart);
\r
1049 // Automatic closing wrapper for FILE*
\r
1050 // - Will automatically close the file when it goes out of scope if not null.
\r
1051 // - If you're returning the file pointer, return file.release().
\r
1052 // - If you need to close the file early, use file.fclose() instead of fclose(file).
\r
1064 typedef FILE element_type;
\r
1066 CAutoFile(FILE* filenew=NULL, int nTypeIn=SER_DISK, int nVersionIn=VERSION)
\r
1070 nVersion = nVersionIn;
\r
1072 exceptmask = ios::badbit | ios::failbit;
\r
1082 if (file != NULL && file != stdin && file != stdout && file != stderr)
\r
1087 FILE* release() { FILE* ret = file; file = NULL; return ret; }
\r
1088 operator FILE*() { return file; }
\r
1089 FILE* operator->() { return file; }
\r
1090 FILE& operator*() { return *file; }
\r
1091 FILE** operator&() { return &file; }
\r
1092 FILE* operator=(FILE* pnew) { return file = pnew; }
\r
1093 bool operator!() { return (file == NULL); }
\r
1099 void setstate(short bits, const char* psz)
\r
1102 if (state & exceptmask)
\r
1103 throw std::ios_base::failure(psz);
\r
1106 bool fail() const { return state & (ios::badbit | ios::failbit); }
\r
1107 bool good() const { return state == 0; }
\r
1108 void clear(short n = 0) { state = n; }
\r
1109 short exceptions() { return exceptmask; }
\r
1110 short exceptions(short mask) { short prev = exceptmask; exceptmask = mask; setstate(0, "CAutoFile"); return prev; }
\r
1112 void SetType(int n) { nType = n; }
\r
1113 int GetType() { return nType; }
\r
1114 void SetVersion(int n) { nVersion = n; }
\r
1115 int GetVersion() { return nVersion; }
\r
1116 void ReadVersion() { *this >> nVersion; }
\r
1117 void WriteVersion() { *this << nVersion; }
\r
1119 CAutoFile& read(char* pch, int nSize)
\r
1122 throw std::ios_base::failure("CAutoFile::read : file handle is NULL");
\r
1123 if (fread(pch, 1, nSize, file) != nSize)
\r
1124 setstate(ios::failbit, feof(file) ? "CAutoFile::read : end of file" : "CAutoFile::read : fread failed");
\r
1128 CAutoFile& write(const char* pch, int nSize)
\r
1131 throw std::ios_base::failure("CAutoFile::write : file handle is NULL");
\r
1132 if (fwrite(pch, 1, nSize, file) != nSize)
\r
1133 setstate(ios::failbit, "CAutoFile::write : write failed");
\r
1137 template<typename T>
\r
1138 unsigned int GetSerializeSize(const T& obj)
\r
1140 // Tells the size of the object if serialized to this stream
\r
1141 return ::GetSerializeSize(obj, nType, nVersion);
\r
1144 template<typename T>
\r
1145 CAutoFile& operator<<(const T& obj)
\r
1147 // Serialize to this stream
\r
1149 throw std::ios_base::failure("CAutoFile::operator<< : file handle is NULL");
\r
1150 ::Serialize(*this, obj, nType, nVersion);
\r
1154 template<typename T>
\r
1155 CAutoFile& operator>>(T& obj)
\r
1157 // Unserialize from this stream
\r
1159 throw std::ios_base::failure("CAutoFile::operator>> : file handle is NULL");
\r
1160 ::Unserialize(*this, obj, nType, nVersion);
\r