/////////////////////////////////////////////////////////////////////////////// // // (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_HEAP_ALLOCATOR_V1_HPP #define BOOST_INTERPROCESS_HEAP_ALLOCATOR_V1_HPP #if defined (_MSC_VER) # pragma once #endif #include #include #include #include #include #include #include #include #include //!\file //!Describes an heap_allocator_v1 that allocates portions of fixed size //!memory buffer (shared memory, mapped file...) namespace boost { namespace interprocess { namespace test { //!An STL compatible heap_allocator_v1 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 heap_allocator_v1 in shared memory, memory mapped-files, etc...*/ template class heap_allocator_v1 { private: typedef heap_allocator_v1 self_t; typedef SegmentManager segment_manager; typedef typename segment_manager::void_pointer aux_pointer_t; typedef typename boost::intrusive:: pointer_traits::template rebind_pointer::type cvoid_ptr; typedef typename boost::intrusive:: pointer_traits::template rebind_pointer::type alloc_ptr_t; template heap_allocator_v1& operator=(const heap_allocator_v1&); heap_allocator_v1& operator=(const heap_allocator_v1&); alloc_ptr_t mp_mngr; public: typedef T value_type; typedef typename boost::intrusive:: pointer_traits::template rebind_pointer::type pointer; typedef typename boost::intrusive:: pointer_traits::template rebind_pointer::type const_pointer; typedef typename ipcdetail::add_reference ::type reference; typedef typename ipcdetail::add_reference ::type const_reference; typedef typename SegmentManager::size_type size_type; typedef typename SegmentManager::difference_type difference_type; //!Obtains an heap_allocator_v1 of other type template struct rebind { typedef heap_allocator_v1 other; }; //!Returns the segment manager. Never throws segment_manager* get_segment_manager()const { return ipcdetail::to_raw_pointer(mp_mngr); } //!Returns address of mutable object. Never throws pointer address(reference value) const { return pointer(addressof(value)); } //!Returns address of non mutable object. Never throws const_pointer address(const_reference value) const { return const_pointer(addressof(value)); } //!Constructor from the segment manager. Never throws heap_allocator_v1(segment_manager *segment_mngr) : mp_mngr(segment_mngr) { } //!Constructor from other heap_allocator_v1. Never throws heap_allocator_v1(const heap_allocator_v1 &other) : mp_mngr(other.get_segment_manager()){ } //!Constructor from related heap_allocator_v1. Never throws template heap_allocator_v1(const heap_allocator_v1 &other) : mp_mngr(other.get_segment_manager()){} //!Allocates memory for an array of count elements. //!Throws boost::interprocess::bad_alloc if there is no enough memory pointer allocate(size_type count, cvoid_ptr hint = 0) { (void)hint; char *raw_mem = ::new char[sizeof(value_type)*count]; return boost::intrusive::pointer_traits::pointer_to(reinterpret_cast(*raw_mem)); } //!Deallocates memory previously allocated. Never throws void deallocate(const pointer &ptr, size_type) { char *ptr_raw = (char*)ipcdetail::to_raw_pointer(ptr); ::delete[] ptr_raw; } //!Construct object, calling constructor. //!Throws if T(const T&) throws void construct(const pointer &ptr, const_reference value) { new((void*)ipcdetail::to_raw_pointer(ptr)) value_type(value); } //!Destroys object. Throws if object's destructor throws void destroy(const pointer &ptr) { BOOST_ASSERT(ptr != 0); (*ptr).~value_type(); } //!Returns the number of elements that could be allocated. Never throws size_type max_size() const { return mp_mngr->get_size(); } //!Swap segment manager. Does not throw. If each heap_allocator_v1 is placed in //!different memory segments, the result is undefined. friend void swap(self_t &alloc1, self_t &alloc2) { ::boost::adl_move_swap(alloc1.mp_mngr, alloc2.mp_mngr); } }; //!Equality test for same type of heap_allocator_v1 template inline bool operator==(const heap_allocator_v1 &alloc1, const heap_allocator_v1 &alloc2) { return alloc1.get_segment_manager() == alloc2.get_segment_manager(); } //!Inequality test for same type of heap_allocator_v1 template inline bool operator!=(const heap_allocator_v1 &alloc1, const heap_allocator_v1 &alloc2) { return alloc1.get_segment_manager() != alloc2.get_segment_manager(); } } //namespace test { } //namespace interprocess { } //namespace boost { #include #endif //BOOST_INTERPROCESS_HEAP_ALLOCATOR_V1_HPP