src/tools/wrapped_reader_stream.rs: switch to async

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2019-08-23 13:30:27 +02:00
parent e668912a99
commit 0cdb8d9c5b
1 changed files with 24 additions and 26 deletions

View File

@ -1,15 +1,16 @@
//use failure::*;
use tokio_threadpool;
use std::io::Read;
use futures::Async;
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<R: Read> {
pub struct WrappedReaderStream<R: Read + Unpin> {
reader: R,
buffer: Vec<u8>,
}
impl <R: Read> WrappedReaderStream<R> {
impl <R: Read + Unpin> WrappedReaderStream<R> {
pub fn new(reader: R) -> Self {
let mut buffer = Vec::with_capacity(64*1024);
@ -18,29 +19,26 @@ impl <R: Read> WrappedReaderStream<R> {
}
}
fn blocking_err() -> std::io::Error {
std::io::Error::new(
std::io::ErrorKind::Other,
"`blocking` annotated I/O must be called from the context of the Tokio runtime.")
}
impl<R: Read + Unpin> Stream for WrappedReaderStream<R> {
type Item = Result<Vec<u8>, io::Error>;
impl <R: Read> Stream for WrappedReaderStream<R> {
type Item = Vec<u8>;
type Error = std::io::Error;
fn poll(&mut self) -> Result<Async<Option<Vec<u8>>>, std::io::Error> {
match tokio_threadpool::blocking(|| self.reader.read(&mut self.buffer)) {
Ok(Async::Ready(Ok(n))) => {
if n == 0 { // EOF
Ok(Async::Ready(None))
fn poll_next(self: Pin<&mut Self>, _cx: &mut Context) -> Poll<Option<Self::Item>> {
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 {
Ok(Async::Ready(Some(self.buffer[..n].to_vec())))
Poll::Ready(Some(Ok(this.buffer[..n].to_vec())))
}
},
Ok(Async::Ready(Err(err))) => Err(err),
Ok(Async::NotReady) => Ok(Async::NotReady),
Err(_) => Err(blocking_err()),
}
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,
}
}
}