Fix fibers gdb utils script
[folly.git] / folly / ExceptionWrapper.cpp
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 #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_.get());
26   } else if (eptr_) {
27     std::rethrow_exception(eptr_);
28   }
29   std::cerr
30       << "Cannot use `throwException` with an empty folly::exception_wrapper"
31       << std::endl;
32   std::terminate();
33 }
34
35 fbstring exception_wrapper::class_name() const {
36   if (item_) {
37     auto& i = *item_;
38     return demangle(typeid(i));
39   } else if (eptr_) {
40     return ename_;
41   } else {
42     return fbstring();
43   }
44 }
45
46 fbstring exception_wrapper::what() const {
47   if (item_) {
48     return exceptionStr(*item_);
49   } else if (eptr_) {
50     return estr_;
51   } else {
52     return fbstring();
53   }
54 }
55
56 fbstring exceptionStr(const exception_wrapper& ew) {
57   return ew.what();
58 }
59
60 } // folly