]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/serialization/include/boost/serialization/hash_set.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / serialization / include / boost / serialization / hash_set.hpp
CommitLineData
7c673cae
FG
1#ifndef BOOST_SERIALIZATION_HASH_SET_HPP
2#define BOOST_SERIALIZATION_HASH_SET_HPP
3
4// MS compatible compilers support #pragma once
5#if defined(_MSC_VER)
6# pragma once
7#endif
8
9/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
10// hash_set.hpp: serialization for stl hash_set templates
11
12// (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
13// Use, modification and distribution is subject to the Boost Software
14// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
15// http://www.boost.org/LICENSE_1_0.txt)
16
17// See http://www.boost.org for updates, documentation, and revision history.
18
19#include <boost/config.hpp>
20#ifdef BOOST_HAS_HASH
21#include BOOST_HASH_SET_HEADER
22
23#include <boost/serialization/hash_collections_save_imp.hpp>
24#include <boost/serialization/hash_collections_load_imp.hpp>
25#include <boost/serialization/split_free.hpp>
26
27namespace boost {
28namespace serialization {
29
30namespace stl {
31
32// hash_set input
33template<class Archive, class Container>
34struct archive_input_hash_set
35{
36 inline void operator()(
37 Archive &ar,
38 Container &s,
39 const unsigned int v
40 ){
41 typedef typename Container::value_type type;
42 detail::stack_construct<Archive, type> t(ar, v);
43 // borland fails silently w/o full namespace
44 ar >> boost::serialization::make_nvp("item", t.reference());
45 std::pair<typename Container::const_iterator, bool> result =
46 s.insert(t.reference());
47 if(result.second)
48 ar.reset_object_address(& (* result.first), & t.reference());
49 }
50};
51
52// hash_multiset input
53template<class Archive, class Container>
54struct archive_input_hash_multiset
55{
56 inline void operator()(
57 Archive &ar,
58 Container &s,
59 const unsigned int v
60 ){
61 typedef typename Container::value_type type;
62 detail::stack_construct<Archive, type> t(ar, v);
63 // borland fails silently w/o full namespace
64 ar >> boost::serialization::make_nvp("item", t.reference());
65 typename Container::const_iterator result
66 = s.insert(t.reference());
67 ar.reset_object_address(& (* result), & t.reference());
68 }
69};
70
71} // stl
72
73template<
74 class Archive,
75 class Key,
76 class HashFcn,
77 class EqualKey,
78 class Allocator
79>
80inline void save(
81 Archive & ar,
82 const BOOST_STD_EXTENSION_NAMESPACE::hash_set<
83 Key, HashFcn, EqualKey, Allocator
84 > &t,
85 const unsigned int file_version
86){
87 boost::serialization::stl::save_hash_collection<
88 Archive,
89 BOOST_STD_EXTENSION_NAMESPACE::hash_set<
90 Key, HashFcn, EqualKey, Allocator
91 >
92 >(ar, t);
93}
94
95template<
96 class Archive,
97 class Key,
98 class HashFcn,
99 class EqualKey,
100 class Allocator
101>
102inline void load(
103 Archive & ar,
104 BOOST_STD_EXTENSION_NAMESPACE::hash_set<
105 Key, HashFcn, EqualKey, Allocator
106 > &t,
107 const unsigned int file_version
108){
109 boost::serialization::stl::load_hash_collection<
110 Archive,
111 BOOST_STD_EXTENSION_NAMESPACE::hash_set<
112 Key, HashFcn, EqualKey, Allocator
113 >,
114 boost::serialization::stl::archive_input_hash_set<
115 Archive,
116 BOOST_STD_EXTENSION_NAMESPACE::hash_set<
117 Key, HashFcn, EqualKey, Allocator
118 >
119 >
120 >(ar, t);
121}
122
123// split non-intrusive serialization function member into separate
124// non intrusive save/load member functions
125template<
126 class Archive,
127 class Key,
128 class HashFcn,
129 class EqualKey,
130 class Allocator
131>
132inline void serialize(
133 Archive & ar,
134 BOOST_STD_EXTENSION_NAMESPACE::hash_set<
135 Key, HashFcn, EqualKey, Allocator
136 > &t,
137 const unsigned int file_version
138){
139 boost::serialization::split_free(ar, t, file_version);
140}
141
142// hash_multiset
143template<
144 class Archive,
145 class Key,
146 class HashFcn,
147 class EqualKey,
148 class Allocator
149>
150inline void save(
151 Archive & ar,
152 const BOOST_STD_EXTENSION_NAMESPACE::hash_multiset<
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_multiset<
160 Key, HashFcn, EqualKey, Allocator
161 >
162 >(ar, t);
163}
164
165template<
166 class Archive,
167 class Key,
168 class HashFcn,
169 class EqualKey,
170 class Allocator
171>
172inline void load(
173 Archive & ar,
174 BOOST_STD_EXTENSION_NAMESPACE::hash_multiset<
175 Key, HashFcn, EqualKey, Allocator
176 > &t,
177 const unsigned int file_version
178){
179 boost::serialization::stl::load_hash_collection<
180 Archive,
181 BOOST_STD_EXTENSION_NAMESPACE::hash_multiset<
182 Key, HashFcn, EqualKey, Allocator
183 >,
184 boost::serialization::stl::archive_input_hash_multiset<
185 Archive,
186 BOOST_STD_EXTENSION_NAMESPACE::hash_multiset<
187 Key, HashFcn, EqualKey, Allocator
188 >
189 >
190 >(ar, t);
191}
192
193// split non-intrusive serialization function member into separate
194// non intrusive save/load member functions
195template<
196 class Archive,
197 class Key,
198 class HashFcn,
199 class EqualKey,
200 class Allocator
201>
202inline void serialize(
203 Archive & ar,
204 BOOST_STD_EXTENSION_NAMESPACE::hash_multiset<
205 Key, HashFcn, EqualKey, Allocator
206 > & t,
207 const unsigned int file_version
208){
209 boost::serialization::split_free(ar, t, file_version);
210}
211
212} // namespace serialization
213} // namespace boost
214
215#include <boost/serialization/collection_traits.hpp>
216
217BOOST_SERIALIZATION_COLLECTION_TRAITS(BOOST_STD_EXTENSION_NAMESPACE::hash_set)
218BOOST_SERIALIZATION_COLLECTION_TRAITS(BOOST_STD_EXTENSION_NAMESPACE::hash_multiset)
219
220#endif // BOOST_HAS_HASH
221#endif // BOOST_SERIALIZATION_HASH_SET_HPP