trait_std_exception.hpp 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /* Traits for Outcome
  2. (C) 2018-2019 Niall Douglas <http://www.nedproductions.biz/> (3 commits)
  3. File Created: March 2018
  4. Boost Software License - Version 1.0 - August 17th, 2003
  5. Permission is hereby granted, free of charge, to any person or organization
  6. obtaining a copy of the software and accompanying documentation covered by
  7. this license (the "Software") to use, reproduce, display, distribute,
  8. execute, and transmit the Software, and to prepare derivative works of the
  9. Software, and to permit third-parties to whom the Software is furnished to
  10. do so, all subject to the following:
  11. The copyright notices in the Software and this entire statement, including
  12. the above license grant, this restriction and the following disclaimer,
  13. must be included in all copies of the Software, in whole or in part, and
  14. all derivative works of the Software, unless such copies or derivative
  15. works are solely in the form of machine-executable object code generated by
  16. a source language processor.
  17. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
  20. SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
  21. FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
  22. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  23. DEALINGS IN THE SOFTWARE.
  24. */
  25. #ifndef BOOST_OUTCOME_TRAIT_STD_EXCEPTION_HPP
  26. #define BOOST_OUTCOME_TRAIT_STD_EXCEPTION_HPP
  27. #include "../config.hpp"
  28. #include <exception>
  29. BOOST_OUTCOME_V2_NAMESPACE_BEGIN
  30. namespace policy
  31. {
  32. namespace detail
  33. {
  34. /* Pass through `make_exception_ptr` function for `std::exception_ptr`.
  35. */
  36. inline std::exception_ptr make_exception_ptr(std::exception_ptr v) { return v; }
  37. // Try ADL, if not use fall backs above
  38. template <class T> constexpr inline decltype(auto) exception_ptr(T &&v) { return make_exception_ptr(std::forward<T>(v)); }
  39. } // namespace detail
  40. /*! AWAITING HUGO JSON CONVERSION TOOL
  41. SIGNATURE NOT RECOGNISED
  42. */
  43. template <class T> constexpr inline decltype(auto) exception_ptr(T &&v) { return detail::exception_ptr(std::forward<T>(v)); }
  44. namespace detail
  45. {
  46. template <bool has_error_payload> struct _rethrow_exception
  47. {
  48. template <class Exception> explicit _rethrow_exception(Exception && /*unused*/) // NOLINT
  49. {
  50. }
  51. };
  52. template <> struct _rethrow_exception<true>
  53. {
  54. template <class Exception> explicit _rethrow_exception(Exception &&excpt) // NOLINT
  55. {
  56. // ADL
  57. rethrow_exception(policy::exception_ptr(std::forward<Exception>(excpt)));
  58. }
  59. };
  60. } // namespace detail
  61. } // namespace policy
  62. namespace trait
  63. {
  64. namespace detail
  65. {
  66. // Shortcut this for lower build impact
  67. template <> struct _is_exception_ptr_available<std::exception_ptr>
  68. {
  69. static constexpr bool value = true;
  70. using type = std::exception_ptr;
  71. };
  72. } // namespace detail
  73. // std::exception_ptr is an error type
  74. template <> struct is_error_type<std::exception_ptr>
  75. {
  76. static constexpr bool value = true;
  77. };
  78. } // namespace trait
  79. BOOST_OUTCOME_V2_NAMESPACE_END
  80. #endif