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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
use pin_project::pin_project;
use std::future::Future;
use std::marker::PhantomData;
use std::pin::Pin;
use std::task::{Context, Poll};
use std::time::{Duration, Instant};
use tokio::sync::{Semaphore, SemaphorePermit};
use crate::coprocessor::metrics::*;
pub fn limit_concurrency<'a, F: Future + 'a>(
fut: F,
semaphore: &'a Semaphore,
time_limit_without_permit: Duration,
) -> impl Future<Output = F::Output> + 'a {
ConcurrencyLimiter::new(semaphore.acquire(), fut, time_limit_without_permit)
}
#[pin_project]
struct ConcurrencyLimiter<'a, PF, F>
where
PF: Future<Output = SemaphorePermit<'a>>,
F: Future,
{
#[pin]
permit_fut: PF,
#[pin]
fut: F,
time_limit_without_permit: Duration,
execution_time: Duration,
state: LimitationState<'a>,
_phantom: PhantomData<&'a ()>,
}
enum LimitationState<'a> {
NotLimited,
Acquiring,
Acuqired(SemaphorePermit<'a>),
}
impl<'a, PF, F> ConcurrencyLimiter<'a, PF, F>
where
PF: Future<Output = SemaphorePermit<'a>>,
F: Future,
{
fn new(permit_fut: PF, fut: F, time_limit_without_permit: Duration) -> Self {
ConcurrencyLimiter {
permit_fut,
fut,
time_limit_without_permit,
execution_time: Duration::default(),
state: LimitationState::NotLimited,
_phantom: PhantomData,
}
}
}
impl<'a, PF, F> Future for ConcurrencyLimiter<'a, PF, F>
where
PF: Future<Output = SemaphorePermit<'a>>,
F: Future,
{
type Output = F::Output;
fn poll(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
let this = self.project();
match this.state {
LimitationState::NotLimited if this.execution_time > this.time_limit_without_permit => {
match this.permit_fut.poll(cx) {
Poll::Ready(permit) => {
*this.state = LimitationState::Acuqired(permit);
COPR_ACQUIRE_SEMAPHORE_TYPE.acquired.inc();
}
Poll::Pending => {
*this.state = LimitationState::Acquiring;
COPR_WAITING_FOR_SEMAPHORE.inc();
return Poll::Pending;
}
}
}
LimitationState::Acquiring => match this.permit_fut.poll(cx) {
Poll::Ready(permit) => {
*this.state = LimitationState::Acuqired(permit);
COPR_WAITING_FOR_SEMAPHORE.dec();
COPR_ACQUIRE_SEMAPHORE_TYPE.acquired.inc();
}
Poll::Pending => {
return Poll::Pending;
}
},
_ => {}
}
let now = Instant::now();
match this.fut.poll(cx) {
Poll::Ready(res) => {
if let LimitationState::NotLimited = this.state {
COPR_ACQUIRE_SEMAPHORE_TYPE.unacquired.inc();
}
Poll::Ready(res)
}
Poll::Pending => {
*this.execution_time += now.elapsed();
Poll::Pending
}
}
}
}
#[cfg(test)]
mod tests {
use super::*;
use futures::future::FutureExt;
use std::sync::Arc;
use std::thread;
use tokio::task::yield_now;
use tokio::time::{delay_for, timeout};
#[tokio::test(basic_scheduler)]
async fn test_limit_concurrency() {
async fn work(iter: i32) {
for i in 0..iter {
thread::sleep(Duration::from_millis(50));
if i < iter - 1 {
yield_now().await;
}
}
}
let smp = Arc::new(Semaphore::new(0));
let smp2 = smp.clone();
assert!(
tokio::spawn(timeout(Duration::from_millis(250), async move {
limit_concurrency(work(2), &*smp2, Duration::from_millis(500)).await
}))
.await
.is_ok()
);
smp.add_permits(1);
let smp2 = smp.clone();
let mut t1 =
tokio::spawn(
async move { limit_concurrency(work(8), &*smp2, Duration::default()).await },
)
.fuse();
delay_for(Duration::from_millis(100)).await;
let smp2 = smp.clone();
let mut t2 =
tokio::spawn(
async move { limit_concurrency(work(2), &*smp2, Duration::default()).await },
)
.fuse();
let mut deadline = delay_for(Duration::from_millis(1500)).fuse();
let mut t1_finished = false;
loop {
futures_util::select! {
_ = t1 => {
t1_finished = true;
},
_ = t2 => {
if t1_finished {
return;
} else {
panic!("t2 should finish later than t1");
}
},
_ = deadline => {
panic!("test timeout");
}
}
}
}
}