mirror of
https://github.com/USCiLab/cereal.git
synced 2025-07-20 21:52:01 +02:00
157 lines
5.7 KiB
C++
157 lines
5.7 KiB
C++
/*
|
|
Copyright (c) 2014, Randolph Voorhies, Shane Grant
|
|
All rights reserved.
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions are met:
|
|
* Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
notice, this list of conditions and the following disclaimer in the
|
|
documentation and/or other materials provided with the distribution.
|
|
* Neither the name of cereal nor the
|
|
names of its contributors may be used to endorse or promote products
|
|
derived from this software without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
DISCLAIMED. IN NO EVENT SHALL RANDOLPH VOORHIES AND SHANE GRANT BE LIABLE FOR ANY
|
|
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
#ifndef CEREAL_TEST_PORTABLE_BINARY_ARCHIVE_H_
|
|
#define CEREAL_TEST_PORTABLE_BINARY_ARCHIVE_H_
|
|
#include "common.hpp"
|
|
|
|
#include <cmath>
|
|
|
|
namespace mynamespace { struct MyCustomClass {}; }
|
|
|
|
template <class T>
|
|
inline void swapBytes( T & t )
|
|
{
|
|
cereal::portable_binary_detail::swap_bytes<sizeof(T)>( reinterpret_cast<std::uint8_t*>(&t) );
|
|
}
|
|
|
|
// swaps all output data
|
|
#define CEREAL_TEST_SWAP_OUTPUT \
|
|
swapBytes(o_bool); \
|
|
swapBytes(o_uint8); \
|
|
swapBytes(o_int8); \
|
|
swapBytes(o_uint16); \
|
|
swapBytes(o_int16); \
|
|
swapBytes(o_uint32); \
|
|
swapBytes(o_int32); \
|
|
swapBytes(o_uint64); \
|
|
swapBytes(o_int64); \
|
|
swapBytes(o_float); \
|
|
swapBytes(o_double);
|
|
|
|
#define CEREAL_TEST_CHECK_EQUAL \
|
|
CHECK_EQ(i_bool , o_bool); \
|
|
CHECK_EQ(i_uint8 , o_uint8); \
|
|
CHECK_EQ(i_int8 , o_int8); \
|
|
CHECK_EQ(i_uint16 , o_uint16); \
|
|
CHECK_EQ(i_int16 , o_int16); \
|
|
CHECK_EQ(i_uint32 , o_uint32); \
|
|
CHECK_EQ(i_int32 , o_int32); \
|
|
CHECK_EQ(i_uint64 , o_uint64); \
|
|
CHECK_EQ(i_int64 , o_int64); \
|
|
if( !std::isnan(i_float) && !std::isnan(o_float) ) CHECK_EQ(i_float , doctest::Approx(o_float).epsilon(1e-5F)); \
|
|
if( !std::isnan(i_double) && !std::isnan(o_double) ) CHECK_EQ(i_double, doctest::Approx(o_double).epsilon(1e-5));
|
|
|
|
// Last parameter exists to keep everything hidden in options
|
|
template <class IArchive, class OArchive> inline
|
|
void test_endian_serialization( typename IArchive::Options const & iOptions, typename OArchive::Options const & oOptions, const std::uint8_t inputLittleEndian )
|
|
{
|
|
std::random_device rd;
|
|
std::mt19937 gen(rd());
|
|
|
|
for(size_t i=0; i<100; ++i)
|
|
{
|
|
bool o_bool = random_value<uint8_t>(gen) % 2 ? true : false;
|
|
uint8_t o_uint8 = random_value<uint8_t>(gen);
|
|
int8_t o_int8 = random_value<int8_t>(gen);
|
|
uint16_t o_uint16 = random_value<uint16_t>(gen);
|
|
int16_t o_int16 = random_value<int16_t>(gen);
|
|
uint32_t o_uint32 = random_value<uint32_t>(gen);
|
|
int32_t o_int32 = random_value<int32_t>(gen);
|
|
uint64_t o_uint64 = random_value<uint64_t>(gen);
|
|
int64_t o_int64 = random_value<int64_t>(gen);
|
|
float o_float = random_value<float>(gen);
|
|
double o_double = random_value<double>(gen);
|
|
|
|
std::vector<int32_t> o_vector(100);
|
|
for(auto & elem : o_vector)
|
|
elem = random_value<uint32_t>(gen);
|
|
|
|
std::ostringstream os;
|
|
{
|
|
OArchive oar(os, oOptions);
|
|
oar(o_bool);
|
|
oar(o_uint8);
|
|
oar(o_int8);
|
|
oar(o_uint16);
|
|
oar(o_int16);
|
|
oar(o_uint32);
|
|
oar(o_int32);
|
|
oar(o_uint64);
|
|
oar(o_int64);
|
|
oar(o_float);
|
|
oar(o_double);
|
|
// We can't test vector directly here since we are artificially interfering with the endianness,
|
|
// which can result in the size being incorrect
|
|
oar(cereal::binary_data( o_vector.data(), static_cast<std::size_t>( o_vector.size() * sizeof(int32_t) ) ));
|
|
}
|
|
|
|
bool i_bool = false;
|
|
uint8_t i_uint8 = 0;
|
|
int8_t i_int8 = 0;
|
|
uint16_t i_uint16 = 0;
|
|
int16_t i_int16 = 0;
|
|
uint32_t i_uint32 = 0;
|
|
int32_t i_int32 = 0;
|
|
uint64_t i_uint64 = 0;
|
|
int64_t i_int64 = 0;
|
|
float i_float = 0;
|
|
double i_double = 0;
|
|
std::vector<int32_t> i_vector(100);
|
|
|
|
std::istringstream is(os.str());
|
|
{
|
|
IArchive iar(is, iOptions);
|
|
iar(i_bool);
|
|
iar(i_uint8);
|
|
iar(i_int8);
|
|
iar(i_uint16);
|
|
iar(i_int16);
|
|
iar(i_uint32);
|
|
iar(i_int32);
|
|
iar(i_uint64);
|
|
iar(i_int64);
|
|
iar(i_float);
|
|
iar(i_double);
|
|
iar(cereal::binary_data( i_vector.data(), static_cast<std::size_t>( i_vector.size() * sizeof(int32_t) ) ));
|
|
}
|
|
|
|
// Convert to big endian if we expect to read big and didn't start big
|
|
if( cereal::portable_binary_detail::is_little_endian() ^ inputLittleEndian ) // Convert to little endian if
|
|
{
|
|
CEREAL_TEST_SWAP_OUTPUT
|
|
for( auto & val : o_vector )
|
|
swapBytes(val);
|
|
}
|
|
|
|
CEREAL_TEST_CHECK_EQUAL
|
|
|
|
check_collection(i_vector, o_vector);
|
|
}
|
|
}
|
|
|
|
#endif // CEREAL_TEST_PORTABLE_BINARY_ARCHIVE_H_
|