-
Notifications
You must be signed in to change notification settings - Fork 340
/
Copy paththrottle.rs
67 lines (60 loc) · 1.76 KB
/
throttle.rs
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
use std::future::Future;
use std::pin::Pin;
use std::time::Duration;
use pin_project_lite::pin_project;
use crate::stream::Stream;
use crate::task::{Context, Poll};
use crate::utils::{timer_after, Timer};
pin_project! {
/// A stream that only yields one element once every `duration`.
///
/// This `struct` is created by the [`throttle`] method on [`Stream`]. See its
/// documentation for more.
///
/// [`throttle`]: trait.Stream.html#method.throttle
/// [`Stream`]: trait.Stream.html
#[doc(hidden)]
#[allow(missing_debug_implementations)]
pub struct Throttle<S> {
#[pin]
stream: S,
duration: Duration,
#[pin]
blocked: bool,
#[pin]
delay: Timer,
}
}
impl<S: Stream> Throttle<S> {
pub(super) fn new(stream: S, duration: Duration) -> Self {
Self {
stream,
duration,
blocked: false,
delay: timer_after(Duration::default()),
}
}
}
impl<S: Stream> Stream for Throttle<S> {
type Item = S::Item;
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<S::Item>> {
let mut this = self.project();
if *this.blocked {
let d = this.delay.as_mut();
if d.poll(cx).is_ready() {
*this.blocked = false;
} else {
return Poll::Pending;
}
}
match this.stream.poll_next(cx) {
Poll::Pending => Poll::Pending,
Poll::Ready(None) => Poll::Ready(None),
Poll::Ready(Some(v)) => {
*this.blocked = true;
let _ = std::mem::replace(&mut *this.delay, timer_after(*this.duration));
Poll::Ready(Some(v))
}
}
}
}