| #![allow(missing_copy_implementations)] |
| |
| #[cfg(test)] |
| mod tests; |
| |
| use crate::fmt; |
| use crate::io::{ |
| self, BorrowedCursor, BufRead, Empty, IoSlice, IoSliceMut, Read, Repeat, Seek, SeekFrom, Sink, |
| SizeHint, Write, |
| }; |
| |
| #[stable(feature = "rust1", since = "1.0.0")] |
| impl Read for Empty { |
| #[inline] |
| fn read(&mut self, _buf: &mut [u8]) -> io::Result<usize> { |
| Ok(0) |
| } |
| |
| #[inline] |
| fn read_buf(&mut self, _cursor: BorrowedCursor<'_>) -> io::Result<()> { |
| Ok(()) |
| } |
| |
| #[inline] |
| fn read_vectored(&mut self, _bufs: &mut [IoSliceMut<'_>]) -> io::Result<usize> { |
| Ok(0) |
| } |
| |
| #[inline] |
| fn is_read_vectored(&self) -> bool { |
| // Do not force `Chain<Empty, T>` or `Chain<T, Empty>` to use vectored |
| // reads, unless the other reader is vectored. |
| false |
| } |
| |
| #[inline] |
| fn read_exact(&mut self, buf: &mut [u8]) -> io::Result<()> { |
| if !buf.is_empty() { Err(io::Error::READ_EXACT_EOF) } else { Ok(()) } |
| } |
| |
| #[inline] |
| fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> io::Result<()> { |
| if cursor.capacity() != 0 { Err(io::Error::READ_EXACT_EOF) } else { Ok(()) } |
| } |
| |
| #[inline] |
| fn read_to_end(&mut self, _buf: &mut Vec<u8>) -> io::Result<usize> { |
| Ok(0) |
| } |
| |
| #[inline] |
| fn read_to_string(&mut self, _buf: &mut String) -> io::Result<usize> { |
| Ok(0) |
| } |
| } |
| #[stable(feature = "rust1", since = "1.0.0")] |
| impl BufRead for Empty { |
| #[inline] |
| fn fill_buf(&mut self) -> io::Result<&[u8]> { |
| Ok(&[]) |
| } |
| |
| #[inline] |
| fn consume(&mut self, _n: usize) {} |
| |
| #[inline] |
| fn has_data_left(&mut self) -> io::Result<bool> { |
| Ok(false) |
| } |
| |
| #[inline] |
| fn read_until(&mut self, _byte: u8, _buf: &mut Vec<u8>) -> io::Result<usize> { |
| Ok(0) |
| } |
| |
| #[inline] |
| fn skip_until(&mut self, _byte: u8) -> io::Result<usize> { |
| Ok(0) |
| } |
| |
| #[inline] |
| fn read_line(&mut self, _buf: &mut String) -> io::Result<usize> { |
| Ok(0) |
| } |
| } |
| |
| #[stable(feature = "empty_seek", since = "1.51.0")] |
| impl Seek for Empty { |
| #[inline] |
| fn seek(&mut self, _pos: SeekFrom) -> io::Result<u64> { |
| Ok(0) |
| } |
| |
| #[inline] |
| fn stream_len(&mut self) -> io::Result<u64> { |
| Ok(0) |
| } |
| |
| #[inline] |
| fn stream_position(&mut self) -> io::Result<u64> { |
| Ok(0) |
| } |
| } |
| |
| impl SizeHint for Empty { |
| #[inline] |
| fn upper_bound(&self) -> Option<usize> { |
| Some(0) |
| } |
| } |
| |
| #[stable(feature = "empty_write", since = "1.73.0")] |
| impl Write for Empty { |
| #[inline] |
| fn write(&mut self, buf: &[u8]) -> io::Result<usize> { |
| Ok(buf.len()) |
| } |
| |
| #[inline] |
| fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> { |
| let total_len = bufs.iter().map(|b| b.len()).sum(); |
| Ok(total_len) |
| } |
| |
| #[inline] |
| fn is_write_vectored(&self) -> bool { |
| true |
| } |
| |
| #[inline] |
| fn write_all(&mut self, _buf: &[u8]) -> io::Result<()> { |
| Ok(()) |
| } |
| |
| #[inline] |
| fn write_all_vectored(&mut self, _bufs: &mut [IoSlice<'_>]) -> io::Result<()> { |
| Ok(()) |
| } |
| |
| #[inline] |
| fn write_fmt(&mut self, _args: fmt::Arguments<'_>) -> io::Result<()> { |
| Ok(()) |
| } |
| |
| #[inline] |
| fn flush(&mut self) -> io::Result<()> { |
| Ok(()) |
| } |
| } |
| |
| #[stable(feature = "empty_write", since = "1.73.0")] |
| impl Write for &Empty { |
| #[inline] |
| fn write(&mut self, buf: &[u8]) -> io::Result<usize> { |
| Ok(buf.len()) |
| } |
| |
| #[inline] |
| fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> { |
| let total_len = bufs.iter().map(|b| b.len()).sum(); |
| Ok(total_len) |
| } |
| |
| #[inline] |
| fn is_write_vectored(&self) -> bool { |
| true |
| } |
| |
| #[inline] |
| fn write_all(&mut self, _buf: &[u8]) -> io::Result<()> { |
| Ok(()) |
| } |
| |
| #[inline] |
| fn write_all_vectored(&mut self, _bufs: &mut [IoSlice<'_>]) -> io::Result<()> { |
| Ok(()) |
| } |
| |
| #[inline] |
| fn write_fmt(&mut self, _args: fmt::Arguments<'_>) -> io::Result<()> { |
| Ok(()) |
| } |
| |
| #[inline] |
| fn flush(&mut self) -> io::Result<()> { |
| Ok(()) |
| } |
| } |
| |
| #[stable(feature = "rust1", since = "1.0.0")] |
| impl Read for Repeat { |
| #[inline] |
| fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> { |
| buf.fill(self.byte); |
| Ok(buf.len()) |
| } |
| |
| #[inline] |
| fn read_exact(&mut self, buf: &mut [u8]) -> io::Result<()> { |
| buf.fill(self.byte); |
| Ok(()) |
| } |
| |
| #[inline] |
| fn read_buf(&mut self, mut buf: BorrowedCursor<'_>) -> io::Result<()> { |
| // SAFETY: No uninit bytes are being written. |
| unsafe { buf.as_mut() }.write_filled(self.byte); |
| // SAFETY: the entire unfilled portion of buf has been initialized. |
| unsafe { buf.advance(buf.capacity()) }; |
| Ok(()) |
| } |
| |
| #[inline] |
| fn read_buf_exact(&mut self, buf: BorrowedCursor<'_>) -> io::Result<()> { |
| self.read_buf(buf) |
| } |
| |
| /// This function is not supported by `io::Repeat`, because there's no end of its data |
| fn read_to_end(&mut self, _: &mut Vec<u8>) -> io::Result<usize> { |
| Err(io::Error::from(io::ErrorKind::OutOfMemory)) |
| } |
| |
| /// This function is not supported by `io::Repeat`, because there's no end of its data |
| fn read_to_string(&mut self, _: &mut String) -> io::Result<usize> { |
| Err(io::Error::from(io::ErrorKind::OutOfMemory)) |
| } |
| |
| #[inline] |
| fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> io::Result<usize> { |
| let mut nwritten = 0; |
| for buf in bufs { |
| nwritten += self.read(buf)?; |
| } |
| Ok(nwritten) |
| } |
| |
| #[inline] |
| fn is_read_vectored(&self) -> bool { |
| true |
| } |
| } |
| |
| impl SizeHint for Repeat { |
| #[inline] |
| fn lower_bound(&self) -> usize { |
| usize::MAX |
| } |
| |
| #[inline] |
| fn upper_bound(&self) -> Option<usize> { |
| None |
| } |
| } |
| |
| #[stable(feature = "rust1", since = "1.0.0")] |
| impl Write for Sink { |
| #[inline] |
| fn write(&mut self, buf: &[u8]) -> io::Result<usize> { |
| Ok(buf.len()) |
| } |
| |
| #[inline] |
| fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> { |
| let total_len = bufs.iter().map(|b| b.len()).sum(); |
| Ok(total_len) |
| } |
| |
| #[inline] |
| fn is_write_vectored(&self) -> bool { |
| true |
| } |
| |
| #[inline] |
| fn write_all(&mut self, _buf: &[u8]) -> io::Result<()> { |
| Ok(()) |
| } |
| |
| #[inline] |
| fn write_all_vectored(&mut self, _bufs: &mut [IoSlice<'_>]) -> io::Result<()> { |
| Ok(()) |
| } |
| |
| #[inline] |
| fn write_fmt(&mut self, _args: fmt::Arguments<'_>) -> io::Result<()> { |
| Ok(()) |
| } |
| |
| #[inline] |
| fn flush(&mut self) -> io::Result<()> { |
| Ok(()) |
| } |
| } |
| |
| #[stable(feature = "write_mt", since = "1.48.0")] |
| impl Write for &Sink { |
| #[inline] |
| fn write(&mut self, buf: &[u8]) -> io::Result<usize> { |
| Ok(buf.len()) |
| } |
| |
| #[inline] |
| fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> { |
| let total_len = bufs.iter().map(|b| b.len()).sum(); |
| Ok(total_len) |
| } |
| |
| #[inline] |
| fn is_write_vectored(&self) -> bool { |
| true |
| } |
| |
| #[inline] |
| fn write_all(&mut self, _buf: &[u8]) -> io::Result<()> { |
| Ok(()) |
| } |
| |
| #[inline] |
| fn write_all_vectored(&mut self, _bufs: &mut [IoSlice<'_>]) -> io::Result<()> { |
| Ok(()) |
| } |
| |
| #[inline] |
| fn write_fmt(&mut self, _args: fmt::Arguments<'_>) -> io::Result<()> { |
| Ok(()) |
| } |
| |
| #[inline] |
| fn flush(&mut self) -> io::Result<()> { |
| Ok(()) |
| } |
| } |