2019-05-14 08:05:29 +00:00
|
|
|
use failure::*;
|
|
|
|
|
|
|
|
use proxmox_protocol::Chunker;
|
|
|
|
use futures::{Async, Poll};
|
|
|
|
use futures::stream::Stream;
|
|
|
|
|
2019-05-18 08:46:29 +00:00
|
|
|
/// Split input stream into dynamic sized chunks
|
2019-05-22 07:18:05 +00:00
|
|
|
pub struct ChunkStream<S> {
|
2019-05-14 08:05:29 +00:00
|
|
|
input: S,
|
|
|
|
chunker: Chunker,
|
|
|
|
buffer: Option<Vec<u8>>,
|
2019-05-22 06:05:27 +00:00
|
|
|
scan: Option<Vec<u8>>,
|
2019-05-14 08:05:29 +00:00
|
|
|
}
|
|
|
|
|
2019-05-22 07:18:05 +00:00
|
|
|
impl <S> ChunkStream<S> {
|
2019-05-14 08:05:29 +00:00
|
|
|
pub fn new(input: S) -> Self {
|
2019-05-22 06:05:27 +00:00
|
|
|
Self { input, chunker: Chunker::new(4 * 1024 * 1024), buffer: None, scan: None}
|
2019-05-14 08:05:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-22 07:18:05 +00:00
|
|
|
impl <S> Stream for ChunkStream<S>
|
|
|
|
where S: Stream,
|
|
|
|
S::Item: AsRef<[u8]>,
|
|
|
|
S::Error: Into<Error>,
|
|
|
|
{
|
2019-05-14 08:05:29 +00:00
|
|
|
|
|
|
|
type Item = Vec<u8>;
|
|
|
|
type Error = Error;
|
|
|
|
|
|
|
|
fn poll(&mut self) -> Poll<Option<Vec<u8>>, Error> {
|
|
|
|
loop {
|
2019-05-22 06:05:27 +00:00
|
|
|
|
|
|
|
if let Some(data) = self.scan.take() {
|
|
|
|
let buffer = self.buffer.get_or_insert_with(|| Vec::with_capacity(1024*1024));
|
|
|
|
let boundary = self.chunker.scan(&data);
|
|
|
|
|
|
|
|
if boundary == 0 {
|
|
|
|
buffer.extend(data);
|
|
|
|
// continue poll
|
|
|
|
} else if boundary == data.len() {
|
|
|
|
buffer.extend(data);
|
|
|
|
return Ok(Async::Ready(self.buffer.take()));
|
|
|
|
} else if boundary < data.len() {
|
|
|
|
let (left, right) = data.split_at(boundary);
|
|
|
|
buffer.extend(left);
|
|
|
|
self.scan = Some(right.to_vec());
|
|
|
|
return Ok(Async::Ready(self.buffer.take()));
|
|
|
|
} else {
|
|
|
|
panic!("got unexpected chunk boundary from chunker");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-14 08:05:29 +00:00
|
|
|
match self.input.poll() {
|
|
|
|
Err(err) => {
|
2019-05-22 07:18:05 +00:00
|
|
|
return Err(err.into());
|
2019-05-14 08:05:29 +00:00
|
|
|
}
|
|
|
|
Ok(Async::NotReady) => {
|
|
|
|
return Ok(Async::NotReady);
|
|
|
|
}
|
|
|
|
Ok(Async::Ready(None)) => {
|
2019-05-19 09:05:56 +00:00
|
|
|
let mut data = self.buffer.take().or_else(|| Some(vec![])).unwrap();
|
2019-05-22 06:05:27 +00:00
|
|
|
if let Some(rest) = self.scan.take() { data.extend(rest); }
|
2019-05-19 09:05:56 +00:00
|
|
|
|
|
|
|
if data.len() > 0 {
|
|
|
|
return Ok(Async::Ready(Some(data)));
|
|
|
|
} else {
|
|
|
|
return Ok(Async::Ready(None));
|
|
|
|
}
|
2019-05-14 08:05:29 +00:00
|
|
|
}
|
2019-05-22 05:44:51 +00:00
|
|
|
Ok(Async::Ready(Some(data))) => {
|
2019-05-22 06:05:27 +00:00
|
|
|
let scan = self.scan.get_or_insert_with(|| Vec::with_capacity(1024*1024));
|
2019-05-22 07:18:05 +00:00
|
|
|
scan.extend(data.as_ref());
|
2019-05-14 08:05:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-05-18 08:46:29 +00:00
|
|
|
|
2019-05-22 07:05:35 +00:00
|
|
|
use bytes::BytesMut;
|
|
|
|
|
2019-05-18 08:46:29 +00:00
|
|
|
/// Split input stream into fixed sized chunks
|
2019-05-22 07:05:35 +00:00
|
|
|
pub struct FixedChunkStream<S> {
|
2019-05-18 08:46:29 +00:00
|
|
|
input: S,
|
|
|
|
chunk_size: usize,
|
2019-05-22 07:05:35 +00:00
|
|
|
buffer: BytesMut,
|
2019-05-18 08:46:29 +00:00
|
|
|
}
|
|
|
|
|
2019-05-22 07:05:35 +00:00
|
|
|
impl <S> FixedChunkStream<S> {
|
2019-05-18 08:46:29 +00:00
|
|
|
|
|
|
|
pub fn new(input: S, chunk_size: usize) -> Self {
|
2019-05-22 07:05:35 +00:00
|
|
|
Self { input, chunk_size, buffer: BytesMut::new() }
|
2019-05-18 08:46:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-22 07:05:35 +00:00
|
|
|
impl <S> Stream for FixedChunkStream<S>
|
|
|
|
where S: Stream,
|
|
|
|
S::Item: AsRef<[u8]>,
|
|
|
|
{
|
2019-05-18 08:46:29 +00:00
|
|
|
|
2019-05-22 07:05:35 +00:00
|
|
|
type Item = BytesMut;
|
|
|
|
type Error = S::Error;
|
2019-05-18 08:46:29 +00:00
|
|
|
|
2019-05-22 07:05:35 +00:00
|
|
|
fn poll(&mut self) -> Poll<Option<BytesMut>, S::Error> {
|
2019-05-18 08:46:29 +00:00
|
|
|
loop {
|
2019-05-22 07:05:35 +00:00
|
|
|
|
|
|
|
if self.buffer.len() == self.chunk_size {
|
|
|
|
return Ok(Async::Ready(Some(self.buffer.take())));
|
|
|
|
} else if self.buffer.len() > self.chunk_size {
|
|
|
|
let result = self.buffer.split_to(self.chunk_size);
|
|
|
|
return Ok(Async::Ready(Some(result)));
|
|
|
|
}
|
|
|
|
|
2019-05-18 08:46:29 +00:00
|
|
|
match self.input.poll() {
|
|
|
|
Err(err) => {
|
|
|
|
return Err(err);
|
|
|
|
}
|
|
|
|
Ok(Async::NotReady) => {
|
|
|
|
return Ok(Async::NotReady);
|
|
|
|
}
|
|
|
|
Ok(Async::Ready(None)) => {
|
|
|
|
// last chunk can have any size
|
2019-05-22 07:05:35 +00:00
|
|
|
if self.buffer.len() > 0 {
|
|
|
|
return Ok(Async::Ready(Some(self.buffer.take())));
|
2019-05-18 08:46:29 +00:00
|
|
|
} else {
|
2019-05-22 07:05:35 +00:00
|
|
|
return Ok(Async::Ready(None));
|
2019-05-18 08:46:29 +00:00
|
|
|
}
|
|
|
|
}
|
2019-05-22 07:05:35 +00:00
|
|
|
Ok(Async::Ready(Some(data))) => {
|
|
|
|
self.buffer.extend_from_slice(data.as_ref());
|
|
|
|
}
|
2019-05-18 08:46:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|