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
use crate::net::unix::{UnixListener, UnixStream};

use std::io;
use std::pin::Pin;
use std::task::{Context, Poll};

/// Stream of listeners
#[derive(Debug)]
#[must_use = "streams do nothing unless polled"]
pub struct Incoming<'a> {
    inner: &'a mut UnixListener,
}

impl Incoming<'_> {
    pub(crate) fn new(listener: &mut UnixListener) -> Incoming<'_> {
        Incoming { inner: listener }
    }

    /// Attempts to poll `UnixStream` by polling inner `UnixListener` to accept
    /// connection.
    ///
    /// If `UnixListener` isn't ready yet, `Poll::Pending` is returned and
    /// current task will be notified by a waker.  Otherwise `Poll::Ready` with
    /// `Result` containing `UnixStream` will be returned.
    pub fn poll_accept(
        mut self: Pin<&mut Self>,
        cx: &mut Context<'_>,
    ) -> Poll<io::Result<UnixStream>> {
        let (socket, _) = ready!(self.inner.poll_accept(cx))?;
        Poll::Ready(Ok(socket))
    }
}

#[cfg(feature = "stream")]
impl crate::stream::Stream for Incoming<'_> {
    type Item = io::Result<UnixStream>;

    fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
        let (socket, _) = ready!(self.inner.poll_accept(cx))?;
        Poll::Ready(Some(Ok(socket)))
    }
}