summaryrefslogtreecommitdiffstats
path: root/third_party/rust/tokio-tcp/src/incoming.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/tokio-tcp/src/incoming.rs')
-rw-r--r--third_party/rust/tokio-tcp/src/incoming.rs45
1 files changed, 45 insertions, 0 deletions
diff --git a/third_party/rust/tokio-tcp/src/incoming.rs b/third_party/rust/tokio-tcp/src/incoming.rs
new file mode 100644
index 0000000000..6726224b82
--- /dev/null
+++ b/third_party/rust/tokio-tcp/src/incoming.rs
@@ -0,0 +1,45 @@
+use super::TcpListener;
+use super::TcpStream;
+
+use std::io;
+use futures::stream::Stream;
+use futures::{Poll, Async};
+
+#[cfg(feature = "unstable-futures")]
+use futures2;
+
+/// Stream returned by the `TcpListener::incoming` function representing the
+/// stream of sockets received from a listener.
+#[must_use = "streams do nothing unless polled"]
+#[derive(Debug)]
+pub struct Incoming {
+ inner: TcpListener,
+}
+
+impl Incoming {
+ pub(crate) fn new(listener: TcpListener) -> Incoming {
+ Incoming { inner: listener }
+ }
+}
+
+impl Stream for Incoming {
+ type Item = TcpStream;
+ type Error = io::Error;
+
+ fn poll(&mut self) -> Poll<Option<Self::Item>, io::Error> {
+ let (socket, _) = try_ready!(self.inner.poll_accept());
+ Ok(Async::Ready(Some(socket)))
+ }
+}
+
+#[cfg(feature = "unstable-futures")]
+impl futures2::Stream for Incoming {
+ type Item = TcpStream;
+ type Error = io::Error;
+
+ fn poll_next(&mut self, cx: &mut futures2::task::Context)
+ -> futures2::Poll<Option<Self::Item>, io::Error>
+ {
+ Ok(self.inner.poll_accept2(cx)?.map(|(sock, _)| Some(sock)))
+ }
+}