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
use core::fmt;
use core::pin::Pin;
use core::task::{Context, Poll};
use futures::{ready, Stream};
use pin_project_lite::pin_project;

pin_project! {
    /// Stream for the [`distinctUntilChanged`](super::StreamOpsExt::distinctUntilChanged) method.
    #[must_use = "streams do nothing unless polled"]
    pub struct DistinctUntilChanged<St, Item >
    where
        St: Stream<Item = Item>,
        Item: PartialEq,
    {
        #[pin]
        stream: St,
        last: Option<Item>,
    }
}

impl<St, Item> fmt::Debug for DistinctUntilChanged<St, Item>
where
    St: Stream<Item = Item> + fmt::Debug,
    Item: PartialEq,
{
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("DistinctUntilChanged")
            .field("stream", &self.stream)
            .finish()
    }
}

impl<St, Item> DistinctUntilChanged<St, Item>
where
    St: Stream<Item = Item>,
    Item: PartialEq,
{
    #[allow(dead_code)]
    pub(super) fn new(stream: St) -> Self {
        DistinctUntilChanged { stream, last: None }
    }
}

impl<St, Item> Stream for DistinctUntilChanged<St, Item>
where
    St: Stream<Item = Item>,
    Item: Clone + PartialEq,
{
    type Item = St::Item;

    fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
        let me = self.as_mut().project();
        let next = ready!(me.stream.poll_next(cx));
        match next {
            Some(v) if me.last.is_none() => {
                *me.last = Some(v.clone());
                Poll::Ready(Some(v))
            }
            value @ Some(_) if me.last.is_some() && value != *me.last => {
                *me.last = value.clone();
                Poll::Ready(value)
            }
            Some(_) => Poll::Pending,
            None => Poll::Ready(None),
        }
    }

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