From: Wolfgang Bumiller Date: Fri, 3 Jul 2020 07:45:25 +0000 (+0200) Subject: minor style & whitespace fixups X-Git-Tag: v0.7.0~6 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=e13c4f66bb0b30850985b2c3844b894ec218bc8d;p=proxmox-backup.git minor style & whitespace fixups Signed-off-by: Wolfgang Bumiller --- diff --git a/src/backup/async_index_reader.rs b/src/backup/async_index_reader.rs index 535e1678..0911375e 100644 --- a/src/backup/async_index_reader.rs +++ b/src/backup/async_index_reader.rs @@ -36,7 +36,7 @@ impl AsyncIndexReader { Self { store: Some(store), index, - read_buffer: Vec::with_capacity(1024*1024), + read_buffer: Vec::with_capacity(1024 * 1024), current_chunk_idx: 0, current_chunk_digest: [0u8; 32], state: AsyncIndexReaderState::NoData, @@ -44,9 +44,10 @@ impl AsyncIndexReader { } } -impl AsyncRead for AsyncIndexReader where -S: AsyncReadChunk + Unpin + Sync + 'static, -I: IndexFile + Unpin +impl AsyncRead for AsyncIndexReader +where + S: AsyncReadChunk + Unpin + Sync + 'static, + I: IndexFile + Unpin, { fn poll_read( self: Pin<&mut Self>, @@ -57,7 +58,7 @@ I: IndexFile + Unpin loop { match &mut this.state { AsyncIndexReaderState::NoData => { - if this.current_chunk_idx >= this.index.index_count() { + if this.current_chunk_idx >= this.index.index_count() { return Poll::Ready(Ok(0)); } @@ -67,7 +68,7 @@ I: IndexFile + Unpin .ok_or(io_format_err!("could not get digest"))? .clone(); - if digest == this.current_chunk_digest { + if digest == this.current_chunk_digest { this.state = AsyncIndexReaderState::HaveData(0); continue; } @@ -78,7 +79,7 @@ I: IndexFile + Unpin Some(store) => store, None => { return Poll::Ready(Err(io_format_err!("could not find store"))); - }, + } }; let future = async move { @@ -88,7 +89,7 @@ I: IndexFile + Unpin }; this.state = AsyncIndexReaderState::WaitForData(future.boxed()); - }, + } AsyncIndexReaderState::WaitForData(ref mut future) => { match ready!(future.as_mut().poll(cx)) { Ok((store, mut chunk_data)) => { @@ -96,12 +97,12 @@ I: IndexFile + Unpin this.read_buffer.append(&mut chunk_data); this.state = AsyncIndexReaderState::HaveData(0); this.store = Some(store); - }, + } Err(err) => { return Poll::Ready(Err(io_err_other(err))); - }, + } }; - }, + } AsyncIndexReaderState::HaveData(offset) => { let offset = *offset; let len = this.read_buffer.len(); @@ -111,7 +112,7 @@ I: IndexFile + Unpin buf.len() }; - buf[0..n].copy_from_slice(&this.read_buffer[offset..offset+n]); + buf[0..n].copy_from_slice(&this.read_buffer[offset..(offset + n)]); if offset + n == len { this.state = AsyncIndexReaderState::NoData; this.current_chunk_idx += 1; @@ -120,7 +121,7 @@ I: IndexFile + Unpin } return Poll::Ready(Ok(n)); - }, + } } } }