123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470 |
- //////////////////////////////////////////////////////////////////////////////
- //
- // (C) Copyright Ion Gaztanaga 2005-2012. 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)
- //
- // See http://www.boost.org/libs/interprocess for documentation.
- //
- //////////////////////////////////////////////////////////////////////////////
- #ifndef BOOST_INTERPROCESS_PRIVATE_ADAPTIVE_POOL_HPP
- #define BOOST_INTERPROCESS_PRIVATE_ADAPTIVE_POOL_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/allocators/detail/adaptive_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/detail/utilities.hpp>
- #include <boost/interprocess/detail/workaround.hpp>
- #include <boost/move/adl_move_swap.hpp>
- #include <cstddef>
- //!\file
- //!Describes private_adaptive_pool_base pooled shared memory STL compatible allocator
- namespace boost {
- namespace interprocess {
- #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
- namespace ipcdetail {
- template < unsigned int Version
- , class T
- , class SegmentManager
- , std::size_t NodesPerBlock
- , std::size_t MaxFreeBlocks
- , unsigned char OverheadPercent
- >
- class private_adaptive_pool_base
- : public node_pool_allocation_impl
- < private_adaptive_pool_base < Version, T, SegmentManager, NodesPerBlock
- , MaxFreeBlocks, OverheadPercent>
- , Version
- , T
- , SegmentManager
- >
- {
- public:
- //Segment manager
- typedef SegmentManager segment_manager;
- typedef typename SegmentManager::void_pointer void_pointer;
- #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
- private:
- typedef private_adaptive_pool_base
- < Version, T, SegmentManager, NodesPerBlock
- , MaxFreeBlocks, OverheadPercent> self_t;
- typedef ipcdetail::private_adaptive_node_pool
- <SegmentManager
- , sizeof_value<T>::value
- , NodesPerBlock
- , MaxFreeBlocks
- , OverheadPercent
- > node_pool_t;
- BOOST_STATIC_ASSERT((Version <=2));
- #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
- 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
- <private_adaptive_pool_base, Version> version;
- typedef boost::container::dtl::transform_multiallocation_chain
- <typename SegmentManager::multiallocation_chain, T>multiallocation_chain;
- //!Obtains node_allocator from other node_allocator
- template<class T2>
- struct rebind
- {
- typedef private_adaptive_pool_base
- <Version, T2, SegmentManager, NodesPerBlock, MaxFreeBlocks, OverheadPercent> other;
- };
- #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
- template <int dummy>
- struct node_pool
- {
- typedef ipcdetail::private_adaptive_node_pool
- <SegmentManager
- , sizeof_value<T>::value
- , NodesPerBlock
- , MaxFreeBlocks
- , OverheadPercent
- > type;
- static type *get(void *p)
- { return static_cast<type*>(p); }
- };
- private:
- //!Not assignable from related private_adaptive_pool_base
- template<unsigned int Version2, class T2, class MemoryAlgorithm2, std::size_t N2, std::size_t F2, unsigned char OP2>
- private_adaptive_pool_base& operator=
- (const private_adaptive_pool_base<Version2, T2, MemoryAlgorithm2, N2, F2, OP2>&);
- //!Not assignable from other private_adaptive_pool_base
- private_adaptive_pool_base& operator=(const private_adaptive_pool_base&);
- #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
- public:
- //!Constructor from a segment manager
- private_adaptive_pool_base(segment_manager *segment_mngr)
- : m_node_pool(segment_mngr)
- {}
- //!Copy constructor from other private_adaptive_pool_base. Never throws
- private_adaptive_pool_base(const private_adaptive_pool_base &other)
- : m_node_pool(other.get_segment_manager())
- {}
- //!Copy constructor from related private_adaptive_pool_base. Never throws.
- template<class T2>
- private_adaptive_pool_base
- (const private_adaptive_pool_base
- <Version, T2, SegmentManager, NodesPerBlock, MaxFreeBlocks, OverheadPercent> &other)
- : m_node_pool(other.get_segment_manager())
- {}
- //!Destructor, frees all used memory. Never throws
- ~private_adaptive_pool_base()
- {}
- //!Returns the segment manager. Never throws
- segment_manager* get_segment_manager()const
- { return m_node_pool.get_segment_manager(); }
- //!Returns the internal node pool. Never throws
- node_pool_t* get_node_pool() const
- { return const_cast<node_pool_t*>(&m_node_pool); }
- //!Swaps allocators. Does not throw. If each allocator is placed in a
- //!different shared memory segments, the result is undefined.
- friend void swap(self_t &alloc1,self_t &alloc2)
- { boost::adl_move_swap(alloc1.m_node_pool, alloc2.m_node_pool); }
- #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
- private:
- node_pool_t m_node_pool;
- #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
- };
- //!Equality test for same type of private_adaptive_pool_base
- template<unsigned int V, class T, class S, std::size_t NodesPerBlock, std::size_t F, unsigned char OP> inline
- bool operator==(const private_adaptive_pool_base<V, T, S, NodesPerBlock, F, OP> &alloc1,
- const private_adaptive_pool_base<V, T, S, NodesPerBlock, F, OP> &alloc2)
- { return &alloc1 == &alloc2; }
- //!Inequality test for same type of private_adaptive_pool_base
- template<unsigned int V, class T, class S, std::size_t NodesPerBlock, std::size_t F, unsigned char OP> inline
- bool operator!=(const private_adaptive_pool_base<V, T, S, NodesPerBlock, F, OP> &alloc1,
- const private_adaptive_pool_base<V, T, S, NodesPerBlock, F, OP> &alloc2)
- { return &alloc1 != &alloc2; }
- template < class T
- , class SegmentManager
- , std::size_t NodesPerBlock = 64
- , std::size_t MaxFreeBlocks = 2
- , unsigned char OverheadPercent = 5
- >
- class private_adaptive_pool_v1
- : public private_adaptive_pool_base
- < 1
- , T
- , SegmentManager
- , NodesPerBlock
- , MaxFreeBlocks
- , OverheadPercent
- >
- {
- public:
- typedef ipcdetail::private_adaptive_pool_base
- < 1, T, SegmentManager, NodesPerBlock, MaxFreeBlocks, OverheadPercent> base_t;
- template<class T2>
- struct rebind
- {
- typedef private_adaptive_pool_v1<T2, SegmentManager, NodesPerBlock, MaxFreeBlocks, OverheadPercent> other;
- };
- private_adaptive_pool_v1(SegmentManager *segment_mngr)
- : base_t(segment_mngr)
- {}
- template<class T2>
- private_adaptive_pool_v1
- (const private_adaptive_pool_v1<T2, SegmentManager, NodesPerBlock, MaxFreeBlocks, OverheadPercent> &other)
- : base_t(other)
- {}
- };
- } //namespace ipcdetail {
- #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
- //!An STL node allocator that uses a segment manager as memory
- //!source. The internal pointer type will of the same type (raw, smart) as
- //!"typename SegmentManager::void_pointer" type. This allows
- //!placing the allocator in shared memory, memory mapped-files, etc...
- //!This allocator has its own node pool.
- //!
- //!NodesPerBlock is the minimum number of nodes of nodes allocated at once when
- //!the allocator needs runs out of nodes. MaxFreeBlocks is the maximum number of totally free blocks
- //!that the adaptive node pool will hold. The rest of the totally free blocks will be
- //!deallocated with the segment manager.
- //!
- //!OverheadPercent is the (approximated) maximum size overhead (1-20%) of the allocator:
- //!(memory usable for nodes / total memory allocated from the segment manager)
- template < class T
- , class SegmentManager
- , std::size_t NodesPerBlock
- , std::size_t MaxFreeBlocks
- , unsigned char OverheadPercent
- >
- class private_adaptive_pool
- #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
- : public ipcdetail::private_adaptive_pool_base
- < 2
- , T
- , SegmentManager
- , NodesPerBlock
- , MaxFreeBlocks
- , OverheadPercent
- >
- #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
- {
- #ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
- typedef ipcdetail::private_adaptive_pool_base
- < 2, T, SegmentManager, NodesPerBlock, MaxFreeBlocks, OverheadPercent> base_t;
- public:
- typedef boost::interprocess::version_type<private_adaptive_pool, 2> version;
- template<class T2>
- struct rebind
- {
- typedef private_adaptive_pool
- <T2, SegmentManager, NodesPerBlock, MaxFreeBlocks, OverheadPercent> other;
- };
- private_adaptive_pool(SegmentManager *segment_mngr)
- : base_t(segment_mngr)
- {}
- template<class T2>
- private_adaptive_pool
- (const private_adaptive_pool<T2, SegmentManager, NodesPerBlock, MaxFreeBlocks, OverheadPercent> &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;
- //!Obtains private_adaptive_pool from
- //!private_adaptive_pool
- template<class T2>
- struct rebind
- {
- typedef private_adaptive_pool
- <T2, SegmentManager, NodesPerBlock, MaxFreeBlocks, OverheadPercent> other;
- };
- private:
- //!Not assignable from
- //!related private_adaptive_pool
- template<class T2, class SegmentManager2, std::size_t N2, std::size_t F2, unsigned char OP2>
- private_adaptive_pool& operator=
- (const private_adaptive_pool<T2, SegmentManager2, N2, F2>&);
- //!Not assignable from
- //!other private_adaptive_pool
- private_adaptive_pool& operator=(const private_adaptive_pool&);
- public:
- //!Constructor from a segment manager. If not present, constructs a node
- //!pool. Increments the reference count of the associated node pool.
- //!Can throw boost::interprocess::bad_alloc
- private_adaptive_pool(segment_manager *segment_mngr);
- //!Copy constructor from other private_adaptive_pool. Increments the reference
- //!count of the associated node pool. Never throws
- private_adaptive_pool(const private_adaptive_pool &other);
- //!Copy constructor from related private_adaptive_pool. If not present, constructs
- //!a node pool. Increments the reference count of the associated node pool.
- //!Can throw boost::interprocess::bad_alloc
- template<class T2>
- private_adaptive_pool
- (const private_adaptive_pool<T2, SegmentManager, NodesPerBlock, MaxFreeBlocks, OverheadPercent> &other);
- //!Destructor, removes node_pool_t from memory
- //!if its reference count reaches to zero. Never throws
- ~private_adaptive_pool();
- //!Returns a pointer to the node pool.
- //!Never throws
- node_pool_t* get_node_pool() const;
- //!Returns the segment manager.
- //!Never throws
- segment_manager* get_segment_manager()const;
- //!Returns the number of elements that could be allocated.
- //!Never throws
- size_type max_size() const;
- //!Allocate memory for an array of count elements.
- //!Throws boost::interprocess::bad_alloc if there is no enough memory
- pointer allocate(size_type count, cvoid_pointer hint = 0);
- //!Deallocate allocated memory.
- //!Never throws
- void deallocate(const pointer &ptr, size_type count);
- //!Deallocates all free blocks
- //!of the pool
- void deallocate_free_blocks();
- //!Swaps allocators. Does not throw. If each allocator is placed in a
- //!different memory segment, the result is undefined.
- friend void swap(self_t &alloc1, self_t &alloc2);
- //!Returns address of mutable object.
- //!Never throws
- pointer address(reference value) const;
- //!Returns address of non mutable object.
- //!Never throws
- const_pointer address(const_reference value) const;
- //!Copy construct an object.
- //!Throws if T's copy constructor throws
- void construct(const pointer &ptr, const_reference v);
- //!Destroys object. Throws if object's
- //!destructor throws
- void destroy(const pointer &ptr);
- //!Returns maximum the number of objects the previously allocated memory
- //!pointed by p can hold. This size only works for memory allocated with
- //!allocate, allocation_command and allocate_many.
- 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);
- //!Allocates many elements of size elem_size in a contiguous block
- //!of memory. The minimum number to be allocated is min_elements,
- //!the preferred and maximum number is
- //!preferred_elements. The number of actually allocated elements is
- //!will be assigned to received_size. The elements must be deallocated
- //!with deallocate(...)
- void allocate_many(size_type elem_size, size_type num_elements, multiallocation_chain &chain);
- //!Allocates n_elements elements, each one of size elem_sizes[i]in a
- //!contiguous block
- //!of memory. The elements must be deallocated
- void allocate_many(const size_type *elem_sizes, size_type n_elements, multiallocation_chain &chain);
- //!Allocates many elements of size elem_size in a contiguous block
- //!of memory. The minimum number to be allocated is min_elements,
- //!the preferred and maximum number is
- //!preferred_elements. The number of actually allocated elements is
- //!will be assigned to received_size. The elements must be deallocated
- //!with deallocate(...)
- void deallocate_many(multiallocation_chain &chain);
- //!Allocates just one object. Memory allocated with this function
- //!must be deallocated only with deallocate_one().
- //!Throws boost::interprocess::bad_alloc if there is no enough memory
- pointer allocate_one();
- //!Allocates many elements of size == 1 in a contiguous block
- //!of memory. The minimum number to be allocated is min_elements,
- //!the preferred and maximum number is
- //!preferred_elements. The number of actually allocated elements is
- //!will be assigned to received_size. Memory allocated with this function
- //!must be deallocated only with deallocate_one().
- void allocate_individual(size_type num_elements, multiallocation_chain &chain);
- //!Deallocates memory previously allocated with allocate_one().
- //!You should never use deallocate_one to deallocate memory allocated
- //!with other functions different from allocate_one(). Never throws
- void deallocate_one(const pointer &p);
- //!Allocates many elements of size == 1 in a contiguous block
- //!of memory. The minimum number to be allocated is min_elements,
- //!the preferred and maximum number is
- //!preferred_elements. The number of actually allocated elements is
- //!will be assigned to received_size. Memory allocated with this function
- //!must be deallocated only with deallocate_one().
- void deallocate_individual(multiallocation_chain &chain);
- #endif
- };
- #ifdef BOOST_INTERPROCESS_DOXYGEN_INVOKED
- //!Equality test for same type
- //!of private_adaptive_pool
- template<class T, class S, std::size_t NodesPerBlock, std::size_t F, unsigned char OP> inline
- bool operator==(const private_adaptive_pool<T, S, NodesPerBlock, F, OP> &alloc1,
- const private_adaptive_pool<T, S, NodesPerBlock, F, OP> &alloc2);
- //!Inequality test for same type
- //!of private_adaptive_pool
- template<class T, class S, std::size_t NodesPerBlock, std::size_t F, unsigned char OP> inline
- bool operator!=(const private_adaptive_pool<T, S, NodesPerBlock, F, OP> &alloc1,
- const private_adaptive_pool<T, S, NodesPerBlock, F, OP> &alloc2);
- #endif
- } //namespace interprocess {
- } //namespace boost {
- #include <boost/interprocess/detail/config_end.hpp>
- #endif //#ifndef BOOST_INTERPROCESS_PRIVATE_ADAPTIVE_POOL_HPP
|