blob: d8b8cce0254b2a5068df17825bbf3549d25590c4 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:161// -*- C++ -*-
2//===-------------------------- exception ---------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:014// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:165//
Howard Hinnantb64f8b02010-11-16 22:09:026// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:168//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_EXCEPTION
12#define _LIBCPP_EXCEPTION
13
14/*
15 exception synopsis
16
17namespace std
18{
19
20class exception
21{
22public:
Howard Hinnanted569212011-05-26 18:23:5923 exception() noexcept;
24 exception(const exception&) noexcept;
25 exception& operator=(const exception&) noexcept;
26 virtual ~exception() noexcept;
27 virtual const char* what() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:1628};
29
30class bad_exception
31 : public exception
32{
33public:
Howard Hinnanted569212011-05-26 18:23:5934 bad_exception() noexcept;
35 bad_exception(const bad_exception&) noexcept;
36 bad_exception& operator=(const bad_exception&) noexcept;
37 virtual ~bad_exception() noexcept;
38 virtual const char* what() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:1639};
40
41typedef void (*unexpected_handler)();
Howard Hinnanted569212011-05-26 18:23:5942unexpected_handler set_unexpected(unexpected_handler f ) noexcept;
43unexpected_handler get_unexpected() noexcept;
44[[noreturn]] void unexpected();
Howard Hinnantbc8d3f92010-05-11 19:42:1645
46typedef void (*terminate_handler)();
Howard Hinnanted569212011-05-26 18:23:5947terminate_handler set_terminate(terminate_handler f ) noexcept;
48terminate_handler get_terminate() noexcept;
49[[noreturn]] void terminate() noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:1650
Marshall Clow8731c5d2015-06-02 15:33:3851bool uncaught_exception() noexcept;
52int uncaught_exceptions() noexcept; // C++17
Howard Hinnantbc8d3f92010-05-11 19:42:1653
54typedef unspecified exception_ptr;
55
Howard Hinnanted569212011-05-26 18:23:5956exception_ptr current_exception() noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:1657void rethrow_exception [[noreturn]] (exception_ptr p);
Howard Hinnanted569212011-05-26 18:23:5958template<class E> exception_ptr make_exception_ptr(E e) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:1659
60class nested_exception
61{
62public:
Howard Hinnanted569212011-05-26 18:23:5963 nested_exception() noexcept;
64 nested_exception(const nested_exception&) noexcept = default;
65 nested_exception& operator=(const nested_exception&) noexcept = default;
Howard Hinnantbc8d3f92010-05-11 19:42:1666 virtual ~nested_exception() = default;
67
68 // access functions
Howard Hinnanted569212011-05-26 18:23:5969 [[noreturn]] void rethrow_nested() const;
70 exception_ptr nested_ptr() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:1671};
72
Howard Hinnanted569212011-05-26 18:23:5973template <class T> [[noreturn]] void throw_with_nested(T&& t);
Howard Hinnantbc8d3f92010-05-11 19:42:1674template <class E> void rethrow_if_nested(const E& e);
75
76} // std
77
78*/
79
80#include <__config>
81#include <cstddef>
Eric Fiselier81b7f632016-12-03 03:22:1182#include <cstdlib>
Howard Hinnanted2c2912010-05-27 17:06:5283#include <type_traits>
Howard Hinnantbc8d3f92010-05-11 19:42:1684
Howard Hinnant08e17472011-10-17 20:05:1085#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:1686#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:1087#endif
Howard Hinnantbc8d3f92010-05-11 19:42:1688
89namespace std // purposefully not using versioning namespace
90{
91
92class _LIBCPP_EXCEPTION_ABI exception
93{
94public:
Howard Hinnanted569212011-05-26 18:23:5995 _LIBCPP_INLINE_VISIBILITY exception() _NOEXCEPT {}
96 virtual ~exception() _NOEXCEPT;
97 virtual const char* what() const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:1698};
99
100class _LIBCPP_EXCEPTION_ABI bad_exception
101 : public exception
102{
103public:
Howard Hinnanted569212011-05-26 18:23:59104 _LIBCPP_INLINE_VISIBILITY bad_exception() _NOEXCEPT {}
105 virtual ~bad_exception() _NOEXCEPT;
106 virtual const char* what() const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16107};
108
109typedef void (*unexpected_handler)();
Howard Hinnant83eade62013-03-06 23:30:19110_LIBCPP_FUNC_VIS unexpected_handler set_unexpected(unexpected_handler) _NOEXCEPT;
111_LIBCPP_FUNC_VIS unexpected_handler get_unexpected() _NOEXCEPT;
112_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void unexpected();
Howard Hinnantbc8d3f92010-05-11 19:42:16113
114typedef void (*terminate_handler)();
Howard Hinnant83eade62013-03-06 23:30:19115_LIBCPP_FUNC_VIS terminate_handler set_terminate(terminate_handler) _NOEXCEPT;
116_LIBCPP_FUNC_VIS terminate_handler get_terminate() _NOEXCEPT;
117_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void terminate() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16118
Howard Hinnant83eade62013-03-06 23:30:19119_LIBCPP_FUNC_VIS bool uncaught_exception() _NOEXCEPT;
Marshall Clow8731c5d2015-06-02 15:33:38120_LIBCPP_FUNC_VIS int uncaught_exceptions() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16121
Howard Hinnant83eade62013-03-06 23:30:19122class _LIBCPP_TYPE_VIS exception_ptr;
Howard Hinnantbc8d3f92010-05-11 19:42:16123
Howard Hinnant0f678bd2013-08-12 18:38:34124_LIBCPP_FUNC_VIS exception_ptr current_exception() _NOEXCEPT;
125_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(exception_ptr);
Howard Hinnantbc8d3f92010-05-11 19:42:16126
Howard Hinnant83eade62013-03-06 23:30:19127class _LIBCPP_TYPE_VIS exception_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16128{
129 void* __ptr_;
130public:
Howard Hinnanted569212011-05-26 18:23:59131 _LIBCPP_INLINE_VISIBILITY exception_ptr() _NOEXCEPT : __ptr_() {}
132 _LIBCPP_INLINE_VISIBILITY exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
133 exception_ptr(const exception_ptr&) _NOEXCEPT;
134 exception_ptr& operator=(const exception_ptr&) _NOEXCEPT;
135 ~exception_ptr() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16136
Howard Hinnant422a53f2010-09-21 21:28:23137 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant77861882012-02-21 21:46:43138 _LIBCPP_EXPLICIT
Howard Hinnanted569212011-05-26 18:23:59139 operator bool() const _NOEXCEPT {return __ptr_ != nullptr;}
Howard Hinnantbc8d3f92010-05-11 19:42:16140
Howard Hinnant422a53f2010-09-21 21:28:23141 friend _LIBCPP_INLINE_VISIBILITY
Howard Hinnanted569212011-05-26 18:23:59142 bool operator==(const exception_ptr& __x, const exception_ptr& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16143 {return __x.__ptr_ == __y.__ptr_;}
Howard Hinnant422a53f2010-09-21 21:28:23144 friend _LIBCPP_INLINE_VISIBILITY
Howard Hinnanted569212011-05-26 18:23:59145 bool operator!=(const exception_ptr& __x, const exception_ptr& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16146 {return !(__x == __y);}
147
Howard Hinnant0f678bd2013-08-12 18:38:34148 friend _LIBCPP_FUNC_VIS exception_ptr current_exception() _NOEXCEPT;
149 friend _LIBCPP_FUNC_VIS void rethrow_exception(exception_ptr);
Howard Hinnantbc8d3f92010-05-11 19:42:16150};
151
Howard Hinnant99968442011-11-29 18:15:50152template<class _Ep>
Howard Hinnantbc8d3f92010-05-11 19:42:16153exception_ptr
Howard Hinnant99968442011-11-29 18:15:50154make_exception_ptr(_Ep __e) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16155{
Howard Hinnantd4444702010-08-11 17:04:31156#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16157 try
158 {
159 throw __e;
160 }
161 catch (...)
162 {
163 return current_exception();
164 }
Eric Fiselier81b7f632016-12-03 03:22:11165#else
166 _VSTD::abort();
167#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16168}
169
Howard Hinnanted2c2912010-05-27 17:06:52170// nested_exception
171
172class _LIBCPP_EXCEPTION_ABI nested_exception
173{
174 exception_ptr __ptr_;
175public:
Howard Hinnanted569212011-05-26 18:23:59176 nested_exception() _NOEXCEPT;
177// nested_exception(const nested_exception&) noexcept = default;
178// nested_exception& operator=(const nested_exception&) noexcept = default;
179 virtual ~nested_exception() _NOEXCEPT;
Howard Hinnanted2c2912010-05-27 17:06:52180
181 // access functions
Richard Smith0405cc42012-07-26 02:04:22182 _LIBCPP_NORETURN void rethrow_nested() const;
Howard Hinnanted569212011-05-26 18:23:59183 _LIBCPP_INLINE_VISIBILITY exception_ptr nested_ptr() const _NOEXCEPT {return __ptr_;}
Howard Hinnanted2c2912010-05-27 17:06:52184};
185
186template <class _Tp>
187struct __nested
188 : public _Tp,
189 public nested_exception
190{
Howard Hinnant422a53f2010-09-21 21:28:23191 _LIBCPP_INLINE_VISIBILITY explicit __nested(const _Tp& __t) : _Tp(__t) {}
Howard Hinnanted2c2912010-05-27 17:06:52192};
193
194template <class _Tp>
Richard Smith0405cc42012-07-26 02:04:22195_LIBCPP_NORETURN
Howard Hinnant324bb032010-08-22 00:02:43196void
Howard Hinnant73d21a42010-09-04 23:28:19197#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant4b7a43d2011-05-26 17:07:32198throw_with_nested(_Tp&& __t, typename enable_if<
Howard Hinnanted2c2912010-05-27 17:06:52199 is_class<typename remove_reference<_Tp>::type>::value &&
200 !is_base_of<nested_exception, typename remove_reference<_Tp>::type>::value
Eric Fiselier3a0e4302015-06-13 07:08:02201 && !__libcpp_is_final<typename remove_reference<_Tp>::type>::value
Howard Hinnanted2c2912010-05-27 17:06:52202 >::type* = 0)
Howard Hinnant73d21a42010-09-04 23:28:19203#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnanted2c2912010-05-27 17:06:52204throw_with_nested (_Tp& __t, typename enable_if<
205 is_class<_Tp>::value && !is_base_of<nested_exception, _Tp>::value
206 >::type* = 0)
Howard Hinnant73d21a42010-09-04 23:28:19207#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnanted2c2912010-05-27 17:06:52208{
Howard Hinnantd4444702010-08-11 17:04:31209#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnant0949eed2011-06-30 21:18:19210 throw __nested<typename remove_reference<_Tp>::type>(_VSTD::forward<_Tp>(__t));
Howard Hinnantd4444702010-08-11 17:04:31211#endif
Howard Hinnanted2c2912010-05-27 17:06:52212}
213
214template <class _Tp>
Richard Smith0405cc42012-07-26 02:04:22215_LIBCPP_NORETURN
Howard Hinnant324bb032010-08-22 00:02:43216void
Howard Hinnant73d21a42010-09-04 23:28:19217#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant4b7a43d2011-05-26 17:07:32218throw_with_nested(_Tp&& __t, typename enable_if<
Howard Hinnanted2c2912010-05-27 17:06:52219 !is_class<typename remove_reference<_Tp>::type>::value ||
220 is_base_of<nested_exception, typename remove_reference<_Tp>::type>::value
Eric Fiselier3a0e4302015-06-13 07:08:02221 || __libcpp_is_final<typename remove_reference<_Tp>::type>::value
Howard Hinnanted2c2912010-05-27 17:06:52222 >::type* = 0)
Howard Hinnant73d21a42010-09-04 23:28:19223#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnanted2c2912010-05-27 17:06:52224throw_with_nested (_Tp& __t, typename enable_if<
225 !is_class<_Tp>::value || is_base_of<nested_exception, _Tp>::value
226 >::type* = 0)
Howard Hinnant73d21a42010-09-04 23:28:19227#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnanted2c2912010-05-27 17:06:52228{
Howard Hinnantd4444702010-08-11 17:04:31229#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnant0949eed2011-06-30 21:18:19230 throw _VSTD::forward<_Tp>(__t);
Howard Hinnantd4444702010-08-11 17:04:31231#endif
Howard Hinnanted2c2912010-05-27 17:06:52232}
233
Howard Hinnant99968442011-11-29 18:15:50234template <class _Ep>
Howard Hinnant422a53f2010-09-21 21:28:23235inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnanted2c2912010-05-27 17:06:52236void
Howard Hinnant99968442011-11-29 18:15:50237rethrow_if_nested(const _Ep& __e, typename enable_if<
238 is_polymorphic<_Ep>::value
Howard Hinnanted2c2912010-05-27 17:06:52239 >::type* = 0)
240{
Marshall Clowb6621c52015-12-14 18:01:56241 const nested_exception* __nep = dynamic_cast<const nested_exception*>(_VSTD::addressof(__e));
Howard Hinnant6bb9f582010-05-28 13:35:41242 if (__nep)
243 __nep->rethrow_nested();
Howard Hinnanted2c2912010-05-27 17:06:52244}
245
Howard Hinnant99968442011-11-29 18:15:50246template <class _Ep>
Howard Hinnant422a53f2010-09-21 21:28:23247inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnanted2c2912010-05-27 17:06:52248void
Howard Hinnantec3773c2011-12-01 20:21:04249rethrow_if_nested(const _Ep&, typename enable_if<
Howard Hinnant99968442011-11-29 18:15:50250 !is_polymorphic<_Ep>::value
Howard Hinnanted2c2912010-05-27 17:06:52251 >::type* = 0)
252{
253}
254
Howard Hinnantbc8d3f92010-05-11 19:42:16255} // std
256
Howard Hinnantbc8d3f92010-05-11 19:42:16257#endif // _LIBCPP_EXCEPTION