slist.hpp 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. #ifndef BOOST_SERIALIZATION_SLIST_HPP
  2. #define BOOST_SERIALIZATION_SLIST_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. // slist.hpp
  9. // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
  10. // Use, modification and distribution is subject to the Boost Software
  11. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  12. // http://www.boost.org/LICENSE_1_0.txt)
  13. // See http://www.boost.org for updates, documentation, and revision history.
  14. #include <boost/config.hpp>
  15. #ifdef BOOST_HAS_SLIST
  16. #include BOOST_SLIST_HEADER
  17. #include <boost/serialization/collections_save_imp.hpp>
  18. #include <boost/serialization/collections_load_imp.hpp>
  19. #include <boost/archive/detail/basic_iarchive.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/split_free.hpp>
  24. #include <boost/serialization/detail/stack_constructor.hpp>
  25. #include <boost/serialization/detail/is_default_constructible.hpp>
  26. namespace boost {
  27. namespace serialization {
  28. template<class Archive, class U, class Allocator>
  29. inline void save(
  30. Archive & ar,
  31. const BOOST_STD_EXTENSION_NAMESPACE::slist<U, Allocator> &t,
  32. const unsigned int file_version
  33. ){
  34. boost::serialization::stl::save_collection<
  35. Archive,
  36. BOOST_STD_EXTENSION_NAMESPACE::slist<U, Allocator>
  37. >(ar, t);
  38. }
  39. namespace stl {
  40. template<
  41. class Archive,
  42. class T,
  43. class Allocator
  44. >
  45. typename boost::disable_if<
  46. typename detail::is_default_constructible<
  47. typename BOOST_STD_EXTENSION_NAMESPACE::slist<T, Allocator>::value_type
  48. >,
  49. void
  50. >::type
  51. collection_load_impl(
  52. Archive & ar,
  53. BOOST_STD_EXTENSION_NAMESPACE::slist<T, Allocator> &t,
  54. collection_size_type count,
  55. item_version_type item_version
  56. ){
  57. t.clear();
  58. boost::serialization::detail::stack_construct<Archive, T> u(ar, item_version);
  59. ar >> boost::serialization::make_nvp("item", u.reference());
  60. t.push_front(u.reference());
  61. typename BOOST_STD_EXTENSION_NAMESPACE::slist<T, Allocator>::iterator last;
  62. last = t.begin();
  63. ar.reset_object_address(&(*t.begin()) , & u.reference());
  64. while(--count > 0){
  65. detail::stack_construct<Archive, T> u(ar, item_version);
  66. ar >> boost::serialization::make_nvp("item", u.reference());
  67. last = t.insert_after(last, u.reference());
  68. ar.reset_object_address(&(*last) , & u.reference());
  69. }
  70. }
  71. } // stl
  72. template<class Archive, class U, class Allocator>
  73. inline void load(
  74. Archive & ar,
  75. BOOST_STD_EXTENSION_NAMESPACE::slist<U, Allocator> &t,
  76. const unsigned int file_version
  77. ){
  78. const boost::archive::library_version_type library_version(
  79. ar.get_library_version()
  80. );
  81. // retrieve number of elements
  82. item_version_type item_version(0);
  83. collection_size_type count;
  84. ar >> BOOST_SERIALIZATION_NVP(count);
  85. if(boost::archive::library_version_type(3) < library_version){
  86. ar >> BOOST_SERIALIZATION_NVP(item_version);
  87. }
  88. if(detail::is_default_constructible<U>()){
  89. t.resize(count);
  90. typename BOOST_STD_EXTENSION_NAMESPACE::slist<U, Allocator>::iterator hint;
  91. hint = t.begin();
  92. while(count-- > 0){
  93. ar >> boost::serialization::make_nvp("item", *hint++);
  94. }
  95. }
  96. else{
  97. t.clear();
  98. boost::serialization::detail::stack_construct<Archive, U> u(ar, item_version);
  99. ar >> boost::serialization::make_nvp("item", u.reference());
  100. t.push_front(u.reference());
  101. typename BOOST_STD_EXTENSION_NAMESPACE::slist<U, Allocator>::iterator last;
  102. last = t.begin();
  103. ar.reset_object_address(&(*t.begin()) , & u.reference());
  104. while(--count > 0){
  105. detail::stack_construct<Archive, U> u(ar, item_version);
  106. ar >> boost::serialization::make_nvp("item", u.reference());
  107. last = t.insert_after(last, u.reference());
  108. ar.reset_object_address(&(*last) , & u.reference());
  109. }
  110. }
  111. }
  112. // split non-intrusive serialization function member into separate
  113. // non intrusive save/load member functions
  114. template<class Archive, class U, class Allocator>
  115. inline void serialize(
  116. Archive & ar,
  117. BOOST_STD_EXTENSION_NAMESPACE::slist<U, Allocator> &t,
  118. const unsigned int file_version
  119. ){
  120. boost::serialization::split_free(ar, t, file_version);
  121. }
  122. } // serialization
  123. } // namespace boost
  124. #include <boost/serialization/collection_traits.hpp>
  125. BOOST_SERIALIZATION_COLLECTION_TRAITS(BOOST_STD_EXTENSION_NAMESPACE::slist)
  126. #endif // BOOST_HAS_SLIST
  127. #endif // BOOST_SERIALIZATION_SLIST_HPP