Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===-------------------------- exception ---------------------------------===// |
| 3 | // |
| 4 | // ÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊThe LLVM Compiler Infrastructure |
| 5 | // |
| 6 | // This file is distributed under the University of Illinois Open Source |
| 7 | // License. See LICENSE.TXT for details. |
| 8 | // |
| 9 | //===----------------------------------------------------------------------===// |
| 10 | |
| 11 | #ifndef _LIBCPP_EXCEPTION |
| 12 | #define _LIBCPP_EXCEPTION |
| 13 | |
| 14 | /* |
| 15 | exception synopsis |
| 16 | |
| 17 | namespace std |
| 18 | { |
| 19 | |
| 20 | class exception |
| 21 | { |
| 22 | public: |
| 23 | exception() throw(); |
| 24 | exception(const exception&) throw(); |
| 25 | exception& operator=(const exception&) throw(); |
| 26 | virtual ~exception() throw(); |
| 27 | virtual const char* what() const throw(); |
| 28 | }; |
| 29 | |
| 30 | class bad_exception |
| 31 | : public exception |
| 32 | { |
| 33 | public: |
| 34 | bad_exception() throw(); |
| 35 | bad_exception(const bad_exception&) throw(); |
| 36 | bad_exception& operator=(const bad_exception&) throw(); |
| 37 | virtual ~bad_exception() throw(); |
| 38 | virtual const char* what() const throw(); |
| 39 | }; |
| 40 | |
| 41 | typedef void (*unexpected_handler)(); |
| 42 | unexpected_handler set_unexpected(unexpected_handler f ) throw(); |
| 43 | void unexpected [[noreturn]] (); |
| 44 | |
| 45 | typedef void (*terminate_handler)(); |
| 46 | terminate_handler set_terminate(terminate_handler f ) throw(); |
| 47 | void terminate [[noreturn]] (); |
| 48 | |
| 49 | bool uncaught_exception() throw(); |
| 50 | |
| 51 | typedef unspecified exception_ptr; |
| 52 | |
| 53 | exception_ptr current_exception(); |
| 54 | void rethrow_exception [[noreturn]] (exception_ptr p); |
| 55 | template<class E> exception_ptr make_exception_ptr(E e); |
| 56 | |
| 57 | class nested_exception |
| 58 | { |
| 59 | public: |
| 60 | nested_exception() throw(); |
| 61 | nested_exception(const nested_exception&) throw() = default; |
| 62 | nested_exception& operator=(const nested_exception&) throw() = default; |
| 63 | virtual ~nested_exception() = default; |
| 64 | |
| 65 | // access functions |
| 66 | void rethrow_nested [[noreturn]] () const; |
| 67 | exception_ptr nested_ptr() const; |
| 68 | }; |
| 69 | |
| 70 | template <class T> void throw_with_nested [[noreturn]] (T&& t); |
| 71 | template <class E> void rethrow_if_nested(const E& e); |
| 72 | |
| 73 | } // std |
| 74 | |
| 75 | */ |
| 76 | |
| 77 | #include <__config> |
| 78 | #include <cstddef> |
| 79 | |
| 80 | #pragma GCC system_header |
| 81 | |
| 82 | namespace std // purposefully not using versioning namespace |
| 83 | { |
| 84 | |
| 85 | class _LIBCPP_EXCEPTION_ABI exception |
| 86 | { |
| 87 | public: |
| 88 | _LIBCPP_INLINE_VISIBILITY exception() throw() {} |
| 89 | virtual ~exception() throw(); |
| 90 | virtual const char* what() const throw(); |
| 91 | }; |
| 92 | |
| 93 | class _LIBCPP_EXCEPTION_ABI bad_exception |
| 94 | : public exception |
| 95 | { |
| 96 | public: |
| 97 | _LIBCPP_INLINE_VISIBILITY bad_exception() throw() {} |
| 98 | virtual ~bad_exception() throw(); |
| 99 | virtual const char* what() const throw(); |
| 100 | }; |
| 101 | |
| 102 | typedef void (*unexpected_handler)(); |
| 103 | _LIBCPP_VISIBLE unexpected_handler set_unexpected(unexpected_handler) throw(); |
| 104 | _LIBCPP_VISIBLE void unexpected(); |
| 105 | |
| 106 | typedef void (*terminate_handler)(); |
| 107 | _LIBCPP_VISIBLE terminate_handler set_terminate(terminate_handler) throw(); |
| 108 | _LIBCPP_VISIBLE void terminate() __attribute__((__noreturn__)); |
| 109 | |
| 110 | _LIBCPP_VISIBLE bool uncaught_exception() throw(); |
| 111 | |
| 112 | class exception_ptr; |
| 113 | |
| 114 | exception_ptr current_exception(); |
| 115 | void rethrow_exception(exception_ptr); // noreturn |
| 116 | |
| 117 | class exception_ptr |
| 118 | { |
| 119 | void* __ptr_; |
| 120 | public: |
| 121 | exception_ptr() : __ptr_() {} |
| 122 | exception_ptr(nullptr_t) : __ptr_() {} |
| 123 | exception_ptr(const exception_ptr&); |
| 124 | exception_ptr& operator=(const exception_ptr&); |
| 125 | ~exception_ptr(); |
| 126 | |
| 127 | // explicit |
| 128 | operator bool() const {return __ptr_ != nullptr;} |
| 129 | |
| 130 | friend bool operator==(const exception_ptr& __x, const exception_ptr& __y) |
| 131 | {return __x.__ptr_ == __y.__ptr_;} |
| 132 | friend bool operator!=(const exception_ptr& __x, const exception_ptr& __y) |
| 133 | {return !(__x == __y);} |
| 134 | |
| 135 | friend exception_ptr current_exception(); |
| 136 | friend void rethrow_exception(exception_ptr); // noreturn |
| 137 | }; |
| 138 | |
| 139 | template<class _E> |
| 140 | exception_ptr |
| 141 | make_exception_ptr(_E __e) |
| 142 | { |
| 143 | try |
| 144 | { |
| 145 | throw __e; |
| 146 | } |
| 147 | catch (...) |
| 148 | { |
| 149 | return current_exception(); |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | } // std |
| 154 | |
| 155 | #endif // _LIBCPP_EXCEPTION |