Rebase.
[official-gcc.git] / libstdc++-v3 / include / debug / formatter.h
blobe8ab724fe221ba7bd125dd4b316a8a60f9e182b5
1 // Debug-mode error formatting implementation -*- C++ -*-
3 // Copyright (C) 2003-2014 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/formatter.h
26 * This file is a GNU debug extension to the Standard C++ Library.
29 #ifndef _GLIBCXX_DEBUG_FORMATTER_H
30 #define _GLIBCXX_DEBUG_FORMATTER_H 1
32 #include <bits/c++config.h>
33 #include <bits/cpp_type_traits.h>
34 #include <typeinfo>
36 namespace __gnu_debug
38 using std::type_info;
40 template<typename _Iterator>
41 bool __check_singular(const _Iterator&);
43 class _Safe_sequence_base;
45 template<typename _Iterator, typename _Sequence>
46 class _Safe_iterator;
48 template<typename _Iterator, typename _Sequence>
49 class _Safe_local_iterator;
51 template<typename _Sequence>
52 class _Safe_sequence;
54 enum _Debug_msg_id
56 // General checks
57 __msg_valid_range,
58 __msg_insert_singular,
59 __msg_insert_different,
60 __msg_erase_bad,
61 __msg_erase_different,
62 __msg_subscript_oob,
63 __msg_empty,
64 __msg_unpartitioned,
65 __msg_unpartitioned_pred,
66 __msg_unsorted,
67 __msg_unsorted_pred,
68 __msg_not_heap,
69 __msg_not_heap_pred,
70 // std::bitset checks
71 __msg_bad_bitset_write,
72 __msg_bad_bitset_read,
73 __msg_bad_bitset_flip,
74 // std::list checks
75 __msg_self_splice,
76 __msg_splice_alloc,
77 __msg_splice_bad,
78 __msg_splice_other,
79 __msg_splice_overlap,
80 // iterator checks
81 __msg_init_singular,
82 __msg_init_copy_singular,
83 __msg_init_const_singular,
84 __msg_copy_singular,
85 __msg_bad_deref,
86 __msg_bad_inc,
87 __msg_bad_dec,
88 __msg_iter_subscript_oob,
89 __msg_advance_oob,
90 __msg_retreat_oob,
91 __msg_iter_compare_bad,
92 __msg_compare_different,
93 __msg_iter_order_bad,
94 __msg_order_different,
95 __msg_distance_bad,
96 __msg_distance_different,
97 // istream_iterator
98 __msg_deref_istream,
99 __msg_inc_istream,
100 // ostream_iterator
101 __msg_output_ostream,
102 // istreambuf_iterator
103 __msg_deref_istreambuf,
104 __msg_inc_istreambuf,
105 // forward_list
106 __msg_insert_after_end,
107 __msg_erase_after_bad,
108 __msg_valid_range2,
109 // unordered container local iterators
110 __msg_local_iter_compare_bad,
111 __msg_non_empty_range,
112 // self move assign
113 __msg_self_move_assign,
114 // unordered container buckets
115 __msg_bucket_index_oob,
116 __msg_valid_load_factor,
117 // others
118 __msg_equal_allocs,
119 __msg_insert_range_from_self
122 class _Error_formatter
124 /// Whether an iterator is constant, mutable, or unknown
125 enum _Constness
127 __unknown_constness,
128 __const_iterator,
129 __mutable_iterator,
130 __last_constness
133 // The state of the iterator (fine-grained), if we know it.
134 enum _Iterator_state
136 __unknown_state,
137 __singular, // singular, may still be attached to a sequence
138 __begin, // dereferenceable, and at the beginning
139 __middle, // dereferenceable, not at the beginning
140 __end, // past-the-end, may be at beginning if sequence empty
141 __before_begin, // before begin
142 __last_state
145 // Tags denoting the type of parameter for construction
146 struct _Is_iterator { };
147 struct _Is_sequence { };
149 // A parameter that may be referenced by an error message
150 struct _Parameter
152 enum
154 __unused_param,
155 __iterator,
156 __sequence,
157 __integer,
158 __string
159 } _M_kind;
161 union
163 // When _M_kind == __iterator
164 struct
166 const char* _M_name;
167 const void* _M_address;
168 const type_info* _M_type;
169 _Constness _M_constness;
170 _Iterator_state _M_state;
171 const void* _M_sequence;
172 const type_info* _M_seq_type;
173 } _M_iterator;
175 // When _M_kind == __sequence
176 struct
178 const char* _M_name;
179 const void* _M_address;
180 const type_info* _M_type;
181 } _M_sequence;
183 // When _M_kind == __integer
184 struct
186 const char* _M_name;
187 long _M_value;
188 } _M_integer;
190 // When _M_kind == __string
191 struct
193 const char* _M_name;
194 const char* _M_value;
195 } _M_string;
196 } _M_variant;
198 _Parameter() : _M_kind(__unused_param), _M_variant() { }
200 _Parameter(long __value, const char* __name)
201 : _M_kind(__integer), _M_variant()
203 _M_variant._M_integer._M_name = __name;
204 _M_variant._M_integer._M_value = __value;
207 _Parameter(const char* __value, const char* __name)
208 : _M_kind(__string), _M_variant()
210 _M_variant._M_string._M_name = __name;
211 _M_variant._M_string._M_value = __value;
214 template<typename _Iterator, typename _Sequence>
215 _Parameter(const _Safe_iterator<_Iterator, _Sequence>& __it,
216 const char* __name, _Is_iterator)
217 : _M_kind(__iterator), _M_variant()
219 _M_variant._M_iterator._M_name = __name;
220 _M_variant._M_iterator._M_address = &__it;
221 #ifdef __GXX_RTTI
222 _M_variant._M_iterator._M_type = &typeid(__it);
223 #else
224 _M_variant._M_iterator._M_type = 0;
225 #endif
226 _M_variant._M_iterator._M_constness =
227 std::__are_same<_Safe_iterator<_Iterator, _Sequence>,
228 typename _Sequence::iterator>::
229 __value ? __mutable_iterator : __const_iterator;
230 _M_variant._M_iterator._M_sequence = __it._M_get_sequence();
231 #ifdef __GXX_RTTI
232 _M_variant._M_iterator._M_seq_type = &typeid(_Sequence);
233 #else
234 _M_variant._M_iterator._M_seq_type = 0;
235 #endif
237 if (__it._M_singular())
238 _M_variant._M_iterator._M_state = __singular;
239 else
241 if (__it._M_is_before_begin())
242 _M_variant._M_iterator._M_state = __before_begin;
243 else if (__it._M_is_end())
244 _M_variant._M_iterator._M_state = __end;
245 else if (__it._M_is_begin())
246 _M_variant._M_iterator._M_state = __begin;
247 else
248 _M_variant._M_iterator._M_state = __middle;
252 template<typename _Iterator, typename _Sequence>
253 _Parameter(const _Safe_local_iterator<_Iterator, _Sequence>& __it,
254 const char* __name, _Is_iterator)
255 : _M_kind(__iterator), _M_variant()
257 _M_variant._M_iterator._M_name = __name;
258 _M_variant._M_iterator._M_address = &__it;
259 #ifdef __GXX_RTTI
260 _M_variant._M_iterator._M_type = &typeid(__it);
261 #else
262 _M_variant._M_iterator._M_type = 0;
263 #endif
264 _M_variant._M_iterator._M_constness =
265 std::__are_same<_Safe_local_iterator<_Iterator, _Sequence>,
266 typename _Sequence::local_iterator>::
267 __value ? __mutable_iterator : __const_iterator;
268 _M_variant._M_iterator._M_sequence = __it._M_get_sequence();
269 #ifdef __GXX_RTTI
270 _M_variant._M_iterator._M_seq_type = &typeid(_Sequence);
271 #else
272 _M_variant._M_iterator._M_seq_type = 0;
273 #endif
275 if (__it._M_singular())
276 _M_variant._M_iterator._M_state = __singular;
277 else
279 if (__it._M_is_end())
280 _M_variant._M_iterator._M_state = __end;
281 else if (__it._M_is_begin())
282 _M_variant._M_iterator._M_state = __begin;
283 else
284 _M_variant._M_iterator._M_state = __middle;
288 template<typename _Type>
289 _Parameter(const _Type*& __it, const char* __name, _Is_iterator)
290 : _M_kind(__iterator), _M_variant()
292 _M_variant._M_iterator._M_name = __name;
293 _M_variant._M_iterator._M_address = &__it;
294 #ifdef __GXX_RTTI
295 _M_variant._M_iterator._M_type = &typeid(__it);
296 #else
297 _M_variant._M_iterator._M_type = 0;
298 #endif
299 _M_variant._M_iterator._M_constness = __mutable_iterator;
300 _M_variant._M_iterator._M_state = __it? __unknown_state : __singular;
301 _M_variant._M_iterator._M_sequence = 0;
302 _M_variant._M_iterator._M_seq_type = 0;
305 template<typename _Type>
306 _Parameter(_Type*& __it, const char* __name, _Is_iterator)
307 : _M_kind(__iterator), _M_variant()
309 _M_variant._M_iterator._M_name = __name;
310 _M_variant._M_iterator._M_address = &__it;
311 #ifdef __GXX_RTTI
312 _M_variant._M_iterator._M_type = &typeid(__it);
313 #else
314 _M_variant._M_iterator._M_type = 0;
315 #endif
316 _M_variant._M_iterator._M_constness = __const_iterator;
317 _M_variant._M_iterator._M_state = __it? __unknown_state : __singular;
318 _M_variant._M_iterator._M_sequence = 0;
319 _M_variant._M_iterator._M_seq_type = 0;
322 template<typename _Iterator>
323 _Parameter(const _Iterator& __it, const char* __name, _Is_iterator)
324 : _M_kind(__iterator), _M_variant()
326 _M_variant._M_iterator._M_name = __name;
327 _M_variant._M_iterator._M_address = &__it;
328 #ifdef __GXX_RTTI
329 _M_variant._M_iterator._M_type = &typeid(__it);
330 #else
331 _M_variant._M_iterator._M_type = 0;
332 #endif
333 _M_variant._M_iterator._M_constness = __unknown_constness;
334 _M_variant._M_iterator._M_state =
335 __gnu_debug::__check_singular(__it)? __singular : __unknown_state;
336 _M_variant._M_iterator._M_sequence = 0;
337 _M_variant._M_iterator._M_seq_type = 0;
340 template<typename _Sequence>
341 _Parameter(const _Safe_sequence<_Sequence>& __seq,
342 const char* __name, _Is_sequence)
343 : _M_kind(__sequence), _M_variant()
345 _M_variant._M_sequence._M_name = __name;
346 _M_variant._M_sequence._M_address =
347 static_cast<const _Sequence*>(&__seq);
348 #ifdef __GXX_RTTI
349 _M_variant._M_sequence._M_type = &typeid(_Sequence);
350 #else
351 _M_variant._M_sequence._M_type = 0;
352 #endif
355 template<typename _Sequence>
356 _Parameter(const _Sequence& __seq, const char* __name, _Is_sequence)
357 : _M_kind(__sequence), _M_variant()
359 _M_variant._M_sequence._M_name = __name;
360 _M_variant._M_sequence._M_address = &__seq;
361 #ifdef __GXX_RTTI
362 _M_variant._M_sequence._M_type = &typeid(_Sequence);
363 #else
364 _M_variant._M_sequence._M_type = 0;
365 #endif
368 void
369 _M_print_field(const _Error_formatter* __formatter,
370 const char* __name) const;
372 void
373 _M_print_description(const _Error_formatter* __formatter) const;
376 friend struct _Parameter;
378 public:
379 template<typename _Iterator>
380 const _Error_formatter&
381 _M_iterator(const _Iterator& __it, const char* __name = 0) const
383 if (_M_num_parameters < std::size_t(__max_parameters))
384 _M_parameters[_M_num_parameters++] = _Parameter(__it, __name,
385 _Is_iterator());
386 return *this;
389 const _Error_formatter&
390 _M_integer(long __value, const char* __name = 0) const
392 if (_M_num_parameters < std::size_t(__max_parameters))
393 _M_parameters[_M_num_parameters++] = _Parameter(__value, __name);
394 return *this;
397 const _Error_formatter&
398 _M_string(const char* __value, const char* __name = 0) const
400 if (_M_num_parameters < std::size_t(__max_parameters))
401 _M_parameters[_M_num_parameters++] = _Parameter(__value, __name);
402 return *this;
405 template<typename _Sequence>
406 const _Error_formatter&
407 _M_sequence(const _Sequence& __seq, const char* __name = 0) const
409 if (_M_num_parameters < std::size_t(__max_parameters))
410 _M_parameters[_M_num_parameters++] = _Parameter(__seq, __name,
411 _Is_sequence());
412 return *this;
415 const _Error_formatter&
416 _M_message(const char* __text) const
417 { _M_text = __text; return *this; }
419 const _Error_formatter&
420 _M_message(_Debug_msg_id __id) const throw ();
422 _GLIBCXX_NORETURN void
423 _M_error() const;
425 private:
426 _Error_formatter(const char* __file, std::size_t __line)
427 : _M_file(__file), _M_line(__line), _M_num_parameters(0), _M_text(0),
428 _M_max_length(78), _M_column(1), _M_first_line(true), _M_wordwrap(false)
429 { _M_get_max_length(); }
431 template<typename _Tp>
432 void
433 _M_format_word(char*, int, const char*, _Tp) const throw ();
435 void
436 _M_print_word(const char* __word) const;
438 void
439 _M_print_string(const char* __string) const;
441 void
442 _M_get_max_length() const throw ();
444 enum { __max_parameters = 9 };
446 const char* _M_file;
447 std::size_t _M_line;
448 mutable _Parameter _M_parameters[__max_parameters];
449 mutable std::size_t _M_num_parameters;
450 mutable const char* _M_text;
451 mutable std::size_t _M_max_length;
452 enum { _M_indent = 4 } ;
453 mutable std::size_t _M_column;
454 mutable bool _M_first_line;
455 mutable bool _M_wordwrap;
457 public:
458 static _Error_formatter
459 _M_at(const char* __file, std::size_t __line)
460 { return _Error_formatter(__file, __line); }
462 } // namespace __gnu_debug
464 #endif