29 #ifndef _SCOPED_ALLOCATOR 30 #define _SCOPED_ALLOCATOR 1 32 #ifdef _GLIBCXX_SYSHDR 33 #pragma GCC system_header 36 #if __cplusplus < 201103L 43 #include <bits/uses_allocator.h> 44 #if __cplusplus > 201703L 48 #define __glibcxx_want_allocator_traits_is_always_equal 51 namespace std _GLIBCXX_VISIBILITY(default)
53 _GLIBCXX_BEGIN_NAMESPACE_VERSION
60 template<
typename _OuterAlloc,
typename... _InnerAllocs>
65 template<
typename _Alloc>
66 using __outer_allocator_t
67 = decltype(std::declval<_Alloc>().outer_allocator());
69 template<
typename _Alloc,
typename =
void>
70 struct __outermost_type
73 static type& _S_outermost(_Alloc& __a) noexcept {
return __a; }
76 template<
typename _Alloc>
77 struct __outermost_type<_Alloc, __void_t<__outer_allocator_t<_Alloc>>>
79 typename remove_reference<__outer_allocator_t<_Alloc>>::type
82 using __base = __outermost_type<
86 static typename __base::type&
87 _S_outermost(_Alloc& __a) noexcept
88 {
return __base::_S_outermost(__a.outer_allocator()); }
92 template<
typename _Alloc>
93 inline typename __outermost_type<_Alloc>::type&
94 __outermost(_Alloc& __a)
95 {
return __outermost_type<_Alloc>::_S_outermost(__a); }
98 struct __inner_type_impl;
100 template<
typename _Outer>
101 struct __inner_type_impl<_Outer>
105 __inner_type_impl() =
default;
106 __inner_type_impl(
const __inner_type_impl&) =
default;
107 __inner_type_impl(__inner_type_impl&&) =
default;
108 __inner_type_impl& operator=(
const __inner_type_impl&) =
default;
109 __inner_type_impl& operator=(__inner_type_impl&&) =
default;
111 template<
typename _Alloc>
112 __inner_type_impl(
const __inner_type_impl<_Alloc>&) noexcept
115 template<
typename _Alloc>
116 __inner_type_impl(__inner_type_impl<_Alloc>&&) noexcept
120 _M_get(__type* __p) noexcept {
return *__p; }
123 _M_get(
const __type* __p)
const noexcept {
return *__p; }
126 _M_tie() const noexcept {
return tuple<>(); }
129 operator==(
const __inner_type_impl&)
const noexcept
133 template<
typename _Outer,
typename _InnerHead,
typename... _InnerTail>
134 struct __inner_type_impl<_Outer, _InnerHead, _InnerTail...>
138 __inner_type_impl() =
default;
139 __inner_type_impl(
const __inner_type_impl&) =
default;
140 __inner_type_impl(__inner_type_impl&&) =
default;
141 __inner_type_impl& operator=(
const __inner_type_impl&) =
default;
142 __inner_type_impl& operator=(__inner_type_impl&&) =
default;
144 template<
typename... _Allocs>
145 __inner_type_impl(
const __inner_type_impl<_Allocs...>& __other) noexcept
146 : _M_inner(__other._M_inner) { }
148 template<
typename... _Allocs>
149 __inner_type_impl(__inner_type_impl<_Allocs...>&& __other) noexcept
150 : _M_inner(
std::move(__other._M_inner)) { }
152 template<
typename... _Args>
154 __inner_type_impl(_Args&&... __args) noexcept
155 : _M_inner(std::forward<_Args>(__args)...) { }
158 _M_get(
void*) noexcept {
return _M_inner; }
161 _M_get(
const void*)
const noexcept {
return _M_inner; }
163 tuple<
const _InnerHead&,
const _InnerTail&...>
164 _M_tie() const noexcept
165 {
return _M_inner._M_tie(); }
168 operator==(
const __inner_type_impl& __other)
const noexcept
169 {
return _M_inner == __other._M_inner; }
172 template<
typename...>
friend struct __inner_type_impl;
181 template<
typename _OuterAlloc,
typename... _InnerAllocs>
187 typedef __inner_type_impl<_OuterAlloc, _InnerAllocs...> __inner_type;
188 __inner_type _M_inner;
190 template<
typename _Outer,
typename... _Inner>
193 template<
typename...>
194 friend struct __inner_type_impl;
196 tuple<
const _OuterAlloc&,
const _InnerAllocs&...>
197 _M_tie() const noexcept
200 template<
typename _Alloc>
204 #if ! __glibcxx_make_obj_using_allocator 205 template<
typename _Tp,
typename... _Args>
207 _M_construct(__uses_alloc0, _Tp* __p, _Args&&... __args)
210 _O_traits::construct(__outermost(*
this), __p,
211 std::forward<_Args>(__args)...);
214 typedef __uses_alloc1<typename __inner_type::__type> __uses_alloc1_;
215 typedef __uses_alloc2<typename __inner_type::__type> __uses_alloc2_;
217 template<
typename _Tp,
typename... _Args>
219 _M_construct(__uses_alloc1_, _Tp* __p, _Args&&... __args)
222 _O_traits::construct(__outermost(*
this), __p,
223 allocator_arg, inner_allocator(),
224 std::forward<_Args>(__args)...);
227 template<
typename _Tp,
typename... _Args>
229 _M_construct(__uses_alloc2_, _Tp* __p, _Args&&... __args)
232 _O_traits::construct(__outermost(*
this), __p,
233 std::forward<_Args>(__args)...,
236 #endif // ! make_obj_using_allocator 238 template<
typename _Alloc>
240 _S_select_on_copy(
const _Alloc& __a)
243 return __a_traits::select_on_container_copy_construction(__a);
246 template<std::size_t... _Indices>
248 const _InnerAllocs&...> __refs,
249 _Index_tuple<_Indices...>)
250 : _OuterAlloc(_S_select_on_copy(
std::get<0>(__refs))),
251 _M_inner(_S_select_on_copy(
std::get<_Indices+1>(__refs))...)
255 template<
typename _Alloc>
256 using _Constructible =
typename enable_if<
262 template<
typename _Tp>
263 struct __not_pair {
using type = void; };
265 template<
typename _Tp,
typename _Up>
266 struct __not_pair<
pair<_Tp, _Up>> { };
269 typedef _OuterAlloc outer_allocator_type;
270 typedef typename __inner_type::__type inner_allocator_type;
280 typedef typename __or_<
283 propagate_on_container_copy_assignment...>::type
284 propagate_on_container_copy_assignment;
286 typedef typename __or_<
289 propagate_on_container_move_assignment...>::type
290 propagate_on_container_move_assignment;
292 typedef typename __or_<
295 propagate_on_container_swap...>::type
296 propagate_on_container_swap;
298 typedef typename __and_<
307 typename __traits::template rebind_alloc<_Tp>,
308 _InnerAllocs...> other;
313 template<
typename _Outer2,
typename = _Constructible<_Outer2>>
315 const _InnerAllocs&... __inner) noexcept
316 : _OuterAlloc(std::forward<_Outer2>(__outer)),
321 : _OuterAlloc(__other.outer_allocator()),
322 _M_inner(__other._M_inner)
326 : _OuterAlloc(
std::move(__other.outer_allocator())),
330 template<
typename _Outer2,
typename = _Constructible<const _Outer2&>>
334 : _OuterAlloc(__other.outer_allocator()),
335 _M_inner(__other._M_inner)
338 template<
typename _Outer2,
typename = _Constructible<_Outer2>>
341 : _OuterAlloc(
std::move(__other.outer_allocator())),
351 inner_allocator_type&
352 inner_allocator() noexcept
353 {
return _M_inner._M_get(
this); }
355 const inner_allocator_type&
356 inner_allocator() const noexcept
357 {
return _M_inner._M_get(
this); }
359 outer_allocator_type&
360 outer_allocator() noexcept
361 {
return static_cast<_OuterAlloc&
>(*this); }
363 const outer_allocator_type&
364 outer_allocator() const noexcept
365 {
return static_cast<const _OuterAlloc&
>(*this); }
367 _GLIBCXX_NODISCARD pointer
368 allocate(size_type __n)
369 {
return __traits::allocate(outer_allocator(), __n); }
371 _GLIBCXX_NODISCARD pointer
372 allocate(size_type __n, const_void_pointer __hint)
373 {
return __traits::allocate(outer_allocator(), __n, __hint); }
375 void deallocate(pointer __p, size_type __n) noexcept
376 {
return __traits::deallocate(outer_allocator(), __p, __n); }
378 size_type max_size()
const 379 {
return __traits::max_size(outer_allocator()); }
381 #if ! __glibcxx_make_obj_using_allocator 382 template<
typename _Tp,
typename... _Args>
383 typename __not_pair<_Tp>::type
384 construct(_Tp* __p, _Args&&... __args)
386 auto& __inner = inner_allocator();
388 = std::__use_alloc<_Tp, inner_allocator_type, _Args...>(__inner);
389 _M_construct(__use_tag, __p, std::forward<_Args>(__args)...);
392 template<
typename _T1,
typename _T2,
typename... _Args1,
400 auto& __inner = inner_allocator();
402 = std::__use_alloc<_T1, inner_allocator_type, _Args1...>(__inner);
404 = std::__use_alloc<_T2, inner_allocator_type, _Args2...>(__inner);
405 typename _Build_index_tuple<
sizeof...(_Args1)>::__type __x_indices;
406 typename _Build_index_tuple<
sizeof...(_Args2)>::__type __y_indices;
409 _M_construct_p(__x_use_tag, __x_indices, __x),
410 _M_construct_p(__y_use_tag, __y_indices, __y));
413 template<
typename _T1,
typename _T2>
418 template<
typename _T1,
typename _T2,
typename _Up,
typename _Vp>
427 template<
typename _T1,
typename _T2,
typename _Up,
typename _Vp>
436 template<
typename _T1,
typename _T2,
typename _Up,
typename _Vp>
444 #else // make_obj_using_allocator 445 template<
typename _Tp,
typename... _Args>
446 __attribute__((__nonnull__))
448 construct(_Tp* __p, _Args&&... __args)
451 std::apply([__p,
this](
auto&&... __newargs) {
452 _O_traits::construct(__outermost(*
this), __p,
455 uses_allocator_construction_args<_Tp>(inner_allocator(),
456 std::forward<_Args>(__args)...));
460 template<
typename _Tp>
461 void destroy(_Tp* __p)
464 _O_traits::destroy(__outermost(*
this), __p);
468 select_on_container_copy_construction()
const 470 typedef typename _Build_index_tuple<
sizeof...(_InnerAllocs)>::__type
475 template <
typename _OutA1,
typename _OutA2,
typename... _InA>
481 #if ! __glibcxx_make_obj_using_allocator 482 template<
typename _Ind,
typename... _Args>
487 template<
size_t... _Ind,
typename... _Args>
488 tuple<allocator_arg_t, inner_allocator_type&, _Args&&...>
489 _M_construct_p(__uses_alloc1_, _Index_tuple<_Ind...>,
492 return { allocator_arg, inner_allocator(),
497 template<
size_t... _Ind,
typename... _Args>
498 tuple<_Args&&..., inner_allocator_type&>
499 _M_construct_p(__uses_alloc2_, _Index_tuple<_Ind...>,
502 return { std::get<_Ind>(
std::move(__t))..., inner_allocator() };
504 #endif // ! make_obj_using_allocator 508 template <
typename _OutA1,
typename _OutA2,
typename... _InA>
513 return __a.outer_allocator() == __b.outer_allocator()
514 && __a._M_inner == __b._M_inner;
517 #if __cpp_impl_three_way_comparison < 201907L 519 template <
typename _OutA1,
typename _OutA2,
typename... _InA>
523 {
return !(__a == __b); }
528 _GLIBCXX_END_NAMESPACE_VERSION
533 #endif // _SCOPED_ALLOCATOR Primary class template, tuple.
__detected_or_t< false_type, __pocca, _Alloc > propagate_on_container_copy_assignment
How the allocator is propagated on copy assignment.
Uniform interface to all allocator types.
constexpr auto tuple_cat(_Tpls &&... __tpls) -> typename __tuple_cat_result< _Tpls... >::__type
Create a tuple containing all elements from multiple tuple-like objects.
typename _Ptr< __v_pointer, void >::type void_pointer
The allocator's void pointer type.
typename __detected_or_t< is_empty< _Alloc >, __equal, _Alloc >::type is_always_equal
Whether all instances of the allocator type compare equal.
constexpr tuple< _Elements &&... > forward_as_tuple(_Elements &&... __args) noexcept
Create a tuple of lvalue or rvalue references to the arguments.
typename _Ptr< __c_pointer, const value_type >::type const_pointer
The allocator's const pointer type.
_Alloc::value_type value_type
The allocated type.
bool operator==(const scoped_allocator_adaptor< _OutA1, _InA... > &__a, const scoped_allocator_adaptor< _OutA2, _InA... > &__b) noexcept
__detected_or_t< value_type *, __pointer, _Alloc > pointer
The allocator's pointer type.
constexpr tuple< _Elements &... > tie(_Elements &... __args) noexcept
Return a tuple of lvalue references bound to the arguments.
ISO C++ entities toplevel namespace is std.
typename _Ptr< __cv_pointer, const void >::type const_void_pointer
The allocator's const void pointer type.
Struct holding two objects of arbitrary type.
__detected_or_t< false_type, __pocma, _Alloc > propagate_on_container_move_assignment
How the allocator is propagated on move assignment.
__detected_or_t< false_type, __pocs, _Alloc > propagate_on_container_swap
How the allocator is propagated on swap.
typename _Size< _Alloc, difference_type >::type size_type
The allocator's size type.
constexpr std::remove_reference< _Tp >::type && move(_Tp &&__t) noexcept
Convert a value to an rvalue.
typename _Diff< _Alloc, pointer >::type difference_type
The allocator's difference type.
constexpr piecewise_construct_t piecewise_construct
Tag for piecewise construction of std::pair objects.
Tag type for piecewise construction of std::pair objects.
Define a member typedef type only if a boolean constant is true.
constexpr _Tp && forward(typename std::remove_reference< _Tp >::type &__t) noexcept
Forward an lvalue.
_T2 second
The second member.
_T1 first
The first member.
constexpr _Iterator __base(_Iterator __it)
An adaptor to recursively pass an allocator to the objects it constructs.