// -*- C++ -*- //===-------------------------- scoped_allocator --------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #ifndef _LIBCPP_SCOPED_ALLOCATOR #define _LIBCPP_SCOPED_ALLOCATOR /* scoped_allocator synopsis namespace std { template class scoped_allocator_adaptor : public OuterAlloc { typedef allocator_traits OuterTraits; // exposition only scoped_allocator_adaptor inner; // exposition only public: typedef OuterAlloc outer_allocator_type; typedef see below inner_allocator_type; typedef typename OuterTraits::value_type value_type; typedef typename OuterTraits::size_type size_type; typedef typename OuterTraits::difference_type difference_type; typedef typename OuterTraits::pointer pointer; typedef typename OuterTraits::const_pointer const_pointer; typedef typename OuterTraits::void_pointer void_pointer; typedef typename OuterTraits::const_void_pointer const_void_pointer; typedef see below propagate_on_container_copy_assignment; typedef see below propagate_on_container_move_assignment; typedef see below propagate_on_container_swap; template struct rebind { typedef scoped_allocator_adaptor< OuterTraits::template rebind_alloc, InnerAllocs...> other; }; scoped_allocator_adaptor(); template scoped_allocator_adaptor(OuterA2&& outerAlloc, const InnerAllocs&... innerAllocs); scoped_allocator_adaptor(const scoped_allocator_adaptor& other); template scoped_allocator_adaptor(const scoped_allocator_adaptor& other); template scoped_allocator_adaptor(const scoped_allocator_adaptor&& other); ~scoped_allocator_adaptor(); inner_allocator_type& inner_allocator(); const inner_allocator_type& inner_allocator() const; outer_allocator_type& outer_allocator(); const outer_allocator_type& outer_allocator() const; pointer allocate(size_type n); pointer allocate(size_type n, const_void_pointer hint); void deallocate(pointer p, size_type n); size_type max_size() const; template void construct(T* p, Args&& args); template void construct(pair* p, piecewise_construct t, tuple x, tuple y); template void construct(pair* p); template void construct(pair* p, U&& x, V&& y); template void construct(pair* p, const pair& x); template void construct(pair* p, pair&& x); template void destroy(T* p); scoped_allocator_adaptor select_on_container_copy_construction() const; }; template bool operator==(const scoped_allocator_adaptor& a, const scoped_allocator_adaptor& b); template bool operator!=(const scoped_allocator_adaptor& a, const scoped_allocator_adaptor& b); } // std */ #include <__config> #include #pragma GCC system_header _LIBCPP_BEGIN_NAMESPACE_STD #if defined(_LIBCPP_MOVE) && !defined(_LIBCPP_HAS_NO_ADVANCED_SFINAE) // scoped_allocator_adaptor template class scoped_allocator_adaptor; template struct __get_poc_copy_assignment; template struct __get_poc_copy_assignment<_A0> { static const bool value = allocator_traits<_A0>:: propagate_on_container_copy_assignment::value; }; template struct __get_poc_copy_assignment<_A0, _Allocs...> { static const bool value = allocator_traits<_A0>::propagate_on_container_copy_assignment::value || __get_poc_copy_assignment<_Allocs...>::value; }; template struct __get_poc_move_assignment; template struct __get_poc_move_assignment<_A0> { static const bool value = allocator_traits<_A0>:: propagate_on_container_move_assignment::value; }; template struct __get_poc_move_assignment<_A0, _Allocs...> { static const bool value = allocator_traits<_A0>::propagate_on_container_move_assignment::value || __get_poc_move_assignment<_Allocs...>::value; }; template struct __get_poc_swap; template struct __get_poc_swap<_A0> { static const bool value = allocator_traits<_A0>:: propagate_on_container_swap::value; }; template struct __get_poc_swap<_A0, _Allocs...> { static const bool value = allocator_traits<_A0>::propagate_on_container_swap::value || __get_poc_swap<_Allocs...>::value; }; template class __scoped_allocator_storage; template class __scoped_allocator_storage<_OuterAlloc, _InnerAllocs...> : public _OuterAlloc { typedef _OuterAlloc outer_allocator_type; protected: typedef scoped_allocator_adaptor<_InnerAllocs...> inner_allocator_type; private: inner_allocator_type __inner_; protected: __scoped_allocator_storage() {} template ::value >::type> __scoped_allocator_storage(_OuterA2&& __outerAlloc, const _InnerAllocs& ...__innerAllocs) : outer_allocator_type(_STD::forward<_OuterA2>(__outerAlloc)), __inner_(__innerAllocs...) {} template ::value >::type> __scoped_allocator_storage( const __scoped_allocator_storage<_OuterA2, _InnerAllocs...>& __other) : outer_allocator_type(__other.outer_allocator()), __inner_(__other.inner_allocator()) {} template ::value >::type> __scoped_allocator_storage( __scoped_allocator_storage<_OuterA2, _InnerAllocs...>&& __other) : outer_allocator_type(_STD::move(__other.outer_allocator())), __inner_(_STD::move(__other.inner_allocator())) {} template ::value >::type> __scoped_allocator_storage(_OuterA2&& __o, const inner_allocator_type& __i) : outer_allocator_type(_STD::forward<_OuterA2>(__o)), __inner_(__i) { } inner_allocator_type& inner_allocator() {return __inner_;} const inner_allocator_type& inner_allocator() const {return __inner_;} outer_allocator_type& outer_allocator() {return static_cast(*this);} const outer_allocator_type& outer_allocator() const {return static_cast(*this);} scoped_allocator_adaptor select_on_container_copy_construction() const { return scoped_allocator_adaptor ( allocator_traits:: select_on_container_copy_construction(outer_allocator()), allocator_traits:: select_on_container_copy_construction(inner_allocator()) ); } template friend class __scoped_allocator_storage; }; template class __scoped_allocator_storage<_OuterAlloc> : public _OuterAlloc { typedef _OuterAlloc outer_allocator_type; protected: typedef scoped_allocator_adaptor<_OuterAlloc> inner_allocator_type; __scoped_allocator_storage() {} template ::value >::type> __scoped_allocator_storage(_OuterA2&& __outerAlloc) : outer_allocator_type(_STD::forward<_OuterA2>(__outerAlloc)) {} template ::value >::type> __scoped_allocator_storage( const __scoped_allocator_storage<_OuterA2>& __other) : outer_allocator_type(__other.outer_allocator()) {} template ::value >::type> __scoped_allocator_storage( __scoped_allocator_storage<_OuterA2>&& __other) : outer_allocator_type(_STD::move(__other.outer_allocator())) {} inner_allocator_type& inner_allocator() {return static_cast(*this);} const inner_allocator_type& inner_allocator() const {return static_cast(*this);} outer_allocator_type& outer_allocator() {return static_cast(*this);} const outer_allocator_type& outer_allocator() const {return static_cast(*this);} scoped_allocator_adaptor select_on_container_copy_construction() const {return scoped_allocator_adaptor( allocator_traits:: select_on_container_copy_construction(outer_allocator()) );} __scoped_allocator_storage(const outer_allocator_type& __o, const inner_allocator_type& __i); template friend class __scoped_allocator_storage; }; // __outermost template decltype(declval<_Alloc>().outer_allocator(), true_type()) __has_outer_allocator_test(_Alloc&& __a); template false_type __has_outer_allocator_test(const volatile _Alloc& __a); template struct __has_outer_allocator : public common_type < decltype(__has_outer_allocator_test(declval<_Alloc&>())) >::type { }; template ::value> struct __outermost { typedef _Alloc type; type& operator()(type& __a) const {return __a;} }; template struct __outermost<_Alloc, true> { typedef typename remove_reference < decltype(_STD::declval<_Alloc>().outer_allocator()) >::type _OuterAlloc; typedef typename __outermost<_OuterAlloc>::type type; type& operator()(_Alloc& __a) const {return __outermost<_OuterAlloc>()(__a.outer_allocator());} }; template class scoped_allocator_adaptor<_OuterAlloc, _InnerAllocs...> : public __scoped_allocator_storage<_OuterAlloc, _InnerAllocs...> { typedef __scoped_allocator_storage<_OuterAlloc, _InnerAllocs...> base; typedef allocator_traits<_OuterAlloc> _OuterTraits; public: typedef _OuterAlloc outer_allocator_type; typedef typename base::inner_allocator_type inner_allocator_type; typedef typename _OuterTraits::size_type size_type; typedef typename _OuterTraits::difference_type difference_type; typedef typename _OuterTraits::pointer pointer; typedef typename _OuterTraits::const_pointer const_pointer; typedef typename _OuterTraits::void_pointer void_pointer; typedef typename _OuterTraits::const_void_pointer const_void_pointer; typedef integral_constant < bool, __get_poc_copy_assignment::value > propagate_on_container_copy_assignment; typedef integral_constant < bool, __get_poc_move_assignment::value > propagate_on_container_move_assignment; typedef integral_constant < bool, __get_poc_swap::value > propagate_on_container_swap; template struct rebind { typedef scoped_allocator_adaptor < typename _OuterTraits::template rebind_alloc<_Tp>, _InnerAllocs... > other; }; scoped_allocator_adaptor() {} template ::value >::type> scoped_allocator_adaptor(_OuterA2&& __outerAlloc, const _InnerAllocs& ...__innerAllocs) : base(_STD::forward<_OuterA2>(__outerAlloc), __innerAllocs...) {} // scoped_allocator_adaptor(const scoped_allocator_adaptor& __other) = default; template ::value >::type> scoped_allocator_adaptor( const scoped_allocator_adaptor<_OuterA2, _InnerAllocs...>& __other) : base(__other) {} template ::value >::type> scoped_allocator_adaptor( scoped_allocator_adaptor<_OuterA2, _InnerAllocs...>&& __other) : base(_STD::move(__other)) {} // ~scoped_allocator_adaptor() = default; inner_allocator_type& inner_allocator() {return base::inner_allocator();} const inner_allocator_type& inner_allocator() const {return base::inner_allocator();} outer_allocator_type& outer_allocator() {return base::outer_allocator();} const outer_allocator_type& outer_allocator() const {return base::outer_allocator();} pointer allocate(size_type __n) {return allocator_traits:: allocate(outer_allocator(), __n);} pointer allocate(size_type __n, const_void_pointer __hint) {return allocator_traits:: allocate(outer_allocator(), __n, __hint);} void deallocate(pointer __p, size_type __n) {allocator_traits:: deallocate(outer_allocator(), __p, __n);} size_type max_size() const {allocator_traits::max_size(outer_allocator());} template void construct(_Tp* __p, _Args&& ...__args) {__construct(__uses_alloc_ctor<_Tp, inner_allocator_type, _Args...>(), __p, _STD::forward<_Args>(__args)...);} template void destroy(_Tp* __p) { typedef __outermost _OM; allocator_traits:: destroy(_OM()(outer_allocator()), __p); } scoped_allocator_adaptor select_on_container_copy_construction() const {return base::select_on_container_copy_construction();} private: template ::value >::type> scoped_allocator_adaptor(_OuterA2&& __o, const inner_allocator_type& __i) : base(_STD::forward<_OuterA2>(__o), __i) {} template void __construct(integral_constant, _Tp* __p, _Args&& ...__args) { typedef __outermost _OM; allocator_traits::construct ( _OM()(outer_allocator()), __p, _STD::forward<_Args>(__args)... ); } template void __construct(integral_constant, _Tp* __p, _Args&& ...__args) { typedef __outermost _OM; allocator_traits::construct ( _OM()(outer_allocator()), __p, allocator_arg, inner_allocator(), _STD::forward<_Args>(__args)... ); } template void __construct(integral_constant, _Tp* __p, _Args&& ...__args) { typedef __outermost _OM; allocator_traits::construct ( _OM()(outer_allocator()), __p, _STD::forward<_Args>(__args)..., inner_allocator() ); } template friend class __scoped_allocator_storage; }; template inline _LIBCPP_INLINE_VISIBILITY bool operator==(const scoped_allocator_adaptor<_OuterA1>& __a, const scoped_allocator_adaptor<_OuterA2>& __b) { return __a.outer_allocator() == __b.outer_allocator(); } template inline _LIBCPP_INLINE_VISIBILITY bool operator==(const scoped_allocator_adaptor<_OuterA1, _InnerAllocs...>& __a, const scoped_allocator_adaptor<_OuterA2, _InnerAllocs...>& __b) { return __a.outer_allocator() == __b.outer_allocator() && __a.inner_allocator() == __b.inner_allocator(); } template inline _LIBCPP_INLINE_VISIBILITY bool operator!=(const scoped_allocator_adaptor<_OuterA1, _InnerAllocs...>& __a, const scoped_allocator_adaptor<_OuterA2, _InnerAllocs...>& __b) { return !(__a == __b); } #endif // defined(_LIBCPP_MOVE) && !defined(_LIBCPP_HAS_NO_ADVANCED_SFINAE) _LIBCPP_END_NAMESPACE_STD #endif // _LIBCPP_SCOPED_ALLOCATOR