Use simpler tags for ctor dispatch in exception_wrapper
[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/CPortability.h>
33 #include <folly/Demangle.h>
34 #include <folly/ExceptionString.h>
35 #include <folly/FBString.h>
36 #include <folly/Portability.h>
37 #include <folly/Traits.h>
38 #include <folly/Utility.h>
39 #include <folly/lang/Assume.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   struct InSituTag {};
239   struct OnHeapTag {};
240
241   template <class T>
242   using PlacementOf = _t<std::conditional<
243       sizeof(T) <= sizeof(Buffer::Storage) &&
244           alignof(T) <= alignof(Buffer::Storage) &&
245           noexcept(T(std::declval<T&&>())),
246       InSituTag,
247       OnHeapTag>>;
248
249   static std::exception const* as_exception_or_null_(std::exception const& ex);
250   static std::exception const* as_exception_or_null_(AnyException);
251
252   struct ExceptionPtr {
253     std::exception_ptr ptr_;
254     std::uintptr_t exception_or_type_; // odd for type_info
255     static_assert(
256         1 < alignof(std::exception) && 1 < alignof(std::type_info),
257         "Surprise! std::exception and std::type_info don't have alignment "
258         "greater than one. as_int_ below will not work!");
259
260     static std::uintptr_t as_int_(
261         std::exception_ptr const& ptr,
262         std::exception const& e);
263     static std::uintptr_t as_int_(
264         std::exception_ptr const& ptr,
265         AnyException e);
266     bool has_exception_() const;
267     std::exception const* as_exception_() const;
268     std::type_info const* as_type_() const;
269     static void copy_(exception_wrapper const* from, exception_wrapper* to);
270     static void move_(exception_wrapper* from, exception_wrapper* to);
271     static void delete_(exception_wrapper* that);
272     [[noreturn]] static void throw_(exception_wrapper const* that);
273     static std::type_info const* type_(exception_wrapper const* that);
274     static std::exception const* get_exception_(exception_wrapper const* that);
275     static exception_wrapper get_exception_ptr_(exception_wrapper const* that);
276     static VTable const ops_;
277   };
278
279   template <class Ex>
280   struct InPlace {
281     static void copy_(exception_wrapper const* from, exception_wrapper* to);
282     static void move_(exception_wrapper* from, exception_wrapper* to);
283     static void delete_(exception_wrapper* that);
284     [[noreturn]] static void throw_(exception_wrapper const* that);
285     static std::type_info const* type_(exception_wrapper const*);
286     static std::exception const* get_exception_(exception_wrapper const* that);
287     static exception_wrapper get_exception_ptr_(exception_wrapper const* that);
288     static constexpr VTable const ops_{copy_,
289                                        move_,
290                                        delete_,
291                                        throw_,
292                                        type_,
293                                        get_exception_,
294                                        get_exception_ptr_};
295   };
296
297   struct SharedPtr {
298     struct Base {
299       std::type_info const* info_;
300       Base() = default;
301       explicit Base(std::type_info const& info) : info_(&info) {}
302       virtual ~Base() {}
303       virtual void throw_() const = 0;
304       virtual std::exception const* get_exception_() const noexcept = 0;
305       virtual exception_wrapper get_exception_ptr_() const noexcept = 0;
306     };
307     template <class Ex>
308     struct Impl final : public Base {
309       Ex ex_;
310       Impl() = default;
311       template <typename... As>
312       explicit Impl(As&&... as)
313           : Base{typeid(Ex)}, ex_(std::forward<As>(as)...) {}
314       [[noreturn]] void throw_() const override;
315       std::exception const* get_exception_() const noexcept override;
316       exception_wrapper get_exception_ptr_() const noexcept override;
317     };
318     std::shared_ptr<Base> ptr_;
319
320     static void copy_(exception_wrapper const* from, exception_wrapper* to);
321     static void move_(exception_wrapper* from, exception_wrapper* to);
322     static void delete_(exception_wrapper* that);
323     [[noreturn]] static void throw_(exception_wrapper const* that);
324     static std::type_info const* type_(exception_wrapper const* that);
325     static std::exception const* get_exception_(exception_wrapper const* that);
326     static exception_wrapper get_exception_ptr_(exception_wrapper const* that);
327     static VTable const ops_;
328   };
329
330   union {
331     Buffer buff_{};
332     ExceptionPtr eptr_;
333     SharedPtr sptr_;
334   };
335   VTable const* vptr_{&uninit_};
336
337   template <class Ex, typename... As>
338   exception_wrapper(OnHeapTag, in_place_type_t<Ex>, As&&... as);
339
340   template <class Ex, typename... As>
341   exception_wrapper(InSituTag, in_place_type_t<Ex>, As&&... as);
342
343   template <class T>
344   struct IsRegularExceptionType
345       : StrictConjunction<
346             std::is_copy_constructible<T>,
347             Negation<std::is_base_of<exception_wrapper, T>>,
348             Negation<std::is_abstract<T>>> {};
349
350   template <class CatchFn, bool IsConst = false>
351   struct ExceptionTypeOf;
352
353   template <bool IsConst>
354   struct HandleReduce;
355
356   template <bool IsConst>
357   struct HandleStdExceptReduce;
358
359   template <class This, class... CatchFns>
360   static void handle_(std::false_type, This& this_, CatchFns&... fns);
361
362   template <class This, class... CatchFns>
363   static void handle_(std::true_type, This& this_, CatchFns&... fns);
364
365   template <class Ex, class This, class Fn>
366   static bool with_exception_(This& this_, Fn fn_);
367
368  public:
369   static exception_wrapper from_exception_ptr(
370       std::exception_ptr const& eptr) noexcept;
371
372   //! Default-constructs an empty `exception_wrapper`
373   //! \post `type() == none()`
374   exception_wrapper() noexcept {}
375
376   //! Move-constructs an `exception_wrapper`
377   //! \post `*this` contains the value of `that` prior to the move
378   //! \post `that.type() == none()`
379   exception_wrapper(exception_wrapper&& that) noexcept;
380
381   //! Copy-constructs an `exception_wrapper`
382   //! \post `*this` contains a copy of `that`, and `that` is unmodified
383   //! \post `type() == that.type()`
384   exception_wrapper(exception_wrapper const& that);
385
386   //! Move-assigns an `exception_wrapper`
387   //! \pre `this != &that`
388   //! \post `*this` contains the value of `that` prior to the move
389   //! \post `that.type() == none()`
390   exception_wrapper& operator=(exception_wrapper&& that) noexcept;
391
392   //! Copy-assigns an `exception_wrapper`
393   //! \post `*this` contains a copy of `that`, and `that` is unmodified
394   //! \post `type() == that.type()`
395   exception_wrapper& operator=(exception_wrapper const& that);
396
397   ~exception_wrapper();
398
399   //! \pre `ptr` is empty, or it holds a reference to an exception that is not
400   //!     derived from `std::exception`.
401   //! \post `!ptr || bool(*this)`
402   //! \post `hasThrownException() == true`
403   //! \post `type() == unknown()`
404   explicit exception_wrapper(std::exception_ptr ptr) noexcept;
405
406   //! \pre `ptr` holds a reference to `ex`.
407   //! \post `hasThrownException() == true`
408   //! \post `bool(*this)`
409   //! \post `type() == typeid(ex)`
410   template <class Ex>
411   exception_wrapper(std::exception_ptr ptr, Ex& ex);
412
413   //! \pre `typeid(ex) == typeid(typename decay<Ex>::type)`
414   //! \post `bool(*this)`
415   //! \post `hasThrownException() == false`
416   //! \post `type() == typeid(ex)`
417   //! \note Exceptions of types derived from `std::exception` can be implicitly
418   //!     converted to an `exception_wrapper`.
419   template <
420       class Ex,
421       class Ex_ = _t<std::decay<Ex>>,
422       FOLLY_REQUIRES(
423           Conjunction<IsStdException<Ex_>, IsRegularExceptionType<Ex_>>::value)>
424   /* implicit */ exception_wrapper(Ex&& ex);
425
426   //! \pre `typeid(ex) == typeid(typename decay<Ex>::type)`
427   //! \post `bool(*this)`
428   //! \post `hasThrownException() == false`
429   //! \post `type() == typeid(ex)`
430   //! \note Exceptions of types not derived from `std::exception` can still be
431   //!     used to construct an `exception_wrapper`, but you must specify
432   //!     `folly::in_place` as the first parameter.
433   template <
434       class Ex,
435       class Ex_ = _t<std::decay<Ex>>,
436       FOLLY_REQUIRES(IsRegularExceptionType<Ex_>::value)>
437   exception_wrapper(in_place_t, Ex&& ex);
438
439   template <
440       class Ex,
441       typename... As,
442       FOLLY_REQUIRES(IsRegularExceptionType<Ex>::value)>
443   exception_wrapper(in_place_type_t<Ex>, As&&... as);
444
445   //! Swaps the value of `*this` with the value of `that`
446   void swap(exception_wrapper& that) noexcept;
447
448   //! \return `true` if `*this` is holding an exception.
449   explicit operator bool() const noexcept;
450
451   //! \return `!bool(*this)`
452   bool operator!() const noexcept;
453
454   //! Make this `exception_wrapper` empty
455   //! \post `!*this`
456   void reset();
457
458   //! \return `true` if this `exception_wrapper` holds a reference to an
459   //!     exception that was thrown (i.e., if it was constructed with
460   //!     a `std::exception_ptr`, or if `to_exception_ptr()` was called on a
461   //!     (non-const) reference to `*this`).
462   bool has_exception_ptr() const noexcept;
463
464   //! \return a pointer to the `std::exception` held by `*this`, if it holds
465   //!     one; otherwise, returns `nullptr`.
466   //! \note This function does not mutate the `exception_wrapper` object.
467   //! \note This function never causes an exception to be thrown.
468   std::exception* get_exception() noexcept;
469   //! \overload
470   std::exception const* get_exception() const noexcept;
471
472   //! \returns a pointer to the `Ex` held by `*this`, if it holds an object
473   //!     whose type `From` permits `std::is_convertible<From*, Ex*>`;
474   //!     otherwise, returns `nullptr`.
475   //! \note This function does not mutate the `exception_wrapper` object.
476   //! \note This function may cause an exception to be thrown and immediately
477   //!     caught internally, affecting runtime performance.
478   template <typename Ex>
479   Ex* get_exception() noexcept;
480   //! \overload
481   template <typename Ex>
482   Ex const* get_exception() const noexcept;
483
484   //! \return A `std::exception_ptr` that references either the exception held
485   //!     by `*this`, or a copy of same.
486   //! \note This function may need to throw an exception to complete the action.
487   //! \note The non-const overload of this function mutates `*this` to cache the
488   //!     computed `std::exception_ptr`; that is, this function may cause
489   //!     `has_exception_ptr()` to change from `false` to `true`.
490   std::exception_ptr const& to_exception_ptr() noexcept;
491   //! \overload
492   std::exception_ptr to_exception_ptr() const noexcept;
493
494   //! \return the `typeid` of an unspecified type used by
495   //!     `exception_wrapper::type()` to denote an empty `exception_wrapper`.
496   static std::type_info const& none() noexcept;
497   //! \return the `typeid` of an unspecified type used by
498   //!     `exception_wrapper::type()` to denote an `exception_wrapper` that
499   //!     holds an exception of unknown type.
500   static std::type_info const& unknown() noexcept;
501
502   //! Returns the `typeid` of the wrapped exception object. If there is no
503   //!     wrapped exception object, returns `exception_wrapper::none()`. If
504   //!     this instance wraps an exception of unknown type not derived from
505   //!     `std::exception`, returns `exception_wrapper::unknown()`.
506   std::type_info const& type() const noexcept;
507
508   //! \return If `get_exception() != nullptr`, `class_name() + ": " +
509   //!     get_exception()->what()`; otherwise, `class_name()`.
510   folly::fbstring what() const;
511
512   //! \return If `!*this`, the empty string; otherwise, if
513   //!     `type() == unknown()`, the string `"<unknown exception>"`; otherwise,
514   //!     the result of `type().name()` after demangling.
515   folly::fbstring class_name() const;
516
517   //! \tparam Ex The expression type to check for compatibility with.
518   //! \return `true` if and only if `*this` wraps an exception that would be
519   //!     caught with a `catch(Ex const&)` clause.
520   //! \note If `*this` is empty, this function returns `false`.
521   template <class Ex>
522   bool is_compatible_with() const noexcept;
523
524   //! \pre `bool(*this)`
525   //! Throws the wrapped expression.
526   [[noreturn]] void throw_exception() const;
527
528   //! Call `fn` with the wrapped exception (if any), if `fn` can accept it.
529   //! \par Example
530   //! \code
531   //! exception_wrapper ew{std::runtime_error("goodbye cruel world")};
532   //!
533   //! assert( ew.with_exception([](std::runtime_error& e){/*...*/}) );
534   //!
535   //! assert( !ew.with_exception([](int& e){/*...*/}) );
536   //!
537   //! assert( !exception_wrapper{}.with_exception([](int& e){/*...*/}) );
538   //! \endcode
539   //! \tparam Ex Optionally, the type of the exception that `fn` accepts.
540   //! \tparam Fn The type of a monomophic function object.
541   //! \param fn A function object to call with the wrapped exception
542   //! \return `true` if and only if `fn` was called.
543   //! \note Optionally, you may explicitly specify the type of the exception
544   //!     that `fn` expects, as in
545   //! \code
546   //! ew.with_exception<std::runtime_error>([](auto&& e) { /*...*/; });
547   //! \endcode
548   //! \note The handler may or may not be invoked with an active exception.
549   //!     **Do not try to rethrow the exception with `throw;` from within your
550   //!     handler -- that is, a throw expression with no operand.** This may
551   //!     cause your process to terminate. (It is perfectly ok to throw from
552   //!     a handler so long as you specify the exception to throw, as in
553   //!     `throw e;`.)
554   template <class Ex = void const, class Fn>
555   bool with_exception(Fn fn);
556   //! \overload
557   template <class Ex = void const, class Fn>
558   bool with_exception(Fn fn) const;
559
560   //! Handle the wrapped expression as if with a series of `catch` clauses,
561   //!     propagating the exception if no handler matches.
562   //! \par Example
563   //! \code
564   //! exception_wrapper ew{std::runtime_error("goodbye cruel world")};
565   //!
566   //! ew.handle(
567   //!   [&](std::logic_error const& e) {
568   //!      LOG(DFATAL) << "ruh roh";
569   //!      ew.throw_exception(); // rethrow the active exception without
570   //!                           // slicing it. Will not be caught by other
571   //!                           // handlers in this call.
572   //!   },
573   //!   [&](std::exception const& e) {
574   //!      LOG(ERROR) << ew.what();
575   //!   });
576   //! \endcode
577   //! In the above example, any exception _not_ derived from `std::exception`
578   //!     will be propagated. To specify a catch-all clause, pass a lambda that
579   //!     takes a C-style elipses, as in:
580   //! \code
581   //! ew.handle(/*...* /, [](...) { /* handle unknown exception */ } )
582   //! \endcode
583   //! \pre `!*this`
584   //! \tparam CatchFns... A pack of unary monomorphic function object types.
585   //! \param fns A pack of unary monomorphic function objects to be treated as
586   //!     an ordered list of potential exception handlers.
587   //! \note The handlers may or may not be invoked with an active exception.
588   //!     **Do not try to rethrow the exception with `throw;` from within your
589   //!     handler -- that is, a throw expression with no operand.** This may
590   //!     cause your process to terminate. (It is perfectly ok to throw from
591   //!     a handler so long as you specify the exception to throw, as in
592   //!     `throw e;`.)
593   template <class... CatchFns>
594   void handle(CatchFns... fns);
595   //! \overload
596   template <class... CatchFns>
597   void handle(CatchFns... fns) const;
598 };
599
600 template <class Ex>
601 constexpr exception_wrapper::VTable exception_wrapper::InPlace<Ex>::ops_;
602
603 /**
604  * \return An `exception_wrapper` that wraps an instance of type `Ex`
605  *     that has been constructed with arguments `std::forward<As>(as)...`.
606  */
607 template <class Ex, typename... As>
608 exception_wrapper make_exception_wrapper(As&&... as) {
609   return exception_wrapper{in_place_type<Ex>, std::forward<As>(as)...};
610 }
611
612 /**
613  * Inserts `ew.what()` into the ostream `sout`.
614  * \return `sout`
615  */
616 template <class Ch>
617 std::basic_ostream<Ch>& operator<<(
618     std::basic_ostream<Ch>& sout,
619     exception_wrapper const& ew) {
620   return sout << ew.what();
621 }
622
623 /**
624  * Swaps the value of `a` with the value of `b`.
625  */
626 inline void swap(exception_wrapper& a, exception_wrapper& b) noexcept {
627   a.swap(b);
628 }
629
630 // For consistency with exceptionStr() functions in ExceptionString.h
631 fbstring exceptionStr(exception_wrapper const& ew);
632
633 namespace detail {
634 template <typename F>
635 inline exception_wrapper try_and_catch_(F&& f) {
636   return (f(), exception_wrapper());
637 }
638
639 template <typename F, typename Ex, typename... Exs>
640 inline exception_wrapper try_and_catch_(F&& f) {
641   try {
642     return try_and_catch_<F, Exs...>(std::forward<F>(f));
643   } catch (Ex& ex) {
644     return exception_wrapper(std::current_exception(), ex);
645   }
646 }
647 } // namespace detail
648
649 //! `try_and_catch` is a simple replacement for `try {} catch(){}`` that allows
650 //! you to specify which derived exceptions you would like to catch and store in
651 //! an `exception_wrapper`.
652 //!
653 //! Because we cannot build an equivalent of `std::current_exception()`, we need
654 //! to catch every derived exception that we are interested in catching.
655 //!
656 //! Exceptions should be listed in the reverse order that you would write your
657 //! catch statements (that is, `std::exception&` should be first).
658 //!
659 //! \par Example Usage:
660 //! \code
661 //! // This catches my runtime_error and if I call throw_exception() on ew, it
662 //! // will throw a runtime_error
663 //! auto ew = folly::try_and_catch<std::exception, std::runtime_error>([=]() {
664 //!   if (badThingHappens()) {
665 //!     throw std::runtime_error("ZOMG!");
666 //!   }
667 //! });
668 //!
669 //! // This will catch the exception and if I call throw_exception() on ew, it
670 //! // will throw a std::exception
671 //! auto ew = folly::try_and_catch<std::exception, std::runtime_error>([=]() {
672 //!   if (badThingHappens()) {
673 //!     throw std::exception();
674 //!   }
675 //! });
676 //!
677 //! // This will not catch the exception and it will be thrown.
678 //! auto ew = folly::try_and_catch<std::runtime_error>([=]() {
679 //!   if (badThingHappens()) {
680 //!     throw std::exception();
681 //!   }
682 //! });
683 //! \endcode
684 template <typename... Exceptions, typename F>
685 exception_wrapper try_and_catch(F&& fn) {
686   return detail::try_and_catch_<F, Exceptions...>(std::forward<F>(fn));
687 }
688 } // namespace folly
689
690 #include <folly/ExceptionWrapper-inl.h>
691
692 #undef FOLLY_REQUIRES
693 #undef FOLLY_REQUIRES_DEF
694 #ifdef __GNUC__
695 #pragma GCC diagnostic pop
696 #endif