hash_map.hpp 6.0 KB

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