throw_exception.hpp 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright Ion Gaztanaga 2012-2013. Distributed under the Boost
  4. // Software License, Version 1.0. (See accompanying file
  5. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. // See http://www.boost.org/libs/container for documentation.
  8. //
  9. //////////////////////////////////////////////////////////////////////////////
  10. #ifndef BOOST_CONTAINER_THROW_EXCEPTION_HPP
  11. #define BOOST_CONTAINER_THROW_EXCEPTION_HPP
  12. #ifndef BOOST_CONFIG_HPP
  13. # include <boost/config.hpp>
  14. #endif
  15. #if defined(BOOST_HAS_PRAGMA_ONCE)
  16. # pragma once
  17. #endif
  18. #include <boost/container/detail/config_begin.hpp>
  19. #include <boost/container/detail/workaround.hpp>
  20. #ifndef BOOST_NO_EXCEPTIONS
  21. #include <stdexcept> //for std exception types
  22. #include <string> //for implicit std::string conversion
  23. #include <new> //for std::bad_alloc
  24. #else
  25. #include <boost/assert.hpp>
  26. #include <cstdlib> //for std::abort
  27. #endif
  28. namespace boost {
  29. namespace container {
  30. #if defined(BOOST_CONTAINER_USER_DEFINED_THROW_CALLBACKS)
  31. //The user must provide definitions for the following functions
  32. void throw_bad_alloc();
  33. void throw_out_of_range(const char* str);
  34. void throw_length_error(const char* str);
  35. void throw_logic_error(const char* str);
  36. void throw_runtime_error(const char* str);
  37. #elif defined(BOOST_NO_EXCEPTIONS)
  38. inline void throw_bad_alloc()
  39. {
  40. BOOST_ASSERT(!"boost::container bad_alloc thrown");
  41. std::abort();
  42. }
  43. inline void throw_out_of_range(const char* str)
  44. {
  45. BOOST_ASSERT_MSG(!"boost::container out_of_range thrown", str);
  46. std::abort();
  47. }
  48. inline void throw_length_error(const char* str)
  49. {
  50. BOOST_ASSERT_MSG(!"boost::container length_error thrown", str);
  51. std::abort();
  52. }
  53. inline void throw_logic_error(const char* str)
  54. {
  55. BOOST_ASSERT_MSG(!"boost::container logic_error thrown", str);
  56. std::abort();
  57. }
  58. inline void throw_runtime_error(const char* str)
  59. {
  60. BOOST_ASSERT_MSG(!"boost::container runtime_error thrown", str);
  61. std::abort();
  62. }
  63. #else //defined(BOOST_NO_EXCEPTIONS)
  64. //! Exception callback called by Boost.Container when fails to allocate the requested storage space.
  65. //! <ul>
  66. //! <li>If BOOST_NO_EXCEPTIONS is NOT defined <code>std::bad_alloc()</code> is thrown.</li>
  67. //!
  68. //! <li>If BOOST_NO_EXCEPTIONS is defined and BOOST_CONTAINER_USER_DEFINED_THROW_CALLBACKS
  69. //! is NOT defined <code>BOOST_ASSERT(!"boost::container bad_alloc thrown")</code> is called
  70. //! and <code>std::abort()</code> if the former returns.</li>
  71. //!
  72. //! <li>If BOOST_NO_EXCEPTIONS and BOOST_CONTAINER_USER_DEFINED_THROW_CALLBACKS are defined
  73. //! the user must provide an implementation and the function should not return.</li>
  74. //! </ul>
  75. inline void throw_bad_alloc()
  76. {
  77. throw std::bad_alloc();
  78. }
  79. //! Exception callback called by Boost.Container to signal arguments out of range.
  80. //! <ul>
  81. //! <li>If BOOST_NO_EXCEPTIONS is NOT defined <code>std::out_of_range(str)</code> is thrown.</li>
  82. //!
  83. //! <li>If BOOST_NO_EXCEPTIONS is defined and BOOST_CONTAINER_USER_DEFINED_THROW_CALLBACKS
  84. //! is NOT defined <code>BOOST_ASSERT_MSG(!"boost::container out_of_range thrown", str)</code> is called
  85. //! and <code>std::abort()</code> if the former returns.</li>
  86. //!
  87. //! <li>If BOOST_NO_EXCEPTIONS and BOOST_CONTAINER_USER_DEFINED_THROW_CALLBACKS are defined
  88. //! the user must provide an implementation and the function should not return.</li>
  89. //! </ul>
  90. inline void throw_out_of_range(const char* str)
  91. {
  92. throw std::out_of_range(str);
  93. }
  94. //! Exception callback called by Boost.Container to signal errors resizing.
  95. //! <ul>
  96. //! <li>If BOOST_NO_EXCEPTIONS is NOT defined <code>std::length_error(str)</code> is thrown.</li>
  97. //!
  98. //! <li>If BOOST_NO_EXCEPTIONS is defined and BOOST_CONTAINER_USER_DEFINED_THROW_CALLBACKS
  99. //! is NOT defined <code>BOOST_ASSERT_MSG(!"boost::container length_error thrown", str)</code> is called
  100. //! and <code>std::abort()</code> if the former returns.</li>
  101. //!
  102. //! <li>If BOOST_NO_EXCEPTIONS and BOOST_CONTAINER_USER_DEFINED_THROW_CALLBACKS are defined
  103. //! the user must provide an implementation and the function should not return.</li>
  104. //! </ul>
  105. inline void throw_length_error(const char* str)
  106. {
  107. throw std::length_error(str);
  108. }
  109. //! Exception callback called by Boost.Container to report errors in the internal logical
  110. //! of the program, such as violation of logical preconditions or class invariants.
  111. //! <ul>
  112. //! <li>If BOOST_NO_EXCEPTIONS is NOT defined <code>std::logic_error(str)</code> is thrown.</li>
  113. //!
  114. //! <li>If BOOST_NO_EXCEPTIONS is defined and BOOST_CONTAINER_USER_DEFINED_THROW_CALLBACKS
  115. //! is NOT defined <code>BOOST_ASSERT_MSG(!"boost::container logic_error thrown", str)</code> is called
  116. //! and <code>std::abort()</code> if the former returns.</li>
  117. //!
  118. //! <li>If BOOST_NO_EXCEPTIONS and BOOST_CONTAINER_USER_DEFINED_THROW_CALLBACKS are defined
  119. //! the user must provide an implementation and the function should not return.</li>
  120. //! </ul>
  121. inline void throw_logic_error(const char* str)
  122. {
  123. throw std::logic_error(str);
  124. }
  125. //! Exception callback called by Boost.Container to report errors that can only be detected during runtime.
  126. //! <ul>
  127. //! <li>If BOOST_NO_EXCEPTIONS is NOT defined <code>std::runtime_error(str)</code> is thrown.</li>
  128. //!
  129. //! <li>If BOOST_NO_EXCEPTIONS is defined and BOOST_CONTAINER_USER_DEFINED_THROW_CALLBACKS
  130. //! is NOT defined <code>BOOST_ASSERT_MSG(!"boost::container runtime_error thrown", str)</code> is called
  131. //! and <code>std::abort()</code> if the former returns.</li>
  132. //!
  133. //! <li>If BOOST_NO_EXCEPTIONS and BOOST_CONTAINER_USER_DEFINED_THROW_CALLBACKS are defined
  134. //! the user must provide an implementation and the function should not return.</li>
  135. //! </ul>
  136. inline void throw_runtime_error(const char* str)
  137. {
  138. throw std::runtime_error(str);
  139. }
  140. #endif
  141. }} //namespace boost { namespace container {
  142. #include <boost/container/detail/config_end.hpp>
  143. #endif //#ifndef BOOST_CONTAINER_THROW_EXCEPTION_HPP