]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/include/profile/multimap.h
stl_tree.h (_Rb_tree<>::_M_erase_aux): Add.
[thirdparty/gcc.git] / libstdc++-v3 / include / profile / multimap.h
1 // Profiling multimap implementation -*- C++ -*-
2
3 // Copyright (C) 2009, 2010 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.
10
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.
15
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.
19
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/>.
24
25 /** @file profile/multimap.h
26 * This file is a GNU profile extension to the Standard C++ Library.
27 */
28
29 #ifndef _GLIBCXX_PROFILE_MULTIMAP_H
30 #define _GLIBCXX_PROFILE_MULTIMAP_H 1
31
32 #include <utility>
33
34 namespace std
35 {
36 namespace __profile
37 {
38 /// Class std::multimap wrapper with performance instrumentation.
39 template<typename _Key, typename _Tp, typename _Compare = std::less<_Key>,
40 typename _Allocator = std::allocator<std::pair<const _Key, _Tp> > >
41 class multimap
42 : public _GLIBCXX_STD_D::multimap<_Key, _Tp, _Compare, _Allocator>
43 {
44 typedef _GLIBCXX_STD_D::multimap<_Key, _Tp, _Compare, _Allocator> _Base;
45
46 public:
47 // types:
48 typedef _Key key_type;
49 typedef _Tp mapped_type;
50 typedef std::pair<const _Key, _Tp> value_type;
51 typedef _Compare key_compare;
52 typedef _Allocator allocator_type;
53 typedef typename _Base::reference reference;
54 typedef typename _Base::const_reference const_reference;
55
56 typedef typename _Base::iterator iterator;
57 typedef typename _Base::const_iterator const_iterator;
58 typedef typename _Base::reverse_iterator reverse_iterator;
59 typedef typename _Base::const_reverse_iterator const_reverse_iterator;
60
61 typedef typename _Base::size_type size_type;
62 typedef typename _Base::difference_type difference_type;
63 typedef typename _Base::pointer pointer;
64 typedef typename _Base::const_pointer const_pointer;
65
66 using _Base::value_compare;
67
68 // 23.3.1.1 construct/copy/destroy:
69 explicit multimap(const _Compare& __comp = _Compare(),
70 const _Allocator& __a = _Allocator())
71 : _Base(__comp, __a) { }
72
73 template<typename _InputIterator>
74 multimap(_InputIterator __first, _InputIterator __last,
75 const _Compare& __comp = _Compare(),
76 const _Allocator& __a = _Allocator())
77 : _Base(__first, __last, __comp, __a) { }
78
79 multimap(const multimap& __x)
80 : _Base(__x) { }
81
82 multimap(const _Base& __x)
83 : _Base(__x) { }
84
85 #ifdef __GXX_EXPERIMENTAL_CXX0X__
86 multimap(multimap&& __x)
87 : _Base(std::move(__x))
88 { }
89
90 multimap(initializer_list<value_type> __l,
91 const _Compare& __c = _Compare(),
92 const allocator_type& __a = allocator_type())
93 : _Base(__l, __c, __a) { }
94 #endif
95
96 ~multimap() { }
97
98 multimap&
99 operator=(const multimap& __x)
100 {
101 *static_cast<_Base*>(this) = __x;
102 return *this;
103 }
104
105 #ifdef __GXX_EXPERIMENTAL_CXX0X__
106 multimap&
107 operator=(multimap&& __x)
108 {
109 // NB: DR 1204.
110 // NB: DR 675.
111 this->clear();
112 this->swap(__x);
113 return *this;
114 }
115
116 multimap&
117 operator=(initializer_list<value_type> __l)
118 {
119 this->clear();
120 this->insert(__l);
121 return *this;
122 }
123 #endif
124
125 using _Base::get_allocator;
126
127 // iterators:
128 iterator
129 begin()
130 { return iterator(_Base::begin()); }
131
132 const_iterator
133 begin() const
134 { return const_iterator(_Base::begin()); }
135
136 iterator
137 end()
138 { return iterator(_Base::end()); }
139
140 const_iterator
141 end() const
142 { return const_iterator(_Base::end()); }
143
144 reverse_iterator
145 rbegin()
146 { return reverse_iterator(end()); }
147
148 const_reverse_iterator
149 rbegin() const
150 { return const_reverse_iterator(end()); }
151
152 reverse_iterator
153 rend()
154 { return reverse_iterator(begin()); }
155
156 const_reverse_iterator
157 rend() const
158 { return const_reverse_iterator(begin()); }
159
160 #ifdef __GXX_EXPERIMENTAL_CXX0X__
161 const_iterator
162 cbegin() const
163 { return const_iterator(_Base::begin()); }
164
165 const_iterator
166 cend() const
167 { return const_iterator(_Base::end()); }
168
169 const_reverse_iterator
170 crbegin() const
171 { return const_reverse_iterator(end()); }
172
173 const_reverse_iterator
174 crend() const
175 { return const_reverse_iterator(begin()); }
176 #endif
177
178 // capacity:
179 using _Base::empty;
180 using _Base::size;
181 using _Base::max_size;
182
183 // modifiers:
184 iterator
185 insert(const value_type& __x)
186 { return iterator(_Base::insert(__x)); }
187
188 #ifdef __GXX_EXPERIMENTAL_CXX0X__
189 void
190 insert(std::initializer_list<value_type> __list)
191 { _Base::insert(__list); }
192 #endif
193
194 iterator
195 #ifdef __GXX_EXPERIMENTAL_CXX0X__
196 insert(const_iterator __position, const value_type& __x)
197 #else
198 insert(iterator __position, const value_type& __x)
199 #endif
200 { return iterator(_Base::insert(__position, __x)); }
201
202 template<typename _InputIterator>
203 void
204 insert(_InputIterator __first, _InputIterator __last)
205 { _Base::insert(__first, __last); }
206
207 #ifdef __GXX_EXPERIMENTAL_CXX0X__
208 iterator
209 erase(const_iterator __position)
210 { return iterator(_Base::erase(__position)); }
211 #else
212 void
213 erase(iterator __position)
214 { _Base::erase(__position); }
215 #endif
216
217 size_type
218 erase(const key_type& __x)
219 {
220 std::pair<iterator, iterator> __victims = this->equal_range(__x);
221 size_type __count = 0;
222 while (__victims.first != __victims.second)
223 {
224 iterator __victim = __victims.first++;
225 _Base::erase(__victim);
226 ++__count;
227 }
228 return __count;
229 }
230
231 #ifdef __GXX_EXPERIMENTAL_CXX0X__
232 iterator
233 erase(const_iterator __first, const_iterator __last)
234 { return iterator(_Base::erase(__first, __last)); }
235 #else
236 void
237 erase(iterator __first, iterator __last)
238 { _Base::erase(__first, __last); }
239 #endif
240
241 void
242 swap(multimap& __x)
243 { _Base::swap(__x); }
244
245 void
246 clear()
247 { this->erase(begin(), end()); }
248
249 // observers:
250 using _Base::key_comp;
251 using _Base::value_comp;
252
253 // 23.3.1.3 multimap operations:
254 iterator
255 find(const key_type& __x)
256 { return iterator(_Base::find(__x)); }
257
258 const_iterator
259 find(const key_type& __x) const
260 { return const_iterator(_Base::find(__x)); }
261
262 using _Base::count;
263
264 iterator
265 lower_bound(const key_type& __x)
266 { return iterator(_Base::lower_bound(__x)); }
267
268 const_iterator
269 lower_bound(const key_type& __x) const
270 { return const_iterator(_Base::lower_bound(__x)); }
271
272 iterator
273 upper_bound(const key_type& __x)
274 { return iterator(_Base::upper_bound(__x)); }
275
276 const_iterator
277 upper_bound(const key_type& __x) const
278 { return const_iterator(_Base::upper_bound(__x)); }
279
280 std::pair<iterator,iterator>
281 equal_range(const key_type& __x)
282 {
283 typedef typename _Base::iterator _Base_iterator;
284 std::pair<_Base_iterator, _Base_iterator> __res =
285 _Base::equal_range(__x);
286 return std::make_pair(iterator(__res.first),
287 iterator(__res.second));
288 }
289
290 std::pair<const_iterator,const_iterator>
291 equal_range(const key_type& __x) const
292 {
293 typedef typename _Base::const_iterator _Base_const_iterator;
294 std::pair<_Base_const_iterator, _Base_const_iterator> __res =
295 _Base::equal_range(__x);
296 return std::make_pair(const_iterator(__res.first),
297 const_iterator(__res.second));
298 }
299
300 _Base&
301 _M_base() { return *this; }
302
303 const _Base&
304 _M_base() const { return *this; }
305 };
306
307 template<typename _Key, typename _Tp,
308 typename _Compare, typename _Allocator>
309 inline bool
310 operator==(const multimap<_Key, _Tp, _Compare, _Allocator>& __lhs,
311 const multimap<_Key, _Tp, _Compare, _Allocator>& __rhs)
312 { return __lhs._M_base() == __rhs._M_base(); }
313
314 template<typename _Key, typename _Tp,
315 typename _Compare, typename _Allocator>
316 inline bool
317 operator!=(const multimap<_Key, _Tp, _Compare, _Allocator>& __lhs,
318 const multimap<_Key, _Tp, _Compare, _Allocator>& __rhs)
319 { return __lhs._M_base() != __rhs._M_base(); }
320
321 template<typename _Key, typename _Tp,
322 typename _Compare, typename _Allocator>
323 inline bool
324 operator<(const multimap<_Key, _Tp, _Compare, _Allocator>& __lhs,
325 const multimap<_Key, _Tp, _Compare, _Allocator>& __rhs)
326 { return __lhs._M_base() < __rhs._M_base(); }
327
328 template<typename _Key, typename _Tp,
329 typename _Compare, typename _Allocator>
330 inline bool
331 operator<=(const multimap<_Key, _Tp, _Compare, _Allocator>& __lhs,
332 const multimap<_Key, _Tp, _Compare, _Allocator>& __rhs)
333 { return __lhs._M_base() <= __rhs._M_base(); }
334
335 template<typename _Key, typename _Tp,
336 typename _Compare, typename _Allocator>
337 inline bool
338 operator>=(const multimap<_Key, _Tp, _Compare, _Allocator>& __lhs,
339 const multimap<_Key, _Tp, _Compare, _Allocator>& __rhs)
340 { return __lhs._M_base() >= __rhs._M_base(); }
341
342 template<typename _Key, typename _Tp,
343 typename _Compare, typename _Allocator>
344 inline bool
345 operator>(const multimap<_Key, _Tp, _Compare, _Allocator>& __lhs,
346 const multimap<_Key, _Tp, _Compare, _Allocator>& __rhs)
347 { return __lhs._M_base() > __rhs._M_base(); }
348
349 template<typename _Key, typename _Tp,
350 typename _Compare, typename _Allocator>
351 inline void
352 swap(multimap<_Key, _Tp, _Compare, _Allocator>& __lhs,
353 multimap<_Key, _Tp, _Compare, _Allocator>& __rhs)
354 { __lhs.swap(__rhs); }
355
356 } // namespace __profile
357 } // namespace std
358
359 #endif