rustix/buffer.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
//! Utilities for functions that return data via buffers.
#![allow(unsafe_code)]
#[cfg(feature = "alloc")]
use alloc::vec::Vec;
use core::mem::MaybeUninit;
use core::slice;
/// A memory buffer that may be uninitialized.
///
/// There are three types that implement the `Buffer` trait, and the type you
/// use determines the return type of the functions that use it:
///
/// | If you pass a… | You get back a… |
/// | ------------------------ | --------------- |
/// | `&mut [u8]` | `usize`, indicating the number of elements initialized. |
/// | `&mut [MaybeUninit<u8>]` | `(&mut [u8], &mut [MaybeUninit<u8>])`, holding the initialized and uninitialized subslices. |
/// | [`SpareCapacity`] | `usize`, indicating the number of elements initialized. And the `Vec` is extended. |
///
/// # Examples
///
/// Passing a `&mut [u8]`:
///
/// ```
/// # use rustix::io::read;
/// # fn example(fd: rustix::fd::BorrowedFd) -> rustix::io::Result<()> {
/// let mut buf = [0_u8; 64];
/// let nread = read(fd, &mut buf)?;
/// // `nread` is the number of bytes read.
/// # Ok(())
/// # }
/// ```
///
/// Passing a `&mut [MaybeUninit<u8>]`:
///
/// ```
/// # use rustix::io::read;
/// # use std::mem::MaybeUninit;
/// # fn example(fd: rustix::fd::BorrowedFd) -> rustix::io::Result<()> {
/// let mut buf = [MaybeUninit::<u8>::uninit(); 64];
/// let (init, uninit) = read(fd, &mut buf)?;
/// // `init` is a `&mut [u8]` with the initialized bytes.
/// // `uninit` is a `&mut [MaybeUninit<u8>]` with the remaining bytes.
/// # Ok(())
/// # }
/// ```
///
/// Passing a [`SpareCapacity`], via the [`spare_capacity`] helper function:
///
/// ```
/// # use rustix::io::read;
/// # use rustix::buffer::spare_capacity;
/// # fn example(fd: rustix::fd::BorrowedFd) -> rustix::io::Result<()> {
/// let mut buf = Vec::with_capacity(64);
/// let nread = read(fd, spare_capacity(&mut buf))?;
/// // `nread` is the number of bytes read.
/// // Also, `buf.len()` is now `nread` elements longer than it was before.
/// # Ok(())
/// # }
/// ```
///
/// # Guide to error messages
///
/// Sometimes code using `Buffer` can encounter non-obvious error messages.
/// Here are some we've encountered, along with ways to fix them.
///
/// If you see errors like
/// "cannot move out of `self` which is behind a mutable reference"
/// and
/// "move occurs because `x` has type `&mut [u8]`, which does not implement the `Copy` trait",
/// replace `x` with `&mut *x`. See `error_buffer_wrapper` in
/// examples/buffer_errors.rs.
///
/// If you see errors like
/// "type annotations needed"
/// and
/// "cannot infer type of the type parameter `Buf` declared on the function `read`",
/// you may need to change a `&mut []` to `&mut [0_u8; 0]`. See
/// `error_empty_slice` in examples/buffer_errors.rs.
///
/// If you see errors like
/// "the trait bound `[MaybeUninit<u8>; 1]: Buffer<u8>` is not satisfied",
/// add a `&mut` to pass the array by reference instead of by value. See
/// `error_array_by_value` in examples/buffer_errors.rs.
///
/// If you see errors like
/// "cannot move out of `x`, a captured variable in an `FnMut` closure",
/// try replacing `x` with `&mut *x`, or, if that doesn't work, try moving a
/// `let` into the closure body. See `error_retry_closure` and
/// `error_retry_indirect_closure` in examples/buffer_errors.rs.
///
/// If you see errors like
/// "captured variable cannot escape `FnMut` closure body",
/// use an explicit loop instead of `retry_on_intr`, assuming you're using
/// that. See `error_retry_closure_uninit` in examples/buffer_errors.rs.
pub trait Buffer<T>: private::Sealed<T> {}
// Implement `Buffer` for all the types that implement `Sealed`.
impl<T> Buffer<T> for &mut [T] {}
impl<T, const N: usize> Buffer<T> for &mut [T; N] {}
#[cfg(feature = "alloc")]
impl<T> Buffer<T> for &mut Vec<T> {}
impl<T> Buffer<T> for &mut [MaybeUninit<T>] {}
impl<T, const N: usize> Buffer<T> for &mut [MaybeUninit<T>; N] {}
#[cfg(feature = "alloc")]
impl<T> Buffer<T> for &mut Vec<MaybeUninit<T>> {}
#[cfg(feature = "alloc")]
impl<'a, T> Buffer<T> for SpareCapacity<'a, T> {}
impl<T> private::Sealed<T> for &mut [T] {
type Output = usize;
#[inline]
fn parts_mut(&mut self) -> (*mut T, usize) {
(self.as_mut_ptr(), self.len())
}
#[inline]
unsafe fn assume_init(self, len: usize) -> Self::Output {
len
}
}
impl<T, const N: usize> private::Sealed<T> for &mut [T; N] {
type Output = usize;
#[inline]
fn parts_mut(&mut self) -> (*mut T, usize) {
(self.as_mut_ptr(), N)
}
#[inline]
unsafe fn assume_init(self, len: usize) -> Self::Output {
len
}
}
// `Vec` implements `DerefMut` to `&mut [T]`, however it doesn't get
// auto-derefed in a `impl Buffer<u8>`, so we add this `impl` so that our users
// don't have to add an extra `*` in these situations.
#[cfg(feature = "alloc")]
impl<T> private::Sealed<T> for &mut Vec<T> {
type Output = usize;
#[inline]
fn parts_mut(&mut self) -> (*mut T, usize) {
(self.as_mut_ptr(), self.len())
}
#[inline]
unsafe fn assume_init(self, len: usize) -> Self::Output {
len
}
}
impl<'a, T> private::Sealed<T> for &'a mut [MaybeUninit<T>] {
type Output = (&'a mut [T], &'a mut [MaybeUninit<T>]);
#[inline]
fn parts_mut(&mut self) -> (*mut T, usize) {
(self.as_mut_ptr().cast(), self.len())
}
#[inline]
unsafe fn assume_init(self, len: usize) -> Self::Output {
let (init, uninit) = self.split_at_mut(len);
// SAFETY: The user asserts that the slice is now initialized.
let init = slice::from_raw_parts_mut(init.as_mut_ptr().cast::<T>(), init.len());
(init, uninit)
}
}
impl<'a, T, const N: usize> private::Sealed<T> for &'a mut [MaybeUninit<T>; N] {
type Output = (&'a mut [T], &'a mut [MaybeUninit<T>]);
#[inline]
fn parts_mut(&mut self) -> (*mut T, usize) {
(self.as_mut_ptr().cast(), self.len())
}
#[inline]
unsafe fn assume_init(self, len: usize) -> Self::Output {
let (init, uninit) = self.split_at_mut(len);
// SAFETY: The user asserts that the slice is now initialized.
let init = slice::from_raw_parts_mut(init.as_mut_ptr().cast::<T>(), init.len());
(init, uninit)
}
}
#[cfg(feature = "alloc")]
impl<'a, T> private::Sealed<T> for &'a mut Vec<MaybeUninit<T>> {
type Output = (&'a mut [T], &'a mut [MaybeUninit<T>]);
#[inline]
fn parts_mut(&mut self) -> (*mut T, usize) {
(self.as_mut_ptr().cast(), self.len())
}
#[inline]
unsafe fn assume_init(self, len: usize) -> Self::Output {
let (init, uninit) = self.split_at_mut(len);
// SAFETY: The user asserts that the slice is now initialized.
let init = slice::from_raw_parts_mut(init.as_mut_ptr().cast::<T>(), init.len());
(init, uninit)
}
}
/// A type that implements [`Buffer`] by appending to a `Vec`, up to its
/// capacity.
///
/// To use this, use the [`spare_capacity`] function.
///
/// Because this uses the capacity, and never reallocates, the `Vec` should
/// have some non-empty spare capacity.
#[cfg(feature = "alloc")]
#[cfg_attr(docsrs, doc(cfg(feature = "alloc")))]
pub struct SpareCapacity<'a, T>(&'a mut Vec<T>);
/// Construct an [`SpareCapacity`], which implements [`Buffer`].
///
/// This wraps a `Vec` and uses the spare capacity of the `Vec` as the buffer
/// to receive data in, automatically calling `set_len` on the `Vec` to set the
/// length to include the received elements.
///
/// This uses the existing capacity, and never allocates, so the `Vec` should
/// have some non-empty spare capacity!
///
/// # Examples
///
/// ```
/// # fn test(input: rustix::fd::BorrowedFd) -> rustix::io::Result<()> {
/// use rustix::buffer::spare_capacity;
/// use rustix::io::{read, Errno};
///
/// let mut buf = Vec::with_capacity(1024);
/// match read(input, spare_capacity(&mut buf)) {
/// Ok(0) => { /* end of stream */ }
/// Ok(n) => { /* `buf` is now `n` bytes longer */ }
/// Err(Errno::INTR) => { /* `buf` is unmodified */ }
/// Err(e) => {
/// return Err(e);
/// }
/// }
///
/// # Ok(())
/// # }
/// ```
#[cfg(feature = "alloc")]
#[cfg_attr(docsrs, doc(cfg(feature = "alloc")))]
pub fn spare_capacity<'a, T>(v: &'a mut Vec<T>) -> SpareCapacity<'a, T> {
debug_assert_ne!(
v.capacity(),
0,
"`extend` uses spare capacity, and never allocates new memory, so the `Vec` passed to it \
should have some spare capacity."
);
SpareCapacity(v)
}
#[cfg(feature = "alloc")]
impl<'a, T> private::Sealed<T> for SpareCapacity<'a, T> {
/// The mutated `Vec` reflects the number of bytes read. We also return
/// this number, and a value of 0 indicates the end of the stream has
/// been reached.
type Output = usize;
#[inline]
fn parts_mut(&mut self) -> (*mut T, usize) {
let spare = self.0.spare_capacity_mut();
(spare.as_mut_ptr().cast(), spare.len())
}
#[inline]
unsafe fn assume_init(self, len: usize) -> Self::Output {
// We initialized `len` elements; extend the `Vec` to include them.
self.0.set_len(self.0.len() + len);
len
}
}
mod private {
pub trait Sealed<T> {
/// The result of the process operation.
type Output;
/// Return a pointer and length for this buffer.
///
/// The length is the number of elements of type `T`, not a number of
/// bytes.
///
/// It's tempting to have this return `&mut [MaybeUninit<T>]` instead,
/// however that would require this function to be `unsafe`, because
/// callers could use the `&mut [MaybeUninit<T>]` slice to set elements
/// to `MaybeUninit::<T>::uninit()`, which would be a problem if `Self`
/// is `&mut [T]` or similar.
fn parts_mut(&mut self) -> (*mut T, usize);
/// Convert a finished buffer pointer into its result.
///
/// # Safety
///
/// At least `len` elements of the buffer must now be initialized.
#[must_use]
unsafe fn assume_init(self, len: usize) -> Self::Output;
}
}
#[cfg(test)]
mod tests {
#[allow(unused_imports)]
use super::*;
#[cfg(not(windows))]
#[test]
fn test_compilation() {
use crate::io::read;
use core::mem::MaybeUninit;
// We need to obtain input stream, so open our own source file.
let input = std::fs::File::open("src/buffer.rs").unwrap();
let mut buf = vec![0_u8; 3];
buf.reserve(32);
let _x: usize = read(&input, spare_capacity(&mut buf)).unwrap();
let _x: (&mut [u8], &mut [MaybeUninit<u8>]) =
read(&input, buf.spare_capacity_mut()).unwrap();
let _x: usize = read(&input, &mut buf).unwrap();
let _x: usize = read(&input, &mut *buf).unwrap();
let _x: usize = read(&input, &mut buf[..]).unwrap();
let _x: usize = read(&input, &mut (*buf)[..]).unwrap();
let mut buf = [0, 0, 0];
let _x: usize = read(&input, &mut buf).unwrap();
let _x: usize = read(&input, &mut buf[..]).unwrap();
let mut buf = [
MaybeUninit::uninit(),
MaybeUninit::uninit(),
MaybeUninit::uninit(),
];
let _x: (&mut [u8], &mut [MaybeUninit<u8>]) = read(&input, &mut buf).unwrap();
let _x: (&mut [u8], &mut [MaybeUninit<u8>]) = read(&input, &mut buf[..]).unwrap();
let mut buf = vec![
MaybeUninit::uninit(),
MaybeUninit::uninit(),
MaybeUninit::uninit(),
];
let _x: (&mut [u8], &mut [MaybeUninit<u8>]) = read(&input, &mut buf).unwrap();
let _x: (&mut [u8], &mut [MaybeUninit<u8>]) = read(&input, &mut buf[..]).unwrap();
}
#[cfg(not(windows))]
#[test]
fn test_slice() {
use crate::io::read;
use std::io::{Seek, SeekFrom};
// We need to obtain input stream with contents that we can compare
// against, so open our own source file.
let mut input = std::fs::File::open("src/buffer.rs").unwrap();
let mut buf = [0_u8; 64];
let nread = read(&input, &mut buf).unwrap();
assert_eq!(nread, buf.len());
assert_eq!(
&buf[..58],
b"//! Utilities for functions that return data via buffers.\n"
);
input.seek(SeekFrom::End(-1)).unwrap();
let nread = read(&input, &mut buf).unwrap();
assert_eq!(nread, 1);
input.seek(SeekFrom::End(0)).unwrap();
let nread = read(&input, &mut buf).unwrap();
assert_eq!(nread, 0);
}
#[cfg(not(windows))]
#[test]
fn test_slice_uninit() {
use crate::io::read;
use core::mem::MaybeUninit;
use std::io::{Seek, SeekFrom};
// We need to obtain input stream with contents that we can compare
// against, so open our own source file.
let mut input = std::fs::File::open("src/buffer.rs").unwrap();
let mut buf = [MaybeUninit::<u8>::uninit(); 64];
let (init, uninit) = read(&input, &mut buf).unwrap();
assert_eq!(uninit.len(), 0);
assert_eq!(
&init[..58],
b"//! Utilities for functions that return data via buffers.\n"
);
assert_eq!(init.len(), buf.len());
assert_eq!(
unsafe { core::mem::transmute::<&mut [MaybeUninit<u8>], &mut [u8]>(&mut buf[..58]) },
b"//! Utilities for functions that return data via buffers.\n"
);
input.seek(SeekFrom::End(-1)).unwrap();
let (init, uninit) = read(&input, &mut buf).unwrap();
assert_eq!(init.len(), 1);
assert_eq!(uninit.len(), buf.len() - 1);
input.seek(SeekFrom::End(0)).unwrap();
let (init, uninit) = read(&input, &mut buf).unwrap();
assert_eq!(init.len(), 0);
assert_eq!(uninit.len(), buf.len());
}
#[cfg(not(windows))]
#[test]
fn test_spare_capacity() {
use crate::io::read;
use std::io::{Seek, SeekFrom};
// We need to obtain input stream with contents that we can compare
// against, so open our own source file.
let mut input = std::fs::File::open("src/buffer.rs").unwrap();
let mut buf = Vec::with_capacity(64);
let nread = read(&input, spare_capacity(&mut buf)).unwrap();
assert_eq!(nread, buf.capacity());
assert_eq!(nread, buf.len());
assert_eq!(
&buf[..58],
b"//! Utilities for functions that return data via buffers.\n"
);
buf.clear();
input.seek(SeekFrom::End(-1)).unwrap();
let nread = read(&input, spare_capacity(&mut buf)).unwrap();
assert_eq!(nread, 1);
assert_eq!(buf.len(), 1);
buf.clear();
input.seek(SeekFrom::End(0)).unwrap();
let nread = read(&input, spare_capacity(&mut buf)).unwrap();
assert_eq!(nread, 0);
assert!(buf.is_empty());
}
}