forked from apache/brpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcountdown_event.cpp
103 lines (92 loc) · 3.11 KB
/
countdown_event.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
// bthread - A M:N threading library to make applications more concurrent.
// Copyright (c) 2016 Baidu, Inc.
//
// 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.
// Author: Zhangyi Chen ([email protected])
// Date: 2016/06/03 13:15:24
#include "butil/atomicops.h" // butil::atomic<int>
#include "bthread/butex.h"
#include "bthread/countdown_event.h"
namespace bthread {
CountdownEvent::CountdownEvent(int initial_count) {
if (initial_count < 0) {
LOG(FATAL) << "Invalid initial_count=" << initial_count;
abort();
}
_butex = butex_create_checked<int>();
*_butex = initial_count;
_wait_was_invoked = false;
}
CountdownEvent::~CountdownEvent() {
butex_destroy(_butex);
}
void CountdownEvent::signal(int sig) {
// Have to save _butex, *this is probably defreferenced by the wait thread
// which sees fetch_sub
void* const saved_butex = _butex;
const int prev = ((butil::atomic<int>*)_butex)
->fetch_sub(sig, butil::memory_order_release);
// DON'T touch *this ever after
if (prev > sig) {
return;
}
LOG_IF(ERROR, prev < sig) << "Counter is over decreased";
butex_wake_all(saved_butex);
}
void CountdownEvent::wait() {
_wait_was_invoked = true;
for (;;) {
const int seen_counter =
((butil::atomic<int>*)_butex)->load(butil::memory_order_acquire);
if (seen_counter <= 0) {
return;
}
butex_wait(_butex, seen_counter, NULL);
}
}
void CountdownEvent::add_count(int v) {
if (v <= 0) {
LOG_IF(ERROR, v < 0) << "Invalid count=" << v;
return;
}
LOG_IF(ERROR, _wait_was_invoked)
<< "Invoking add_count() after wait() was invoked";
((butil::atomic<int>*)_butex)->fetch_add(v, butil::memory_order_release);
}
void CountdownEvent::reset(int v) {
if (v < 0) {
LOG(ERROR) << "Invalid count=" << v;
return;
}
const int prev_counter =
((butil::atomic<int>*)_butex)
->exchange(v, butil::memory_order_release);
LOG_IF(ERROR, _wait_was_invoked && prev_counter)
<< "Invoking reset() while count=" << prev_counter;
_wait_was_invoked = false;
}
int CountdownEvent::timed_wait(const timespec& duetime) {
_wait_was_invoked = true;
for (;;) {
const int seen_counter =
((butil::atomic<int>*)_butex)->load(butil::memory_order_acquire);
if (seen_counter <= 0) {
return 0;
}
const int rc = butex_wait(_butex, seen_counter, &duetime);
if (rc < 0 && errno != EWOULDBLOCK) {
return errno;
}
}
}
} // namespace bthread