OSDN Git Service

f8517184023873d26e0f5af0bfdc27ba77614744
[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
290   /// Class std::unordered_multiset with safety/checking/debug instrumentation.
291   template<typename _Value,
292            typename _Hash = std::hash<_Value>,
293            typename _Pred = std::equal_to<_Value>,
294            typename _Alloc = std::allocator<_Value> >
295     class unordered_multiset
296     : public _GLIBCXX_STD_D::unordered_multiset<_Value, _Hash, _Pred, _Alloc>,
297       public __gnu_debug::_Safe_sequence<unordered_multiset<_Value, _Hash,
298                                                             _Pred, _Alloc> >
299     {
300       typedef _GLIBCXX_STD_D::unordered_multiset<_Value, _Hash,
301                                                  _Pred, _Alloc> _Base;
302       typedef __gnu_debug::_Safe_sequence<unordered_multiset> _Safe_base;
303
304     public:
305       typedef typename _Base::size_type       size_type;
306       typedef typename _Base::hasher          hasher;
307       typedef typename _Base::key_equal       key_equal;
308       typedef typename _Base::allocator_type  allocator_type;
309
310       typedef typename _Base::key_type        key_type;
311       typedef typename _Base::value_type      value_type;
312
313       typedef __gnu_debug::_Safe_iterator<typename _Base::iterator,
314                                           unordered_multiset> iterator;
315       typedef __gnu_debug::_Safe_iterator<typename _Base::const_iterator,
316                                           unordered_multiset> const_iterator;
317
318       explicit
319       unordered_multiset(size_type __n = 10,
320                          const hasher& __hf = hasher(),
321                          const key_equal& __eql = key_equal(),
322                          const allocator_type& __a = allocator_type())
323       : _Base(__n, __hf, __eql, __a) { }
324
325       template<typename _InputIterator>
326         unordered_multiset(_InputIterator __f, _InputIterator __l, 
327                            size_type __n = 10,
328                            const hasher& __hf = hasher(), 
329                            const key_equal& __eql = key_equal(), 
330                            const allocator_type& __a = allocator_type())
331         : _Base(__gnu_debug::__check_valid_range(__f, __l), __l, __n,
332                 __hf, __eql, __a), _Safe_base() { }
333
334       unordered_multiset(const unordered_multiset& __x) 
335       : _Base(__x), _Safe_base() { }
336
337       unordered_multiset(const _Base& __x) 
338       : _Base(__x), _Safe_base() { }
339
340       unordered_multiset(unordered_multiset&& __x) 
341       : _Base(std::forward<unordered_multiset>(__x)), _Safe_base() { }
342
343       unordered_multiset(initializer_list<value_type> __l,
344                          size_type __n = 10,
345                          const hasher& __hf = hasher(),
346                          const key_equal& __eql = key_equal(),
347                          const allocator_type& __a = allocator_type())
348       : _Base(__l, __n, __hf, __eql, __a), _Safe_base() { }
349
350       unordered_multiset&
351       operator=(const unordered_multiset& __x)
352       {
353         *static_cast<_Base*>(this) = __x;
354         this->_M_invalidate_all();
355         return *this;
356       }
357
358       unordered_multiset&
359       operator=(unordered_multiset&& __x)
360       {
361         // NB: DR 1204.
362         // NB: DR 675.
363         clear();
364         swap(__x);
365         return *this;
366       }
367
368       unordered_multiset&
369       operator=(initializer_list<value_type> __l)
370       {
371         this->clear();
372         this->insert(__l);
373         return *this;
374       }
375
376       void
377       swap(unordered_multiset& __x)
378       {
379         _Base::swap(__x);
380         _Safe_base::_M_swap(__x);
381       }
382
383       void
384       clear()
385       {
386         _Base::clear();
387         this->_M_invalidate_all();
388       }
389
390       iterator
391       begin()
392       { return iterator(_Base::begin(), this); }
393
394       const_iterator
395       begin() const
396       { return const_iterator(_Base::begin(), this); }
397
398       iterator
399       end()
400       { return iterator(_Base::end(), this); }
401
402       const_iterator
403       end() const
404       { return const_iterator(_Base::end(), this); }
405
406       const_iterator
407       cbegin() const
408       { return const_iterator(_Base::begin(), this); }
409
410       const_iterator
411       cend() const
412       { return const_iterator(_Base::end(), this); }
413
414       // local versions
415       using _Base::begin;
416       using _Base::end;
417       using _Base::cbegin;
418       using _Base::cend;
419
420       iterator
421       insert(const value_type& __obj)
422       { return iterator(_Base::insert(__obj), this); }
423
424       iterator
425       insert(const_iterator, const value_type& __obj)
426       { return iterator(_Base::insert(__obj), this); }
427
428       void
429       insert(std::initializer_list<value_type> __l)
430       { _Base::insert(__l); }
431
432       template<typename _InputIterator>
433         void
434         insert(_InputIterator __first, _InputIterator __last)
435         {
436           __glibcxx_check_valid_range(__first, __last);
437           _Base::insert(__first, __last);
438         }
439
440       iterator
441       find(const key_type& __key)
442       { return iterator(_Base::find(__key), this); }
443
444       const_iterator
445       find(const key_type& __key) const
446       { return const_iterator(_Base::find(__key), this); }
447
448       std::pair<iterator, iterator>
449       equal_range(const key_type& __key)
450       {
451         typedef typename _Base::iterator _Base_iterator;
452         typedef std::pair<_Base_iterator, _Base_iterator> __pair_type;
453         __pair_type __res = _Base::equal_range(__key);
454         return std::make_pair(iterator(__res.first, this),
455                               iterator(__res.second, this));
456       }
457
458       std::pair<const_iterator, const_iterator>
459       equal_range(const key_type& __key) const
460       {
461         typedef typename _Base::const_iterator _Base_iterator;
462         typedef std::pair<_Base_iterator, _Base_iterator> __pair_type;
463         __pair_type __res = _Base::equal_range(__key);
464         return std::make_pair(const_iterator(__res.first, this),
465                               const_iterator(__res.second, this));
466       }
467
468       size_type
469       erase(const key_type& __key)
470       {
471         size_type __ret(0);
472         iterator __victim(_Base::find(__key), this);
473         if (__victim != end())
474           {
475             this->erase(__victim);
476             __ret = 1;
477           }
478         return __ret;
479       }
480
481       iterator
482       erase(const_iterator __it)
483       {
484         __glibcxx_check_erase(__it);
485         __it._M_invalidate();
486         return iterator(_Base::erase(__it.base()), this);
487       }
488
489       iterator
490       erase(const_iterator __first, const_iterator __last)
491       {
492         __glibcxx_check_erase_range(__first, __last);
493         for (const_iterator __tmp = __first; __tmp != __last;)
494         {
495           const_iterator __victim = __tmp++;
496           __victim._M_invalidate();
497         }
498         return iterator(_Base::erase(__first.base(),
499                                      __last.base()), this);
500       }
501
502       _Base&
503       _M_base() { return *this; }
504
505       const _Base&
506       _M_base() const { return *this; }
507
508     private:
509       void
510       _M_invalidate_all()
511       {
512         typedef typename _Base::const_iterator _Base_const_iterator;
513         typedef __gnu_debug::_Not_equal_to<_Base_const_iterator> _Not_equal;
514         this->_M_invalidate_if(_Not_equal(_M_base().end()));
515       }
516     };
517
518   template<typename _Value, typename _Hash, typename _Pred, typename _Alloc>
519     inline void
520     swap(unordered_multiset<_Value, _Hash, _Pred, _Alloc>& __x,
521          unordered_multiset<_Value, _Hash, _Pred, _Alloc>& __y)
522     { __x.swap(__y); }
523
524 } // namespace __debug
525 } // namespace std
526
527 #endif