1 // Debugging list implementation -*- C++ -*-
3 // Copyright (C) 2003-2013 Free Software Foundation, Inc.
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
26 * This file is a GNU debug extension to the Standard C++ Library.
29 #ifndef _GLIBCXX_DEBUG_LIST
30 #define _GLIBCXX_DEBUG_LIST 1
33 #include <debug/safe_sequence.h>
34 #include <debug/safe_iterator.h>
36 namespace std _GLIBCXX_VISIBILITY(default)
40 /// Class std::list with safety/checking/debug instrumentation.
41 template<typename _Tp, typename _Allocator = std::allocator<_Tp> >
43 : public _GLIBCXX_STD_C::list<_Tp, _Allocator>,
44 public __gnu_debug::_Safe_sequence<list<_Tp, _Allocator> >
46 typedef _GLIBCXX_STD_C::list<_Tp, _Allocator> _Base;
48 typedef typename _Base::iterator _Base_iterator;
49 typedef typename _Base::const_iterator _Base_const_iterator;
50 typedef __gnu_debug::_Equal_to<_Base_const_iterator> _Equal;
51 typedef __gnu_debug::_Not_equal_to<_Base_const_iterator> _Not_equal;
53 typedef typename _Base::reference reference;
54 typedef typename _Base::const_reference const_reference;
56 typedef __gnu_debug::_Safe_iterator<_Base_iterator, list>
58 typedef __gnu_debug::_Safe_iterator<_Base_const_iterator, list>
61 typedef typename _Base::size_type size_type;
62 typedef typename _Base::difference_type difference_type;
64 typedef _Tp value_type;
65 typedef _Allocator allocator_type;
66 typedef typename _Base::pointer pointer;
67 typedef typename _Base::const_pointer const_pointer;
68 typedef std::reverse_iterator<iterator> reverse_iterator;
69 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
71 // 23.2.2.1 construct/copy/destroy:
73 list(const _Allocator& __a = _Allocator())
76 #if __cplusplus >= 201103L
81 list(size_type __n, const _Tp& __value,
82 const _Allocator& __a = _Allocator())
83 : _Base(__n, __value, __a) { }
86 list(size_type __n, const _Tp& __value = _Tp(),
87 const _Allocator& __a = _Allocator())
88 : _Base(__n, __value, __a) { }
91 #if __cplusplus >= 201103L
92 template<class _InputIterator,
93 typename = std::_RequireInputIter<_InputIterator>>
95 template<class _InputIterator>
97 list(_InputIterator __first, _InputIterator __last,
98 const _Allocator& __a = _Allocator())
99 : _Base(__gnu_debug::__base(__gnu_debug::__check_valid_range(__first,
101 __gnu_debug::__base(__last), __a)
104 list(const list& __x)
107 list(const _Base& __x)
110 #if __cplusplus >= 201103L
111 list(list&& __x) noexcept
112 : _Base(std::move(__x))
113 { this->_M_swap(__x); }
115 list(initializer_list<value_type> __l,
116 const allocator_type& __a = allocator_type())
117 : _Base(__l, __a) { }
120 ~list() _GLIBCXX_NOEXCEPT { }
123 operator=(const list& __x)
125 static_cast<_Base&>(*this) = __x;
126 this->_M_invalidate_all();
130 #if __cplusplus >= 201103L
132 operator=(list&& __x)
136 __glibcxx_check_self_move_assign(__x);
143 operator=(initializer_list<value_type> __l)
145 static_cast<_Base&>(*this) = __l;
146 this->_M_invalidate_all();
151 assign(initializer_list<value_type> __l)
154 this->_M_invalidate_all();
158 #if __cplusplus >= 201103L
159 template<class _InputIterator,
160 typename = std::_RequireInputIter<_InputIterator>>
162 template<class _InputIterator>
165 assign(_InputIterator __first, _InputIterator __last)
167 __glibcxx_check_valid_range(__first, __last);
168 _Base::assign(__gnu_debug::__base(__first),
169 __gnu_debug::__base(__last));
170 this->_M_invalidate_all();
174 assign(size_type __n, const _Tp& __t)
176 _Base::assign(__n, __t);
177 this->_M_invalidate_all();
180 using _Base::get_allocator;
184 begin() _GLIBCXX_NOEXCEPT
185 { return iterator(_Base::begin(), this); }
188 begin() const _GLIBCXX_NOEXCEPT
189 { return const_iterator(_Base::begin(), this); }
192 end() _GLIBCXX_NOEXCEPT
193 { return iterator(_Base::end(), this); }
196 end() const _GLIBCXX_NOEXCEPT
197 { return const_iterator(_Base::end(), this); }
200 rbegin() _GLIBCXX_NOEXCEPT
201 { return reverse_iterator(end()); }
203 const_reverse_iterator
204 rbegin() const _GLIBCXX_NOEXCEPT
205 { return const_reverse_iterator(end()); }
208 rend() _GLIBCXX_NOEXCEPT
209 { return reverse_iterator(begin()); }
211 const_reverse_iterator
212 rend() const _GLIBCXX_NOEXCEPT
213 { return const_reverse_iterator(begin()); }
215 #if __cplusplus >= 201103L
217 cbegin() const noexcept
218 { return const_iterator(_Base::begin(), this); }
221 cend() const noexcept
222 { return const_iterator(_Base::end(), this); }
224 const_reverse_iterator
225 crbegin() const noexcept
226 { return const_reverse_iterator(end()); }
228 const_reverse_iterator
229 crend() const noexcept
230 { return const_reverse_iterator(begin()); }
233 // 23.2.2.2 capacity:
236 using _Base::max_size;
238 #if __cplusplus >= 201103L
240 resize(size_type __sz)
242 this->_M_detach_singular();
244 // if __sz < size(), invalidate all iterators in [begin+__sz, end())
245 _Base_iterator __victim = _Base::begin();
246 _Base_iterator __end = _Base::end();
247 for (size_type __i = __sz; __victim != __end && __i > 0; --__i)
250 for (; __victim != __end; ++__victim)
252 this->_M_invalidate_if(_Equal(__victim));
261 this->_M_revalidate_singular();
262 __throw_exception_again;
267 resize(size_type __sz, const _Tp& __c)
269 this->_M_detach_singular();
271 // if __sz < size(), invalidate all iterators in [begin+__sz, end())
272 _Base_iterator __victim = _Base::begin();
273 _Base_iterator __end = _Base::end();
274 for (size_type __i = __sz; __victim != __end && __i > 0; --__i)
277 for (; __victim != __end; ++__victim)
279 this->_M_invalidate_if(_Equal(__victim));
284 _Base::resize(__sz, __c);
288 this->_M_revalidate_singular();
289 __throw_exception_again;
294 resize(size_type __sz, _Tp __c = _Tp())
296 this->_M_detach_singular();
298 // if __sz < size(), invalidate all iterators in [begin+__sz, end())
299 _Base_iterator __victim = _Base::begin();
300 _Base_iterator __end = _Base::end();
301 for (size_type __i = __sz; __victim != __end && __i > 0; --__i)
304 for (; __victim != __end; ++__victim)
306 this->_M_invalidate_if(_Equal(__victim));
311 _Base::resize(__sz, __c);
315 this->_M_revalidate_singular();
316 __throw_exception_again;
325 __glibcxx_check_nonempty();
326 return _Base::front();
332 __glibcxx_check_nonempty();
333 return _Base::front();
339 __glibcxx_check_nonempty();
340 return _Base::back();
346 __glibcxx_check_nonempty();
347 return _Base::back();
350 // 23.2.2.3 modifiers:
351 using _Base::push_front;
353 #if __cplusplus >= 201103L
354 using _Base::emplace_front;
360 __glibcxx_check_nonempty();
361 this->_M_invalidate_if(_Equal(_Base::begin()));
365 using _Base::push_back;
367 #if __cplusplus >= 201103L
368 using _Base::emplace_back;
374 __glibcxx_check_nonempty();
375 this->_M_invalidate_if(_Equal(--_Base::end()));
379 #if __cplusplus >= 201103L
380 template<typename... _Args>
382 emplace(iterator __position, _Args&&... __args)
384 __glibcxx_check_insert(__position);
385 return iterator(_Base::emplace(__position.base(),
386 std::forward<_Args>(__args)...), this);
391 insert(iterator __position, const _Tp& __x)
393 __glibcxx_check_insert(__position);
394 return iterator(_Base::insert(__position.base(), __x), this);
397 #if __cplusplus >= 201103L
399 insert(iterator __position, _Tp&& __x)
400 { return emplace(__position, std::move(__x)); }
403 insert(iterator __p, initializer_list<value_type> __l)
405 __glibcxx_check_insert(__p);
406 _Base::insert(__p.base(), __l);
411 insert(iterator __position, size_type __n, const _Tp& __x)
413 __glibcxx_check_insert(__position);
414 _Base::insert(__position.base(), __n, __x);
417 #if __cplusplus >= 201103L
418 template<class _InputIterator,
419 typename = std::_RequireInputIter<_InputIterator>>
421 template<class _InputIterator>
424 insert(iterator __position, _InputIterator __first,
425 _InputIterator __last)
427 __glibcxx_check_insert_range(__position, __first, __last);
428 _Base::insert(__position.base(), __gnu_debug::__base(__first),
429 __gnu_debug::__base(__last));
434 _M_erase(_Base_iterator __position)
436 this->_M_invalidate_if(_Equal(__position));
437 return _Base::erase(__position);
441 erase(iterator __position)
443 __glibcxx_check_erase(__position);
444 return iterator(_M_erase(__position.base()), this);
448 erase(iterator __position, iterator __last)
450 // _GLIBCXX_RESOLVE_LIB_DEFECTS
451 // 151. can't currently clear() empty container
452 __glibcxx_check_erase_range(__position, __last);
453 for (_Base_iterator __victim = __position.base();
454 __victim != __last.base(); ++__victim)
456 _GLIBCXX_DEBUG_VERIFY(__victim != _Base::end(),
457 _M_message(__gnu_debug::__msg_valid_range)
458 ._M_iterator(__position, "position")
459 ._M_iterator(__last, "last"));
460 this->_M_invalidate_if(_Equal(__victim));
462 return iterator(_Base::erase(__position.base(), __last.base()), this);
473 clear() _GLIBCXX_NOEXCEPT
476 this->_M_invalidate_all();
479 // 23.2.2.4 list operations:
481 #if __cplusplus >= 201103L
482 splice(iterator __position, list&& __x)
484 splice(iterator __position, list& __x)
487 _GLIBCXX_DEBUG_VERIFY(&__x != this,
488 _M_message(__gnu_debug::__msg_self_splice)
489 ._M_sequence(*this, "this"));
490 this->_M_transfer_from_if(__x, _Not_equal(__x._M_base().end()));
491 _Base::splice(__position.base(), _GLIBCXX_MOVE(__x._M_base()));
494 #if __cplusplus >= 201103L
496 splice(iterator __position, list& __x)
497 { splice(__position, std::move(__x)); }
501 #if __cplusplus >= 201103L
502 splice(iterator __position, list&& __x, iterator __i)
504 splice(iterator __position, list& __x, iterator __i)
507 __glibcxx_check_insert(__position);
509 // We used to perform the splice_alloc check: not anymore, redundant
510 // after implementing the relevant bits of N1599.
512 _GLIBCXX_DEBUG_VERIFY(__i._M_dereferenceable(),
513 _M_message(__gnu_debug::__msg_splice_bad)
514 ._M_iterator(__i, "__i"));
515 _GLIBCXX_DEBUG_VERIFY(__i._M_attached_to(&__x),
516 _M_message(__gnu_debug::__msg_splice_other)
517 ._M_iterator(__i, "__i")._M_sequence(__x, "__x"));
519 // _GLIBCXX_RESOLVE_LIB_DEFECTS
520 // 250. splicing invalidates iterators
521 this->_M_transfer_from_if(__x, _Equal(__i.base()));
522 _Base::splice(__position.base(), _GLIBCXX_MOVE(__x._M_base()),
526 #if __cplusplus >= 201103L
528 splice(iterator __position, list& __x, iterator __i)
529 { splice(__position, std::move(__x), __i); }
533 #if __cplusplus >= 201103L
534 splice(iterator __position, list&& __x, iterator __first,
537 splice(iterator __position, list& __x, iterator __first,
541 __glibcxx_check_insert(__position);
542 __glibcxx_check_valid_range(__first, __last);
543 _GLIBCXX_DEBUG_VERIFY(__first._M_attached_to(&__x),
544 _M_message(__gnu_debug::__msg_splice_other)
545 ._M_sequence(__x, "x")
546 ._M_iterator(__first, "first"));
548 // We used to perform the splice_alloc check: not anymore, redundant
549 // after implementing the relevant bits of N1599.
551 for (_Base_iterator __tmp = __first.base();
552 __tmp != __last.base(); ++__tmp)
554 _GLIBCXX_DEBUG_VERIFY(__tmp != _Base::end(),
555 _M_message(__gnu_debug::__msg_valid_range)
556 ._M_iterator(__first, "first")
557 ._M_iterator(__last, "last"));
558 _GLIBCXX_DEBUG_VERIFY(&__x != this || __tmp != __position,
559 _M_message(__gnu_debug::__msg_splice_overlap)
560 ._M_iterator(__tmp, "position")
561 ._M_iterator(__first, "first")
562 ._M_iterator(__last, "last"));
563 // _GLIBCXX_RESOLVE_LIB_DEFECTS
564 // 250. splicing invalidates iterators
565 this->_M_transfer_from_if(__x, _Equal(__tmp));
568 _Base::splice(__position.base(), _GLIBCXX_MOVE(__x._M_base()),
569 __first.base(), __last.base());
572 #if __cplusplus >= 201103L
574 splice(iterator __position, list& __x, iterator __first, iterator __last)
575 { splice(__position, std::move(__x), __first, __last); }
579 remove(const _Tp& __value)
581 for (_Base_iterator __x = _Base::begin(); __x != _Base::end(); )
590 template<class _Predicate>
592 remove_if(_Predicate __pred)
594 for (_Base_iterator __x = _Base::begin(); __x != _Base::end(); )
606 _Base_iterator __first = _Base::begin();
607 _Base_iterator __last = _Base::end();
608 if (__first == __last)
610 _Base_iterator __next = __first; ++__next;
611 while (__next != __last)
613 if (*__first == *__next)
614 __next = _M_erase(__next);
620 template<class _BinaryPredicate>
622 unique(_BinaryPredicate __binary_pred)
624 _Base_iterator __first = _Base::begin();
625 _Base_iterator __last = _Base::end();
626 if (__first == __last)
628 _Base_iterator __next = __first; ++__next;
629 while (__next != __last)
631 if (__binary_pred(*__first, *__next))
632 __next = _M_erase(__next);
639 #if __cplusplus >= 201103L
645 // _GLIBCXX_RESOLVE_LIB_DEFECTS
646 // 300. list::merge() specification incomplete
649 __glibcxx_check_sorted(_Base::begin(), _Base::end());
650 __glibcxx_check_sorted(__x.begin().base(), __x.end().base());
651 this->_M_transfer_from_if(__x, _Not_equal(__x._M_base().end()));
652 _Base::merge(_GLIBCXX_MOVE(__x._M_base()));
656 #if __cplusplus >= 201103L
659 { merge(std::move(__x)); }
662 template<class _Compare>
664 #if __cplusplus >= 201103L
665 merge(list&& __x, _Compare __comp)
667 merge(list& __x, _Compare __comp)
670 // _GLIBCXX_RESOLVE_LIB_DEFECTS
671 // 300. list::merge() specification incomplete
674 __glibcxx_check_sorted_pred(_Base::begin(), _Base::end(),
676 __glibcxx_check_sorted_pred(__x.begin().base(), __x.end().base(),
678 this->_M_transfer_from_if(__x, _Not_equal(__x._M_base().end()));
679 _Base::merge(_GLIBCXX_MOVE(__x._M_base()), __comp);
683 #if __cplusplus >= 201103L
684 template<typename _Compare>
686 merge(list& __x, _Compare __comp)
687 { merge(std::move(__x), __comp); }
691 sort() { _Base::sort(); }
693 template<typename _StrictWeakOrdering>
695 sort(_StrictWeakOrdering __pred) { _Base::sort(__pred); }
697 using _Base::reverse;
700 _M_base() _GLIBCXX_NOEXCEPT { return *this; }
703 _M_base() const _GLIBCXX_NOEXCEPT { return *this; }
709 this->_M_invalidate_if(_Not_equal(_Base::end()));
713 template<typename _Tp, typename _Alloc>
715 operator==(const list<_Tp, _Alloc>& __lhs,
716 const list<_Tp, _Alloc>& __rhs)
717 { return __lhs._M_base() == __rhs._M_base(); }
719 template<typename _Tp, typename _Alloc>
721 operator!=(const list<_Tp, _Alloc>& __lhs,
722 const list<_Tp, _Alloc>& __rhs)
723 { return __lhs._M_base() != __rhs._M_base(); }
725 template<typename _Tp, typename _Alloc>
727 operator<(const list<_Tp, _Alloc>& __lhs,
728 const list<_Tp, _Alloc>& __rhs)
729 { return __lhs._M_base() < __rhs._M_base(); }
731 template<typename _Tp, typename _Alloc>
733 operator<=(const list<_Tp, _Alloc>& __lhs,
734 const list<_Tp, _Alloc>& __rhs)
735 { return __lhs._M_base() <= __rhs._M_base(); }
737 template<typename _Tp, typename _Alloc>
739 operator>=(const list<_Tp, _Alloc>& __lhs,
740 const list<_Tp, _Alloc>& __rhs)
741 { return __lhs._M_base() >= __rhs._M_base(); }
743 template<typename _Tp, typename _Alloc>
745 operator>(const list<_Tp, _Alloc>& __lhs,
746 const list<_Tp, _Alloc>& __rhs)
747 { return __lhs._M_base() > __rhs._M_base(); }
749 template<typename _Tp, typename _Alloc>
751 swap(list<_Tp, _Alloc>& __lhs, list<_Tp, _Alloc>& __rhs)
752 { __lhs.swap(__rhs); }
754 } // namespace __debug