forked from facebook/folly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Executor.cpp
111 lines (94 loc) · 3.25 KB
/
Executor.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <folly/Executor.h>
#include <stdexcept>
#include <glog/logging.h>
#include <folly/ExceptionString.h>
#include <folly/Portability.h>
#include <folly/lang/Exception.h>
namespace folly {
void Executor::invokeCatchingExnsLog(char const* const prefix) noexcept {
auto ep = std::current_exception();
LOG(ERROR) << prefix << " threw unhandled " << exceptionStr(ep);
}
void Executor::addWithPriority(Func, int8_t /* priority */) {
throw std::runtime_error(
"addWithPriority() is not implemented for this Executor");
}
bool Executor::keepAliveAcquire() noexcept {
return false;
}
void Executor::keepAliveRelease() noexcept {
LOG(FATAL) << __func__ << "() should not be called for folly::Executor types "
<< "which do not override keepAliveAcquire()";
}
// Base case of permitting with no termination to avoid nullptr tests
static ExecutorBlockingList emptyList{nullptr, {false, false, nullptr, {}}};
thread_local ExecutorBlockingList* executor_blocking_list = &emptyList;
Optional<ExecutorBlockingContext> getExecutorBlockingContext() noexcept {
return //
kIsMobile || !executor_blocking_list->curr.forbid ? none : //
make_optional(executor_blocking_list->curr);
}
ExecutorBlockingGuard::ExecutorBlockingGuard(PermitTag) noexcept {
if (!kIsMobile) {
list_ = *executor_blocking_list;
list_.prev = executor_blocking_list;
list_.curr.forbid = false;
// Do not overwrite tag or executor pointer
executor_blocking_list = &list_;
}
}
ExecutorBlockingGuard::ExecutorBlockingGuard(
TrackTag, Executor* ex, StringPiece tag) noexcept {
if (!kIsMobile) {
list_ = *executor_blocking_list;
list_.prev = executor_blocking_list;
list_.curr.forbid = true;
list_.curr.ex = ex;
// If no string was provided, maintain the parent string to keep some
// information
if (!tag.empty()) {
list_.curr.tag = tag;
}
executor_blocking_list = &list_;
}
}
ExecutorBlockingGuard::ExecutorBlockingGuard(
ProhibitTag, Executor* ex, StringPiece tag) noexcept {
if (!kIsMobile) {
list_ = *executor_blocking_list;
list_.prev = executor_blocking_list;
list_.curr.forbid = true;
list_.curr.ex = ex;
list_.curr.allowTerminationOnBlocking = true;
// If no string was provided, maintain the parent string to keep some
// information
if (!tag.empty()) {
list_.curr.tag = tag;
}
executor_blocking_list = &list_;
}
}
ExecutorBlockingGuard::~ExecutorBlockingGuard() {
if (!kIsMobile) {
if (executor_blocking_list != &list_) {
terminate_with<std::logic_error>("dtor mismatch");
}
executor_blocking_list = list_.prev;
}
}
} // namespace folly