vector.hpp 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. #ifndef BOOST_SERIALIZATION_VECTOR_HPP
  2. #define BOOST_SERIALIZATION_VECTOR_HPP
  3. // MS compatible compilers support #pragma once
  4. #if defined(_MSC_VER)
  5. # pragma once
  6. #endif
  7. /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
  8. // vector.hpp: serialization for stl vector templates
  9. // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
  10. // fast array serialization (C) Copyright 2005 Matthias Troyer
  11. // Use, modification and distribution is subject to the Boost Software
  12. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  13. // http://www.boost.org/LICENSE_1_0.txt)
  14. // See http://www.boost.org for updates, documentation, and revision history.
  15. #include <vector>
  16. #include <boost/config.hpp>
  17. #include <boost/detail/workaround.hpp>
  18. #include <boost/archive/detail/basic_iarchive.hpp>
  19. #include <boost/serialization/access.hpp>
  20. #include <boost/serialization/nvp.hpp>
  21. #include <boost/serialization/collection_size_type.hpp>
  22. #include <boost/serialization/item_version_type.hpp>
  23. #include <boost/serialization/collections_save_imp.hpp>
  24. #include <boost/serialization/collections_load_imp.hpp>
  25. #include <boost/serialization/split_free.hpp>
  26. #include <boost/serialization/array.hpp>
  27. #include <boost/serialization/detail/get_data.hpp>
  28. #include <boost/serialization/detail/stack_constructor.hpp>
  29. #include <boost/mpl/bool_fwd.hpp>
  30. #include <boost/mpl/if.hpp>
  31. // default is being compatible with version 1.34.1 files, not 1.35 files
  32. #ifndef BOOST_SERIALIZATION_VECTOR_VERSIONED
  33. #define BOOST_SERIALIZATION_VECTOR_VERSIONED(V) (V==4 || V==5)
  34. #endif
  35. // function specializations must be defined in the appropriate
  36. // namespace - boost::serialization
  37. #if defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)
  38. #define STD _STLP_STD
  39. #else
  40. #define STD std
  41. #endif
  42. namespace boost {
  43. namespace serialization {
  44. /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
  45. // vector< T >
  46. // the default versions
  47. template<class Archive, class U, class Allocator>
  48. inline void save(
  49. Archive & ar,
  50. const std::vector<U, Allocator> &t,
  51. const unsigned int /* file_version */,
  52. mpl::false_
  53. ){
  54. boost::serialization::stl::save_collection<Archive, STD::vector<U, Allocator> >(
  55. ar, t
  56. );
  57. }
  58. template<class Archive, class U, class Allocator>
  59. inline void load(
  60. Archive & ar,
  61. std::vector<U, Allocator> &t,
  62. const unsigned int /* file_version */,
  63. mpl::false_
  64. ){
  65. const boost::archive::library_version_type library_version(
  66. ar.get_library_version()
  67. );
  68. // retrieve number of elements
  69. item_version_type item_version(0);
  70. collection_size_type count;
  71. ar >> BOOST_SERIALIZATION_NVP(count);
  72. if(boost::archive::library_version_type(3) < library_version){
  73. ar >> BOOST_SERIALIZATION_NVP(item_version);
  74. }
  75. t.reserve(count);
  76. stl::collection_load_impl(ar, t, count, item_version);
  77. }
  78. // the optimized versions
  79. template<class Archive, class U, class Allocator>
  80. inline void save(
  81. Archive & ar,
  82. const std::vector<U, Allocator> &t,
  83. const unsigned int /* file_version */,
  84. mpl::true_
  85. ){
  86. const collection_size_type count(t.size());
  87. ar << BOOST_SERIALIZATION_NVP(count);
  88. if (!t.empty())
  89. ar << boost::serialization::make_array(detail::get_data(t),t.size());
  90. }
  91. template<class Archive, class U, class Allocator>
  92. inline void load(
  93. Archive & ar,
  94. std::vector<U, Allocator> &t,
  95. const unsigned int /* file_version */,
  96. mpl::true_
  97. ){
  98. collection_size_type count(t.size());
  99. ar >> BOOST_SERIALIZATION_NVP(count);
  100. t.resize(count);
  101. unsigned int item_version=0;
  102. if(BOOST_SERIALIZATION_VECTOR_VERSIONED(ar.get_library_version())) {
  103. ar >> BOOST_SERIALIZATION_NVP(item_version);
  104. }
  105. if (!t.empty())
  106. ar >> boost::serialization::make_array(detail::get_data(t),t.size());
  107. }
  108. // dispatch to either default or optimized versions
  109. template<class Archive, class U, class Allocator>
  110. inline void save(
  111. Archive & ar,
  112. const std::vector<U, Allocator> &t,
  113. const unsigned int file_version
  114. ){
  115. typedef typename
  116. boost::serialization::use_array_optimization<Archive>::template apply<
  117. typename remove_const<U>::type
  118. >::type use_optimized;
  119. save(ar,t,file_version, use_optimized());
  120. }
  121. template<class Archive, class U, class Allocator>
  122. inline void load(
  123. Archive & ar,
  124. std::vector<U, Allocator> &t,
  125. const unsigned int file_version
  126. ){
  127. #ifdef BOOST_SERIALIZATION_VECTOR_135_HPP
  128. if (ar.get_library_version()==boost::archive::library_version_type(5))
  129. {
  130. load(ar,t,file_version, boost::is_arithmetic<U>());
  131. return;
  132. }
  133. #endif
  134. typedef typename
  135. boost::serialization::use_array_optimization<Archive>::template apply<
  136. typename remove_const<U>::type
  137. >::type use_optimized;
  138. load(ar,t,file_version, use_optimized());
  139. }
  140. // split non-intrusive serialization function member into separate
  141. // non intrusive save/load member functions
  142. template<class Archive, class U, class Allocator>
  143. inline void serialize(
  144. Archive & ar,
  145. std::vector<U, Allocator> & t,
  146. const unsigned int file_version
  147. ){
  148. boost::serialization::split_free(ar, t, file_version);
  149. }
  150. /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
  151. // vector<bool>
  152. template<class Archive, class Allocator>
  153. inline void save(
  154. Archive & ar,
  155. const std::vector<bool, Allocator> &t,
  156. const unsigned int /* file_version */
  157. ){
  158. // record number of elements
  159. collection_size_type count (t.size());
  160. ar << BOOST_SERIALIZATION_NVP(count);
  161. std::vector<bool>::const_iterator it = t.begin();
  162. while(count-- > 0){
  163. bool tb = *it++;
  164. ar << boost::serialization::make_nvp("item", tb);
  165. }
  166. }
  167. template<class Archive, class Allocator>
  168. inline void load(
  169. Archive & ar,
  170. std::vector<bool, Allocator> &t,
  171. const unsigned int /* file_version */
  172. ){
  173. // retrieve number of elements
  174. collection_size_type count;
  175. ar >> BOOST_SERIALIZATION_NVP(count);
  176. t.resize(count);
  177. for(collection_size_type i = collection_size_type(0); i < count; ++i){
  178. bool b;
  179. ar >> boost::serialization::make_nvp("item", b);
  180. t[i] = b;
  181. }
  182. }
  183. // split non-intrusive serialization function member into separate
  184. // non intrusive save/load member functions
  185. template<class Archive, class Allocator>
  186. inline void serialize(
  187. Archive & ar,
  188. std::vector<bool, Allocator> & t,
  189. const unsigned int file_version
  190. ){
  191. boost::serialization::split_free(ar, t, file_version);
  192. }
  193. } // serialization
  194. } // namespace boost
  195. #include <boost/serialization/collection_traits.hpp>
  196. BOOST_SERIALIZATION_COLLECTION_TRAITS(std::vector)
  197. #undef STD
  198. #endif // BOOST_SERIALIZATION_VECTOR_HPP