use std::io::{self, Read}; use std::pin::Pin; use std::task::{Context, Poll}; use tokio_executor::threadpool::blocking; use futures::stream::Stream; pub struct WrappedReaderStream { reader: R, buffer: Vec, } impl WrappedReaderStream { pub fn new(reader: R) -> Self { let mut buffer = Vec::with_capacity(64*1024); unsafe { buffer.set_len(buffer.capacity()); } Self { reader, buffer } } } impl Stream for WrappedReaderStream { type Item = Result, io::Error>; fn poll_next(self: Pin<&mut Self>, _cx: &mut Context) -> Poll> { let this = self.get_mut(); match blocking(|| this.reader.read(&mut this.buffer)) { Poll::Ready(Ok(Ok(n))) => { if n == 0 { // EOF Poll::Ready(None) } else { Poll::Ready(Some(Ok(this.buffer[..n].to_vec()))) } } Poll::Ready(Ok(Err(err))) => Poll::Ready(Some(Err(err))), Poll::Ready(Err(err)) => Poll::Ready(Some(Err(io::Error::new( io::ErrorKind::Other, err.to_string(), )))), Poll::Pending => Poll::Pending, } } }