Consistency in namespace-closing comments
[folly.git] / folly / ExceptionWrapper.h
1 /*
2  * Copyright 2017-present Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 /*
17  * Author: Eric Niebler <eniebler@fb.com>
18  */
19
20 #pragma once
21
22 #include <cassert>
23 #include <cstdint>
24 #include <exception>
25 #include <iosfwd>
26 #include <memory>
27 #include <new>
28 #include <type_traits>
29 #include <typeinfo>
30 #include <utility>
31
32 #include <folly/Assume.h>
33 #include <folly/CPortability.h>
34 #include <folly/Demangle.h>
35 #include <folly/ExceptionString.h>
36 #include <folly/FBString.h>
37 #include <folly/Portability.h>
38 #include <folly/Traits.h>
39 #include <folly/Utility.h>
40
41 #ifdef __GNUC__
42 #pragma GCC diagnostic push
43 #pragma GCC diagnostic ignored "-Wpragmas"
44 #pragma GCC diagnostic ignored "-Wpotentially-evaluated-expression"
45 // GCC gets confused about lambda scopes and issues shadow-local warnings for
46 // parameters in totally different functions.
47 FOLLY_GCC_DISABLE_NEW_SHADOW_WARNINGS
48 #endif
49
50 #define FOLLY_EXCEPTION_WRAPPER_H_INCLUDED
51
52 namespace folly {
53
54 #define FOLLY_REQUIRES_DEF(...) \
55   _t<std::enable_if<static_cast<bool>(__VA_ARGS__), long>>
56
57 #define FOLLY_REQUIRES(...) FOLLY_REQUIRES_DEF(__VA_ARGS__) = __LINE__
58
59 namespace exception_wrapper_detail {
60
61 template <template <class> class T, class... As>
62 using AllOf = StrictConjunction<T<As>...>;
63
64 template <bool If, class T>
65 using AddConstIf = _t<std::conditional<If, const T, T>>;
66
67 template <class Fn, class A>
68 FOLLY_ALWAYS_INLINE FOLLY_ATTR_VISIBILITY_HIDDEN
69 auto fold(Fn&&, A&& a) {
70   return static_cast<A&&>(a);
71 }
72
73 template <class Fn, class A, class B, class... Bs>
74 FOLLY_ALWAYS_INLINE FOLLY_ATTR_VISIBILITY_HIDDEN
75 auto fold(Fn&& fn, A&& a, B&& b, Bs&&... bs) {
76   return fold(
77       // This looks like a use of fn after a move of fn, but in reality, this is
78       // just a cast and not a move. That's because regardless of which fold
79       // overload is selected, fn gets bound to a &&. Had fold taken fn by value
80       // there would indeed be a problem here.
81       static_cast<Fn&&>(fn),
82       static_cast<Fn&&>(fn)(static_cast<A&&>(a), static_cast<B&&>(b)),
83       static_cast<Bs&&>(bs)...);
84 }
85
86 } // namespace exception_wrapper_detail
87
88 //! Throwing exceptions can be a convenient way to handle errors. Storing
89 //! exceptions in an `exception_ptr` makes it easy to handle exceptions in a
90 //! different thread or at a later time. `exception_ptr` can also be used in a
91 //! very generic result/exception wrapper.
92 //!
93 //! However, there are some issues with throwing exceptions and
94 //! `std::exception_ptr`. These issues revolve around `throw` being expensive,
95 //! particularly in a multithreaded environment (see
96 //! ExceptionWrapperBenchmark.cpp).
97 //!
98 //! Imagine we have a library that has an API which returns a result/exception
99 //! wrapper. Let's consider some approaches for implementing this wrapper.
100 //! First, we could store a `std::exception`. This approach loses the derived
101 //! exception type, which can make exception handling more difficult for users
102 //! that prefer rethrowing the exception. We could use a `folly::dynamic` for
103 //! every possible type of exception. This is not very flexible - adding new
104 //! types of exceptions requires a change to the result/exception wrapper. We
105 //! could use an `exception_ptr`. However, constructing an `exception_ptr` as
106 //! well as accessing the error requires a call to throw. That means that there
107 //! will be two calls to throw in order to process the exception. For
108 //! performance sensitive applications, this may be unacceptable.
109 //!
110 //! `exception_wrapper` is designed to handle exception management for both
111 //! convenience and high performance use cases. `make_exception_wrapper` is
112 //! templated on derived type, allowing us to rethrow the exception properly for
113 //! users that prefer convenience. These explicitly named exception types can
114 //! therefore be handled without any peformance penalty. `exception_wrapper` is
115 //! also flexible enough to accept any type. If a caught exception is not of an
116 //! explicitly named type, then `std::exception_ptr` is used to preserve the
117 //! exception state. For performance sensitive applications, the accessor
118 //! methods can test or extract a pointer to a specific exception type with very
119 //! little overhead.
120 //!
121 //! \par Example usage:
122 //! \par
123 //! \code
124 //! exception_wrapper globalExceptionWrapper;
125 //!
126 //! // Thread1
127 //! void doSomethingCrazy() {
128 //!   int rc = doSomethingCrazyWithLameReturnCodes();
129 //!   if (rc == NAILED_IT) {
130 //!     globalExceptionWrapper = exception_wrapper();
131 //!   } else if (rc == FACE_PLANT) {
132 //!     globalExceptionWrapper = make_exception_wrapper<FacePlantException>();
133 //!   } else if (rc == FAIL_WHALE) {
134 //!     globalExceptionWrapper = make_exception_wrapper<FailWhaleException>();
135 //!   }
136 //! }
137 //!
138 //! // Thread2: Exceptions are ok!
139 //! void processResult() {
140 //!   try {
141 //!     globalExceptionWrapper.throw_exception();
142 //!   } catch (const FacePlantException& e) {
143 //!     LOG(ERROR) << "FACEPLANT!";
144 //!   } catch (const FailWhaleException& e) {
145 //!     LOG(ERROR) << "FAILWHALE!";
146 //!   }
147 //! }
148 //!
149 //! // Thread2: Exceptions are bad!
150 //! void processResult() {
151 //!   globalExceptionWrapper.handle(
152 //!       [&](FacePlantException& faceplant) {
153 //!         LOG(ERROR) << "FACEPLANT";
154 //!       },
155 //!       [&](FailWhaleException& failwhale) {
156 //!         LOG(ERROR) << "FAILWHALE!";
157 //!       },
158 //!       [](...) {
159 //!         LOG(FATAL) << "Unrecognized exception";
160 //!       });
161 //! }
162 //! \endcode
163 class exception_wrapper final {
164  private:
165   struct AnyException : std::exception {
166     std::type_info const* typeinfo_;
167     template <class T>
168     /* implicit */ AnyException(T&& t) noexcept : typeinfo_(&typeid(t)) {}
169   };
170
171   template <class Fn>
172   struct arg_type_;
173   template <class Fn>
174   using arg_type = _t<arg_type_<Fn>>;
175
176   // exception_wrapper is implemented as a simple variant over four
177   // different representations:
178   //  0. Empty, no exception.
179   //  1. An small object stored in-situ.
180   //  2. A larger object stored on the heap and referenced with a
181   //     std::shared_ptr.
182   //  3. A std::exception_ptr, together with either:
183   //       a. A pointer to the referenced std::exception object, or
184   //       b. A pointer to a std::type_info object for the referenced exception,
185   //          or for an unspecified type if the type is unknown.
186   // This is accomplished with the help of a union and a pointer to a hand-
187   // rolled virtual table. This virtual table contains pointers to functions
188   // that know which field of the union is active and do the proper action.
189   // The class invariant ensures that the vtable ptr and the union stay in sync.
190   struct VTable {
191     void (*copy_)(exception_wrapper const*, exception_wrapper*);
192     void (*move_)(exception_wrapper*, exception_wrapper*);
193     void (*delete_)(exception_wrapper*);
194     void (*throw_)(exception_wrapper const*);
195     std::type_info const* (*type_)(exception_wrapper const*);
196     std::exception const* (*get_exception_)(exception_wrapper const*);
197     exception_wrapper (*get_exception_ptr_)(exception_wrapper const*);
198   };
199
200   [[noreturn]] static void onNoExceptionError(char const* name);
201
202   template <class Ret, class... Args>
203   static Ret noop_(Args...);
204
205   static std::type_info const* uninit_type_(exception_wrapper const*);
206
207   static VTable const uninit_;
208
209   template <class Ex>
210   using IsStdException = std::is_base_of<std::exception, _t<std::decay<Ex>>>;
211   template <bool B, class T>
212   using AddConstIf = exception_wrapper_detail::AddConstIf<B, T>;
213   template <class CatchFn>
214   using IsCatchAll =
215       std::is_same<arg_type<_t<std::decay<CatchFn>>>, AnyException>;
216
217   struct Unknown {};
218
219   // Sadly, with the gcc-4.9 platform, std::logic_error and std::runtime_error
220   // do not fit here. They also don't have noexcept copy-ctors, so the internal
221   // storage wouldn't be used anyway. For the gcc-5 platform, both logic_error
222   // and runtime_error can be safely stored internally.
223   struct Buffer {
224     using Storage =
225         _t<std::aligned_storage<2 * sizeof(void*), alignof(std::exception)>>;
226     Storage buff_;
227
228     Buffer() : buff_{} {}
229
230     template <class Ex, typename... As>
231     Buffer(in_place_type_t<Ex>, As&&... as_);
232     template <class Ex>
233     Ex& as() noexcept;
234     template <class Ex>
235     Ex const& as() const noexcept;
236   };
237
238   enum class Placement { kInSitu, kOnHeap };
239   template <class T>
240   using PlacementOf = std::integral_constant<
241       Placement,
242       sizeof(T) <= sizeof(Buffer::Storage) &&
243               alignof(T) <= alignof(Buffer::Storage) &&
244               noexcept(T(std::declval<T&&>()))
245           ? Placement::kInSitu
246           : Placement::kOnHeap>;
247
248   using InSituTag = std::integral_constant<Placement, Placement::kInSitu>;
249   using OnHeapTag = std::integral_constant<Placement, Placement::kOnHeap>;
250
251   static std::exception const* as_exception_or_null_(std::exception const& ex);
252   static std::exception const* as_exception_or_null_(AnyException);
253
254   struct ExceptionPtr {
255     std::exception_ptr ptr_;
256     std::uintptr_t exception_or_type_; // odd for type_info
257     static_assert(
258         1 < alignof(std::exception) && 1 < alignof(std::type_info),
259         "Surprise! std::exception and std::type_info don't have alignment "
260         "greater than one. as_int_ below will not work!");
261
262     static std::uintptr_t as_int_(
263         std::exception_ptr const& ptr,
264         std::exception const& e);
265     static std::uintptr_t as_int_(
266         std::exception_ptr const& ptr,
267         AnyException e);
268     bool has_exception_() const;
269     std::exception const* as_exception_() const;
270     std::type_info const* as_type_() const;
271     static void copy_(exception_wrapper const* from, exception_wrapper* to);
272     static void move_(exception_wrapper* from, exception_wrapper* to);
273     static void delete_(exception_wrapper* that);
274     [[noreturn]] static void throw_(exception_wrapper const* that);
275     static std::type_info const* type_(exception_wrapper const* that);
276     static std::exception const* get_exception_(exception_wrapper const* that);
277     static exception_wrapper get_exception_ptr_(exception_wrapper const* that);
278     static VTable const ops_;
279   };
280
281   template <class Ex>
282   struct InPlace {
283     static void copy_(exception_wrapper const* from, exception_wrapper* to);
284     static void move_(exception_wrapper* from, exception_wrapper* to);
285     static void delete_(exception_wrapper* that);
286     [[noreturn]] static void throw_(exception_wrapper const* that);
287     static std::type_info const* type_(exception_wrapper const*);
288     static std::exception const* get_exception_(exception_wrapper const* that);
289     static exception_wrapper get_exception_ptr_(exception_wrapper const* that);
290     static constexpr VTable const ops_{copy_,
291                                        move_,
292                                        delete_,
293                                        throw_,
294                                        type_,
295                                        get_exception_,
296                                        get_exception_ptr_};
297   };
298
299   struct SharedPtr {
300     struct Base {
301       std::type_info const* info_;
302       Base() = default;
303       explicit Base(std::type_info const& info) : info_(&info) {}
304       virtual ~Base() {}
305       virtual void throw_() const = 0;
306       virtual std::exception const* get_exception_() const noexcept = 0;
307       virtual exception_wrapper get_exception_ptr_() const noexcept = 0;
308     };
309     template <class Ex>
310     struct Impl final : public Base {
311       Ex ex_;
312       Impl() = default;
313       template <typename... As>
314       explicit Impl(As&&... as)
315           : Base{typeid(Ex)}, ex_(std::forward<As>(as)...) {}
316       [[noreturn]] void throw_() const override;
317       std::exception const* get_exception_() const noexcept override;
318       exception_wrapper get_exception_ptr_() const noexcept override;
319     };
320     std::shared_ptr<Base> ptr_;
321
322     static void copy_(exception_wrapper const* from, exception_wrapper* to);
323     static void move_(exception_wrapper* from, exception_wrapper* to);
324     static void delete_(exception_wrapper* that);
325     [[noreturn]] static void throw_(exception_wrapper const* that);
326     static std::type_info const* type_(exception_wrapper const* that);
327     static std::exception const* get_exception_(exception_wrapper const* that);
328     static exception_wrapper get_exception_ptr_(exception_wrapper const* that);
329     static VTable const ops_;
330   };
331
332   union {
333     Buffer buff_{};
334     ExceptionPtr eptr_;
335     SharedPtr sptr_;
336   };
337   VTable const* vptr_{&uninit_};
338
339   template <class Ex, typename... As>
340   exception_wrapper(OnHeapTag, in_place_type_t<Ex>, As&&... as);
341
342   template <class Ex, typename... As>
343   exception_wrapper(InSituTag, in_place_type_t<Ex>, As&&... as);
344
345   template <class T>
346   struct IsRegularExceptionType
347       : StrictConjunction<
348             std::is_copy_constructible<T>,
349             Negation<std::is_base_of<exception_wrapper, T>>,
350             Negation<std::is_abstract<T>>> {};
351
352   template <class CatchFn, bool IsConst = false>
353   struct ExceptionTypeOf;
354
355   template <bool IsConst>
356   struct HandleReduce;
357
358   template <bool IsConst>
359   struct HandleStdExceptReduce;
360
361   template <class This, class... CatchFns>
362   static void handle_(std::false_type, This& this_, CatchFns&... fns);
363
364   template <class This, class... CatchFns>
365   static void handle_(std::true_type, This& this_, CatchFns&... fns);
366
367   template <class Ex, class This, class Fn>
368   static bool with_exception_(This& this_, Fn fn_);
369
370  public:
371   //! Default-constructs an empty `exception_wrapper`
372   //! \post `type() == none()`
373   exception_wrapper() noexcept {}
374
375   //! Move-constructs an `exception_wrapper`
376   //! \post `*this` contains the value of `that` prior to the move
377   //! \post `that.type() == none()`
378   exception_wrapper(exception_wrapper&& that) noexcept;
379
380   //! Copy-constructs an `exception_wrapper`
381   //! \post `*this` contains a copy of `that`, and `that` is unmodified
382   //! \post `type() == that.type()`
383   exception_wrapper(exception_wrapper const& that);
384
385   //! Move-assigns an `exception_wrapper`
386   //! \pre `this != &that`
387   //! \post `*this` contains the value of `that` prior to the move
388   //! \post `that.type() == none()`
389   exception_wrapper& operator=(exception_wrapper&& that) noexcept;
390
391   //! Copy-assigns an `exception_wrapper`
392   //! \post `*this` contains a copy of `that`, and `that` is unmodified
393   //! \post `type() == that.type()`
394   exception_wrapper& operator=(exception_wrapper const& that);
395
396   ~exception_wrapper();
397
398   //! \pre `ptr` is empty, or it holds a reference to an exception that is not
399   //!     derived from `std::exception`.
400   //! \post `!ptr || bool(*this)`
401   //! \post `hasThrownException() == true`
402   //! \post `type() == unknown()`
403   explicit exception_wrapper(std::exception_ptr ptr) noexcept;
404
405   //! \pre `ptr` holds a reference to `ex`.
406   //! \post `hasThrownException() == true`
407   //! \post `bool(*this)`
408   //! \post `type() == typeid(ex)`
409   template <class Ex>
410   exception_wrapper(std::exception_ptr ptr, Ex& ex);
411
412   //! \pre `typeid(ex) == typeid(typename decay<Ex>::type)`
413   //! \post `bool(*this)`
414   //! \post `hasThrownException() == false`
415   //! \post `type() == typeid(ex)`
416   //! \note Exceptions of types derived from `std::exception` can be implicitly
417   //!     converted to an `exception_wrapper`.
418   template <
419       class Ex,
420       class Ex_ = _t<std::decay<Ex>>,
421       FOLLY_REQUIRES(
422           Conjunction<IsStdException<Ex_>, IsRegularExceptionType<Ex_>>::value)>
423   /* implicit */ exception_wrapper(Ex&& ex);
424
425   //! \pre `typeid(ex) == typeid(typename decay<Ex>::type)`
426   //! \post `bool(*this)`
427   //! \post `hasThrownException() == false`
428   //! \post `type() == typeid(ex)`
429   //! \note Exceptions of types not derived from `std::exception` can still be
430   //!     used to construct an `exception_wrapper`, but you must specify
431   //!     `folly::in_place` as the first parameter.
432   template <
433       class Ex,
434       class Ex_ = _t<std::decay<Ex>>,
435       FOLLY_REQUIRES(IsRegularExceptionType<Ex_>::value)>
436   exception_wrapper(in_place_t, Ex&& ex);
437
438   template <
439       class Ex,
440       typename... As,
441       FOLLY_REQUIRES(IsRegularExceptionType<Ex>::value)>
442   exception_wrapper(in_place_type_t<Ex>, As&&... as);
443
444   //! Swaps the value of `*this` with the value of `that`
445   void swap(exception_wrapper& that) noexcept;
446
447   //! \return `true` if `*this` is holding an exception.
448   explicit operator bool() const noexcept;
449
450   //! \return `!bool(*this)`
451   bool operator!() const noexcept;
452
453   //! Make this `exception_wrapper` empty
454   //! \post `!*this`
455   void reset();
456
457   //! \return `true` if this `exception_wrapper` holds a reference to an
458   //!     exception that was thrown (i.e., if it was constructed with
459   //!     a `std::exception_ptr`, or if `to_exception_ptr()` was called on a
460   //!     (non-const) reference to `*this`).
461   bool has_exception_ptr() const noexcept;
462
463   //! \return a pointer to the `std::exception` held by `*this`, if it holds
464   //!     one; otherwise, returns `nullptr`.
465   //! \note This function does not mutate the `exception_wrapper` object.
466   //! \note This function never causes an exception to be thrown.
467   std::exception* get_exception() noexcept;
468   //! \overload
469   std::exception const* get_exception() const noexcept;
470
471   //! \returns a pointer to the `Ex` held by `*this`, if it holds an object
472   //!     whose type `From` permits `std::is_convertible<From*, Ex*>`;
473   //!     otherwise, returns `nullptr`.
474   //! \note This function does not mutate the `exception_wrapper` object.
475   //! \note This function may cause an exception to be thrown and immediately
476   //!     caught internally, affecting runtime performance.
477   template <typename Ex>
478   Ex* get_exception() noexcept;
479   //! \overload
480   template <typename Ex>
481   Ex const* get_exception() const noexcept;
482
483   //! \return A `std::exception_ptr` that references either the exception held
484   //!     by `*this`, or a copy of same.
485   //! \note This function may need to throw an exception to complete the action.
486   //! \note The non-const overload of this function mutates `*this` to cache the
487   //!     computed `std::exception_ptr`; that is, this function may cause
488   //!     `has_exception_ptr()` to change from `false` to `true`.
489   std::exception_ptr const& to_exception_ptr() noexcept;
490   //! \overload
491   std::exception_ptr to_exception_ptr() const noexcept;
492
493   //! \return the `typeid` of an unspecified type used by
494   //!     `exception_wrapper::type()` to denote an empty `exception_wrapper`.
495   static std::type_info const& none() noexcept;
496   //! \return the `typeid` of an unspecified type used by
497   //!     `exception_wrapper::type()` to denote an `exception_wrapper` that
498   //!     holds an exception of unknown type.
499   static std::type_info const& unknown() noexcept;
500
501   //! Returns the `typeid` of the wrapped exception object. If there is no
502   //!     wrapped exception object, returns `exception_wrapper::none()`. If
503   //!     this instance wraps an exception of unknown type not derived from
504   //!     `std::exception`, returns `exception_wrapper::unknown()`.
505   std::type_info const& type() const noexcept;
506
507   //! \return If `get_exception() != nullptr`, `class_name() + ": " +
508   //!     get_exception()->what()`; otherwise, `class_name()`.
509   folly::fbstring what() const;
510
511   //! \return If `!*this`, the empty string; otherwise, if
512   //!     `type() == unknown()`, the string `"<unknown exception>"`; otherwise,
513   //!     the result of `type().name()` after demangling.
514   folly::fbstring class_name() const;
515
516   //! \tparam Ex The expression type to check for compatibility with.
517   //! \return `true` if and only if `*this` wraps an exception that would be
518   //!     caught with a `catch(Ex const&)` clause.
519   //! \note If `*this` is empty, this function returns `false`.
520   template <class Ex>
521   bool is_compatible_with() const noexcept;
522
523   //! \pre `bool(*this)`
524   //! Throws the wrapped expression.
525   [[noreturn]] void throw_exception() const;
526
527   //! Call `fn` with the wrapped exception (if any), if `fn` can accept it.
528   //! \par Example
529   //! \code
530   //! exception_wrapper ew{std::runtime_error("goodbye cruel world")};
531   //!
532   //! assert( ew.with_exception([](std::runtime_error& e){/*...*/}) );
533   //!
534   //! assert( !ew.with_exception([](int& e){/*...*/}) );
535   //!
536   //! assert( !exception_wrapper{}.with_exception([](int& e){/*...*/}) );
537   //! \endcode
538   //! \tparam Ex Optionally, the type of the exception that `fn` accepts.
539   //! \tparam Fn The type of a monomophic function object.
540   //! \param fn A function object to call with the wrapped exception
541   //! \return `true` if and only if `fn` was called.
542   //! \note Optionally, you may explicitly specify the type of the exception
543   //!     that `fn` expects, as in
544   //! \code
545   //! ew.with_exception<std::runtime_error>([](auto&& e) { /*...*/; });
546   //! \endcode
547   //! \note The handler may or may not be invoked with an active exception.
548   //!     **Do not try to rethrow the exception with `throw;` from within your
549   //!     handler -- that is, a throw expression with no operand.** This may
550   //!     cause your process to terminate. (It is perfectly ok to throw from
551   //!     a handler so long as you specify the exception to throw, as in
552   //!     `throw e;`.)
553   template <class Ex = void const, class Fn>
554   bool with_exception(Fn fn);
555   //! \overload
556   template <class Ex = void const, class Fn>
557   bool with_exception(Fn fn) const;
558
559   //! Handle the wrapped expression as if with a series of `catch` clauses,
560   //!     propagating the exception if no handler matches.
561   //! \par Example
562   //! \code
563   //! exception_wrapper ew{std::runtime_error("goodbye cruel world")};
564   //!
565   //! ew.handle(
566   //!   [&](std::logic_error const& e) {
567   //!      LOG(DFATAL) << "ruh roh";
568   //!      ew.throw_exception(); // rethrow the active exception without
569   //!                           // slicing it. Will not be caught by other
570   //!                           // handlers in this call.
571   //!   },
572   //!   [&](std::exception const& e) {
573   //!      LOG(ERROR) << ew.what();
574   //!   });
575   //! \endcode
576   //! In the above example, any exception _not_ derived from `std::exception`
577   //!     will be propagated. To specify a catch-all clause, pass a lambda that
578   //!     takes a C-style elipses, as in:
579   //! \code
580   //! ew.handle(/*...* /, [](...) { /* handle unknown exception */ } )
581   //! \endcode
582   //! \pre `!*this`
583   //! \tparam CatchFns... A pack of unary monomorphic function object types.
584   //! \param fns A pack of unary monomorphic function objects to be treated as
585   //!     an ordered list of potential exception handlers.
586   //! \note The handlers may or may not be invoked with an active exception.
587   //!     **Do not try to rethrow the exception with `throw;` from within your
588   //!     handler -- that is, a throw expression with no operand.** This may
589   //!     cause your process to terminate. (It is perfectly ok to throw from
590   //!     a handler so long as you specify the exception to throw, as in
591   //!     `throw e;`.)
592   template <class... CatchFns>
593   void handle(CatchFns... fns);
594   //! \overload
595   template <class... CatchFns>
596   void handle(CatchFns... fns) const;
597 };
598
599 template <class Ex>
600 constexpr exception_wrapper::VTable exception_wrapper::InPlace<Ex>::ops_;
601
602 /**
603  * \return An `exception_wrapper` that wraps an instance of type `Ex`
604  *     that has been constructed with arguments `std::forward<As>(as)...`.
605  */
606 template <class Ex, typename... As>
607 exception_wrapper make_exception_wrapper(As&&... as) {
608   return exception_wrapper{in_place_type<Ex>, std::forward<As>(as)...};
609 }
610
611 /**
612  * Inserts `ew.what()` into the ostream `sout`.
613  * \return `sout`
614  */
615 template <class Ch>
616 std::basic_ostream<Ch>& operator<<(
617     std::basic_ostream<Ch>& sout,
618     exception_wrapper const& ew) {
619   return sout << ew.what();
620 }
621
622 /**
623  * Swaps the value of `a` with the value of `b`.
624  */
625 inline void swap(exception_wrapper& a, exception_wrapper& b) noexcept {
626   a.swap(b);
627 }
628
629 // For consistency with exceptionStr() functions in ExceptionString.h
630 fbstring exceptionStr(exception_wrapper const& ew);
631
632 namespace detail {
633 template <typename F>
634 inline exception_wrapper try_and_catch_(F&& f) {
635   return (f(), exception_wrapper());
636 }
637
638 template <typename F, typename Ex, typename... Exs>
639 inline exception_wrapper try_and_catch_(F&& f) {
640   try {
641     return try_and_catch_<F, Exs...>(std::forward<F>(f));
642   } catch (Ex& ex) {
643     return exception_wrapper(std::current_exception(), ex);
644   }
645 }
646 } // namespace detail
647
648 //! `try_and_catch` is a simple replacement for `try {} catch(){}`` that allows
649 //! you to specify which derived exceptions you would like to catch and store in
650 //! an `exception_wrapper`.
651 //!
652 //! Because we cannot build an equivalent of `std::current_exception()`, we need
653 //! to catch every derived exception that we are interested in catching.
654 //!
655 //! Exceptions should be listed in the reverse order that you would write your
656 //! catch statements (that is, `std::exception&` should be first).
657 //!
658 //! \par Example Usage:
659 //! \code
660 //! // This catches my runtime_error and if I call throw_exception() on ew, it
661 //! // will throw a runtime_error
662 //! auto ew = folly::try_and_catch<std::exception, std::runtime_error>([=]() {
663 //!   if (badThingHappens()) {
664 //!     throw std::runtime_error("ZOMG!");
665 //!   }
666 //! });
667 //!
668 //! // This will catch the exception and if I call throw_exception() on ew, it
669 //! // will throw a std::exception
670 //! auto ew = folly::try_and_catch<std::exception, std::runtime_error>([=]() {
671 //!   if (badThingHappens()) {
672 //!     throw std::exception();
673 //!   }
674 //! });
675 //!
676 //! // This will not catch the exception and it will be thrown.
677 //! auto ew = folly::try_and_catch<std::runtime_error>([=]() {
678 //!   if (badThingHappens()) {
679 //!     throw std::exception();
680 //!   }
681 //! });
682 //! \endcode
683 template <typename... Exceptions, typename F>
684 exception_wrapper try_and_catch(F&& fn) {
685   return detail::try_and_catch_<F, Exceptions...>(std::forward<F>(fn));
686 }
687 } // namespace folly
688
689 #include <folly/ExceptionWrapper-inl.h>
690
691 #undef FOLLY_REQUIRES
692 #undef FOLLY_REQUIRES_DEF
693 #ifdef __GNUC__
694 #pragma GCC diagnostic pop
695 #endif