Skip to content

Commit 5a13041

Browse files
authoredJul 15, 2024··
feat(rt): add ReadBufCursor methods remaining() and put_slice() (#3700)
There is currently no way to write to ReadBufCursor without unsafe code, even though writing a slice to it like one would do to a Buf shouldn't require unsafe code.
1 parent 4fda6b3 commit 5a13041

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed
 

‎src/rt/io.rs

+16-6
Original file line numberDiff line numberDiff line change
@@ -244,19 +244,29 @@ impl<'data> ReadBufCursor<'data> {
244244
self.buf.init = self.buf.filled.max(self.buf.init);
245245
}
246246

247+
/// Returns the number of bytes that can be written from the current
248+
/// position until the end of the buffer is reached.
249+
///
250+
/// This value is equal to the length of the slice returned by `as_mut()``.
247251
#[inline]
248-
pub(crate) fn remaining(&self) -> usize {
252+
pub fn remaining(&self) -> usize {
249253
self.buf.remaining()
250254
}
251255

256+
/// Transfer bytes into `self`` from `src` and advance the cursor
257+
/// by the number of bytes written.
258+
///
259+
/// # Panics
260+
///
261+
/// `self` must have enough remaining capacity to contain all of `src`.
252262
#[inline]
253-
pub(crate) fn put_slice(&mut self, buf: &[u8]) {
263+
pub fn put_slice(&mut self, src: &[u8]) {
254264
assert!(
255-
self.buf.remaining() >= buf.len(),
256-
"buf.len() must fit in remaining()"
265+
self.buf.remaining() >= src.len(),
266+
"src.len() must fit in remaining()"
257267
);
258268

259-
let amt = buf.len();
269+
let amt = src.len();
260270
// Cannot overflow, asserted above
261271
let end = self.buf.filled + amt;
262272

@@ -265,7 +275,7 @@ impl<'data> ReadBufCursor<'data> {
265275
self.buf.raw[self.buf.filled..end]
266276
.as_mut_ptr()
267277
.cast::<u8>()
268-
.copy_from_nonoverlapping(buf.as_ptr(), amt);
278+
.copy_from_nonoverlapping(src.as_ptr(), amt);
269279
}
270280

271281
if self.buf.init < end {

0 commit comments

Comments
 (0)
Please sign in to comment.