1 // Debugging mode support code -*- C++ -*-
3 // Copyright (C) 2003, 2004, 2005, 2006, 2007
4 // Free Software Foundation, Inc.
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 2, or (at your option)
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.
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING. If not, write to the Free
19 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
22 // As a special exception, you may use this file as part of a free software
23 // library without restriction. Specifically, if other files instantiate
24 // templates or use macros or inline functions from this file, or you compile
25 // this file and link it with other files to produce an executable, this
26 // file does not by itself cause the resulting executable to be covered by
27 // the GNU General Public License. This exception does not however
28 // invalidate any other reasons why the executable file might be covered by
29 // the GNU General Public License.
31 #include <debug/debug.h>
32 #include <debug/safe_sequence.h>
33 #include <debug/safe_iterator.h>
45 __gnu_cxx::__mutex safe_base_mutex
;
46 } // anonymous namespace
50 const char* _S_debug_messages
[] =
52 "function requires a valid iterator range [%1.name;, %2.name;)",
53 "attempt to insert into container with a singular iterator",
54 "attempt to insert into container with an iterator"
55 " from a different container",
56 "attempt to erase from container with a %2.state; iterator",
57 "attempt to erase from container with an iterator"
58 " from a different container",
59 "attempt to subscript container with out-of-bounds index %2;,"
60 " but container only holds %3; elements",
61 "attempt to access an element in an empty container",
62 "elements in iterator range [%1.name;, %2.name;)"
63 " are not partitioned by the value %3;",
64 "elements in iterator range [%1.name;, %2.name;)"
65 " are not partitioned by the predicate %3; and value %4;",
66 "elements in iterator range [%1.name;, %2.name;) are not sorted",
67 "elements in iterator range [%1.name;, %2.name;)"
68 " are not sorted according to the predicate %3;",
69 "elements in iterator range [%1.name;, %2.name;) do not form a heap",
70 "elements in iterator range [%1.name;, %2.name;)"
71 " do not form a heap with respect to the predicate %3;",
72 "attempt to write through a singular bitset reference",
73 "attempt to read from a singular bitset reference",
74 "attempt to flip a singular bitset reference",
75 "attempt to splice a list into itself",
76 "attempt to splice lists with inequal allocators",
77 "attempt to splice elements referenced by a %1.state; iterator",
78 "attempt to splice an iterator from a different container",
79 "splice destination %1.name;"
80 " occurs within source range [%2.name;, %3.name;)",
81 "attempt to initialize an iterator that will immediately become singular",
82 "attempt to copy-construct an iterator from a singular iterator",
83 "attempt to construct a constant iterator"
84 " from a singular mutable iterator",
85 "attempt to copy from a singular iterator",
86 "attempt to dereference a %1.state; iterator",
87 "attempt to increment a %1.state; iterator",
88 "attempt to decrement a %1.state; iterator",
89 "attempt to subscript a %1.state; iterator %2; step from"
90 " its current position, which falls outside its dereferenceable range",
91 "attempt to advance a %1.state; iterator %2; steps,"
92 " which falls outside its valid range",
93 "attempt to retreat a %1.state; iterator %2; steps,"
94 " which falls outside its valid range",
95 "attempt to compare a %1.state; iterator to a %2.state; iterator",
96 "attempt to compare iterators from different sequences",
97 "attempt to order a %1.state; iterator to a %2.state; iterator",
98 "attempt to order iterators from different sequences",
99 "attempt to compute the difference between a %1.state;"
100 " iterator to a %2.state; iterator",
101 "attempt to compute the different between two iterators"
102 " from different sequences",
103 "attempt to dereference an end-of-stream istream_iterator",
104 "attempt to increment an end-of-stream istream_iterator",
105 "attempt to output via an ostream_iterator with no associated stream",
106 "attempt to dereference an end-of-stream istreambuf_iterator"
107 " (this is a GNU extension)",
108 "attempt to increment an end-of-stream istreambuf_iterator"
112 _Safe_sequence_base::
115 __gnu_cxx::__scoped_lock
sentry(safe_base_mutex
);
116 for (_Safe_iterator_base
* __iter
= _M_iterators
; __iter
;)
118 _Safe_iterator_base
* __old
= __iter
;
119 __iter
= __iter
->_M_next
;
120 __old
->_M_detach_single();
123 for (_Safe_iterator_base
* __iter2
= _M_const_iterators
; __iter2
;)
125 _Safe_iterator_base
* __old
= __iter2
;
126 __iter2
= __iter2
->_M_next
;
127 __old
->_M_detach_single();
132 _Safe_sequence_base::
135 __gnu_cxx::__scoped_lock
sentry(safe_base_mutex
);
136 for (_Safe_iterator_base
* __iter
= _M_iterators
; __iter
;)
138 _Safe_iterator_base
* __old
= __iter
;
139 __iter
= __iter
->_M_next
;
140 if (__old
->_M_singular())
141 __old
->_M_detach_single();
144 for (_Safe_iterator_base
* __iter2
= _M_const_iterators
; __iter2
;)
146 _Safe_iterator_base
* __old
= __iter2
;
147 __iter2
= __iter2
->_M_next
;
148 if (__old
->_M_singular())
149 __old
->_M_detach_single();
154 _Safe_sequence_base::
155 _M_revalidate_singular()
157 __gnu_cxx::__scoped_lock
sentry(safe_base_mutex
);
158 for (_Safe_iterator_base
* __iter
= _M_iterators
; __iter
;
159 __iter
= __iter
->_M_next
)
160 __iter
->_M_version
= _M_version
;
162 for (_Safe_iterator_base
* __iter2
= _M_const_iterators
; __iter2
;
163 __iter2
= __iter2
->_M_next
)
164 __iter2
->_M_version
= _M_version
;
168 _Safe_sequence_base::
169 _M_swap(_Safe_sequence_base
& __x
)
171 __gnu_cxx::__scoped_lock
sentry(safe_base_mutex
);
172 swap(_M_iterators
, __x
._M_iterators
);
173 swap(_M_const_iterators
, __x
._M_const_iterators
);
174 swap(_M_version
, __x
._M_version
);
175 _Safe_iterator_base
* __iter
;
176 for (__iter
= _M_iterators
; __iter
; __iter
= __iter
->_M_next
)
177 __iter
->_M_sequence
= this;
178 for (__iter
= __x
._M_iterators
; __iter
; __iter
= __iter
->_M_next
)
179 __iter
->_M_sequence
= &__x
;
180 for (__iter
= _M_const_iterators
; __iter
; __iter
= __iter
->_M_next
)
181 __iter
->_M_sequence
= this;
182 for (__iter
= __x
._M_const_iterators
; __iter
; __iter
= __iter
->_M_next
)
183 __iter
->_M_sequence
= &__x
;
187 _Safe_sequence_base::
189 { return safe_base_mutex
; }
192 _Safe_iterator_base::
193 _M_attach(_Safe_sequence_base
* __seq
, bool __constant
)
195 __gnu_cxx::__scoped_lock
sentry(safe_base_mutex
);
196 _M_attach_single(__seq
, __constant
);
200 _Safe_iterator_base::
201 _M_attach_single(_Safe_sequence_base
* __seq
, bool __constant
)
205 // Attach to the new sequence (if there is one)
209 _M_version
= _M_sequence
->_M_version
;
213 _M_next
= _M_sequence
->_M_const_iterators
;
215 _M_next
->_M_prior
= this;
216 _M_sequence
->_M_const_iterators
= this;
220 _M_next
= _M_sequence
->_M_iterators
;
222 _M_next
->_M_prior
= this;
223 _M_sequence
->_M_iterators
= this;
229 _Safe_iterator_base::
232 __gnu_cxx::__scoped_lock
sentry(safe_base_mutex
);
237 _Safe_iterator_base::
242 // Remove us from this sequence's list
244 _M_prior
->_M_next
= _M_next
;
246 _M_next
->_M_prior
= _M_prior
;
248 if (_M_sequence
->_M_const_iterators
== this)
249 _M_sequence
->_M_const_iterators
= _M_next
;
250 if (_M_sequence
->_M_iterators
== this)
251 _M_sequence
->_M_iterators
= _M_next
;
261 _Safe_iterator_base::
263 { return !_M_sequence
|| _M_version
!= _M_sequence
->_M_version
; }
266 _Safe_iterator_base::
267 _M_can_compare(const _Safe_iterator_base
& __x
) const
269 return (!_M_singular()
270 && !__x
._M_singular() && _M_sequence
== __x
._M_sequence
);
274 _Safe_iterator_base::
276 { return safe_base_mutex
; }
279 _Error_formatter::_Parameter::
280 _M_print_field(const _Error_formatter
* __formatter
, const char* __name
) const
282 assert(this->_M_kind
!= _Parameter::__unused_param
);
283 const int __bufsize
= 64;
284 char __buf
[__bufsize
];
286 if (_M_kind
== __iterator
)
288 if (strcmp(__name
, "name") == 0)
290 assert(_M_variant
._M_iterator
._M_name
);
291 __formatter
->_M_print_word(_M_variant
._M_iterator
._M_name
);
293 else if (strcmp(__name
, "address") == 0)
295 __formatter
->_M_format_word(__buf
, __bufsize
, "%p",
296 _M_variant
._M_iterator
._M_address
);
297 __formatter
->_M_print_word(__buf
);
299 else if (strcmp(__name
, "type") == 0)
301 assert(_M_variant
._M_iterator
._M_type
);
303 __formatter
->_M_print_word(_M_variant
._M_iterator
._M_type
->name());
305 else if (strcmp(__name
, "constness") == 0)
307 static const char* __constness_names
[__last_constness
] =
313 __formatter
->_M_print_word(__constness_names
[_M_variant
._M_iterator
._M_constness
]);
315 else if (strcmp(__name
, "state") == 0)
317 static const char* __state_names
[__last_state
] =
321 "dereferenceable (start-of-sequence)",
325 __formatter
->_M_print_word(__state_names
[_M_variant
._M_iterator
._M_state
]);
327 else if (strcmp(__name
, "sequence") == 0)
329 assert(_M_variant
._M_iterator
._M_sequence
);
330 __formatter
->_M_format_word(__buf
, __bufsize
, "%p",
331 _M_variant
._M_iterator
._M_sequence
);
332 __formatter
->_M_print_word(__buf
);
334 else if (strcmp(__name
, "seq_type") == 0)
337 assert(_M_variant
._M_iterator
._M_seq_type
);
338 __formatter
->_M_print_word(_M_variant
._M_iterator
._M_seq_type
->name());
343 else if (_M_kind
== __sequence
)
345 if (strcmp(__name
, "name") == 0)
347 assert(_M_variant
._M_sequence
._M_name
);
348 __formatter
->_M_print_word(_M_variant
._M_sequence
._M_name
);
350 else if (strcmp(__name
, "address") == 0)
352 assert(_M_variant
._M_sequence
._M_address
);
353 __formatter
->_M_format_word(__buf
, __bufsize
, "%p",
354 _M_variant
._M_sequence
._M_address
);
355 __formatter
->_M_print_word(__buf
);
357 else if (strcmp(__name
, "type") == 0)
360 assert(_M_variant
._M_sequence
._M_type
);
361 __formatter
->_M_print_word(_M_variant
._M_sequence
._M_type
->name());
366 else if (_M_kind
== __integer
)
368 if (strcmp(__name
, "name") == 0)
370 assert(_M_variant
._M_integer
._M_name
);
371 __formatter
->_M_print_word(_M_variant
._M_integer
._M_name
);
376 else if (_M_kind
== __string
)
378 if (strcmp(__name
, "name") == 0)
380 assert(_M_variant
._M_string
._M_name
);
381 __formatter
->_M_print_word(_M_variant
._M_string
._M_name
);
393 _Error_formatter::_Parameter::
394 _M_print_description(const _Error_formatter
* __formatter
) const
396 const int __bufsize
= 128;
397 char __buf
[__bufsize
];
399 if (_M_kind
== __iterator
)
401 __formatter
->_M_print_word("iterator ");
402 if (_M_variant
._M_iterator
._M_name
)
404 __formatter
->_M_format_word(__buf
, __bufsize
, "\"%s\" ",
405 _M_variant
._M_iterator
._M_name
);
406 __formatter
->_M_print_word(__buf
);
409 __formatter
->_M_format_word(__buf
, __bufsize
, "@ 0x%p {\n",
410 _M_variant
._M_iterator
._M_address
);
411 __formatter
->_M_print_word(__buf
);
412 if (_M_variant
._M_iterator
._M_type
)
414 __formatter
->_M_print_word("type = ");
415 _M_print_field(__formatter
, "type");
417 if (_M_variant
._M_iterator
._M_constness
!= __unknown_constness
)
419 __formatter
->_M_print_word(" (");
420 _M_print_field(__formatter
, "constness");
421 __formatter
->_M_print_word(" iterator)");
423 __formatter
->_M_print_word(";\n");
426 if (_M_variant
._M_iterator
._M_state
!= __unknown_state
)
428 __formatter
->_M_print_word(" state = ");
429 _M_print_field(__formatter
, "state");
430 __formatter
->_M_print_word(";\n");
433 if (_M_variant
._M_iterator
._M_sequence
)
435 __formatter
->_M_print_word(" references sequence ");
436 if (_M_variant
._M_iterator
._M_seq_type
)
438 __formatter
->_M_print_word("with type `");
439 _M_print_field(__formatter
, "seq_type");
440 __formatter
->_M_print_word("' ");
443 __formatter
->_M_format_word(__buf
, __bufsize
, "@ 0x%p\n",
444 _M_variant
._M_sequence
._M_address
);
445 __formatter
->_M_print_word(__buf
);
447 __formatter
->_M_print_word("}\n");
449 else if (_M_kind
== __sequence
)
451 __formatter
->_M_print_word("sequence ");
452 if (_M_variant
._M_sequence
._M_name
)
454 __formatter
->_M_format_word(__buf
, __bufsize
, "\"%s\" ",
455 _M_variant
._M_sequence
._M_name
);
456 __formatter
->_M_print_word(__buf
);
459 __formatter
->_M_format_word(__buf
, __bufsize
, "@ 0x%p {\n",
460 _M_variant
._M_sequence
._M_address
);
461 __formatter
->_M_print_word(__buf
);
463 if (_M_variant
._M_sequence
._M_type
)
465 __formatter
->_M_print_word(" type = ");
466 _M_print_field(__formatter
, "type");
467 __formatter
->_M_print_word(";\n");
469 __formatter
->_M_print_word("}\n");
473 const _Error_formatter
&
474 _Error_formatter::_M_message(_Debug_msg_id __id
) const
475 { return this->_M_message(_S_debug_messages
[__id
]); }
478 _Error_formatter::_M_error() const
480 const int __bufsize
= 128;
481 char __buf
[__bufsize
];
483 // Emit file & line number information
488 _M_format_word(__buf
, __bufsize
, "%s:", _M_file
);
489 _M_print_word(__buf
);
490 _M_column
+= strlen(__buf
);
495 _M_format_word(__buf
, __bufsize
, "%u:", _M_line
);
496 _M_print_word(__buf
);
497 _M_column
+= strlen(__buf
);
502 _M_print_word("error: ");
504 // Print the error message
506 _M_print_string(_M_text
);
507 _M_print_word(".\n");
509 // Emit descriptions of the objects involved in the operation
511 bool __has_noninteger_parameters
= false;
512 for (unsigned int __i
= 0; __i
< _M_num_parameters
; ++__i
)
514 if (_M_parameters
[__i
]._M_kind
== _Parameter::__iterator
515 || _M_parameters
[__i
]._M_kind
== _Parameter::__sequence
)
517 if (!__has_noninteger_parameters
)
519 _M_first_line
= true;
520 _M_print_word("\nObjects involved in the operation:\n");
521 __has_noninteger_parameters
= true;
523 _M_parameters
[__i
]._M_print_description(this);
530 template<typename _Tp
>
532 _Error_formatter::_M_format_word(char* __buf
,
533 int __n
__attribute__ ((__unused__
)),
534 const char* __fmt
, _Tp __s
) const
536 #ifdef _GLIBCXX_USE_C99
537 std::snprintf(__buf
, __n
, __fmt
, __s
);
539 std::sprintf(__buf
, __fmt
, __s
);
545 _Error_formatter::_M_print_word(const char* __word
) const
549 fprintf(stderr
, "%s", __word
);
553 size_t __length
= strlen(__word
);
557 if ((_M_column
+ __length
< _M_max_length
)
558 || (__length
>= _M_max_length
&& _M_column
== 1))
560 // If this isn't the first line, indent
561 if (_M_column
== 1 && !_M_first_line
)
563 char __spacing
[_M_indent
+ 1];
564 for (int i
= 0; i
< _M_indent
; ++i
)
566 __spacing
[_M_indent
] = '\0';
567 fprintf(stderr
, "%s", __spacing
);
568 _M_column
+= _M_indent
;
571 fprintf(stderr
, "%s", __word
);
572 _M_column
+= __length
;
574 if (__word
[__length
- 1] == '\n')
576 _M_first_line
= false;
584 _M_print_word(__word
);
590 _M_print_string(const char* __string
) const
592 const char* __start
= __string
;
593 const char* __finish
= __start
;
594 const int __bufsize
= 128;
595 char __buf
[__bufsize
];
601 // [__start, __finish) denotes the next word
603 while (isalnum(*__finish
))
605 if (__start
== __finish
)
607 if (isspace(*__finish
))
610 const ptrdiff_t __len
= __finish
- __start
;
611 assert(__len
< __bufsize
);
612 memcpy(__buf
, __start
, __len
);
614 _M_print_word(__buf
);
617 // Skip extra whitespace
618 while (*__start
== ' ')
633 // Get the parameter number
634 assert(*__start
>= '1' && *__start
<= '9');
635 size_t __param
= *__start
- '0';
637 assert(__param
< _M_num_parameters
);
639 // '.' separates the parameter number from the field
640 // name, if there is one.
644 assert(*__start
== ';');
647 if (_M_parameters
[__param
]._M_kind
== _Parameter::__integer
)
649 _M_format_word(__buf
, __bufsize
, "%ld",
650 _M_parameters
[__param
]._M_variant
._M_integer
._M_value
);
651 _M_print_word(__buf
);
653 else if (_M_parameters
[__param
]._M_kind
== _Parameter::__string
)
654 _M_print_string(_M_parameters
[__param
]._M_variant
._M_string
._M_value
);
658 // Extract the field name we want
659 enum { __max_field_len
= 16 };
660 char __field
[__max_field_len
];
663 while (*__start
!= ';')
666 assert(__field_idx
< __max_field_len
-1);
667 __field
[__field_idx
++] = *__start
++;
670 __field
[__field_idx
] = 0;
672 _M_parameters
[__param
]._M_print_field(this, __field
);
677 _Error_formatter::_M_get_max_length() const
679 const char* __nptr
= std::getenv("GLIBCXX_DEBUG_MESSAGE_LENGTH");
683 const unsigned long __ret
= std::strtoul(__nptr
, &__endptr
, 0);
684 if (*__nptr
!= '\0' && *__endptr
== '\0')
685 _M_max_length
= __ret
;
692 _Error_formatter::_M_format_word(char*, int, const char*,
697 _Error_formatter::_M_format_word(char*, int, const char*, long) const;
701 _Error_formatter::_M_format_word(char*, int, const char*,
706 _Error_formatter::_M_format_word(char*, int, const char*,
708 } // namespace __gnu_debug