123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454 |
- #ifndef BOOST_INTERPROCESS_NODE_ALLOCATOR_HPP
- #define BOOST_INTERPROCESS_NODE_ALLOCATOR_HPP
- #ifndef BOOST_CONFIG_HPP
- # include <boost/config.hpp>
- #endif
- #
- #if defined(BOOST_HAS_PRAGMA_ONCE)
- # pragma once
- #endif
- #include <boost/interprocess/detail/config_begin.hpp>
- #include <boost/interprocess/detail/workaround.hpp>
- #include <boost/intrusive/pointer_traits.hpp>
- #include <boost/interprocess/interprocess_fwd.hpp>
- #include <boost/assert.hpp>
- #include <boost/static_assert.hpp>
- #include <boost/utility/addressof.hpp>
- #include <boost/interprocess/detail/utilities.hpp>
- #include <boost/interprocess/detail/type_traits.hpp>
- #include <boost/interprocess/allocators/detail/node_pool.hpp>
- #include <boost/interprocess/containers/version_type.hpp>
- #include <boost/container/detail/multiallocation_chain.hpp>
- #include <boost/interprocess/exceptions.hpp>
- #include <boost/interprocess/allocators/detail/allocator_common.hpp>
- #include <boost/move/adl_move_swap.hpp>
- #include <cstddef>
- namespace boost {
- namespace interprocess {
- #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
- namespace ipcdetail{
- template < unsigned int Version
- , class T
- , class SegmentManager
- , std::size_t NodesPerBlock
- >
- class node_allocator_base
- : public node_pool_allocation_impl
- < node_allocator_base
- < Version, T, SegmentManager, NodesPerBlock>
- , Version
- , T
- , SegmentManager
- >
- {
- public:
- typedef typename SegmentManager::void_pointer void_pointer;
- typedef SegmentManager segment_manager;
- typedef node_allocator_base
- <Version, T, SegmentManager, NodesPerBlock> self_t;
- #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
- template <int dummy>
- struct node_pool
- {
- typedef ipcdetail::shared_node_pool
- < SegmentManager, sizeof_value<T>::value, NodesPerBlock> type;
- static type *get(void *p)
- { return static_cast<type*>(p); }
- };
- #endif
- BOOST_STATIC_ASSERT((Version <=2));
- public:
-
- typedef typename boost::intrusive::
- pointer_traits<void_pointer>::template
- rebind_pointer<T>::type pointer;
- typedef typename boost::intrusive::
- pointer_traits<void_pointer>::template
- rebind_pointer<const T>::type const_pointer;
- typedef T value_type;
- typedef typename ipcdetail::add_reference
- <value_type>::type reference;
- typedef typename ipcdetail::add_reference
- <const value_type>::type const_reference;
- typedef typename segment_manager::size_type size_type;
- typedef typename segment_manager::difference_type difference_type;
- typedef boost::interprocess::version_type<node_allocator_base, Version> version;
- typedef boost::container::dtl::transform_multiallocation_chain
- <typename SegmentManager::multiallocation_chain, T>multiallocation_chain;
-
-
- template<class T2>
- struct rebind
- {
- typedef node_allocator_base<Version, T2, SegmentManager, NodesPerBlock> other;
- };
- #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
- private:
-
- template<unsigned int Version2, class T2, class SegmentManager2, std::size_t N2>
- node_allocator_base& operator=
- (const node_allocator_base<Version2, T2, SegmentManager2, N2>&);
-
-
- #endif
- public:
-
-
-
- node_allocator_base(segment_manager *segment_mngr)
- : mp_node_pool(ipcdetail::get_or_create_node_pool<typename node_pool<0>::type>(segment_mngr)) { }
-
-
- node_allocator_base(const node_allocator_base &other)
- : mp_node_pool(other.get_node_pool())
- {
- node_pool<0>::get(ipcdetail::to_raw_pointer(mp_node_pool))->inc_ref_count();
- }
-
-
-
- template<class T2>
- node_allocator_base
- (const node_allocator_base<Version, T2, SegmentManager, NodesPerBlock> &other)
- : mp_node_pool(ipcdetail::get_or_create_node_pool<typename node_pool<0>::type>(other.get_segment_manager())) { }
-
- node_allocator_base& operator=(const node_allocator_base &other)
- {
- node_allocator_base c(other);
- boost::adl_move_swap(*this, c);
- return *this;
- }
-
-
- ~node_allocator_base()
- { ipcdetail::destroy_node_pool_if_last_link(node_pool<0>::get(ipcdetail::to_raw_pointer(mp_node_pool))); }
-
-
- void* get_node_pool() const
- { return ipcdetail::to_raw_pointer(mp_node_pool); }
-
-
- segment_manager* get_segment_manager()const
- { return node_pool<0>::get(ipcdetail::to_raw_pointer(mp_node_pool))->get_segment_manager(); }
-
-
- friend void swap(self_t &alloc1, self_t &alloc2)
- { boost::adl_move_swap(alloc1.mp_node_pool, alloc2.mp_node_pool); }
- #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
- private:
- void_pointer mp_node_pool;
- #endif
- };
- template<unsigned int V, class T, class S, std::size_t NPC> inline
- bool operator==(const node_allocator_base<V, T, S, NPC> &alloc1,
- const node_allocator_base<V, T, S, NPC> &alloc2)
- { return alloc1.get_node_pool() == alloc2.get_node_pool(); }
- template<unsigned int V, class T, class S, std::size_t NPC> inline
- bool operator!=(const node_allocator_base<V, T, S, NPC> &alloc1,
- const node_allocator_base<V, T, S, NPC> &alloc2)
- { return alloc1.get_node_pool() != alloc2.get_node_pool(); }
- template < class T
- , class SegmentManager
- , std::size_t NodesPerBlock = 64
- >
- class node_allocator_v1
- : public node_allocator_base
- < 1
- , T
- , SegmentManager
- , NodesPerBlock
- >
- {
- public:
- typedef ipcdetail::node_allocator_base
- < 1, T, SegmentManager, NodesPerBlock> base_t;
- template<class T2>
- struct rebind
- {
- typedef node_allocator_v1<T2, SegmentManager, NodesPerBlock> other;
- };
- node_allocator_v1(SegmentManager *segment_mngr)
- : base_t(segment_mngr)
- {}
- template<class T2>
- node_allocator_v1
- (const node_allocator_v1<T2, SegmentManager, NodesPerBlock> &other)
- : base_t(other)
- {}
- };
- }
- #endif
- template < class T
- , class SegmentManager
- , std::size_t NodesPerBlock
- >
- class node_allocator
- #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
- : public ipcdetail::node_allocator_base
- < 2
- , T
- , SegmentManager
- , NodesPerBlock
- >
- #endif
- {
- #ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
- typedef ipcdetail::node_allocator_base
- < 2, T, SegmentManager, NodesPerBlock> base_t;
- public:
- typedef boost::interprocess::version_type<node_allocator, 2> version;
- template<class T2>
- struct rebind
- {
- typedef node_allocator<T2, SegmentManager, NodesPerBlock> other;
- };
- node_allocator(SegmentManager *segment_mngr)
- : base_t(segment_mngr)
- {}
- template<class T2>
- node_allocator
- (const node_allocator<T2, SegmentManager, NodesPerBlock> &other)
- : base_t(other)
- {}
- #else
- public:
- typedef implementation_defined::segment_manager segment_manager;
- typedef segment_manager::void_pointer void_pointer;
- typedef implementation_defined::pointer pointer;
- typedef implementation_defined::const_pointer const_pointer;
- typedef T value_type;
- typedef typename ipcdetail::add_reference
- <value_type>::type reference;
- typedef typename ipcdetail::add_reference
- <const value_type>::type const_reference;
- typedef typename segment_manager::size_type size_type;
- typedef typename segment_manager::difference_type difference_type;
-
-
- template<class T2>
- struct rebind
- {
- typedef node_allocator<T2, SegmentManager, NodesPerBlock> other;
- };
- private:
-
-
- template<class T2, class SegmentManager2, std::size_t N2>
- node_allocator& operator=
- (const node_allocator<T2, SegmentManager2, N2>&);
-
-
-
- public:
-
-
-
- node_allocator(segment_manager *segment_mngr);
-
-
- node_allocator(const node_allocator &other);
-
-
-
- template<class T2>
- node_allocator
- (const node_allocator<T2, SegmentManager, NodesPerBlock> &other);
-
-
- ~node_allocator();
-
-
- void* get_node_pool() const;
-
-
- segment_manager* get_segment_manager()const;
-
-
- size_type max_size() const;
-
-
- pointer allocate(size_type count, cvoid_pointer hint = 0);
-
-
- void deallocate(const pointer &ptr, size_type count);
-
-
- void deallocate_free_blocks();
-
-
- friend void swap(self_t &alloc1, self_t &alloc2);
-
-
- pointer address(reference value) const;
-
-
- const_pointer address(const_reference value) const;
-
-
- void construct(const pointer &ptr, const_reference v);
-
-
- void destroy(const pointer &ptr);
-
-
-
- size_type size(const pointer &p) const;
- pointer allocation_command(boost::interprocess::allocation_type command,
- size_type limit_size, size_type &prefer_in_recvd_out_size, pointer &reuse);
-
-
-
-
-
-
- void allocate_many(size_type elem_size, size_type num_elements, multiallocation_chain &chain);
-
-
-
- void allocate_many(const size_type *elem_sizes, size_type n_elements, multiallocation_chain &chain);
-
-
-
-
-
-
- void deallocate_many(multiallocation_chain &chain);
-
-
-
- pointer allocate_one();
-
-
-
-
-
-
- void allocate_individual(size_type num_elements, multiallocation_chain &chain);
-
-
-
- void deallocate_one(const pointer &p);
-
-
-
-
-
-
- void deallocate_individual(multiallocation_chain &chain);
- #endif
- };
- #ifdef BOOST_INTERPROCESS_DOXYGEN_INVOKED
- template<class T, class S, std::size_t NPC> inline
- bool operator==(const node_allocator<T, S, NPC> &alloc1,
- const node_allocator<T, S, NPC> &alloc2);
- template<class T, class S, std::size_t NPC> inline
- bool operator!=(const node_allocator<T, S, NPC> &alloc1,
- const node_allocator<T, S, NPC> &alloc2);
- #endif
- }
- }
- #include <boost/interprocess/detail/config_end.hpp>
- #endif
|