2009-09-28 Jerry DeLisle <jvdelisle@gcc.gnu.org>
[official-gcc.git] / libstdc++-v3 / libsupc++ / exception_ptr.h
blob9192a2244e74917fc1f06b82e1a4c7973d797cb4
1 // Exception Handling support header (exception_ptr class) for -*- C++ -*-
3 // Copyright (C) 2008, 2009 Free Software Foundation
4 //
5 // This file is part of GCC.
6 //
7 // GCC is free software; you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by
9 // the Free Software Foundation; either version 3, or (at your option)
10 // any later version.
11 //
12 // GCC is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
16 //
17 // Under Section 7 of GPL version 3, you are granted additional
18 // permissions described in the GCC Runtime Library Exception, version
19 // 3.1, as published by the Free Software Foundation.
21 // You should have received a copy of the GNU General Public License and
22 // a copy of the GCC Runtime Library Exception along with this program;
23 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 // <http://www.gnu.org/licenses/>.
26 /** @file exception_ptr.h
27 * This is an internal header file, included by other headers and the
28 * implementation. You should not attempt to use it directly.
31 #ifndef _EXCEPTION_PTR_H
32 #define _EXCEPTION_PTR_H
34 #pragma GCC visibility push(default)
36 #include <bits/c++config.h>
37 #include <exception_defines.h>
39 #if !defined(_GLIBCXX_ATOMIC_BUILTINS_4)
40 # error This platform does not support exception propagation.
41 #endif
43 extern "C++" {
45 namespace std
47 /**
48 * @addtogroup exceptions
49 * @{
52 // Hide the free operators from other types
53 namespace __exception_ptr
55 /**
56 * @brief An opaque pointer to an arbitrary exception.
58 class exception_ptr;
61 using __exception_ptr::exception_ptr;
63 /** Obtain an %exception_ptr to the currently handled exception. If there
64 * is none, or the currently handled exception is foreign, return the null
65 * value.
67 exception_ptr current_exception() throw();
69 /// Throw the object pointed to by the %exception_ptr.
70 void rethrow_exception(exception_ptr) __attribute__ ((__noreturn__));
72 /// Obtain an %exception_ptr pointing to a copy of the supplied object.
73 template<typename _Ex>
74 exception_ptr
75 copy_exception(_Ex __ex) throw();
77 namespace __exception_ptr
79 bool
80 operator==(const exception_ptr&, const exception_ptr&)
81 throw() __attribute__ ((__pure__));
83 bool
84 operator!=(const exception_ptr&, const exception_ptr&)
85 throw() __attribute__ ((__pure__));
87 class exception_ptr
89 void* _M_exception_object;
91 explicit exception_ptr(void* __e) throw();
93 void _M_addref() throw();
94 void _M_release() throw();
96 void *_M_get() const throw() __attribute__ ((__pure__));
98 void _M_safe_bool_dummy() throw() __attribute__ ((__const__));
100 friend exception_ptr std::current_exception() throw();
101 friend void std::rethrow_exception(exception_ptr);
103 public:
104 exception_ptr() throw();
106 typedef void (exception_ptr::*__safe_bool)();
108 // For construction from nullptr or 0.
109 exception_ptr(__safe_bool) throw();
111 exception_ptr(const exception_ptr&) throw();
113 #ifdef __GXX_EXPERIMENTAL_CXX0X__
114 exception_ptr(exception_ptr&& __o) throw()
115 : _M_exception_object(__o._M_exception_object)
116 { __o._M_exception_object = 0; }
117 #endif
119 exception_ptr&
120 operator=(const exception_ptr&) throw();
122 #ifdef __GXX_EXPERIMENTAL_CXX0X__
123 exception_ptr&
124 operator=(exception_ptr&& __o) throw()
126 exception_ptr(static_cast<exception_ptr&&>(__o)).swap(*this);
127 return *this;
129 #endif
131 ~exception_ptr() throw();
133 void
134 swap(exception_ptr&) throw();
136 #ifdef _GLIBCXX_EH_PTR_COMPAT
137 // Retained for compatibility with CXXABI_1.3.
138 bool operator!() const throw() __attribute__ ((__pure__));
139 operator __safe_bool() const throw();
140 #endif
142 friend bool
143 operator==(const exception_ptr&, const exception_ptr&)
144 throw() __attribute__ ((__pure__));
146 const type_info*
147 __cxa_exception_type() const throw() __attribute__ ((__pure__));
150 } // namespace __exception_ptr
153 template<typename _Ex>
154 exception_ptr
155 copy_exception(_Ex __ex) throw()
157 __try
159 #ifdef __EXCEPTIONS
160 throw __ex;
161 #endif
163 __catch(...)
165 return current_exception();
169 // @} group exceptions
170 } // namespace std
172 } // extern "C++"
174 #pragma GCC visibility pop
176 #endif