| use crate::io::{self, IoSlice, Seek, SeekFrom, SizeHint, Write}; |
| use crate::{cmp, fmt, mem}; |
| |
| // ============================================================================= |
| // Forwarding implementations |
| |
| #[doc(hidden)] |
| #[unstable(feature = "core_io_internals", reason = "exposed only for libstd", issue = "none")] |
| impl<T> SizeHint for &mut T { |
| #[inline] |
| fn lower_bound(&self) -> usize { |
| SizeHint::lower_bound(*self) |
| } |
| |
| #[inline] |
| fn upper_bound(&self) -> Option<usize> { |
| SizeHint::upper_bound(*self) |
| } |
| } |
| |
| #[stable(feature = "rust1", since = "1.0.0")] |
| impl<W: Write + ?Sized> Write for &mut W { |
| #[inline] |
| fn write(&mut self, buf: &[u8]) -> io::Result<usize> { |
| (**self).write(buf) |
| } |
| |
| #[inline] |
| fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> { |
| (**self).write_vectored(bufs) |
| } |
| |
| #[inline] |
| fn is_write_vectored(&self) -> bool { |
| (**self).is_write_vectored() |
| } |
| |
| #[inline] |
| fn flush(&mut self) -> io::Result<()> { |
| (**self).flush() |
| } |
| |
| #[inline] |
| fn write_all(&mut self, buf: &[u8]) -> io::Result<()> { |
| (**self).write_all(buf) |
| } |
| |
| #[inline] |
| fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> io::Result<()> { |
| (**self).write_all_vectored(bufs) |
| } |
| |
| #[inline] |
| fn write_fmt(&mut self, fmt: fmt::Arguments<'_>) -> io::Result<()> { |
| (**self).write_fmt(fmt) |
| } |
| } |
| #[stable(feature = "rust1", since = "1.0.0")] |
| impl<S: Seek + ?Sized> Seek for &mut S { |
| #[inline] |
| fn seek(&mut self, pos: SeekFrom) -> io::Result<u64> { |
| (**self).seek(pos) |
| } |
| |
| #[inline] |
| fn rewind(&mut self) -> io::Result<()> { |
| (**self).rewind() |
| } |
| |
| #[inline] |
| fn stream_len(&mut self) -> io::Result<u64> { |
| (**self).stream_len() |
| } |
| |
| #[inline] |
| fn stream_position(&mut self) -> io::Result<u64> { |
| (**self).stream_position() |
| } |
| |
| #[inline] |
| fn seek_relative(&mut self, offset: i64) -> io::Result<()> { |
| (**self).seek_relative(offset) |
| } |
| } |
| |
| // ============================================================================= |
| // In-memory buffer implementations |
| |
| #[doc(hidden)] |
| #[unstable(feature = "core_io_internals", reason = "exposed only for libstd", issue = "none")] |
| impl SizeHint for &[u8] { |
| #[inline] |
| fn lower_bound(&self) -> usize { |
| self.len() |
| } |
| |
| #[inline] |
| fn upper_bound(&self) -> Option<usize> { |
| Some(self.len()) |
| } |
| } |
| |
| /// Write is implemented for `&mut [u8]` by copying into the slice, overwriting |
| /// its data. |
| /// |
| /// Note that writing updates the slice to point to the yet unwritten part. |
| /// The slice will be empty when it has been completely overwritten. |
| /// |
| /// If the number of bytes to be written exceeds the size of the slice, write operations will |
| /// return short writes: ultimately, `Ok(0)`; in this situation, `write_all` returns an error of |
| /// kind `ErrorKind::WriteZero`. |
| #[stable(feature = "rust1", since = "1.0.0")] |
| impl Write for &mut [u8] { |
| #[inline] |
| fn write(&mut self, data: &[u8]) -> io::Result<usize> { |
| let amt = cmp::min(data.len(), self.len()); |
| let (a, b) = mem::take(self).split_at_mut(amt); |
| a.copy_from_slice(&data[..amt]); |
| *self = b; |
| Ok(amt) |
| } |
| |
| #[inline] |
| fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> { |
| let mut nwritten = 0; |
| for buf in bufs { |
| nwritten += self.write(buf)?; |
| if self.is_empty() { |
| break; |
| } |
| } |
| |
| Ok(nwritten) |
| } |
| |
| #[inline] |
| fn is_write_vectored(&self) -> bool { |
| true |
| } |
| |
| #[inline] |
| fn write_all(&mut self, data: &[u8]) -> io::Result<()> { |
| if self.write(data)? < data.len() { Err(io::Error::WRITE_ALL_EOF) } else { Ok(()) } |
| } |
| |
| #[inline] |
| fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> io::Result<()> { |
| for buf in bufs { |
| if self.write(buf)? < buf.len() { |
| return Err(io::Error::WRITE_ALL_EOF); |
| } |
| } |
| Ok(()) |
| } |
| |
| #[inline] |
| fn flush(&mut self) -> io::Result<()> { |
| Ok(()) |
| } |
| } |
| |
| #[unstable(feature = "read_buf", issue = "78485")] |
| impl<'a> io::Write for core::io::BorrowedCursor<'a, u8> { |
| #[inline] |
| fn write(&mut self, buf: &[u8]) -> io::Result<usize> { |
| let amt = cmp::min(buf.len(), self.capacity()); |
| self.append(&buf[..amt]); |
| Ok(amt) |
| } |
| |
| #[inline] |
| fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> { |
| let mut nwritten = 0; |
| for buf in bufs { |
| let n = self.write(buf)?; |
| nwritten += n; |
| if n < buf.len() { |
| break; |
| } |
| } |
| Ok(nwritten) |
| } |
| |
| #[inline] |
| fn is_write_vectored(&self) -> bool { |
| true |
| } |
| |
| #[inline] |
| fn write_all(&mut self, buf: &[u8]) -> io::Result<()> { |
| if self.write(buf)? < buf.len() { Err(io::Error::WRITE_ALL_EOF) } else { Ok(()) } |
| } |
| |
| #[inline] |
| fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> io::Result<()> { |
| for buf in bufs { |
| if self.write(buf)? < buf.len() { |
| return Err(io::Error::WRITE_ALL_EOF); |
| } |
| } |
| Ok(()) |
| } |
| |
| #[inline] |
| fn flush(&mut self) -> io::Result<()> { |
| Ok(()) |
| } |
| } |