c6ad16675955544b311ea55a57f8fafa413a3ac1
[folly.git] / folly / ExceptionWrapper.cpp
1 /*
2  * Copyright 2017 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 #include <folly/ExceptionWrapper.h>
17
18 #include <exception>
19 #include <iostream>
20
21 namespace folly {
22
23 [[noreturn]] void exception_wrapper::throwException() const {
24   if (throwfn_) {
25     throwfn_(*item_);
26   } else if (eptr_) {
27     std::rethrow_exception(eptr_);
28   }
29   std::ios_base::Init ioinit_; // ensure std::cerr is alive
30   std::cerr
31       << "Cannot use `throwException` with an empty folly::exception_wrapper"
32       << std::endl;
33   std::terminate();
34 }
35
36 fbstring exception_wrapper::class_name() const {
37   if (item_) {
38     auto& i = *item_;
39     return demangle(typeid(i));
40   } else if (eptr_ && eobj_) {
41     return demangle(typeid(*eobj_));
42   } else if (eptr_ && etype_) {
43     return demangle(*etype_);
44   } else {
45     return fbstring();
46   }
47 }
48
49 fbstring exception_wrapper::what() const {
50   if (item_) {
51     return exceptionStr(*item_);
52   } else if (eptr_ && eobj_) {
53     return class_name() + ": " + eobj_->what();
54   } else if (eptr_ && etype_) {
55     return class_name();
56   } else {
57     return class_name();
58   }
59 }
60
61 fbstring exceptionStr(const exception_wrapper& ew) {
62   return ew.what();
63 }
64
65 } // folly