blob: 727b1b6b5674b6a9e161177bfc1b229c233a1c60 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2#ifndef _LIBCPP_SPLIT_BUFFER
3#define _LIBCPP_SPLIT_BUFFER
4
5#include <__config>
6#include <type_traits>
7#include <algorithm>
8
Howard Hinnant66c6f972011-11-29 16:45:27 +00009#include <__undef_min_max>
10
Howard Hinnant08e17472011-10-17 20:05:10 +000011#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000012#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10 +000013#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000014
15_LIBCPP_BEGIN_NAMESPACE_STD
16
17template <bool>
18class __split_buffer_common
19{
20protected:
21 void __throw_length_error() const;
22 void __throw_out_of_range() const;
23};
24
Howard Hinnantf8ce4592010-07-07 19:14:52 +000025template <class _Tp, class _Allocator = allocator<_Tp> >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000026struct __split_buffer
27 : private __split_buffer_common<true>
28{
29private:
30 __split_buffer(const __split_buffer&);
31 __split_buffer& operator=(const __split_buffer&);
32public:
Howard Hinnant324bb032010-08-22 00:02:43 +000033 typedef _Tp value_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000034 typedef _Allocator allocator_type;
35 typedef typename remove_reference<allocator_type>::type __alloc_rr;
36 typedef allocator_traits<__alloc_rr> __alloc_traits;
37 typedef value_type& reference;
38 typedef const value_type& const_reference;
39 typedef typename __alloc_traits::size_type size_type;
40 typedef typename __alloc_traits::difference_type difference_type;
41 typedef typename __alloc_traits::pointer pointer;
42 typedef typename __alloc_traits::const_pointer const_pointer;
43 typedef pointer iterator;
44 typedef const_pointer const_iterator;
45
46 pointer __first_;
47 pointer __begin_;
48 pointer __end_;
49 __compressed_pair<pointer, allocator_type> __end_cap_;
50
51 typedef typename add_lvalue_reference<allocator_type>::type __alloc_ref;
52 typedef typename add_lvalue_reference<allocator_type>::type __alloc_const_ref;
53
Howard Hinnant0a612b02011-06-02 20:00:14 +000054 _LIBCPP_INLINE_VISIBILITY __alloc_rr& __alloc() _NOEXCEPT {return __end_cap_.second();}
55 _LIBCPP_INLINE_VISIBILITY const __alloc_rr& __alloc() const _NOEXCEPT {return __end_cap_.second();}
56 _LIBCPP_INLINE_VISIBILITY pointer& __end_cap() _NOEXCEPT {return __end_cap_.first();}
57 _LIBCPP_INLINE_VISIBILITY const pointer& __end_cap() const _NOEXCEPT {return __end_cap_.first();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000058
Howard Hinnant009b2c42011-06-03 15:16:49 +000059 __split_buffer()
60 _NOEXCEPT_(is_nothrow_default_constructible<allocator_type>::value);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000061 explicit __split_buffer(__alloc_rr& __a);
62 explicit __split_buffer(const __alloc_rr& __a);
63 __split_buffer(size_type __cap, size_type __start, __alloc_rr& __a);
64 ~__split_buffer();
65
Howard Hinnant73d21a42010-09-04 23:28:19 +000066#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant0a612b02011-06-02 20:00:14 +000067 __split_buffer(__split_buffer&& __c)
68 _NOEXCEPT_(is_nothrow_move_constructible<allocator_type>::value);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000069 __split_buffer(__split_buffer&& __c, const __alloc_rr& __a);
Howard Hinnant0a612b02011-06-02 20:00:14 +000070 __split_buffer& operator=(__split_buffer&& __c)
71 _NOEXCEPT_((__alloc_traits::propagate_on_container_move_assignment::value &&
72 is_nothrow_move_assignable<allocator_type>::value) ||
73 !__alloc_traits::propagate_on_container_move_assignment::value);
Howard Hinnant73d21a42010-09-04 23:28:19 +000074#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000075
Howard Hinnant0a612b02011-06-02 20:00:14 +000076 _LIBCPP_INLINE_VISIBILITY iterator begin() _NOEXCEPT {return __begin_;}
77 _LIBCPP_INLINE_VISIBILITY const_iterator begin() const _NOEXCEPT {return __begin_;}
78 _LIBCPP_INLINE_VISIBILITY iterator end() _NOEXCEPT {return __end_;}
79 _LIBCPP_INLINE_VISIBILITY const_iterator end() const _NOEXCEPT {return __end_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000080
Howard Hinnant0a612b02011-06-02 20:00:14 +000081 _LIBCPP_INLINE_VISIBILITY
82 void clear() _NOEXCEPT
83 {__destruct_at_end(__begin_);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000084 _LIBCPP_INLINE_VISIBILITY size_type size() const {return static_cast<size_type>(__end_ - __begin_);}
85 _LIBCPP_INLINE_VISIBILITY bool empty() const {return __end_ == __begin_;}
86 _LIBCPP_INLINE_VISIBILITY size_type capacity() const {return static_cast<size_type>(__end_cap() - __first_);}
87 _LIBCPP_INLINE_VISIBILITY size_type __front_spare() const {return static_cast<size_type>(__begin_ - __first_);}
88 _LIBCPP_INLINE_VISIBILITY size_type __back_spare() const {return static_cast<size_type>(__end_cap() - __end_);}
89
90 _LIBCPP_INLINE_VISIBILITY reference front() {return *__begin_;}
91 _LIBCPP_INLINE_VISIBILITY const_reference front() const {return *__begin_;}
92 _LIBCPP_INLINE_VISIBILITY reference back() {return *(__end_ - 1);}
93 _LIBCPP_INLINE_VISIBILITY const_reference back() const {return *(__end_ - 1);}
94
95 void reserve(size_type __n);
Howard Hinnant0a612b02011-06-02 20:00:14 +000096 void shrink_to_fit() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000097 void push_front(const_reference __x);
Howard Hinnantb0bfd9b2012-02-15 00:41:34 +000098 _LIBCPP_INLINE_VISIBILITY void push_back(const_reference __x);
Michael J. Spencer626916f2010-12-10 19:47:54 +000099#if !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000100 void push_front(value_type&& __x);
101 void push_back(value_type&& __x);
Michael J. Spencer626916f2010-12-10 19:47:54 +0000102#if !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000103 template <class... _Args>
104 void emplace_back(_Args&&... __args);
Michael J. Spencer626916f2010-12-10 19:47:54 +0000105#endif // !defined(_LIBCPP_HAS_NO_VARIADICS)
106#endif // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000107
108 _LIBCPP_INLINE_VISIBILITY void pop_front() {__destruct_at_begin(__begin_+1);}
109 _LIBCPP_INLINE_VISIBILITY void pop_back() {__destruct_at_end(__end_-1);}
110
111 void __construct_at_end(size_type __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000112 void __construct_at_end(size_type __n, const_reference __x);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000113 template <class _InputIter>
114 typename enable_if
115 <
116 __is_input_iterator<_InputIter>::value &&
117 !__is_forward_iterator<_InputIter>::value,
118 void
119 >::type
120 __construct_at_end(_InputIter __first, _InputIter __last);
121 template <class _ForwardIterator>
122 typename enable_if
123 <
124 __is_forward_iterator<_ForwardIterator>::value,
125 void
126 >::type
127 __construct_at_end(_ForwardIterator __first, _ForwardIterator __last);
128
129 _LIBCPP_INLINE_VISIBILITY void __destruct_at_begin(pointer __new_begin)
Howard Hinnant1468b662010-11-19 22:17:28 +0000130 {__destruct_at_begin(__new_begin, is_trivially_destructible<value_type>());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000131 void __destruct_at_begin(pointer __new_begin, false_type);
132 void __destruct_at_begin(pointer __new_begin, true_type);
133
Howard Hinnant0a612b02011-06-02 20:00:14 +0000134 _LIBCPP_INLINE_VISIBILITY
135 void __destruct_at_end(pointer __new_last) _NOEXCEPT
Howard Hinnantb0bfd9b2012-02-15 00:41:34 +0000136 {__destruct_at_end(__new_last, false_type());}
137 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant0a612b02011-06-02 20:00:14 +0000138 void __destruct_at_end(pointer __new_last, false_type) _NOEXCEPT;
Howard Hinnantb0bfd9b2012-02-15 00:41:34 +0000139 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant0a612b02011-06-02 20:00:14 +0000140 void __destruct_at_end(pointer __new_last, true_type) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000141
Howard Hinnant0a612b02011-06-02 20:00:14 +0000142 void swap(__split_buffer& __x)
143 _NOEXCEPT_(!__alloc_traits::propagate_on_container_swap::value||
144 __is_nothrow_swappable<__alloc_rr>::value);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000145
146 bool __invariants() const;
147
148private:
Howard Hinnant333f50d2010-09-21 20:16:37 +0000149 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9cbee432011-09-02 20:42:31 +0000150 void __move_assign_alloc(__split_buffer& __c, true_type)
Howard Hinnant0a612b02011-06-02 20:00:14 +0000151 _NOEXCEPT_(is_nothrow_move_assignable<allocator_type>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000152 {
Howard Hinnant0949eed2011-06-30 21:18:19 +0000153 __alloc() = _VSTD::move(__c.__alloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000154 }
155
Howard Hinnant333f50d2010-09-21 20:16:37 +0000156 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantec3773c2011-12-01 20:21:04 +0000157 void __move_assign_alloc(__split_buffer&, false_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000158 {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000159};
160
161template <class _Tp, class _Allocator>
162bool
163__split_buffer<_Tp, _Allocator>::__invariants() const
164{
165 if (__first_ == nullptr)
166 {
167 if (__begin_ != nullptr)
168 return false;
169 if (__end_ != nullptr)
170 return false;
171 if (__end_cap() != nullptr)
172 return false;
173 }
174 else
175 {
176 if (__begin_ < __first_)
177 return false;
178 if (__end_ < __begin_)
179 return false;
180 if (__end_cap() < __end_)
181 return false;
182 }
183 return true;
184}
185
186// Default constructs __n objects starting at __end_
187// throws if construction throws
188// Precondition: __n > 0
189// Precondition: size() + __n <= capacity()
190// Postcondition: size() == size() + __n
191template <class _Tp, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000192void
193__split_buffer<_Tp, _Allocator>::__construct_at_end(size_type __n)
194{
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000195 __alloc_rr& __a = this->__alloc();
196 do
197 {
Howard Hinnant5f255942011-08-28 15:21:29 +0000198 __alloc_traits::construct(__a, _VSTD::__to_raw_pointer(this->__end_));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000199 ++this->__end_;
200 --__n;
201 } while (__n > 0);
202}
203
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000204// Copy constructs __n objects starting at __end_ from __x
205// throws if construction throws
206// Precondition: __n > 0
207// Precondition: size() + __n <= capacity()
208// Postcondition: size() == old size() + __n
209// Postcondition: [i] == __x for all i in [size() - __n, __n)
210template <class _Tp, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000211void
212__split_buffer<_Tp, _Allocator>::__construct_at_end(size_type __n, const_reference __x)
213{
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000214 __alloc_rr& __a = this->__alloc();
215 do
216 {
Howard Hinnant0949eed2011-06-30 21:18:19 +0000217 __alloc_traits::construct(__a, _VSTD::__to_raw_pointer(this->__end_), __x);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000218 ++this->__end_;
219 --__n;
220 } while (__n > 0);
221}
222
223template <class _Tp, class _Allocator>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000224template <class _InputIter>
225typename enable_if
226<
227 __is_input_iterator<_InputIter>::value &&
228 !__is_forward_iterator<_InputIter>::value,
229 void
230>::type
231__split_buffer<_Tp, _Allocator>::__construct_at_end(_InputIter __first, _InputIter __last)
232{
233 __alloc_rr& __a = this->__alloc();
234 for (; __first != __last; ++__first)
235 {
236 if (__end_ == __end_cap())
237 {
238 size_type __old_cap = __end_cap() - __first_;
Howard Hinnant0949eed2011-06-30 21:18:19 +0000239 size_type __new_cap = _VSTD::max<size_type>(2 * __old_cap, 8);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000240 __split_buffer __buf(__new_cap, 0, __a);
241 for (pointer __p = __begin_; __p != __end_; ++__p, ++__buf.__end_)
242 __alloc_traits::construct(__buf.__alloc(),
Howard Hinnant0949eed2011-06-30 21:18:19 +0000243 _VSTD::__to_raw_pointer(__buf.__end_), _VSTD::move(*__p));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000244 swap(__buf);
245 }
Howard Hinnant0949eed2011-06-30 21:18:19 +0000246 __alloc_traits::construct(__a, _VSTD::__to_raw_pointer(this->__end_), *__first);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000247 ++this->__end_;
248 }
249}
250
251template <class _Tp, class _Allocator>
252template <class _ForwardIterator>
253typename enable_if
254<
255 __is_forward_iterator<_ForwardIterator>::value,
256 void
257>::type
258__split_buffer<_Tp, _Allocator>::__construct_at_end(_ForwardIterator __first, _ForwardIterator __last)
259{
260 __alloc_rr& __a = this->__alloc();
261 for (; __first != __last; ++__first)
262 {
Howard Hinnant0949eed2011-06-30 21:18:19 +0000263 __alloc_traits::construct(__a, _VSTD::__to_raw_pointer(this->__end_), *__first);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000264 ++this->__end_;
265 }
266}
267
268template <class _Tp, class _Allocator>
Dan Albert1d4a1ed2016-05-25 22:36:09 -0700269inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000270void
271__split_buffer<_Tp, _Allocator>::__destruct_at_begin(pointer __new_begin, false_type)
272{
Howard Hinnantb0bfd9b2012-02-15 00:41:34 +0000273 while (__begin_ != __new_begin)
Howard Hinnantfcd8db72013-06-23 21:17:24 +0000274 __alloc_traits::destroy(__alloc(), __to_raw_pointer(__begin_++));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000275}
276
277template <class _Tp, class _Allocator>
Dan Albert1d4a1ed2016-05-25 22:36:09 -0700278inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000279void
280__split_buffer<_Tp, _Allocator>::__destruct_at_begin(pointer __new_begin, true_type)
281{
282 __begin_ = __new_begin;
283}
284
285template <class _Tp, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +0000286inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000287void
Howard Hinnant0a612b02011-06-02 20:00:14 +0000288__split_buffer<_Tp, _Allocator>::__destruct_at_end(pointer __new_last, false_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000289{
Howard Hinnantb0bfd9b2012-02-15 00:41:34 +0000290 while (__new_last != __end_)
Howard Hinnantfcd8db72013-06-23 21:17:24 +0000291 __alloc_traits::destroy(__alloc(), __to_raw_pointer(--__end_));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000292}
293
294template <class _Tp, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +0000295inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000296void
Howard Hinnant0a612b02011-06-02 20:00:14 +0000297__split_buffer<_Tp, _Allocator>::__destruct_at_end(pointer __new_last, true_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000298{
299 __end_ = __new_last;
300}
301
302template <class _Tp, class _Allocator>
303__split_buffer<_Tp, _Allocator>::__split_buffer(size_type __cap, size_type __start, __alloc_rr& __a)
Howard Hinnantfcd8db72013-06-23 21:17:24 +0000304 : __end_cap_(nullptr, __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000305{
306 __first_ = __cap != 0 ? __alloc_traits::allocate(__alloc(), __cap) : nullptr;
307 __begin_ = __end_ = __first_ + __start;
308 __end_cap() = __first_ + __cap;
309}
310
311template <class _Tp, class _Allocator>
Dan Albert1d4a1ed2016-05-25 22:36:09 -0700312inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000313__split_buffer<_Tp, _Allocator>::__split_buffer()
Howard Hinnant009b2c42011-06-03 15:16:49 +0000314 _NOEXCEPT_(is_nothrow_default_constructible<allocator_type>::value)
Howard Hinnantfcd8db72013-06-23 21:17:24 +0000315 : __first_(nullptr), __begin_(nullptr), __end_(nullptr), __end_cap_(nullptr)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000316{
317}
318
319template <class _Tp, class _Allocator>
Dan Albert1d4a1ed2016-05-25 22:36:09 -0700320inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000321__split_buffer<_Tp, _Allocator>::__split_buffer(__alloc_rr& __a)
Howard Hinnantfcd8db72013-06-23 21:17:24 +0000322 : __first_(nullptr), __begin_(nullptr), __end_(nullptr), __end_cap_(nullptr, __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000323{
324}
325
326template <class _Tp, class _Allocator>
Dan Albert1d4a1ed2016-05-25 22:36:09 -0700327inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000328__split_buffer<_Tp, _Allocator>::__split_buffer(const __alloc_rr& __a)
Howard Hinnantfcd8db72013-06-23 21:17:24 +0000329 : __first_(nullptr), __begin_(nullptr), __end_(nullptr), __end_cap_(nullptr, __a)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000330{
331}
332
333template <class _Tp, class _Allocator>
334__split_buffer<_Tp, _Allocator>::~__split_buffer()
335{
336 clear();
337 if (__first_)
338 __alloc_traits::deallocate(__alloc(), __first_, capacity());
339}
340
Howard Hinnant73d21a42010-09-04 23:28:19 +0000341#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000342
343template <class _Tp, class _Allocator>
344__split_buffer<_Tp, _Allocator>::__split_buffer(__split_buffer&& __c)
Howard Hinnant0a612b02011-06-02 20:00:14 +0000345 _NOEXCEPT_(is_nothrow_move_constructible<allocator_type>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +0000346 : __first_(_VSTD::move(__c.__first_)),
347 __begin_(_VSTD::move(__c.__begin_)),
348 __end_(_VSTD::move(__c.__end_)),
349 __end_cap_(_VSTD::move(__c.__end_cap_))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000350{
351 __c.__first_ = nullptr;
352 __c.__begin_ = nullptr;
353 __c.__end_ = nullptr;
354 __c.__end_cap() = nullptr;
355}
356
357template <class _Tp, class _Allocator>
358__split_buffer<_Tp, _Allocator>::__split_buffer(__split_buffer&& __c, const __alloc_rr& __a)
359 : __end_cap_(__a)
360{
361 if (__a == __c.__alloc())
362 {
363 __first_ = __c.__first_;
364 __begin_ = __c.__begin_;
365 __end_ = __c.__end_;
366 __end_cap() = __c.__end_cap();
367 __c.__first_ = nullptr;
368 __c.__begin_ = nullptr;
369 __c.__end_ = nullptr;
370 __c.__end_cap() = nullptr;
371 }
372 else
373 {
374 size_type __cap = __c.size();
375 __first_ = __alloc_traits::allocate(__alloc(), __cap);
376 __begin_ = __end_ = __first_;
377 __end_cap() = __first_ + __cap;
Howard Hinnant99968442011-11-29 18:15:50 +0000378 typedef move_iterator<iterator> _Ip;
379 __construct_at_end(_Ip(__c.begin()), _Ip(__c.end()));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000380 }
381}
382
383template <class _Tp, class _Allocator>
384__split_buffer<_Tp, _Allocator>&
385__split_buffer<_Tp, _Allocator>::operator=(__split_buffer&& __c)
Howard Hinnant0a612b02011-06-02 20:00:14 +0000386 _NOEXCEPT_((__alloc_traits::propagate_on_container_move_assignment::value &&
387 is_nothrow_move_assignable<allocator_type>::value) ||
388 !__alloc_traits::propagate_on_container_move_assignment::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000389{
390 clear();
391 shrink_to_fit();
392 __first_ = __c.__first_;
393 __begin_ = __c.__begin_;
394 __end_ = __c.__end_;
395 __end_cap() = __c.__end_cap();
396 __move_assign_alloc(__c,
397 integral_constant<bool,
398 __alloc_traits::propagate_on_container_move_assignment::value>());
399 __c.__first_ = __c.__begin_ = __c.__end_ = __c.__end_cap() = nullptr;
400 return *this;
401}
402
Howard Hinnant73d21a42010-09-04 23:28:19 +0000403#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000404
405template <class _Tp, class _Allocator>
406void
407__split_buffer<_Tp, _Allocator>::swap(__split_buffer& __x)
Howard Hinnant0a612b02011-06-02 20:00:14 +0000408 _NOEXCEPT_(!__alloc_traits::propagate_on_container_swap::value||
409 __is_nothrow_swappable<__alloc_rr>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000410{
Howard Hinnant0949eed2011-06-30 21:18:19 +0000411 _VSTD::swap(__first_, __x.__first_);
412 _VSTD::swap(__begin_, __x.__begin_);
413 _VSTD::swap(__end_, __x.__end_);
414 _VSTD::swap(__end_cap(), __x.__end_cap());
Marshall Clow7d914d12015-07-13 20:04:56 +0000415 __swap_allocator(__alloc(), __x.__alloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000416}
417
418template <class _Tp, class _Allocator>
419void
420__split_buffer<_Tp, _Allocator>::reserve(size_type __n)
421{
422 if (__n < capacity())
423 {
424 __split_buffer<value_type, __alloc_rr&> __t(__n, 0, __alloc());
425 __t.__construct_at_end(move_iterator<pointer>(__begin_),
426 move_iterator<pointer>(__end_));
Howard Hinnant0949eed2011-06-30 21:18:19 +0000427 _VSTD::swap(__first_, __t.__first_);
428 _VSTD::swap(__begin_, __t.__begin_);
429 _VSTD::swap(__end_, __t.__end_);
430 _VSTD::swap(__end_cap(), __t.__end_cap());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000431 }
432}
433
434template <class _Tp, class _Allocator>
435void
Howard Hinnant0a612b02011-06-02 20:00:14 +0000436__split_buffer<_Tp, _Allocator>::shrink_to_fit() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000437{
438 if (capacity() > size())
439 {
440#ifndef _LIBCPP_NO_EXCEPTIONS
441 try
442 {
Howard Hinnant324bb032010-08-22 00:02:43 +0000443#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000444 __split_buffer<value_type, __alloc_rr&> __t(size(), 0, __alloc());
445 __t.__construct_at_end(move_iterator<pointer>(__begin_),
446 move_iterator<pointer>(__end_));
447 __t.__end_ = __t.__begin_ + (__end_ - __begin_);
Howard Hinnant0949eed2011-06-30 21:18:19 +0000448 _VSTD::swap(__first_, __t.__first_);
449 _VSTD::swap(__begin_, __t.__begin_);
450 _VSTD::swap(__end_, __t.__end_);
451 _VSTD::swap(__end_cap(), __t.__end_cap());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000452#ifndef _LIBCPP_NO_EXCEPTIONS
453 }
454 catch (...)
455 {
456 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000457#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000458 }
459}
460
461template <class _Tp, class _Allocator>
462void
463__split_buffer<_Tp, _Allocator>::push_front(const_reference __x)
464{
465 if (__begin_ == __first_)
466 {
467 if (__end_ < __end_cap())
468 {
469 difference_type __d = __end_cap() - __end_;
470 __d = (__d + 1) / 2;
Howard Hinnant0949eed2011-06-30 21:18:19 +0000471 __begin_ = _VSTD::move_backward(__begin_, __end_, __end_ + __d);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000472 __end_ += __d;
473 }
474 else
475 {
Howard Hinnantec3773c2011-12-01 20:21:04 +0000476 size_type __c = max<size_type>(2 * static_cast<size_t>(__end_cap() - __first_), 1);
Howard Hinnantf8ce4592010-07-07 19:14:52 +0000477 __split_buffer<value_type, __alloc_rr&> __t(__c, (__c + 3) / 4, __alloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000478 __t.__construct_at_end(move_iterator<pointer>(__begin_),
479 move_iterator<pointer>(__end_));
Howard Hinnant0949eed2011-06-30 21:18:19 +0000480 _VSTD::swap(__first_, __t.__first_);
481 _VSTD::swap(__begin_, __t.__begin_);
482 _VSTD::swap(__end_, __t.__end_);
483 _VSTD::swap(__end_cap(), __t.__end_cap());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000484 }
485 }
Howard Hinnant0949eed2011-06-30 21:18:19 +0000486 __alloc_traits::construct(__alloc(), _VSTD::__to_raw_pointer(__begin_-1), __x);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000487 --__begin_;
488}
489
Howard Hinnant73d21a42010-09-04 23:28:19 +0000490#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000491
492template <class _Tp, class _Allocator>
493void
494__split_buffer<_Tp, _Allocator>::push_front(value_type&& __x)
495{
496 if (__begin_ == __first_)
497 {
498 if (__end_ < __end_cap())
499 {
500 difference_type __d = __end_cap() - __end_;
501 __d = (__d + 1) / 2;
Howard Hinnant0949eed2011-06-30 21:18:19 +0000502 __begin_ = _VSTD::move_backward(__begin_, __end_, __end_ + __d);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000503 __end_ += __d;
504 }
505 else
506 {
Howard Hinnantec3773c2011-12-01 20:21:04 +0000507 size_type __c = max<size_type>(2 * static_cast<size_t>(__end_cap() - __first_), 1);
Howard Hinnantf8ce4592010-07-07 19:14:52 +0000508 __split_buffer<value_type, __alloc_rr&> __t(__c, (__c + 3) / 4, __alloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000509 __t.__construct_at_end(move_iterator<pointer>(__begin_),
510 move_iterator<pointer>(__end_));
Howard Hinnant0949eed2011-06-30 21:18:19 +0000511 _VSTD::swap(__first_, __t.__first_);
512 _VSTD::swap(__begin_, __t.__begin_);
513 _VSTD::swap(__end_, __t.__end_);
514 _VSTD::swap(__end_cap(), __t.__end_cap());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000515 }
516 }
Howard Hinnant0949eed2011-06-30 21:18:19 +0000517 __alloc_traits::construct(__alloc(), _VSTD::__to_raw_pointer(__begin_-1),
518 _VSTD::move(__x));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000519 --__begin_;
520}
521
Howard Hinnant73d21a42010-09-04 23:28:19 +0000522#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000523
524template <class _Tp, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +0000525inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000526void
527__split_buffer<_Tp, _Allocator>::push_back(const_reference __x)
528{
529 if (__end_ == __end_cap())
530 {
531 if (__begin_ > __first_)
532 {
533 difference_type __d = __begin_ - __first_;
534 __d = (__d + 1) / 2;
Howard Hinnant0949eed2011-06-30 21:18:19 +0000535 __end_ = _VSTD::move(__begin_, __end_, __begin_ - __d);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000536 __begin_ -= __d;
537 }
538 else
539 {
Howard Hinnantec3773c2011-12-01 20:21:04 +0000540 size_type __c = max<size_type>(2 * static_cast<size_t>(__end_cap() - __first_), 1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000541 __split_buffer<value_type, __alloc_rr&> __t(__c, __c / 4, __alloc());
542 __t.__construct_at_end(move_iterator<pointer>(__begin_),
543 move_iterator<pointer>(__end_));
Howard Hinnant0949eed2011-06-30 21:18:19 +0000544 _VSTD::swap(__first_, __t.__first_);
545 _VSTD::swap(__begin_, __t.__begin_);
546 _VSTD::swap(__end_, __t.__end_);
547 _VSTD::swap(__end_cap(), __t.__end_cap());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000548 }
549 }
Howard Hinnant0949eed2011-06-30 21:18:19 +0000550 __alloc_traits::construct(__alloc(), _VSTD::__to_raw_pointer(__end_), __x);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000551 ++__end_;
552}
553
Howard Hinnant73d21a42010-09-04 23:28:19 +0000554#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000555
556template <class _Tp, class _Allocator>
557void
558__split_buffer<_Tp, _Allocator>::push_back(value_type&& __x)
559{
560 if (__end_ == __end_cap())
561 {
562 if (__begin_ > __first_)
563 {
564 difference_type __d = __begin_ - __first_;
565 __d = (__d + 1) / 2;
Howard Hinnant0949eed2011-06-30 21:18:19 +0000566 __end_ = _VSTD::move(__begin_, __end_, __begin_ - __d);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000567 __begin_ -= __d;
568 }
569 else
570 {
Howard Hinnantec3773c2011-12-01 20:21:04 +0000571 size_type __c = max<size_type>(2 * static_cast<size_t>(__end_cap() - __first_), 1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000572 __split_buffer<value_type, __alloc_rr&> __t(__c, __c / 4, __alloc());
573 __t.__construct_at_end(move_iterator<pointer>(__begin_),
574 move_iterator<pointer>(__end_));
Howard Hinnant0949eed2011-06-30 21:18:19 +0000575 _VSTD::swap(__first_, __t.__first_);
576 _VSTD::swap(__begin_, __t.__begin_);
577 _VSTD::swap(__end_, __t.__end_);
578 _VSTD::swap(__end_cap(), __t.__end_cap());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000579 }
580 }
Howard Hinnant0949eed2011-06-30 21:18:19 +0000581 __alloc_traits::construct(__alloc(), _VSTD::__to_raw_pointer(__end_),
582 _VSTD::move(__x));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000583 ++__end_;
584}
585
Howard Hinnant73d21a42010-09-04 23:28:19 +0000586#ifndef _LIBCPP_HAS_NO_VARIADICS
587
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000588template <class _Tp, class _Allocator>
589template <class... _Args>
590void
591__split_buffer<_Tp, _Allocator>::emplace_back(_Args&&... __args)
592{
593 if (__end_ == __end_cap())
594 {
595 if (__begin_ > __first_)
596 {
597 difference_type __d = __begin_ - __first_;
598 __d = (__d + 1) / 2;
Howard Hinnant0949eed2011-06-30 21:18:19 +0000599 __end_ = _VSTD::move(__begin_, __end_, __begin_ - __d);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000600 __begin_ -= __d;
601 }
602 else
603 {
Howard Hinnantec3773c2011-12-01 20:21:04 +0000604 size_type __c = max<size_type>(2 * static_cast<size_t>(__end_cap() - __first_), 1);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000605 __split_buffer<value_type, __alloc_rr&> __t(__c, __c / 4, __alloc());
606 __t.__construct_at_end(move_iterator<pointer>(__begin_),
607 move_iterator<pointer>(__end_));
Howard Hinnant0949eed2011-06-30 21:18:19 +0000608 _VSTD::swap(__first_, __t.__first_);
609 _VSTD::swap(__begin_, __t.__begin_);
610 _VSTD::swap(__end_, __t.__end_);
611 _VSTD::swap(__end_cap(), __t.__end_cap());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000612 }
613 }
Howard Hinnant0949eed2011-06-30 21:18:19 +0000614 __alloc_traits::construct(__alloc(), _VSTD::__to_raw_pointer(__end_),
615 _VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000616 ++__end_;
617}
618
Howard Hinnant73d21a42010-09-04 23:28:19 +0000619#endif // _LIBCPP_HAS_NO_VARIADICS
620
621#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000622
Howard Hinnant0a612b02011-06-02 20:00:14 +0000623template <class _Tp, class _Allocator>
Howard Hinnant1e564242013-10-04 22:09:00 +0000624inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant0a612b02011-06-02 20:00:14 +0000625void
626swap(__split_buffer<_Tp, _Allocator>& __x, __split_buffer<_Tp, _Allocator>& __y)
627 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
628{
629 __x.swap(__y);
630}
631
632
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000633_LIBCPP_END_NAMESPACE_STD
634
635#endif // _LIBCPP_SPLIT_BUFFER