src/backup/chunk_stream.rs: use BytesMut in ChunkStream

This commit is contained in:
Dietmar Maurer 2019-05-22 09:39:02 +02:00
parent c052be5c86
commit 0cc0fffd1e

View File

@ -4,17 +4,19 @@ use proxmox_protocol::Chunker;
use futures::{Async, Poll}; use futures::{Async, Poll};
use futures::stream::Stream; use futures::stream::Stream;
use bytes::BytesMut;
/// Split input stream into dynamic sized chunks /// Split input stream into dynamic sized chunks
pub struct ChunkStream<S> { pub struct ChunkStream<S> {
input: S, input: S,
chunker: Chunker, chunker: Chunker,
buffer: Option<Vec<u8>>, buffer: BytesMut,
scan: Option<Vec<u8>>, scan_pos: usize,
} }
impl <S> ChunkStream<S> { impl <S> ChunkStream<S> {
pub fn new(input: S) -> Self { pub fn new(input: S) -> Self {
Self { input, chunker: Chunker::new(4 * 1024 * 1024), buffer: None, scan: None} Self { input, chunker: Chunker::new(4 * 1024 * 1024), buffer: BytesMut::new(), scan_pos: 0}
} }
} }
@ -24,27 +26,24 @@ impl <S> Stream for ChunkStream<S>
S::Error: Into<Error>, S::Error: Into<Error>,
{ {
type Item = Vec<u8>; type Item = BytesMut;
type Error = Error; type Error = Error;
fn poll(&mut self) -> Poll<Option<Vec<u8>>, Error> { fn poll(&mut self) -> Poll<Option<BytesMut>, Error> {
loop { loop {
if let Some(data) = self.scan.take() { if self.scan_pos < self.buffer.len() {
let buffer = self.buffer.get_or_insert_with(|| Vec::with_capacity(1024*1024)); let boundary = self.chunker.scan(&self.buffer[self.scan_pos..]);
let boundary = self.chunker.scan(&data);
let chunk_size = self.scan_pos + boundary;
if boundary == 0 { if boundary == 0 {
buffer.extend(data); self.scan_pos = self.buffer.len();
// continue poll // continue poll
} else if boundary == data.len() { } else if chunk_size <= self.buffer.len() {
buffer.extend(data); let result = self.buffer.split_to(chunk_size);
return Ok(Async::Ready(self.buffer.take())); self.scan_pos = 0;
} else if boundary < data.len() { return Ok(Async::Ready(Some(result)));
let (left, right) = data.split_at(boundary);
buffer.extend(left);
self.scan = Some(right.to_vec());
return Ok(Async::Ready(self.buffer.take()));
} else { } else {
panic!("got unexpected chunk boundary from chunker"); panic!("got unexpected chunk boundary from chunker");
} }
@ -58,26 +57,21 @@ impl <S> Stream for ChunkStream<S>
return Ok(Async::NotReady); return Ok(Async::NotReady);
} }
Ok(Async::Ready(None)) => { Ok(Async::Ready(None)) => {
let mut data = self.buffer.take().or_else(|| Some(vec![])).unwrap(); self.scan_pos = 0;
if let Some(rest) = self.scan.take() { data.extend(rest); } if self.buffer.len() > 0 {
return Ok(Async::Ready(Some(self.buffer.take())));
if data.len() > 0 {
return Ok(Async::Ready(Some(data)));
} else { } else {
return Ok(Async::Ready(None)); return Ok(Async::Ready(None));
} }
} }
Ok(Async::Ready(Some(data))) => { Ok(Async::Ready(Some(data))) => {
let scan = self.scan.get_or_insert_with(|| Vec::with_capacity(1024*1024)); self.buffer.extend_from_slice(data.as_ref());
scan.extend(data.as_ref()); }
}
} }
} }
} }
} }
use bytes::BytesMut;
/// Split input stream into fixed sized chunks /// Split input stream into fixed sized chunks
pub struct FixedChunkStream<S> { pub struct FixedChunkStream<S> {
input: S, input: S,