set.hpp 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. #ifndef BOOST_SERIALIZATION_SET_HPP
  2. #define BOOST_SERIALIZATION_SET_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. // set.hpp: serialization for stl set templates
  9. // (C) Copyright 2002-2014 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 <set>
  15. #include <boost/config.hpp>
  16. #include <boost/archive/detail/basic_iarchive.hpp>
  17. #include <boost/serialization/access.hpp>
  18. #include <boost/serialization/nvp.hpp>
  19. #include <boost/serialization/detail/stack_constructor.hpp>
  20. #include <boost/serialization/collection_size_type.hpp>
  21. #include <boost/serialization/item_version_type.hpp>
  22. #include <boost/serialization/collections_save_imp.hpp>
  23. #include <boost/serialization/split_free.hpp>
  24. namespace boost {
  25. namespace serialization {
  26. template<class Archive, class Container>
  27. inline void load_set_collection(Archive & ar, Container &s)
  28. {
  29. s.clear();
  30. const boost::archive::library_version_type library_version(
  31. ar.get_library_version()
  32. );
  33. // retrieve number of elements
  34. item_version_type item_version(0);
  35. collection_size_type count;
  36. ar >> BOOST_SERIALIZATION_NVP(count);
  37. if(boost::archive::library_version_type(3) < library_version){
  38. ar >> BOOST_SERIALIZATION_NVP(item_version);
  39. }
  40. typename Container::iterator hint;
  41. hint = s.begin();
  42. while(count-- > 0){
  43. typedef typename Container::value_type type;
  44. detail::stack_construct<Archive, type> t(ar, item_version);
  45. // borland fails silently w/o full namespace
  46. ar >> boost::serialization::make_nvp("item", t.reference());
  47. typename Container::iterator result =
  48. #ifdef BOOST_NO_CXX11_HDR_UNORDERED_SET
  49. s.insert(hint, t.reference());
  50. #else
  51. s.emplace_hint(hint, t.reference());
  52. #endif
  53. ar.reset_object_address(& (* result), & t.reference());
  54. hint = result;
  55. }
  56. }
  57. template<class Archive, class Key, class Compare, class Allocator >
  58. inline void save(
  59. Archive & ar,
  60. const std::set<Key, Compare, Allocator> &t,
  61. const unsigned int /* file_version */
  62. ){
  63. boost::serialization::stl::save_collection<
  64. Archive, std::set<Key, Compare, Allocator>
  65. >(ar, t);
  66. }
  67. template<class Archive, class Key, class Compare, class Allocator >
  68. inline void load(
  69. Archive & ar,
  70. std::set<Key, Compare, Allocator> &t,
  71. const unsigned int /* file_version */
  72. ){
  73. load_set_collection(ar, t);
  74. }
  75. // split non-intrusive serialization function member into separate
  76. // non intrusive save/load member functions
  77. template<class Archive, class Key, class Compare, class Allocator >
  78. inline void serialize(
  79. Archive & ar,
  80. std::set<Key, Compare, Allocator> & t,
  81. const unsigned int file_version
  82. ){
  83. boost::serialization::split_free(ar, t, file_version);
  84. }
  85. // multiset
  86. template<class Archive, class Key, class Compare, class Allocator >
  87. inline void save(
  88. Archive & ar,
  89. const std::multiset<Key, Compare, Allocator> &t,
  90. const unsigned int /* file_version */
  91. ){
  92. boost::serialization::stl::save_collection<
  93. Archive,
  94. std::multiset<Key, Compare, Allocator>
  95. >(ar, t);
  96. }
  97. template<class Archive, class Key, class Compare, class Allocator >
  98. inline void load(
  99. Archive & ar,
  100. std::multiset<Key, Compare, Allocator> &t,
  101. const unsigned int /* file_version */
  102. ){
  103. load_set_collection(ar, t);
  104. }
  105. // split non-intrusive serialization function member into separate
  106. // non intrusive save/load member functions
  107. template<class Archive, class Key, class Compare, class Allocator >
  108. inline void serialize(
  109. Archive & ar,
  110. std::multiset<Key, Compare, Allocator> & t,
  111. const unsigned int file_version
  112. ){
  113. boost::serialization::split_free(ar, t, file_version);
  114. }
  115. } // namespace serialization
  116. } // namespace boost
  117. #include <boost/serialization/collection_traits.hpp>
  118. BOOST_SERIALIZATION_COLLECTION_TRAITS(std::set)
  119. BOOST_SERIALIZATION_COLLECTION_TRAITS(std::multiset)
  120. #endif // BOOST_SERIALIZATION_SET_HPP