array.hpp 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. #ifndef BOOST_SERIALIZATION_ARRAY_HPP
  2. #define BOOST_SERIALIZATION_ARRAY_HPP
  3. // (C) Copyright 2005 Matthias Troyer and Dave Abrahams
  4. // Use, modification and distribution is subject to the Boost Software
  5. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. //#include <iostream>
  8. #include <boost/config.hpp> // msvc 6.0 needs this for warning suppression
  9. #if defined(BOOST_NO_STDC_NAMESPACE)
  10. namespace std{
  11. using ::size_t;
  12. } // namespace std
  13. #endif
  14. #include <boost/serialization/nvp.hpp>
  15. #include <boost/serialization/split_member.hpp>
  16. #include <boost/serialization/wrapper.hpp>
  17. #include <boost/serialization/collection_size_type.hpp>
  18. #include <boost/mpl/always.hpp>
  19. #include <boost/mpl/apply.hpp>
  20. #include <boost/mpl/bool_fwd.hpp>
  21. #include <boost/type_traits/remove_const.hpp>
  22. #include <boost/type_traits/is_integral.hpp>
  23. #include <boost/static_assert.hpp>
  24. namespace boost { namespace serialization {
  25. // traits to specify whether to use an optimized array serialization
  26. template <class Archive>
  27. struct use_array_optimization : boost::mpl::always<boost::mpl::false_> {};
  28. template<class T>
  29. class array_wrapper :
  30. public wrapper_traits<const array_wrapper< T > >
  31. {
  32. private:
  33. array_wrapper & operator=(const array_wrapper & rhs);
  34. public:
  35. // note: I would like to make the copy constructor private but this breaks
  36. // make_array. So I try to make make_array a friend - but that doesn't
  37. // build. Need a C++ guru to explain this!
  38. template<class S>
  39. friend const boost::serialization::array_wrapper<T> make_array( T* t, S s);
  40. array_wrapper(const array_wrapper & rhs) :
  41. m_t(rhs.m_t),
  42. m_element_count(rhs.m_element_count)
  43. {}
  44. public:
  45. array_wrapper(T * t, std::size_t s) :
  46. m_t(t),
  47. m_element_count(s)
  48. {}
  49. // default implementation
  50. template<class Archive>
  51. void serialize_optimized(Archive &ar, const unsigned int, mpl::false_ ) const
  52. {
  53. // default implemention does the loop
  54. std::size_t c = count();
  55. T * t = address();
  56. while(0 < c--)
  57. ar & boost::serialization::make_nvp("item", *t++);
  58. }
  59. // optimized implementation
  60. template<class Archive>
  61. void serialize_optimized(Archive &ar, const unsigned int version, mpl::true_ )
  62. {
  63. boost::serialization::split_member(ar, *this, version);
  64. }
  65. // default implementation
  66. template<class Archive>
  67. void save(Archive &ar, const unsigned int version) const
  68. {
  69. ar.save_array(*this,version);
  70. }
  71. // default implementation
  72. template<class Archive>
  73. void load(Archive &ar, const unsigned int version)
  74. {
  75. ar.load_array(*this,version);
  76. }
  77. // default implementation
  78. template<class Archive>
  79. void serialize(Archive &ar, const unsigned int version)
  80. {
  81. typedef typename
  82. boost::serialization::use_array_optimization<Archive>::template apply<
  83. typename remove_const< T >::type
  84. >::type use_optimized;
  85. serialize_optimized(ar,version,use_optimized());
  86. }
  87. T * address() const
  88. {
  89. return m_t;
  90. }
  91. std::size_t count() const
  92. {
  93. return m_element_count;
  94. }
  95. private:
  96. T * const m_t;
  97. const std::size_t m_element_count;
  98. };
  99. template<class T, class S>
  100. inline
  101. const array_wrapper< T > make_array( T* t, S s){
  102. const array_wrapper< T > a(t, s);
  103. return a;
  104. }
  105. } } // end namespace boost::serialization
  106. // I can't figure out why BOOST_NO_CXX11_HDR_ARRAY
  107. // has been set for clang-11. So just make sure
  108. // it's reset now. Needs further research!!!
  109. #if defined(_LIBCPP_VERSION)
  110. #undef BOOST_NO_CXX11_HDR_ARRAY
  111. #endif
  112. #ifndef BOOST_NO_CXX11_HDR_ARRAY
  113. #include <array>
  114. namespace boost { namespace serialization {
  115. // implement serialization for std::array
  116. template <class Archive, class T, std::size_t N>
  117. void serialize(Archive& ar, std::array<T,N>& a, const unsigned int /* version */)
  118. {
  119. ar & boost::serialization::make_nvp(
  120. "elems",
  121. *static_cast<T (*)[N]>(static_cast<void *>(a.data()))
  122. );
  123. }
  124. } } // end namespace boost::serialization
  125. #endif
  126. #include <boost/array.hpp>
  127. namespace boost { namespace serialization {
  128. // implement serialization for boost::array
  129. template <class Archive, class T, std::size_t N>
  130. void serialize(Archive& ar, boost::array<T,N>& a, const unsigned int /* version */)
  131. {
  132. ar & boost::serialization::make_nvp("elems", a.elems);
  133. }
  134. } } // end namespace boost::serialization
  135. #define BOOST_SERIALIZATION_USE_ARRAY_OPTIMIZATION(Archive) \
  136. namespace boost { namespace serialization { \
  137. template <> struct use_array_optimization<Archive> { \
  138. template <class ValueType> \
  139. struct apply : boost::mpl::apply1<Archive::use_array_optimization \
  140. , typename boost::remove_const<ValueType>::type \
  141. >::type {}; \
  142. }; }}
  143. #endif //BOOST_SERIALIZATION_ARRAY_HPP