cereal
A C++11 library for serialization
vector.hpp
Go to the documentation of this file.
1
4/*
5 Copyright (c) 2014, Randolph Voorhies, Shane Grant
6 All rights reserved.
7
8 Redistribution and use in source and binary forms, with or without
9 modification, are permitted provided that the following conditions are met:
10 * Redistributions of source code must retain the above copyright
11 notice, this list of conditions and the following disclaimer.
12 * Redistributions in binary form must reproduce the above copyright
13 notice, this list of conditions and the following disclaimer in the
14 documentation and/or other materials provided with the distribution.
15 * Neither the name of the copyright holder nor the
16 names of its contributors may be used to endorse or promote products
17 derived from this software without specific prior written permission.
18
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY
23 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29*/
30#ifndef CEREAL_TYPES_VECTOR_HPP_
31#define CEREAL_TYPES_VECTOR_HPP_
32
33#include "cereal/cereal.hpp"
34#include <vector>
35
36namespace cereal
37{
39 template <class Archive, class T, class A> inline
40 typename std::enable_if<traits::is_output_serializable<BinaryData<T>, Archive>::value
41 && std::is_arithmetic<T>::value && !std::is_same<T, bool>::value, void>::type
42 CEREAL_SAVE_FUNCTION_NAME( Archive & ar, std::vector<T, A> const & vector )
43 {
44 ar( make_size_tag( static_cast<size_type>(vector.size()) ) ); // number of elements
45 ar( binary_data( vector.data(), vector.size() * sizeof(T) ) );
46 }
47
49 template <class Archive, class T, class A> inline
50 typename std::enable_if<traits::is_input_serializable<BinaryData<T>, Archive>::value
51 && std::is_arithmetic<T>::value && !std::is_same<T, bool>::value, void>::type
52 CEREAL_LOAD_FUNCTION_NAME( Archive & ar, std::vector<T, A> & vector )
53 {
54 size_type vectorSize;
55 ar( make_size_tag( vectorSize ) );
56
57 vector.resize( static_cast<std::size_t>( vectorSize ) );
58 ar( binary_data( vector.data(), static_cast<std::size_t>( vectorSize ) * sizeof(T) ) );
59 }
60
62 template <class Archive, class T, class A> inline
63 typename std::enable_if<(!traits::is_output_serializable<BinaryData<T>, Archive>::value
64 || !std::is_arithmetic<T>::value) && !std::is_same<T, bool>::value, void>::type
65 CEREAL_SAVE_FUNCTION_NAME( Archive & ar, std::vector<T, A> const & vector )
66 {
67 ar( make_size_tag( static_cast<size_type>(vector.size()) ) ); // number of elements
68 for(auto && v : vector)
69 ar( v );
70 }
71
73 template <class Archive, class T, class A> inline
74 typename std::enable_if<(!traits::is_input_serializable<BinaryData<T>, Archive>::value
75 || !std::is_arithmetic<T>::value) && !std::is_same<T, bool>::value, void>::type
76 CEREAL_LOAD_FUNCTION_NAME( Archive & ar, std::vector<T, A> & vector )
77 {
78 size_type size;
79 ar( make_size_tag( size ) );
80
81 vector.resize( static_cast<std::size_t>( size ) );
82 for(auto && v : vector)
83 ar( v );
84 }
85
87 template <class Archive, class A> inline
88 void CEREAL_SAVE_FUNCTION_NAME( Archive & ar, std::vector<bool, A> const & vector )
89 {
90 ar( make_size_tag( static_cast<size_type>(vector.size()) ) ); // number of elements
91 for(const auto v : vector)
92 ar( static_cast<bool>(v) );
93 }
94
96 template <class Archive, class A> inline
97 void CEREAL_LOAD_FUNCTION_NAME( Archive & ar, std::vector<bool, A> & vector )
98 {
99 size_type size;
100 ar( make_size_tag( size ) );
101
102 vector.resize( static_cast<std::size_t>( size ) );
103 for(auto && v : vector)
104 {
105 bool b;
106 ar( b );
107 v = b;
108 }
109 }
110} // namespace cereal
111
112#endif // CEREAL_TYPES_VECTOR_HPP_
Main cereal functionality.
CEREAL_SIZE_TYPE size_type
The size type used by cereal.
Definition: helpers.hpp:61
#define CEREAL_LOAD_FUNCTION_NAME
The deserialization (load) function name to search for.
Definition: macros.hpp:85
#define CEREAL_SAVE_FUNCTION_NAME
The serialization (save) function name to search for.
Definition: macros.hpp:92