Fix dynamic MPMCQueue tryObtainPromisedPushTicket() to prevent tryWriteUntil() and...
[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::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_ && eobj_) {
40     return demangle(typeid(*eobj_));
41   } else if (eptr_ && etype_) {
42     return demangle(*etype_);
43   } else {
44     return fbstring();
45   }
46 }
47
48 fbstring exception_wrapper::what() const {
49   if (item_) {
50     return exceptionStr(*item_);
51   } else if (eptr_ && eobj_) {
52     return class_name() + ": " + eobj_->what();
53   } else if (eptr_ && etype_) {
54     return class_name();
55   } else {
56     return class_name();
57   }
58 }
59
60 fbstring exceptionStr(const exception_wrapper& ew) {
61   return ew.what();
62 }
63
64 } // folly