c6a21af2ff
2010-07-22 Benjamin Kosnik <bkoz@redhat.com> DocBook 4.5 to 5.0 transition. * doc/xml/authors.xml: Update markup to DocBook 5.0. * doc/xml/faq.xml: Same. * doc/xml/api.xml: Same. * doc/xml/class.txml * doc/xml/gnu/gpl-3.0.xml: Same. * doc/xml/gnu/fdl-1.2.xml: Same. * doc/xml/gnu/fdl-1.3.xml: Same. * doc/xml/gnu/gpl-2.0.xml: Same. * doc/xml/chapter.txml: Same. * doc/xml/manual/mt_allocator.xml: Same. * doc/xml/manual/allocator.xml: Same. * doc/xml/manual/ctype.xml: Same. * doc/xml/manual/numerics.xml: Same. * doc/xml/manual/codecvt.xml: Same. * doc/xml/manual/backwards_compatibility.xml: Same. * doc/xml/manual/concurrency.xml: Same. * doc/xml/manual/intro.xml: Same. * doc/xml/manual/abi.xml: Same. * doc/xml/manual/shared_ptr.xml: Same. * doc/xml/manual/status_cxxtr1.xml: Same. * doc/xml/manual/auto_ptr.xml: Same. * doc/xml/manual/internals.xml: Same. * doc/xml/manual/atomics.xml: Same. * doc/xml/manual/parallel_mode.xml: Same. * doc/xml/manual/status_cxx1998.xml: Same. * doc/xml/manual/profile_mode.xml: Same. * doc/xml/manual/containers.xml: Same. * doc/xml/manual/io.xml: Same. * doc/xml/manual/concurrency_extensions.xml: Same. * doc/xml/manual/appendix_porting.xml: Same. * doc/xml/manual/utilities.xml: Same. * doc/xml/manual/support.xml: Same. * doc/xml/manual/bitmap_allocator.xml: Same. * doc/xml/manual/configure.xml: Same. * doc/xml/manual/build_hacking.xml: Same. * doc/xml/manual/evolution.xml: Same. * doc/xml/manual/using.xml: Same. * doc/xml/manual/using_exceptions.xml: Same. * doc/xml/manual/debug.xml: Same. * doc/xml/manual/localization.xml: Same. * doc/xml/manual/strings.xml: Same. * doc/xml/manual/debug_mode.xml: Same. * doc/xml/manual/locale.xml: Same. * doc/xml/manual/extensions.xml: Same. * doc/xml/manual/appendix_contributing.xml: Same. * doc/xml/manual/prerequisites.xml: Same. * doc/xml/manual/messages.xml: Same. * doc/xml/manual/diagnostics.xml: Same. * doc/xml/manual/algorithms.xml: Same. * doc/xml/manual/appendix_free.xml: Same. * doc/xml/manual/iterators.xml: Same. * doc/xml/manual/spine.xml: Same. * doc/xml/manual/status_cxxtr24733.xml: Same. * doc/xml/manual/status_cxx200x.xml: Same. * doc/xml/manual/test.xml: Same. * doc/xml/book.txml: Same. * doc/xml/spine.xml: Same. * doc/Makefile.am: Same. * doc/Makefile.in: Regenerate. From-SVN: r162433
128 lines
4.3 KiB
XML
128 lines
4.3 KiB
XML
<chapter xmlns="http://docbook.org/ns/docbook" version="5.0"
|
|
xml:id="std.diagnostics" xreflabel="Diagnostics">
|
|
<?dbhtml filename="diagnostics.html"?>
|
|
|
|
<info><title>
|
|
Diagnostics
|
|
<indexterm><primary>Diagnostics</primary></indexterm>
|
|
</title>
|
|
<keywordset>
|
|
<keyword>
|
|
ISO C++
|
|
</keyword>
|
|
<keyword>
|
|
library
|
|
</keyword>
|
|
</keywordset>
|
|
</info>
|
|
|
|
|
|
|
|
<section xml:id="std.diagnostics.exceptions" xreflabel="Exceptions"><info><title>Exceptions</title></info>
|
|
<?dbhtml filename="exceptions.html"?>
|
|
|
|
|
|
<section xml:id="std.diagnostics.exceptions.api"><info><title>API Reference</title></info>
|
|
|
|
<para>
|
|
All exception objects are defined in one of the standard header
|
|
files: <filename>exception</filename>,
|
|
<filename>stdexcept</filename>, <filename>new</filename>, and
|
|
<filename>typeinfo</filename>.
|
|
</para>
|
|
|
|
<para>
|
|
The base exception object is <classname>exception</classname>,
|
|
located in <filename>exception</filename>. This object has no
|
|
<classname>string</classname> member.
|
|
</para>
|
|
|
|
<para>
|
|
Derived from this are several classes that may have a
|
|
<classname>string</classname> member: a full hierarchy can be
|
|
found in the source documentation.
|
|
</para>
|
|
|
|
<para>
|
|
Full API details.
|
|
</para>
|
|
|
|
<!-- Doxygen XML: api/group__exceptions.xml -->
|
|
|
|
</section>
|
|
<section xml:id="std.diagnostics.exceptions.data" xreflabel="Adding Data to Exceptions"><info><title>Adding Data to <classname>exception</classname></title></info>
|
|
|
|
<para>
|
|
The standard exception classes carry with them a single string as
|
|
data (usually describing what went wrong or where the 'throw' took
|
|
place). It's good to remember that you can add your own data to
|
|
these exceptions when extending the hierarchy:
|
|
</para>
|
|
<programlisting>
|
|
struct My_Exception : public std::runtime_error
|
|
{
|
|
public:
|
|
My_Exception (const string& whatarg)
|
|
: std::runtime_error(whatarg), e(errno), id(GetDataBaseID()) { }
|
|
int errno_at_time_of_throw() const { return e; }
|
|
DBID id_of_thing_that_threw() const { return id; }
|
|
protected:
|
|
int e;
|
|
DBID id; // some user-defined type
|
|
};
|
|
</programlisting>
|
|
|
|
</section>
|
|
</section>
|
|
|
|
<section xml:id="std.diagnostics.concept_checking" xreflabel="Concept Checking"><info><title>Concept Checking</title></info>
|
|
|
|
<para>
|
|
In 1999, SGI added <quote>concept checkers</quote> to their
|
|
implementation of the STL: code which checked the template
|
|
parameters of instantiated pieces of the STL, in order to insure
|
|
that the parameters being used met the requirements of the
|
|
standard. For example, the Standard requires that types passed as
|
|
template parameters to <classname>vector</classname> be
|
|
"Assignable" (which means what you think it means). The
|
|
checking was done during compilation, and none of the code was
|
|
executed at runtime.
|
|
</para>
|
|
<para>
|
|
Unfortunately, the size of the compiler files grew significantly
|
|
as a result. The checking code itself was cumbersome. And bugs
|
|
were found in it on more than one occasion.
|
|
</para>
|
|
<para>
|
|
The primary author of the checking code, Jeremy Siek, had already
|
|
started work on a replacement implementation. The new code has been
|
|
formally reviewed and accepted into
|
|
<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.boost.org/libs/concept_check/concept_check.htm">the
|
|
Boost libraries</link>, and we are pleased to incorporate it into the
|
|
GNU C++ library.
|
|
</para>
|
|
<para>
|
|
The new version imposes a much smaller space overhead on the generated
|
|
object file. The checks are also cleaner and easier to read and
|
|
understand.
|
|
</para>
|
|
|
|
<para>
|
|
They are off by default for all versions of GCC.
|
|
They can be enabled at configure time with
|
|
<link linkend="manual.intro.setup.configure"><literal>--enable-concept-checks</literal></link>.
|
|
You can enable them on a per-translation-unit basis with
|
|
<literal>-D_GLIBCXX_CONCEPT_CHECKS</literal>.
|
|
</para>
|
|
|
|
<para>
|
|
Please note that the upcoming C++ standard has first-class
|
|
support for template parameter constraints based on concepts in the core
|
|
language. This will obviate the need for the library-simulated concept
|
|
checking described above.
|
|
</para>
|
|
|
|
</section>
|
|
|
|
</chapter>
|