Skip to content

Commit

Permalink
Merge pull request #889 from stjepang/fix-incoming
Browse files Browse the repository at this point in the history
Store a future inside Incoming
  • Loading branch information
dignifiedquire authored Sep 28, 2020
2 parents e812663 + f7aa962 commit c4eb910
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 19 deletions.
42 changes: 32 additions & 10 deletions src/net/tcp/listener.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
use std::fmt;
use std::future::Future;
use std::net::SocketAddr;
use std::pin::Pin;
Expand All @@ -8,7 +9,7 @@ use crate::io;
use crate::net::{TcpStream, ToSocketAddrs};
use crate::stream::Stream;
use crate::sync::Arc;
use crate::task::{Context, Poll};
use crate::task::{ready, Context, Poll};

/// A TCP socket server, listening for connections.
///
Expand Down Expand Up @@ -146,7 +147,10 @@ impl TcpListener {
/// # Ok(()) }) }
/// ```
pub fn incoming(&self) -> Incoming<'_> {
Incoming(self)
Incoming {
listener: self,
accept: None,
}
}

/// Returns the local address that this listener is bound to.
Expand Down Expand Up @@ -182,18 +186,36 @@ impl TcpListener {
/// [`incoming`]: struct.TcpListener.html#method.incoming
/// [`TcpListener`]: struct.TcpListener.html
/// [`std::net::Incoming`]: https://doc.rust-lang.org/std/net/struct.Incoming.html
#[derive(Debug)]
pub struct Incoming<'a>(&'a TcpListener);
pub struct Incoming<'a> {
listener: &'a TcpListener,
accept: Option<
Pin<Box<dyn Future<Output = io::Result<(TcpStream, SocketAddr)>> + Send + Sync + 'a>>,
>,
}

impl<'a> Stream for Incoming<'a> {
impl Stream for Incoming<'_> {
type Item = io::Result<TcpStream>;

fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
let future = self.0.accept();
pin_utils::pin_mut!(future);
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
loop {
if self.accept.is_none() {
self.accept = Some(Box::pin(self.listener.accept()));
}

if let Some(f) = &mut self.accept {
let res = ready!(f.as_mut().poll(cx));
self.accept = None;
return Poll::Ready(Some(res.map(|(stream, _)| stream)));
}
}
}
}

let (socket, _) = futures_core::ready!(future.poll(cx))?;
Poll::Ready(Some(Ok(socket)))
impl fmt::Debug for Incoming<'_> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Incoming")
.field("listener", self.listener)
.finish()
}
}

Expand Down
39 changes: 30 additions & 9 deletions src/os/unix/net/listener.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use crate::os::unix::io::{AsRawFd, FromRawFd, IntoRawFd, RawFd};
use crate::path::Path;
use crate::stream::Stream;
use crate::sync::Arc;
use crate::task::{Context, Poll};
use crate::task::{ready, Context, Poll};

/// A Unix domain socket server, listening for connections.
///
Expand Down Expand Up @@ -128,7 +128,10 @@ impl UnixListener {
/// # Ok(()) }) }
/// ```
pub fn incoming(&self) -> Incoming<'_> {
Incoming(self)
Incoming {
listener: self,
accept: None,
}
}

/// Returns the local socket address of this listener.
Expand Down Expand Up @@ -174,18 +177,36 @@ impl fmt::Debug for UnixListener {
/// [`None`]: https://doc.rust-lang.org/std/option/enum.Option.html#variant.None
/// [`incoming`]: struct.UnixListener.html#method.incoming
/// [`UnixListener`]: struct.UnixListener.html
#[derive(Debug)]
pub struct Incoming<'a>(&'a UnixListener);
pub struct Incoming<'a> {
listener: &'a UnixListener,
accept: Option<
Pin<Box<dyn Future<Output = io::Result<(UnixStream, SocketAddr)>> + Send + Sync + 'a>>,
>,
}

impl Stream for Incoming<'_> {
type Item = io::Result<UnixStream>;

fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
let future = self.0.accept();
pin_utils::pin_mut!(future);
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
loop {
if self.accept.is_none() {
self.accept = Some(Box::pin(self.listener.accept()));
}

if let Some(f) = &mut self.accept {
let res = ready!(f.as_mut().poll(cx));
self.accept = None;
return Poll::Ready(Some(res.map(|(stream, _)| stream)));
}
}
}
}

let (socket, _) = futures_core::ready!(future.poll(cx))?;
Poll::Ready(Some(Ok(socket)))
impl fmt::Debug for Incoming<'_> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Incoming")
.field("listener", self.listener)
.finish()
}
}

Expand Down

0 comments on commit c4eb910

Please sign in to comment.