OSDN Git Service

2010-03-25 Paolo Carlini <paolo.carlini@oracle.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / include / debug / unordered_set
1 // Debugging unordered_set/unordered_multiset implementation -*- C++ -*-
2
3 // Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4 // Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library.  This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 3, or (at your option)
10 // any later version.
11
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16
17 // Under Section 7 of GPL version 3, you are granted additional
18 // permissions described in the GCC Runtime Library Exception, version
19 // 3.1, as published by the Free Software Foundation.
20
21 // You should have received a copy of the GNU General Public License and
22 // a copy of the GCC Runtime Library Exception along with this program;
23 // see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
24 // <http://www.gnu.org/licenses/>.
25
26 /** @file debug/unordered_set
27  *  This file is a GNU debug extension to the Standard C++ Library.
28  */
29
30 #ifndef _GLIBCXX_DEBUG_UNORDERED_SET
31 #define _GLIBCXX_DEBUG_UNORDERED_SET 1
32
33 #ifdef __GXX_EXPERIMENTAL_CXX0X__
34 # include <unordered_set>
35 #else
36 # include <bits/c++0x_warning.h>
37 #endif
38
39 #include <debug/safe_sequence.h>
40 #include <debug/safe_iterator.h>
41 #include <initializer_list>
42
43 namespace std
44 {
45 namespace __debug
46 {
47   /// Class std::unordered_set with safety/checking/debug instrumentation.
48   template<typename _Value,
49            typename _Hash = std::hash<_Value>,
50            typename _Pred = std::equal_to<_Value>,
51            typename _Alloc = std::allocator<_Value> >
52     class unordered_set
53     : public _GLIBCXX_STD_D::unordered_set<_Value, _Hash, _Pred, _Alloc>,
54       public __gnu_debug::_Safe_sequence<unordered_set<_Value, _Hash,
55                                                        _Pred, _Alloc> >
56     {
57       typedef _GLIBCXX_STD_D::unordered_set<_Value, _Hash,
58                                             _Pred, _Alloc> _Base;
59       typedef __gnu_debug::_Safe_sequence<unordered_set> _Safe_base;
60
61     public:
62       typedef typename _Base::size_type       size_type;
63       typedef typename _Base::hasher          hasher;
64       typedef typename _Base::key_equal       key_equal;
65       typedef typename _Base::allocator_type  allocator_type;
66
67       typedef typename _Base::key_type        key_type;
68       typedef typename _Base::value_type      value_type;
69
70       typedef __gnu_debug::_Safe_iterator<typename _Base::iterator,
71                                           unordered_set> iterator;
72       typedef __gnu_debug::_Safe_iterator<typename _Base::const_iterator,
73                                           unordered_set> const_iterator;
74
75       explicit
76       unordered_set(size_type __n = 10,
77                     const hasher& __hf = hasher(),
78                     const key_equal& __eql = key_equal(),
79                     const allocator_type& __a = allocator_type())
80       : _Base(__n, __hf, __eql, __a) { }
81
82       template<typename _InputIterator>
83         unordered_set(_InputIterator __f, _InputIterator __l, 
84                       size_type __n = 10,
85                       const hasher& __hf = hasher(), 
86                       const key_equal& __eql = key_equal(), 
87                       const allocator_type& __a = allocator_type())
88         : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n,
89                 __hf, __eql, __a), _Safe_base() { }
90
91       unordered_set(const unordered_set& __x) 
92       : _Base(__x), _Safe_base() { }
93
94       unordered_set(const _Base& __x) 
95       : _Base(__x), _Safe_base() { }
96
97       unordered_set(unordered_set&& __x) 
98       : _Base(std::forward<unordered_set>(__x)), _Safe_base() { }
99
100       unordered_set(initializer_list<value_type> __l,
101                     size_type __n = 10,
102                     const hasher& __hf = hasher(),
103                     const key_equal& __eql = key_equal(),
104                     const allocator_type& __a = allocator_type())
105       : _Base(__l, __n, __hf, __eql, __a), _Safe_base() { }
106
107       unordered_set&
108       operator=(const unordered_set& __x)
109       {
110         *static_cast<_Base*>(this) = __x;
111         this->_M_invalidate_all();
112         return *this;
113       }
114
115       unordered_set&
116       operator=(unordered_set&& __x)
117       {
118         // NB: DR 1204.
119         // NB: DR 675.
120         clear();
121         swap(__x);
122         return *this;
123       }
124
125       unordered_set&
126       operator=(initializer_list<value_type> __l)
127       {
128         this->clear();
129         this->insert(__l);
130         return *this;
131       }
132
133       void
134       swap(unordered_set& __x)
135       {
136         _Base::swap(__x);
137         _Safe_base::_M_swap(__x);
138       }
139
140       void
141       clear()
142       {
143         _Base::clear();
144         this->_M_invalidate_all();
145       }
146
147       iterator 
148       begin()
149       { return iterator(_Base::begin(), this); }
150
151       const_iterator
152       begin() const
153       { return const_iterator(_Base::begin(), this); }
154
155       iterator
156       end()
157       { return iterator(_Base::end(), this); }
158
159       const_iterator
160       end() const
161       { return const_iterator(_Base::end(), this); }
162
163       const_iterator
164       cbegin() const
165       { return const_iterator(_Base::begin(), this); }
166
167       const_iterator
168       cend() const
169       { return const_iterator(_Base::end(), this); }
170
171       // local versions
172       using _Base::begin;
173       using _Base::end;
174       using _Base::cbegin;
175       using _Base::cend;
176
177       std::pair<iterator, bool>
178       insert(const value_type& __obj)
179       {
180         typedef std::pair<typename _Base::iterator, bool> __pair_type;
181         __pair_type __res = _Base::insert(__obj);
182         return std::make_pair(iterator(__res.first, this), __res.second);
183       }
184
185       iterator
186       insert(const_iterator, const value_type& __obj)
187       {
188         typedef std::pair<typename _Base::iterator, bool> __pair_type;
189         __pair_type __res = _Base::insert(__obj);
190         return iterator(__res.first, this);
191       }
192
193       void
194       insert(std::initializer_list<value_type> __l)
195       { _Base::insert(__l); }
196
197       template<typename _InputIterator>
198         void
199         insert(_InputIterator __first, _InputIterator __last)
200         {
201           __glibcxx_check_valid_range(__first, __last);
202           _Base::insert(__first, __last);
203         }
204
205       iterator
206       find(const key_type& __key)
207       { return iterator(_Base::find(__key), this); }
208
209       const_iterator
210       find(const key_type& __key) const
211       { return const_iterator(_Base::find(__key), this); }
212
213       std::pair<iterator, iterator>
214       equal_range(const key_type& __key)
215       {
216         typedef typename _Base::iterator _Base_iterator;
217         typedef std::pair<_Base_iterator, _Base_iterator> __pair_type;
218         __pair_type __res = _Base::equal_range(__key);
219         return std::make_pair(iterator(__res.first, this),
220                               iterator(__res.second, this));
221       }
222
223       std::pair<const_iterator, const_iterator>
224       equal_range(const key_type& __key) const
225       {
226         typedef typename _Base::const_iterator _Base_iterator;
227         typedef std::pair<_Base_iterator, _Base_iterator> __pair_type;
228         __pair_type __res = _Base::equal_range(__key);
229         return std::make_pair(const_iterator(__res.first, this),
230                               const_iterator(__res.second, this));
231       }
232
233       size_type
234       erase(const key_type& __key)
235       {
236         size_type __ret(0);
237         iterator __victim(_Base::find(__key), this);
238         if (__victim != end())
239           {
240             this->erase(__victim);
241             __ret = 1;
242           }
243         return __ret;
244       }
245
246       iterator
247       erase(const_iterator __it)
248       {
249         __glibcxx_check_erase(__it);
250         __it._M_invalidate();
251         return iterator(_Base::erase(__it.base()), this);
252       }
253
254       iterator
255       erase(const_iterator __first, const_iterator __last)
256       {
257         __glibcxx_check_erase_range(__first, __last);
258         for (const_iterator __tmp = __first; __tmp != __last;)
259         {
260           const_iterator __victim = __tmp++;
261           __victim._M_invalidate();
262         }
263         return iterator(_Base::erase(__first.base(),
264                                      __last.base()), this);
265       }
266
267       _Base&
268       _M_base() { return *this; }
269
270       const _Base&
271       _M_base() const { return *this; }
272
273     private:
274       void
275       _M_invalidate_all()
276       {
277         typedef typename _Base::const_iterator _Base_const_iterator;
278         typedef __gnu_debug::_Not_equal_to<_Base_const_iterator> _Not_equal;
279         this->_M_invalidate_if(_Not_equal(_M_base().end()));
280       }
281     };
282
283   template<typename _Value, typename _Hash, typename _Pred, typename _Alloc>
284     inline void
285     swap(unordered_set<_Value, _Hash, _Pred, _Alloc>& __x,
286          unordered_set<_Value, _Hash, _Pred, _Alloc>& __y)
287     { __x.swap(__y); }
288
289   template<typename _Value, typename _Hash, typename _Pred, typename _Alloc>
290     inline bool
291     operator==(const unordered_set<_Value, _Hash, _Pred, _Alloc>& __x,
292                const unordered_set<_Value, _Hash, _Pred, _Alloc>& __y)
293     { return __x._M_equal(__y); }
294
295   template<typename _Value, typename _Hash, typename _Pred, typename _Alloc>
296     inline bool
297     operator!=(const unordered_set<_Value, _Hash, _Pred, _Alloc>& __x,
298                const unordered_set<_Value, _Hash, _Pred, _Alloc>& __y)
299     { return !(__x == __y); }
300
301
302   /// Class std::unordered_multiset with safety/checking/debug instrumentation.
303   template<typename _Value,
304            typename _Hash = std::hash<_Value>,
305            typename _Pred = std::equal_to<_Value>,
306            typename _Alloc = std::allocator<_Value> >
307     class unordered_multiset
308     : public _GLIBCXX_STD_D::unordered_multiset<_Value, _Hash, _Pred, _Alloc>,
309       public __gnu_debug::_Safe_sequence<unordered_multiset<_Value, _Hash,
310                                                             _Pred, _Alloc> >
311     {
312       typedef _GLIBCXX_STD_D::unordered_multiset<_Value, _Hash,
313                                                  _Pred, _Alloc> _Base;
314       typedef __gnu_debug::_Safe_sequence<unordered_multiset> _Safe_base;
315
316     public:
317       typedef typename _Base::size_type       size_type;
318       typedef typename _Base::hasher          hasher;
319       typedef typename _Base::key_equal       key_equal;
320       typedef typename _Base::allocator_type  allocator_type;
321
322       typedef typename _Base::key_type        key_type;
323       typedef typename _Base::value_type      value_type;
324
325       typedef __gnu_debug::_Safe_iterator<typename _Base::iterator,
326                                           unordered_multiset> iterator;
327       typedef __gnu_debug::_Safe_iterator<typename _Base::const_iterator,
328                                           unordered_multiset> const_iterator;
329
330       explicit
331       unordered_multiset(size_type __n = 10,
332                          const hasher& __hf = hasher(),
333                          const key_equal& __eql = key_equal(),
334                          const allocator_type& __a = allocator_type())
335       : _Base(__n, __hf, __eql, __a) { }
336
337       template<typename _InputIterator>
338         unordered_multiset(_InputIterator __f, _InputIterator __l, 
339                            size_type __n = 10,
340                            const hasher& __hf = hasher(), 
341                            const key_equal& __eql = key_equal(), 
342                            const allocator_type& __a = allocator_type())
343         : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n,
344                 __hf, __eql, __a), _Safe_base() { }
345
346       unordered_multiset(const unordered_multiset& __x) 
347       : _Base(__x), _Safe_base() { }
348
349       unordered_multiset(const _Base& __x) 
350       : _Base(__x), _Safe_base() { }
351
352       unordered_multiset(unordered_multiset&& __x) 
353       : _Base(std::forward<unordered_multiset>(__x)), _Safe_base() { }
354
355       unordered_multiset(initializer_list<value_type> __l,
356                          size_type __n = 10,
357                          const hasher& __hf = hasher(),
358                          const key_equal& __eql = key_equal(),
359                          const allocator_type& __a = allocator_type())
360       : _Base(__l, __n, __hf, __eql, __a), _Safe_base() { }
361
362       unordered_multiset&
363       operator=(const unordered_multiset& __x)
364       {
365         *static_cast<_Base*>(this) = __x;
366         this->_M_invalidate_all();
367         return *this;
368       }
369
370       unordered_multiset&
371       operator=(unordered_multiset&& __x)
372       {
373         // NB: DR 1204.
374         // NB: DR 675.
375         clear();
376         swap(__x);
377         return *this;
378       }
379
380       unordered_multiset&
381       operator=(initializer_list<value_type> __l)
382       {
383         this->clear();
384         this->insert(__l);
385         return *this;
386       }
387
388       void
389       swap(unordered_multiset& __x)
390       {
391         _Base::swap(__x);
392         _Safe_base::_M_swap(__x);
393       }
394
395       void
396       clear()
397       {
398         _Base::clear();
399         this->_M_invalidate_all();
400       }
401
402       iterator
403       begin()
404       { return iterator(_Base::begin(), this); }
405
406       const_iterator
407       begin() const
408       { return const_iterator(_Base::begin(), this); }
409
410       iterator
411       end()
412       { return iterator(_Base::end(), this); }
413
414       const_iterator
415       end() const
416       { return const_iterator(_Base::end(), this); }
417
418       const_iterator
419       cbegin() const
420       { return const_iterator(_Base::begin(), this); }
421
422       const_iterator
423       cend() const
424       { return const_iterator(_Base::end(), this); }
425
426       // local versions
427       using _Base::begin;
428       using _Base::end;
429       using _Base::cbegin;
430       using _Base::cend;
431
432       iterator
433       insert(const value_type& __obj)
434       { return iterator(_Base::insert(__obj), this); }
435
436       iterator
437       insert(const_iterator, const value_type& __obj)
438       { return iterator(_Base::insert(__obj), this); }
439
440       void
441       insert(std::initializer_list<value_type> __l)
442       { _Base::insert(__l); }
443
444       template<typename _InputIterator>
445         void
446         insert(_InputIterator __first, _InputIterator __last)
447         {
448           __glibcxx_check_valid_range(__first, __last);
449           _Base::insert(__first, __last);
450         }
451
452       iterator
453       find(const key_type& __key)
454       { return iterator(_Base::find(__key), this); }
455
456       const_iterator
457       find(const key_type& __key) const
458       { return const_iterator(_Base::find(__key), this); }
459
460       std::pair<iterator, iterator>
461       equal_range(const key_type& __key)
462       {
463         typedef typename _Base::iterator _Base_iterator;
464         typedef std::pair<_Base_iterator, _Base_iterator> __pair_type;
465         __pair_type __res = _Base::equal_range(__key);
466         return std::make_pair(iterator(__res.first, this),
467                               iterator(__res.second, this));
468       }
469
470       std::pair<const_iterator, const_iterator>
471       equal_range(const key_type& __key) const
472       {
473         typedef typename _Base::const_iterator _Base_iterator;
474         typedef std::pair<_Base_iterator, _Base_iterator> __pair_type;
475         __pair_type __res = _Base::equal_range(__key);
476         return std::make_pair(const_iterator(__res.first, this),
477                               const_iterator(__res.second, this));
478       }
479
480       size_type
481       erase(const key_type& __key)
482       {
483         size_type __ret(0);
484         iterator __victim(_Base::find(__key), this);
485         if (__victim != end())
486           {
487             this->erase(__victim);
488             __ret = 1;
489           }
490         return __ret;
491       }
492
493       iterator
494       erase(const_iterator __it)
495       {
496         __glibcxx_check_erase(__it);
497         __it._M_invalidate();
498         return iterator(_Base::erase(__it.base()), this);
499       }
500
501       iterator
502       erase(const_iterator __first, const_iterator __last)
503       {
504         __glibcxx_check_erase_range(__first, __last);
505         for (const_iterator __tmp = __first; __tmp != __last;)
506         {
507           const_iterator __victim = __tmp++;
508           __victim._M_invalidate();
509         }
510         return iterator(_Base::erase(__first.base(),
511                                      __last.base()), this);
512       }
513
514       _Base&
515       _M_base() { return *this; }
516
517       const _Base&
518       _M_base() const { return *this; }
519
520     private:
521       void
522       _M_invalidate_all()
523       {
524         typedef typename _Base::const_iterator _Base_const_iterator;
525         typedef __gnu_debug::_Not_equal_to<_Base_const_iterator> _Not_equal;
526         this->_M_invalidate_if(_Not_equal(_M_base().end()));
527       }
528     };
529
530   template<typename _Value, typename _Hash, typename _Pred, typename _Alloc>
531     inline void
532     swap(unordered_multiset<_Value, _Hash, _Pred, _Alloc>& __x,
533          unordered_multiset<_Value, _Hash, _Pred, _Alloc>& __y)
534     { __x.swap(__y); }
535
536   template<typename _Value, typename _Hash, typename _Pred, typename _Alloc>
537     inline bool
538     operator==(const unordered_multiset<_Value, _Hash, _Pred, _Alloc>& __x,
539                const unordered_multiset<_Value, _Hash, _Pred, _Alloc>& __y)
540     { return __x._M_equal(__y); }
541
542   template<typename _Value, typename _Hash, typename _Pred, typename _Alloc>
543     inline bool
544     operator!=(const unordered_multiset<_Value, _Hash, _Pred, _Alloc>& __x,
545                const unordered_multiset<_Value, _Hash, _Pred, _Alloc>& __y)
546     { return !(__x == __y); }
547
548 } // namespace __debug
549 } // namespace std
550
551 #endif