2015-06-29 François Dumont <fdumont@gcc.gnu.org>
[official-gcc.git] / libstdc++-v3 / include / debug / map.h
blob9bda8eba1da02925c87486c172ca5100e38cd70f
1 // Debugging map implementation -*- C++ -*-
3 // Copyright (C) 2003-2015 Free Software Foundation, Inc.
4 //
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)
9 // any later version.
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/>.
25 /** @file debug/map.h
26 * This file is a GNU debug extension to the Standard C++ Library.
29 #ifndef _GLIBCXX_DEBUG_MAP_H
30 #define _GLIBCXX_DEBUG_MAP_H 1
32 #include <debug/safe_sequence.h>
33 #include <debug/safe_container.h>
34 #include <debug/safe_iterator.h>
35 #include <utility>
37 namespace std _GLIBCXX_VISIBILITY(default)
39 namespace __debug
41 /// Class std::map with safety/checking/debug instrumentation.
42 template<typename _Key, typename _Tp, typename _Compare = std::less<_Key>,
43 typename _Allocator = std::allocator<std::pair<const _Key, _Tp> > >
44 class map
45 : public __gnu_debug::_Safe_container<
46 map<_Key, _Tp, _Compare, _Allocator>, _Allocator,
47 __gnu_debug::_Safe_node_sequence>,
48 public _GLIBCXX_STD_C::map<_Key, _Tp, _Compare, _Allocator>
50 typedef _GLIBCXX_STD_C::map<
51 _Key, _Tp, _Compare, _Allocator> _Base;
52 typedef __gnu_debug::_Safe_container<
53 map, _Allocator, __gnu_debug::_Safe_node_sequence> _Safe;
55 typedef typename _Base::const_iterator _Base_const_iterator;
56 typedef typename _Base::iterator _Base_iterator;
57 typedef __gnu_debug::_Equal_to<_Base_const_iterator> _Equal;
59 public:
60 // types:
61 typedef _Key key_type;
62 typedef _Tp mapped_type;
63 typedef std::pair<const _Key, _Tp> value_type;
64 typedef _Compare key_compare;
65 typedef _Allocator allocator_type;
66 typedef typename _Base::reference reference;
67 typedef typename _Base::const_reference const_reference;
69 typedef __gnu_debug::_Safe_iterator<_Base_iterator, map>
70 iterator;
71 typedef __gnu_debug::_Safe_iterator<_Base_const_iterator, map>
72 const_iterator;
74 typedef typename _Base::size_type size_type;
75 typedef typename _Base::difference_type difference_type;
76 typedef typename _Base::pointer pointer;
77 typedef typename _Base::const_pointer const_pointer;
78 typedef std::reverse_iterator<iterator> reverse_iterator;
79 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
81 // 23.3.1.1 construct/copy/destroy:
83 #if __cplusplus < 201103L
84 map() : _Base() { }
86 map(const map& __x)
87 : _Base(__x) { }
89 ~map() { }
90 #else
91 map() = default;
92 map(const map&) = default;
93 map(map&&) = default;
95 map(initializer_list<value_type> __l,
96 const _Compare& __c = _Compare(),
97 const allocator_type& __a = allocator_type())
98 : _Base(__l, __c, __a) { }
100 explicit
101 map(const allocator_type& __a)
102 : _Base(__a) { }
104 map(const map& __m, const allocator_type& __a)
105 : _Base(__m, __a) { }
107 map(map&& __m, const allocator_type& __a)
108 : _Safe(std::move(__m._M_safe()), __a),
109 _Base(std::move(__m._M_base()), __a) { }
111 map(initializer_list<value_type> __l, const allocator_type& __a)
112 : _Base(__l, __a) { }
114 template<typename _InputIterator>
115 map(_InputIterator __first, _InputIterator __last,
116 const allocator_type& __a)
117 : _Base(__gnu_debug::__base(__gnu_debug::__check_valid_range(__first,
118 __last)),
119 __gnu_debug::__base(__last), __a)
122 ~map() = default;
123 #endif
125 map(const _Base& __x)
126 : _Base(__x) { }
128 explicit map(const _Compare& __comp,
129 const _Allocator& __a = _Allocator())
130 : _Base(__comp, __a) { }
132 template<typename _InputIterator>
133 map(_InputIterator __first, _InputIterator __last,
134 const _Compare& __comp = _Compare(),
135 const _Allocator& __a = _Allocator())
136 : _Base(__gnu_debug::__base(__gnu_debug::__check_valid_range(__first,
137 __last)),
138 __gnu_debug::__base(__last),
139 __comp, __a) { }
141 #if __cplusplus < 201103L
142 map&
143 operator=(const map& __x)
145 this->_M_safe() = __x;
146 _M_base() = __x;
147 return *this;
149 #else
150 map&
151 operator=(const map&) = default;
153 map&
154 operator=(map&&) = default;
156 map&
157 operator=(initializer_list<value_type> __l)
159 _M_base() = __l;
160 this->_M_invalidate_all();
161 return *this;
163 #endif
165 // _GLIBCXX_RESOLVE_LIB_DEFECTS
166 // 133. map missing get_allocator()
167 using _Base::get_allocator;
169 // iterators:
170 iterator
171 begin() _GLIBCXX_NOEXCEPT
172 { return iterator(_Base::begin(), this); }
174 const_iterator
175 begin() const _GLIBCXX_NOEXCEPT
176 { return const_iterator(_Base::begin(), this); }
178 iterator
179 end() _GLIBCXX_NOEXCEPT
180 { return iterator(_Base::end(), this); }
182 const_iterator
183 end() const _GLIBCXX_NOEXCEPT
184 { return const_iterator(_Base::end(), this); }
186 reverse_iterator
187 rbegin() _GLIBCXX_NOEXCEPT
188 { return reverse_iterator(end()); }
190 const_reverse_iterator
191 rbegin() const _GLIBCXX_NOEXCEPT
192 { return const_reverse_iterator(end()); }
194 reverse_iterator
195 rend() _GLIBCXX_NOEXCEPT
196 { return reverse_iterator(begin()); }
198 const_reverse_iterator
199 rend() const _GLIBCXX_NOEXCEPT
200 { return const_reverse_iterator(begin()); }
202 #if __cplusplus >= 201103L
203 const_iterator
204 cbegin() const noexcept
205 { return const_iterator(_Base::begin(), this); }
207 const_iterator
208 cend() const noexcept
209 { return const_iterator(_Base::end(), this); }
211 const_reverse_iterator
212 crbegin() const noexcept
213 { return const_reverse_iterator(end()); }
215 const_reverse_iterator
216 crend() const noexcept
217 { return const_reverse_iterator(begin()); }
218 #endif
220 // capacity:
221 using _Base::empty;
222 using _Base::size;
223 using _Base::max_size;
225 // 23.3.1.2 element access:
226 using _Base::operator[];
228 // _GLIBCXX_RESOLVE_LIB_DEFECTS
229 // DR 464. Suggestion for new member functions in standard containers.
230 using _Base::at;
232 // modifiers:
233 #if __cplusplus >= 201103L
234 template<typename... _Args>
235 std::pair<iterator, bool>
236 emplace(_Args&&... __args)
238 auto __res = _Base::emplace(std::forward<_Args>(__args)...);
239 return std::pair<iterator, bool>(iterator(__res.first, this),
240 __res.second);
243 template<typename... _Args>
244 iterator
245 emplace_hint(const_iterator __pos, _Args&&... __args)
247 __glibcxx_check_insert(__pos);
248 return iterator(_Base::emplace_hint(__pos.base(),
249 std::forward<_Args>(__args)...),
250 this);
252 #endif
254 std::pair<iterator, bool>
255 insert(const value_type& __x)
257 std::pair<_Base_iterator, bool> __res = _Base::insert(__x);
258 return std::pair<iterator, bool>(iterator(__res.first, this),
259 __res.second);
262 #if __cplusplus >= 201103L
263 template<typename _Pair, typename = typename
264 std::enable_if<std::is_constructible<value_type,
265 _Pair&&>::value>::type>
266 std::pair<iterator, bool>
267 insert(_Pair&& __x)
269 std::pair<_Base_iterator, bool> __res
270 = _Base::insert(std::forward<_Pair>(__x));
271 return std::pair<iterator, bool>(iterator(__res.first, this),
272 __res.second);
274 #endif
276 #if __cplusplus >= 201103L
277 void
278 insert(std::initializer_list<value_type> __list)
279 { _Base::insert(__list); }
280 #endif
282 iterator
283 #if __cplusplus >= 201103L
284 insert(const_iterator __position, const value_type& __x)
285 #else
286 insert(iterator __position, const value_type& __x)
287 #endif
289 __glibcxx_check_insert(__position);
290 return iterator(_Base::insert(__position.base(), __x), this);
293 #if __cplusplus >= 201103L
294 template<typename _Pair, typename = typename
295 std::enable_if<std::is_constructible<value_type,
296 _Pair&&>::value>::type>
297 iterator
298 insert(const_iterator __position, _Pair&& __x)
300 __glibcxx_check_insert(__position);
301 return iterator(_Base::insert(__position.base(),
302 std::forward<_Pair>(__x)), this);
304 #endif
306 template<typename _InputIterator>
307 void
308 insert(_InputIterator __first, _InputIterator __last)
310 typename __gnu_debug::_Distance_traits<_InputIterator>::__type __dist;
311 __glibcxx_check_valid_range2(__first, __last, __dist);
313 if (__dist.second >= __gnu_debug::__dp_sign)
314 _Base::insert(__gnu_debug::__unsafe(__first),
315 __gnu_debug::__unsafe(__last));
316 else
317 _Base::insert(__first, __last);
320 #if __cplusplus >= 201103L
321 iterator
322 erase(const_iterator __position)
324 __glibcxx_check_erase(__position);
325 this->_M_invalidate_if(_Equal(__position.base()));
326 return iterator(_Base::erase(__position.base()), this);
329 iterator
330 erase(iterator __position)
331 { return erase(const_iterator(__position)); }
332 #else
333 void
334 erase(iterator __position)
336 __glibcxx_check_erase(__position);
337 this->_M_invalidate_if(_Equal(__position.base()));
338 _Base::erase(__position.base());
340 #endif
342 size_type
343 erase(const key_type& __x)
345 _Base_iterator __victim = _Base::find(__x);
346 if (__victim == _Base::end())
347 return 0;
348 else
350 this->_M_invalidate_if(_Equal(__victim));
351 _Base::erase(__victim);
352 return 1;
356 #if __cplusplus >= 201103L
357 iterator
358 erase(const_iterator __first, const_iterator __last)
360 // _GLIBCXX_RESOLVE_LIB_DEFECTS
361 // 151. can't currently clear() empty container
362 __glibcxx_check_erase_range(__first, __last);
363 for (_Base_const_iterator __victim = __first.base();
364 __victim != __last.base(); ++__victim)
366 _GLIBCXX_DEBUG_VERIFY(__victim != _Base::end(),
367 _M_message(__gnu_debug::__msg_valid_range)
368 ._M_iterator(__first, "first")
369 ._M_iterator(__last, "last"));
370 this->_M_invalidate_if(_Equal(__victim));
372 return iterator(_Base::erase(__first.base(), __last.base()), this);
374 #else
375 void
376 erase(iterator __first, iterator __last)
378 // _GLIBCXX_RESOLVE_LIB_DEFECTS
379 // 151. can't currently clear() empty container
380 __glibcxx_check_erase_range(__first, __last);
381 for (_Base_iterator __victim = __first.base();
382 __victim != __last.base(); ++__victim)
384 _GLIBCXX_DEBUG_VERIFY(__victim != _Base::end(),
385 _M_message(__gnu_debug::__msg_valid_range)
386 ._M_iterator(__first, "first")
387 ._M_iterator(__last, "last"));
388 this->_M_invalidate_if(_Equal(__victim));
390 _Base::erase(__first.base(), __last.base());
392 #endif
394 void
395 swap(map& __x)
396 #if __cplusplus >= 201103L
397 noexcept( noexcept(declval<_Base>().swap(__x)) )
398 #endif
400 _Safe::_M_swap(__x);
401 _Base::swap(__x);
404 void
405 clear() _GLIBCXX_NOEXCEPT
407 this->_M_invalidate_all();
408 _Base::clear();
411 // observers:
412 using _Base::key_comp;
413 using _Base::value_comp;
415 // 23.3.1.3 map operations:
416 iterator
417 find(const key_type& __x)
418 { return iterator(_Base::find(__x), this); }
420 #if __cplusplus > 201103L
421 template<typename _Kt,
422 typename _Req =
423 typename __has_is_transparent<_Compare, _Kt>::type>
424 iterator
425 find(const _Kt& __x)
426 { return { _Base::find(__x), this }; }
427 #endif
429 const_iterator
430 find(const key_type& __x) const
431 { return const_iterator(_Base::find(__x), this); }
433 #if __cplusplus > 201103L
434 template<typename _Kt,
435 typename _Req =
436 typename __has_is_transparent<_Compare, _Kt>::type>
437 const_iterator
438 find(const _Kt& __x) const
439 { return { _Base::find(__x), this }; }
440 #endif
442 using _Base::count;
444 iterator
445 lower_bound(const key_type& __x)
446 { return iterator(_Base::lower_bound(__x), this); }
448 #if __cplusplus > 201103L
449 template<typename _Kt,
450 typename _Req =
451 typename __has_is_transparent<_Compare, _Kt>::type>
452 iterator
453 lower_bound(const _Kt& __x)
454 { return { _Base::lower_bound(__x), this }; }
455 #endif
457 const_iterator
458 lower_bound(const key_type& __x) const
459 { return const_iterator(_Base::lower_bound(__x), this); }
461 #if __cplusplus > 201103L
462 template<typename _Kt,
463 typename _Req =
464 typename __has_is_transparent<_Compare, _Kt>::type>
465 const_iterator
466 lower_bound(const _Kt& __x) const
467 { return { _Base::lower_bound(__x), this }; }
468 #endif
470 iterator
471 upper_bound(const key_type& __x)
472 { return iterator(_Base::upper_bound(__x), this); }
474 #if __cplusplus > 201103L
475 template<typename _Kt,
476 typename _Req =
477 typename __has_is_transparent<_Compare, _Kt>::type>
478 iterator
479 upper_bound(const _Kt& __x)
480 { return { _Base::upper_bound(__x), this }; }
481 #endif
483 const_iterator
484 upper_bound(const key_type& __x) const
485 { return const_iterator(_Base::upper_bound(__x), this); }
487 #if __cplusplus > 201103L
488 template<typename _Kt,
489 typename _Req =
490 typename __has_is_transparent<_Compare, _Kt>::type>
491 const_iterator
492 upper_bound(const _Kt& __x) const
493 { return { _Base::upper_bound(__x), this }; }
494 #endif
496 std::pair<iterator,iterator>
497 equal_range(const key_type& __x)
499 std::pair<_Base_iterator, _Base_iterator> __res =
500 _Base::equal_range(__x);
501 return std::make_pair(iterator(__res.first, this),
502 iterator(__res.second, this));
505 #if __cplusplus > 201103L
506 template<typename _Kt,
507 typename _Req =
508 typename __has_is_transparent<_Compare, _Kt>::type>
509 std::pair<iterator, iterator>
510 equal_range(const _Kt& __x)
512 auto __res = _Base::equal_range(__x);
513 return { { __res.first, this }, { __res.second, this } };
515 #endif
517 std::pair<const_iterator,const_iterator>
518 equal_range(const key_type& __x) const
520 std::pair<_Base_const_iterator, _Base_const_iterator> __res =
521 _Base::equal_range(__x);
522 return std::make_pair(const_iterator(__res.first, this),
523 const_iterator(__res.second, this));
526 #if __cplusplus > 201103L
527 template<typename _Kt,
528 typename _Req =
529 typename __has_is_transparent<_Compare, _Kt>::type>
530 std::pair<const_iterator, const_iterator>
531 equal_range(const _Kt& __x) const
533 auto __res = _Base::equal_range(__x);
534 return { { __res.first, this }, { __res.second, this } };
536 #endif
538 _Base&
539 _M_base() _GLIBCXX_NOEXCEPT { return *this; }
541 const _Base&
542 _M_base() const _GLIBCXX_NOEXCEPT { return *this; }
545 template<typename _Key, typename _Tp,
546 typename _Compare, typename _Allocator>
547 inline bool
548 operator==(const map<_Key, _Tp, _Compare, _Allocator>& __lhs,
549 const map<_Key, _Tp, _Compare, _Allocator>& __rhs)
550 { return __lhs._M_base() == __rhs._M_base(); }
552 template<typename _Key, typename _Tp,
553 typename _Compare, typename _Allocator>
554 inline bool
555 operator!=(const map<_Key, _Tp, _Compare, _Allocator>& __lhs,
556 const map<_Key, _Tp, _Compare, _Allocator>& __rhs)
557 { return __lhs._M_base() != __rhs._M_base(); }
559 template<typename _Key, typename _Tp,
560 typename _Compare, typename _Allocator>
561 inline bool
562 operator<(const map<_Key, _Tp, _Compare, _Allocator>& __lhs,
563 const map<_Key, _Tp, _Compare, _Allocator>& __rhs)
564 { return __lhs._M_base() < __rhs._M_base(); }
566 template<typename _Key, typename _Tp,
567 typename _Compare, typename _Allocator>
568 inline bool
569 operator<=(const map<_Key, _Tp, _Compare, _Allocator>& __lhs,
570 const map<_Key, _Tp, _Compare, _Allocator>& __rhs)
571 { return __lhs._M_base() <= __rhs._M_base(); }
573 template<typename _Key, typename _Tp,
574 typename _Compare, typename _Allocator>
575 inline bool
576 operator>=(const map<_Key, _Tp, _Compare, _Allocator>& __lhs,
577 const map<_Key, _Tp, _Compare, _Allocator>& __rhs)
578 { return __lhs._M_base() >= __rhs._M_base(); }
580 template<typename _Key, typename _Tp,
581 typename _Compare, typename _Allocator>
582 inline bool
583 operator>(const map<_Key, _Tp, _Compare, _Allocator>& __lhs,
584 const map<_Key, _Tp, _Compare, _Allocator>& __rhs)
585 { return __lhs._M_base() > __rhs._M_base(); }
587 template<typename _Key, typename _Tp,
588 typename _Compare, typename _Allocator>
589 inline void
590 swap(map<_Key, _Tp, _Compare, _Allocator>& __lhs,
591 map<_Key, _Tp, _Compare, _Allocator>& __rhs)
592 { __lhs.swap(__rhs); }
594 } // namespace __debug
595 } // namespace std
597 #endif