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