10 #ifndef ASIOEXT_ASSOCIATEDALLOCATOR_HPP 11 #define ASIOEXT_ASSOCIATEDALLOCATOR_HPP 13 #include "asioext/detail/config.hpp" 15 #if ASIOEXT_HAS_PRAGMA_ONCE 19 #include "asioext/detail/asio_version.hpp" 21 #if defined(ASIOEXT_USE_BOOST_ASIO) 22 # include <boost/asio/detail/handler_alloc_helpers.hpp> 24 # include <asio/detail/handler_alloc_helpers.hpp> 27 #if (ASIOEXT_ASIO_VERSION >= 101100) 28 # if defined(ASIOEXT_USE_BOOST_ASIO) 29 # include <boost/asio/associated_allocator.hpp> 31 # include <asio/associated_allocator.hpp> 35 #if defined(ASIOEXT_USE_BOOST_ASIO) 36 # define ASIOEXT_HANDLER_ALLOC_HELPERS_NS boost_asio_handler_alloc_helpers 38 # define ASIOEXT_HANDLER_ALLOC_HELPERS_NS asio_handler_alloc_helpers 43 #if !defined(ASIOEXT_IS_DOCUMENTATION) 44 template <
typename T,
typename Handler>
49 template <
typename Handler,
typename Allocator>
50 struct associated_allocator_aux
52 typedef Allocator type;
54 static type
get(Handler&,
const Allocator& a) ASIOEXT_NOEXCEPT
60 template <
typename Handler,
typename T>
61 struct associated_allocator_aux<Handler,
std::allocator<T> >
63 typedef hook_allocator<T, Handler> type;
87 template <
typename T,
typename Handler>
90 template <
class U,
typename Handler2>
111 template <
typename U>
114 : handler_(a.handler_)
120 return static_cast<T*
>(
121 ASIOEXT_HANDLER_ALLOC_HELPERS_NS::allocate(
sizeof(T) * n, handler_));
126 ASIOEXT_HANDLER_ALLOC_HELPERS_NS::deallocate(p,
sizeof(T) * n, handler_);
133 #if !defined(ASIOEXT_IS_DOCUMENTATION) 134 template <
typename Handler>
135 class hook_allocator<void, Handler>
137 template <
class U,
typename Handler2>
138 friend class hook_allocator;
141 friend bool operator==(
const hook_allocator&,
142 const hook_allocator<U, Handler>&)
146 friend bool operator!=(
const hook_allocator&,
147 const hook_allocator<U, Handler>&)
151 typedef void value_type;
153 explicit hook_allocator(Handler& h) ASIOEXT_NOEXCEPT
158 template <
typename U>
159 hook_allocator(
const hook_allocator<U, Handler>& a) ASIOEXT_NOEXCEPT
160 : handler_(a.handler_)
169 template <
typename Handler,
class T,
class U>
174 template <
typename Handler,
class T,
class U>
191 template <
typename Handler>
194 #if (ASIOEXT_ASIO_VERSION >= 101100) 195 typedef typename asio::associated_allocator<Handler>::type
201 typedef detail::associated_allocator_aux<Handler,
205 #if defined(ASIOEXT_IS_DOCUMENTATION) 210 typedef implementation_defined
type;
212 typedef typename helper_type::type
type;
216 static type get(Handler& handler) ASIOEXT_NOEXCEPT
218 #if (ASIOEXT_ASIO_VERSION >= 101100) 232 template <
typename Handler>
233 typename associated_allocator<Handler>::type
239 #if defined(ASIOEXT_HAS_ALIAS_TEMPLATES) 242 template <
typename Handler>
T value_type
Definition: associated_allocator.hpp:104
implementation_defined type
The Handler's ProtoAllocator.
Definition: associated_allocator.hpp:210
typename associated_allocator< Handler >::type associated_allocator_t
Alias for associated_allocator::type.
Definition: associated_allocator.hpp:243
Helper trait to obtain the allocator associated with a handler.
Definition: associated_allocator.hpp:192
associated_allocator< Handler >::type get_associated_allocator(Handler &handler) noexcept
Get the handler's associated allocator.
Definition: associated_allocator.hpp:234
bool operator==(const hook_allocator< T, Handler > &a, const hook_allocator< U, Handler > &b) noexcept
Definition: associated_allocator.hpp:170
Allocator that uses a handler's memory allocation hooks.
Definition: associated_allocator.hpp:88
hook_allocator(Handler &h) noexcept
Definition: associated_allocator.hpp:106
T * allocate(std::size_t n)
Definition: associated_allocator.hpp:118
void deallocate(T *p, std::size_t n)
Definition: associated_allocator.hpp:124
hook_allocator(const hook_allocator< U, Handler > &a) noexcept
Definition: associated_allocator.hpp:112