Bayeux
3.4.1
Core Foundation library for SuperNEMO
|
Portable binary output archive using little endian format. More...
#include <bayeux/boost/archive/portable_oarchive.hpp>
Public Member Functions | |
portable_oarchive (std::ostream &os, unsigned flags=0) | |
Constructor on a stream using ios::binary mode! More... | |
portable_oarchive (std::streambuf &sb, unsigned flags=0) | |
void | save (const std::string &s) |
Save narrow strings. More... | |
void | save (const std::wstring &s) |
Save wide strings. More... | |
void | save (const bool &b) |
Saving bool type. More... | |
template<typename T > | |
boost::enable_if< boost::is_integral< T > >::type | save (const T &t, dummy< 2 >=0) |
Save integer types. More... | |
template<typename T > | |
boost::enable_if< boost::is_floating_point< T > >::type | save (const T &t, dummy< 3 >=0) |
Save floating point types. More... | |
template<typename T > | |
boost::disable_if< boost::is_arithmetic< T > >::type | save (const T &t, dummy< 4 >=0) |
Portable binary output archive using little endian format.
This archive addresses integer size, endianness and floating point types so that data can be transferred across different systems. The archive consists primarily of three different save implementations for integral types, floating point types and string types. Those functions are templates and use enable_if to be correctly selected for overloading.
|
inline |
Constructor on a stream using ios::binary mode!
We cannot call basic_binary_oprimitive::init which stores type sizes to the archive in order to detect transfers to non-compatible platforms.
We could have called basic_binary_oarchive::init which would create the boost::serialization standard archive header containing also the library version. Due to efficiency we stick with our own.
|
inline |
|
inline |
Save narrow strings.
|
inline |
Save wide strings.
This is rather tricky to get right for true portability as there are so many different character encodings around. However, wide strings that are encoded in one of the Unicode schemes only need to be transcoded which is a lot easier actually.
We expect the input string to be encoded in the system's native format, ie. UTF-16 on Windows and UTF-32 on Linux machines. Don't know about Mac here so I can't really say about that.
|
inline |
Saving bool type.
Saving bool directly, not by const reference because of tracking_type's operator (bool).
|
inline |
Save integer types.
First we save the size information ie. the number of bytes that hold the actual data. We subsequently transform the data using store_little_endian and store non-zero bytes to the stream.
|
inline |
Save floating point types.
We simply rely on fp_traits to extract the bit pattern into an (unsigned) integral type and store that into the stream. Francois Mauger provided standardized behaviour for special values like inf and NaN, that need to be serialized in his application.
The member fp_traits<T>::type::coverage will tell you whether all bits are copied. This is a typedef for either math::detail::all_bits or math::detail::not_all_bits.
If the function does not copy all bits, then it will copy the most significant bits. So if you serialize and deserialize the way you describe, and fp_traits<T>::type::coverage is math::detail::not_all_bits, then your floating point numbers will be truncated. This will introduce small rounding off errors.
|
inline |