hash_set.hpp 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. #ifndef BOOST_SERIALIZATION_HASH_SET_HPP
  2. #define BOOST_SERIALIZATION_HASH_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. // hash_set.hpp: serialization for stl hash_set templates
  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_HASH
  16. #include BOOST_HASH_SET_HEADER
  17. #include <boost/serialization/hash_collections_save_imp.hpp>
  18. #include <boost/serialization/hash_collections_load_imp.hpp>
  19. #include <boost/serialization/split_free.hpp>
  20. namespace boost {
  21. namespace serialization {
  22. namespace stl {
  23. // hash_set input
  24. template<class Archive, class Container>
  25. struct archive_input_hash_set
  26. {
  27. inline void operator()(
  28. Archive &ar,
  29. Container &s,
  30. const unsigned int v
  31. ){
  32. typedef typename Container::value_type type;
  33. detail::stack_construct<Archive, type> t(ar, v);
  34. // borland fails silently w/o full namespace
  35. ar >> boost::serialization::make_nvp("item", t.reference());
  36. std::pair<typename Container::const_iterator, bool> result =
  37. s.insert(t.reference());
  38. if(result.second)
  39. ar.reset_object_address(& (* result.first), & t.reference());
  40. }
  41. };
  42. // hash_multiset input
  43. template<class Archive, class Container>
  44. struct archive_input_hash_multiset
  45. {
  46. inline void operator()(
  47. Archive &ar,
  48. Container &s,
  49. const unsigned int v
  50. ){
  51. typedef typename Container::value_type type;
  52. detail::stack_construct<Archive, type> t(ar, v);
  53. // borland fails silently w/o full namespace
  54. ar >> boost::serialization::make_nvp("item", t.reference());
  55. typename Container::const_iterator result
  56. = s.insert(t.reference());
  57. ar.reset_object_address(& (* result), & t.reference());
  58. }
  59. };
  60. } // stl
  61. template<
  62. class Archive,
  63. class Key,
  64. class HashFcn,
  65. class EqualKey,
  66. class Allocator
  67. >
  68. inline void save(
  69. Archive & ar,
  70. const BOOST_STD_EXTENSION_NAMESPACE::hash_set<
  71. Key, HashFcn, EqualKey, Allocator
  72. > &t,
  73. const unsigned int file_version
  74. ){
  75. boost::serialization::stl::save_hash_collection<
  76. Archive,
  77. BOOST_STD_EXTENSION_NAMESPACE::hash_set<
  78. Key, HashFcn, EqualKey, Allocator
  79. >
  80. >(ar, t);
  81. }
  82. template<
  83. class Archive,
  84. class Key,
  85. class HashFcn,
  86. class EqualKey,
  87. class Allocator
  88. >
  89. inline void load(
  90. Archive & ar,
  91. BOOST_STD_EXTENSION_NAMESPACE::hash_set<
  92. Key, HashFcn, EqualKey, Allocator
  93. > &t,
  94. const unsigned int file_version
  95. ){
  96. boost::serialization::stl::load_hash_collection<
  97. Archive,
  98. BOOST_STD_EXTENSION_NAMESPACE::hash_set<
  99. Key, HashFcn, EqualKey, Allocator
  100. >,
  101. boost::serialization::stl::archive_input_hash_set<
  102. Archive,
  103. BOOST_STD_EXTENSION_NAMESPACE::hash_set<
  104. Key, HashFcn, EqualKey, Allocator
  105. >
  106. >
  107. >(ar, t);
  108. }
  109. // split non-intrusive serialization function member into separate
  110. // non intrusive save/load member functions
  111. template<
  112. class Archive,
  113. class Key,
  114. class HashFcn,
  115. class EqualKey,
  116. class Allocator
  117. >
  118. inline void serialize(
  119. Archive & ar,
  120. BOOST_STD_EXTENSION_NAMESPACE::hash_set<
  121. Key, HashFcn, EqualKey, Allocator
  122. > &t,
  123. const unsigned int file_version
  124. ){
  125. boost::serialization::split_free(ar, t, file_version);
  126. }
  127. // hash_multiset
  128. template<
  129. class Archive,
  130. class Key,
  131. class HashFcn,
  132. class EqualKey,
  133. class Allocator
  134. >
  135. inline void save(
  136. Archive & ar,
  137. const BOOST_STD_EXTENSION_NAMESPACE::hash_multiset<
  138. Key, HashFcn, EqualKey, Allocator
  139. > &t,
  140. const unsigned int file_version
  141. ){
  142. boost::serialization::stl::save_hash_collection<
  143. Archive,
  144. BOOST_STD_EXTENSION_NAMESPACE::hash_multiset<
  145. Key, HashFcn, EqualKey, Allocator
  146. >
  147. >(ar, t);
  148. }
  149. template<
  150. class Archive,
  151. class Key,
  152. class HashFcn,
  153. class EqualKey,
  154. class Allocator
  155. >
  156. inline void load(
  157. Archive & ar,
  158. BOOST_STD_EXTENSION_NAMESPACE::hash_multiset<
  159. Key, HashFcn, EqualKey, Allocator
  160. > &t,
  161. const unsigned int file_version
  162. ){
  163. boost::serialization::stl::load_hash_collection<
  164. Archive,
  165. BOOST_STD_EXTENSION_NAMESPACE::hash_multiset<
  166. Key, HashFcn, EqualKey, Allocator
  167. >,
  168. boost::serialization::stl::archive_input_hash_multiset<
  169. Archive,
  170. BOOST_STD_EXTENSION_NAMESPACE::hash_multiset<
  171. Key, HashFcn, EqualKey, Allocator
  172. >
  173. >
  174. >(ar, t);
  175. }
  176. // split non-intrusive serialization function member into separate
  177. // non intrusive save/load member functions
  178. template<
  179. class Archive,
  180. class Key,
  181. class HashFcn,
  182. class EqualKey,
  183. class Allocator
  184. >
  185. inline void serialize(
  186. Archive & ar,
  187. BOOST_STD_EXTENSION_NAMESPACE::hash_multiset<
  188. Key, HashFcn, EqualKey, Allocator
  189. > & t,
  190. const unsigned int file_version
  191. ){
  192. boost::serialization::split_free(ar, t, file_version);
  193. }
  194. } // namespace serialization
  195. } // namespace boost
  196. #include <boost/serialization/collection_traits.hpp>
  197. BOOST_SERIALIZATION_COLLECTION_TRAITS(BOOST_STD_EXTENSION_NAMESPACE::hash_set)
  198. BOOST_SERIALIZATION_COLLECTION_TRAITS(BOOST_STD_EXTENSION_NAMESPACE::hash_multiset)
  199. #endif // BOOST_HAS_HASH
  200. #endif // BOOST_SERIALIZATION_HASH_SET_HPP