-
Notifications
You must be signed in to change notification settings - Fork 5
refactor: buffered #9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
6735c2b
d0dc83a
45e8881
d4f79c6
275689d
0f46775
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,177 @@ | ||||||||||||||||||||
| #[cfg(feature = "alloc")] | ||||||||||||||||||||
| use alloc::boxed::Box; | ||||||||||||||||||||
| use core::{cmp, io::BorrowedBuf, mem::MaybeUninit}; | ||||||||||||||||||||
|
|
||||||||||||||||||||
| #[cfg(not(feature = "alloc"))] | ||||||||||||||||||||
| use heapless::Vec; | ||||||||||||||||||||
|
|
||||||||||||||||||||
| #[cfg(not(feature = "alloc"))] | ||||||||||||||||||||
| use crate::DEFAULT_BUF_SIZE; | ||||||||||||||||||||
| use crate::{Read, Result}; | ||||||||||||||||||||
|
|
||||||||||||||||||||
| pub struct Buffer { | ||||||||||||||||||||
| // The buffer. | ||||||||||||||||||||
| #[cfg(feature = "alloc")] | ||||||||||||||||||||
| buf: Box<[MaybeUninit<u8>]>, | ||||||||||||||||||||
| // The buffer. | ||||||||||||||||||||
| #[cfg(not(feature = "alloc"))] | ||||||||||||||||||||
| buf: Vec<MaybeUninit<u8>, DEFAULT_BUF_SIZE, u16>, | ||||||||||||||||||||
|
|
||||||||||||||||||||
| // The current seek offset into `buf`, must always be <= `filled`. | ||||||||||||||||||||
| pos: usize, | ||||||||||||||||||||
| // Each call to `fill_buf` sets `filled` to indicate how many bytes at the start of `buf` are | ||||||||||||||||||||
| // initialized with bytes from a read. | ||||||||||||||||||||
| filled: usize, | ||||||||||||||||||||
| #[cfg(borrowedbuf_init)] | ||||||||||||||||||||
| // This is the max number of bytes returned across all `fill_buf` calls. We track this so that | ||||||||||||||||||||
| // we can accurately tell `read_buf` how many bytes of buf are initialized, to bypass as much | ||||||||||||||||||||
| // of its defensive initialization as possible. Note that while this often the same as | ||||||||||||||||||||
| // `filled`, it doesn't need to be. Calls to `fill_buf` are not required to actually fill the | ||||||||||||||||||||
| // buffer, and omitting this is a huge perf regression for `Read` impls that do not. | ||||||||||||||||||||
| initialized: usize, | ||||||||||||||||||||
| } | ||||||||||||||||||||
|
|
||||||||||||||||||||
| impl Buffer { | ||||||||||||||||||||
| #[inline] | ||||||||||||||||||||
| pub fn with_capacity(capacity: usize) -> Self { | ||||||||||||||||||||
| #[cfg(feature = "alloc")] | ||||||||||||||||||||
| let buf = Box::new_uninit_slice(capacity); | ||||||||||||||||||||
| #[cfg(not(feature = "alloc"))] | ||||||||||||||||||||
| let buf = { | ||||||||||||||||||||
| let mut buf = Vec::new(); | ||||||||||||||||||||
| assert!(capacity <= buf.capacity()); | ||||||||||||||||||||
| unsafe { buf.set_len(capacity) }; | ||||||||||||||||||||
| buf | ||||||||||||||||||||
| }; | ||||||||||||||||||||
| Self { | ||||||||||||||||||||
| buf, | ||||||||||||||||||||
| pos: 0, | ||||||||||||||||||||
| filled: 0, | ||||||||||||||||||||
| #[cfg(borrowedbuf_init)] | ||||||||||||||||||||
| initialized: 0, | ||||||||||||||||||||
| } | ||||||||||||||||||||
| } | ||||||||||||||||||||
|
|
||||||||||||||||||||
| #[inline] | ||||||||||||||||||||
| pub fn buffer(&self) -> &[u8] { | ||||||||||||||||||||
| // SAFETY: self.pos and self.filled are valid, and self.filled >= self.pos, and | ||||||||||||||||||||
| // that region is initialized because those are all invariants of this type. | ||||||||||||||||||||
| unsafe { | ||||||||||||||||||||
| self.buf | ||||||||||||||||||||
| .get_unchecked(self.pos..self.filled) | ||||||||||||||||||||
| .assume_init_ref() | ||||||||||||||||||||
| } | ||||||||||||||||||||
| } | ||||||||||||||||||||
|
|
||||||||||||||||||||
| #[inline] | ||||||||||||||||||||
| pub fn capacity(&self) -> usize { | ||||||||||||||||||||
| self.buf.len() | ||||||||||||||||||||
| } | ||||||||||||||||||||
|
|
||||||||||||||||||||
| #[inline] | ||||||||||||||||||||
| pub fn filled(&self) -> usize { | ||||||||||||||||||||
| self.filled | ||||||||||||||||||||
| } | ||||||||||||||||||||
|
|
||||||||||||||||||||
| #[inline] | ||||||||||||||||||||
| pub fn pos(&self) -> usize { | ||||||||||||||||||||
| self.pos | ||||||||||||||||||||
| } | ||||||||||||||||||||
|
|
||||||||||||||||||||
| #[cfg(borrowedbuf_init)] | ||||||||||||||||||||
| #[inline] | ||||||||||||||||||||
| pub fn initialized(&self) -> usize { | ||||||||||||||||||||
| self.initialized | ||||||||||||||||||||
| } | ||||||||||||||||||||
|
|
||||||||||||||||||||
| #[inline] | ||||||||||||||||||||
| pub fn discard_buffer(&mut self) { | ||||||||||||||||||||
| self.pos = 0; | ||||||||||||||||||||
| self.filled = 0; | ||||||||||||||||||||
| } | ||||||||||||||||||||
|
|
||||||||||||||||||||
| #[inline] | ||||||||||||||||||||
| pub fn consume(&mut self, amt: usize) { | ||||||||||||||||||||
| self.pos = cmp::min(self.pos + amt, self.filled); | ||||||||||||||||||||
| } | ||||||||||||||||||||
|
|
||||||||||||||||||||
| /// If there are `amt` bytes available in the buffer, pass a slice containing those bytes to | ||||||||||||||||||||
| /// `visitor` and return true. If there are not enough bytes available, return false. | ||||||||||||||||||||
| #[inline] | ||||||||||||||||||||
| pub fn consume_with<V>(&mut self, amt: usize, mut visitor: V) -> bool | ||||||||||||||||||||
| where | ||||||||||||||||||||
| V: FnMut(&[u8]), | ||||||||||||||||||||
| { | ||||||||||||||||||||
| if let Some(claimed) = self.buffer().get(..amt) { | ||||||||||||||||||||
| visitor(claimed); | ||||||||||||||||||||
| // If the indexing into self.buffer() succeeds, amt must be a valid increment. | ||||||||||||||||||||
| self.pos += amt; | ||||||||||||||||||||
| true | ||||||||||||||||||||
| } else { | ||||||||||||||||||||
| false | ||||||||||||||||||||
| } | ||||||||||||||||||||
| } | ||||||||||||||||||||
|
|
||||||||||||||||||||
| #[inline] | ||||||||||||||||||||
| pub fn unconsume(&mut self, amt: usize) { | ||||||||||||||||||||
| self.pos = self.pos.saturating_sub(amt); | ||||||||||||||||||||
| } | ||||||||||||||||||||
|
|
||||||||||||||||||||
| /// Read more bytes into the buffer without discarding any of its contents | ||||||||||||||||||||
| pub fn read_more(&mut self, mut reader: impl Read) -> Result<usize> { | ||||||||||||||||||||
| let mut buf = BorrowedBuf::from(&mut self.buf[self.filled..]); | ||||||||||||||||||||
| #[cfg(borrowedbuf_init)] | ||||||||||||||||||||
| let old_init = self.initialized - self.filled; | ||||||||||||||||||||
| #[cfg(borrowedbuf_init)] | ||||||||||||||||||||
| unsafe { | ||||||||||||||||||||
| buf.set_init(old_init); | ||||||||||||||||||||
| } | ||||||||||||||||||||
| reader.read_buf(buf.unfilled())?; | ||||||||||||||||||||
| self.filled += buf.len(); | ||||||||||||||||||||
| #[cfg(borrowedbuf_init)] | ||||||||||||||||||||
| { | ||||||||||||||||||||
| self.initialized += buf.init_len() - old_init; | ||||||||||||||||||||
| } | ||||||||||||||||||||
| Ok(buf.len()) | ||||||||||||||||||||
| } | ||||||||||||||||||||
|
|
||||||||||||||||||||
| /// Remove bytes that have already been read from the buffer. | ||||||||||||||||||||
| pub fn backshift(&mut self) { | ||||||||||||||||||||
| self.buf.copy_within(self.pos.., 0); | ||||||||||||||||||||
| self.filled -= self.pos; | ||||||||||||||||||||
|
Comment on lines
+140
to
+141
|
||||||||||||||||||||
| self.buf.copy_within(self.pos.., 0); | |
| self.filled -= self.pos; | |
| let old_pos = self.pos; | |
| self.buf.copy_within(old_pos.., 0); | |
| self.filled -= old_pos; | |
| #[cfg(borrowedbuf_init)] | |
| { | |
| self.initialized -= old_pos; | |
| } |
Uh oh!
There was an error while loading. Please reload this page.