6677dae62c55ce1ef10fbfb8d07f8f96dc0cfdea
[folly.git] / folly / ExceptionWrapper.h
1 /*
2  * Copyright 2016 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 #pragma once
18
19 #include <exception>
20 #include <memory>
21 #include <string>
22 #include <tuple>
23 #include <type_traits>
24 #include <utility>
25
26 #include <folly/ExceptionString.h>
27 #include <folly/FBString.h>
28
29 namespace folly {
30
31 /*
32  * Throwing exceptions can be a convenient way to handle errors. Storing
33  * exceptions in an exception_ptr makes it easy to handle exceptions in a
34  * different thread or at a later time. exception_ptr can also be used in a very
35  * generic result/exception wrapper.
36  *
37  * However, there are some issues with throwing exceptions and
38  * std::exception_ptr. These issues revolve around throw being expensive,
39  * particularly in a multithreaded environment (see
40  * ExceptionWrapperBenchmark.cpp).
41  *
42  * Imagine we have a library that has an API which returns a result/exception
43  * wrapper. Let's consider some approaches for implementing this wrapper.
44  * First, we could store a std::exception. This approach loses the derived
45  * exception type, which can make exception handling more difficult for users
46  * that prefer rethrowing the exception. We could use a folly::dynamic for every
47  * possible type of exception. This is not very flexible - adding new types of
48  * exceptions requires a change to the result/exception wrapper. We could use an
49  * exception_ptr. However, constructing an exception_ptr as well as accessing
50  * the error requires a call to throw. That means that there will be two calls
51  * to throw in order to process the exception. For performance sensitive
52  * applications, this may be unacceptable.
53  *
54  * exception_wrapper is designed to handle exception management for both
55  * convenience and high performance use cases. make_exception_wrapper is
56  * templated on derived type, allowing us to rethrow the exception properly for
57  * users that prefer convenience. These explicitly named exception types can
58  * therefore be handled without any peformance penalty.  exception_wrapper is
59  * also flexible enough to accept any type. If a caught exception is not of an
60  * explicitly named type, then std::exception_ptr is used to preserve the
61  * exception state. For performance sensitive applications, the accessor methods
62  * can test or extract a pointer to a specific exception type with very little
63  * overhead.
64  *
65  * \par Example usage:
66  * \par
67  * \code
68  * exception_wrapper globalExceptionWrapper;
69  *
70  * // Thread1
71  * void doSomethingCrazy() {
72  *   int rc = doSomethingCrazyWithLameReturnCodes();
73  *   if (rc == NAILED_IT) {
74  *     globalExceptionWrapper = exception_wrapper();
75  *   } else if (rc == FACE_PLANT) {
76  *     globalExceptionWrapper = make_exception_wrapper<FacePlantException>();
77  *   } else if (rc == FAIL_WHALE) {
78  *     globalExceptionWrapper = make_exception_wrapper<FailWhaleException>();
79  *   }
80  * }
81  *
82  * // Thread2: Exceptions are ok!
83  * void processResult() {
84  *   try {
85  *     globalExceptionWrapper.throwException();
86  *   } catch (const FacePlantException& e) {
87  *     LOG(ERROR) << "FACEPLANT!";
88  *   } catch (const FailWhaleException& e) {
89  *     LOG(ERROR) << "FAILWHALE!";
90  *   }
91  * }
92  *
93  * // Thread2: Exceptions are bad!
94  * void processResult() {
95  *   globalExceptionWrapper.with_exception(
96  *       [&](FacePlantException& faceplant) {
97  *         LOG(ERROR) << "FACEPLANT";
98  *       }) ||
99  *   globalExceptionWrapper.with_exception(
100  *       [&](FailWhaleException& failwhale) {
101  *         LOG(ERROR) << "FAILWHALE!";
102  *       }) ||
103  *   LOG(FATAL) << "Unrecognized exception";
104  * }
105  * \endcode
106  *
107  */
108 class exception_wrapper {
109  private:
110   template <typename Ex>
111   struct optimize;
112
113  public:
114   exception_wrapper() = default;
115
116   // Implicitly construct an exception_wrapper from a qualifying exception.
117   // See the optimize struct for details.
118   template <typename Ex, typename =
119     typename std::enable_if<optimize<typename std::decay<Ex>::type>::value>
120     ::type>
121   /* implicit */ exception_wrapper(Ex&& exn) {
122     typedef typename std::decay<Ex>::type DEx;
123     assign_sptr(std::make_shared<DEx>(std::forward<Ex>(exn)));
124   }
125
126   // The following two constructors are meant to emulate the behavior of
127   // try_and_catch in performance sensitive code as well as to be flexible
128   // enough to wrap exceptions of unknown type. There is an overload that
129   // takes an exception reference so that the wrapper can extract and store
130   // the exception's type and what() when possible.
131   //
132   // The canonical use case is to construct an all-catching exception wrapper
133   // with minimal overhead like so:
134   //
135   //   try {
136   //     // some throwing code
137   //   } catch (const std::exception& e) {
138   //     // won't lose e's type and what()
139   //     exception_wrapper ew{std::current_exception(), e};
140   //   } catch (...) {
141   //     // everything else
142   //     exception_wrapper ew{std::current_exception()};
143   //   }
144   //
145   // try_and_catch is cleaner and preferable. Use it unless you're sure you need
146   // something like this instead.
147   template <typename Ex>
148   explicit exception_wrapper(std::exception_ptr eptr, Ex& exn) {
149     assign_eptr(eptr, exn);
150   }
151
152   explicit exception_wrapper(std::exception_ptr eptr) {
153     assign_eptr(eptr);
154   }
155
156   // If the exception_wrapper does not contain an exception, std::terminate()
157   // is invoked to assure the [[noreturn]] behaviour.
158   [[noreturn]] void throwException() const;
159
160   explicit operator bool() const {
161     return item_ || eptr_;
162   }
163
164   // This implementation is similar to std::exception_ptr's implementation
165   // where two exception_wrappers are equal when the address in the underlying
166   // reference field both point to the same exception object.  The reference
167   // field remains the same when the exception_wrapper is copied or when
168   // the exception_wrapper is "rethrown".
169   bool operator==(const exception_wrapper& a) const {
170     if (item_) {
171       return a.item_ && item_.get() == a.item_.get();
172     } else {
173       return eptr_ == a.eptr_;
174     }
175   }
176
177   bool operator!=(const exception_wrapper& a) const {
178     return !(*this == a);
179   }
180
181   // This will return a non-nullptr only if the exception is held as a
182   // copy.  It is the only interface which will distinguish between an
183   // exception held this way, and by exception_ptr.  You probably
184   // shouldn't use it at all.
185   std::exception* getCopied() { return item_.get(); }
186   const std::exception* getCopied() const { return item_.get(); }
187
188   fbstring what() const;
189   fbstring class_name() const;
190
191   template <class Ex>
192   bool is_compatible_with() const {
193     return with_exception<Ex>([](const Ex&) {});
194   }
195
196   template <class F>
197   bool with_exception(F&& f) {
198     using arg_type = typename functor_traits<F>::arg_type_decayed;
199     return with_exception<arg_type>(std::forward<F>(f));
200   }
201
202   template <class F>
203   bool with_exception(F&& f) const {
204     using arg_type = typename functor_traits<F>::arg_type_decayed;
205     return with_exception<arg_type>(std::forward<F>(f));
206   }
207
208   // If this exception wrapper wraps an exception of type Ex, with_exception
209   // will call f with the wrapped exception as an argument and return true, and
210   // will otherwise return false.
211   template <class Ex, class F>
212   bool with_exception(F f) {
213     return with_exception1<typename std::decay<Ex>::type>(f, this);
214   }
215
216   // Const overload
217   template <class Ex, class F>
218   bool with_exception(F f) const {
219     return with_exception1<typename std::decay<Ex>::type>(f, this);
220   }
221
222   std::exception_ptr getExceptionPtr() const {
223     if (eptr_) {
224       return eptr_;
225     }
226
227     try {
228       if (*this) {
229         throwException();
230       }
231     } catch (...) {
232       return std::current_exception();
233     }
234     return std::exception_ptr();
235   }
236
237  private:
238   template <typename Ex>
239   struct optimize {
240     static const bool value =
241       std::is_base_of<std::exception, Ex>::value &&
242       std::is_copy_assignable<Ex>::value &&
243       !std::is_abstract<Ex>::value;
244   };
245
246   template <typename Ex>
247   void assign_sptr(std::shared_ptr<Ex> sptr) {
248     this->item_ = std::move(sptr);
249     this->throwfn_ = Thrower<Ex>::doThrow;
250   }
251
252   template <typename Ex>
253   void assign_eptr(std::exception_ptr eptr, Ex& e) {
254     this->eptr_ = eptr;
255     this->estr_ = exceptionStr(e).toStdString();
256     this->ename_ = demangle(typeid(e)).toStdString();
257   }
258
259   void assign_eptr(std::exception_ptr eptr) {
260     this->eptr_ = eptr;
261   }
262
263   // Optimized case: if we know what type the exception is, we can
264   // store a copy of the concrete type, and a helper function so we
265   // can rethrow it.
266   std::shared_ptr<std::exception> item_;
267   void (*throwfn_)(std::exception&){nullptr};
268   // Fallback case: store the library wrapper, which is less efficient
269   // but gets the job done.  Also store exceptionPtr() the name of the
270   // exception type, so we can at least get those back out without
271   // having to rethrow.
272   std::exception_ptr eptr_;
273   std::string estr_;
274   std::string ename_;
275
276   template <class T, class... Args>
277   friend exception_wrapper make_exception_wrapper(Args&&... args);
278
279  private:
280   template <typename F>
281   struct functor_traits {
282     template <typename T>
283     struct impl;
284     template <typename C, typename R, typename A>
285     struct impl<R(C::*)(A)> { using arg_type = A; };
286     template <typename C, typename R, typename A>
287     struct impl<R(C::*)(A) const> { using arg_type = A; };
288     using functor_decayed = typename std::decay<F>::type;
289     using functor_op = decltype(&functor_decayed::operator());
290     using arg_type = typename impl<functor_op>::arg_type;
291     using arg_type_decayed = typename std::decay<arg_type>::type;
292   };
293
294   template <class T>
295   class Thrower {
296    public:
297     static void doThrow(std::exception& obj) {
298       throw static_cast<T&>(obj);
299     }
300   };
301
302   template <typename T>
303   using is_exception_ = std::is_base_of<std::exception, T>;
304
305   template <bool V, typename T, typename F>
306   using conditional_t_ = typename std::conditional<V, T, F>::type;
307
308   template <typename T, typename F>
309   static typename std::enable_if<is_exception_<T>::value, T*>::type
310   try_dynamic_cast_exception(F* from) {
311     return dynamic_cast<T*>(from);
312   }
313   template <typename T, typename F>
314   static typename std::enable_if<!is_exception_<T>::value, T*>::type
315   try_dynamic_cast_exception(F*) {
316     return nullptr;
317   }
318
319   // What makes this useful is that T can be exception_wrapper* or
320   // const exception_wrapper*, and the compiler will use the
321   // instantiation which works with F.
322   template <class Ex, class F, class T>
323   static bool with_exception1(F f, T* that) {
324     using CEx = conditional_t_<std::is_const<T>::value, const Ex, Ex>;
325     if (is_exception_<Ex>::value && that->item_) {
326       if (auto ex = try_dynamic_cast_exception<CEx>(that->item_.get())) {
327         f(*ex);
328         return true;
329       }
330     } else if (that->eptr_) {
331       try {
332         std::rethrow_exception(that->eptr_);
333       } catch (CEx& e) {
334         f(e);
335         return true;
336       } catch (...) {
337         // fall through
338       }
339     }
340     return false;
341   }
342 };
343
344 template <class T, class... Args>
345 exception_wrapper make_exception_wrapper(Args&&... args) {
346   exception_wrapper ew;
347   ew.assign_sptr(std::make_shared<T>(std::forward<Args>(args)...));
348   return ew;
349 }
350
351 // For consistency with exceptionStr() functions in ExceptionString.h
352 fbstring exceptionStr(const exception_wrapper& ew);
353
354 /*
355  * try_and_catch is a simple replacement for try {} catch(){} that allows you to
356  * specify which derived exceptions you would like to catch and store in an
357  * exception_wrapper.
358  *
359  * Because we cannot build an equivalent of std::current_exception(), we need
360  * to catch every derived exception that we are interested in catching.
361  *
362  * Exceptions should be listed in the reverse order that you would write your
363  * catch statements (that is, std::exception& should be first).
364  *
365  * NOTE: Although implemented as a derived class (for syntactic delight), don't
366  * be confused - you should not pass around try_and_catch objects!
367  *
368  * Example Usage:
369  *
370  * // This catches my runtime_error and if I call throwException() on ew, it
371  * // will throw a runtime_error
372  * auto ew = folly::try_and_catch<std::exception, std::runtime_error>([=]() {
373  *   if (badThingHappens()) {
374  *     throw std::runtime_error("ZOMG!");
375  *   }
376  * });
377  *
378  * // This will catch the exception and if I call throwException() on ew, it
379  * // will throw a std::exception
380  * auto ew = folly::try_and_catch<std::exception, std::runtime_error>([=]() {
381  *   if (badThingHappens()) {
382  *     throw std::exception();
383  *   }
384  * });
385  *
386  * // This will not catch the exception and it will be thrown.
387  * auto ew = folly::try_and_catch<std::runtime_error>([=]() {
388  *   if (badThingHappens()) {
389  *     throw std::exception();
390  *   }
391  * });
392  */
393
394 namespace try_and_catch_detail {
395
396 template <bool V, typename T = void>
397 using enable_if_t_ = typename std::enable_if<V, T>::type;
398
399 template <typename... Args>
400 using is_wrap_ctor = std::is_constructible<exception_wrapper, Args...>;
401
402 template <typename Ex>
403 inline enable_if_t_<!is_wrap_ctor<Ex&>::value, exception_wrapper> make(Ex& ex) {
404   return exception_wrapper(std::current_exception(), ex);
405 }
406
407 template <typename Ex>
408 inline enable_if_t_<is_wrap_ctor<Ex&>::value, exception_wrapper> make(Ex& ex) {
409   return typeid(Ex&) == typeid(ex)
410       ? exception_wrapper(ex)
411       : exception_wrapper(std::current_exception(), ex);
412 }
413
414 template <typename F>
415 inline exception_wrapper impl(F&& f) {
416   return (f(), exception_wrapper());
417 }
418
419 template <typename F, typename Ex, typename... Exs>
420 inline exception_wrapper impl(F&& f) {
421   try {
422     return impl<F, Exs...>(std::forward<F>(f));
423   } catch (Ex& ex) {
424     return make(ex);
425   }
426 }
427 } // try_and_catch_detail
428
429 template <typename... Exceptions, typename F>
430 exception_wrapper try_and_catch(F&& fn) {
431   return try_and_catch_detail::impl<F, Exceptions...>(std::forward<F>(fn));
432 }
433 } // folly