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::fmt;
use std::marker::Unpin;
use std::pin::Pin;
use std::task::{Context, Poll};

use futures::ready;
use futures::stream::{FusedStream, Stream};

pub trait Limiter {
    fn acquire(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<()>>;
}

pub struct IntoLimiter<St, L> {
    stream: St,
    limiter: L,
}

impl<St, L> fmt::Debug for IntoLimiter<St, L>
    where
        St: fmt::Debug,
        L: fmt::Debug,
{
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("IntoLimiter")
            .field("stream", &self.stream)
            .field("limiter", &self.limiter)
            .finish()
    }
}

impl<St, L> IntoLimiter<St, L> {
    #[inline]
    pub(crate) fn new(stream: St, limiter: L) -> Self {
        Self { stream, limiter }
    }
}

impl<St, L> FusedStream for IntoLimiter<St, L>
    where
        St: FusedStream + Unpin,
        L: Limiter + Unpin,
{
    #[inline]
    fn is_terminated(&self) -> bool {
        self.stream.is_terminated()
    }
}

impl<St, F> Stream for IntoLimiter<St, F>
    where
        St: Stream + Unpin,
        F: Limiter + Unpin,
{
    type Item = St::Item;

    fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
        match ready!(Pin::new(&mut self.limiter).acquire(cx)) {
            Some(()) => Pin::new(&mut self.stream).poll_next(cx),
            None => Poll::Ready(None),
        }
    }

    #[inline]
    fn size_hint(&self) -> (usize, Option<usize>) {
        self.stream.size_hint()
    }
}