1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- // Copyright Sebastian Ramacher, 2007.
- // Distributed under the Boost Software License, Version 1.0. (See
- // accompanying file LICENSE_1_0.txt or copy at
- // http://www.boost.org/LICENSE_1_0.txt)
- #ifndef BOOST_PTR_CONTAINER_DETAIL_SERIALIZE_PTR_MAP_ADAPTER_HPP
- #define BOOST_PTR_CONTAINER_DETAIL_SERIALIZE_PTR_MAP_ADAPTER_HPP
- #include <boost/ptr_container/ptr_map_adapter.hpp>
- #include <boost/ptr_container/detail/serialize_xml_names.hpp>
- #include <boost/core/serialization.hpp>
- namespace boost
- {
- namespace serialization
- {
- template<class Archive, class T, class VoidPtrMap, class CloneAllocator, bool Ordered>
- void save(Archive& ar, const ptr_container_detail::ptr_map_adapter_base<T, VoidPtrMap, CloneAllocator,Ordered>& c, unsigned int /*version*/)
- {
- typedef ptr_container_detail::ptr_map_adapter_base<T, VoidPtrMap, CloneAllocator,Ordered> container;
- typedef BOOST_DEDUCED_TYPENAME container::const_iterator const_iterator;
- ar << boost::serialization::make_nvp( ptr_container_detail::count(),
- ptr_container_detail::serialize_as_const(c.size()) );
- const_iterator i = c.begin(), e = c.end();
- for(; i != e; ++i)
- {
- ar << boost::serialization::make_nvp( ptr_container_detail::first(), i->first );
- ar << boost::serialization::make_nvp( ptr_container_detail::second(),
- ptr_container_detail::serialize_as_const(i->second) );
- }
- }
- template<class Archive, class T, class VoidPtrMap, class CloneAllocator, bool Ordered>
- void load(Archive& ar, ptr_map_adapter<T, VoidPtrMap, CloneAllocator,Ordered>& c, unsigned int /*version*/)
- {
- typedef ptr_map_adapter<T, VoidPtrMap, CloneAllocator,Ordered> container;
- typedef BOOST_DEDUCED_TYPENAME container::key_type key_type;
- typedef BOOST_DEDUCED_TYPENAME container::size_type size_type;
- typedef BOOST_DEDUCED_TYPENAME container::iterator iterator;
- c.clear();
- size_type n;
- ar >> boost::serialization::make_nvp( ptr_container_detail::count(), n );
- for(size_type i = 0u; i != n; ++i)
- {
- key_type key;
- T* value;
- ar >> boost::serialization::make_nvp( ptr_container_detail::first(), key );
- ar >> boost::serialization::make_nvp( ptr_container_detail::second(), value );
- std::pair<iterator, bool> p = c.insert(key, value);
- ar.reset_object_address(&p.first->first, &key);
- }
- }
- template<class Archive, class T, class VoidPtrMap, class CloneAllocator, bool Ordered>
- void load(Archive& ar, ptr_multimap_adapter<T, VoidPtrMap, CloneAllocator,Ordered>& c, unsigned int /*version*/)
- {
- typedef ptr_multimap_adapter<T, VoidPtrMap, CloneAllocator,Ordered> container;
- typedef BOOST_DEDUCED_TYPENAME container::key_type key_type;
- typedef BOOST_DEDUCED_TYPENAME container::size_type size_type;
- typedef BOOST_DEDUCED_TYPENAME container::iterator iterator;
- c.clear();
- size_type n;
- ar >> boost::serialization::make_nvp( ptr_container_detail::count(), n );
- for(size_type i = 0u; i != n; ++i)
- {
- key_type key;
- T* value;
- ar >> boost::serialization::make_nvp( ptr_container_detail::first(), key );
- ar >> boost::serialization::make_nvp( ptr_container_detail::second(), value );
- iterator p = c.insert(key, value);
- ar.reset_object_address(&p->first, &key);
- }
- }
- } // namespace serialization
- } // namespace boost
- #endif
|