Skip to content

Commit 11fecf6

Browse files
committed
Add Read, Write and Seek impls for Arc<File> where appropriate
If `&T` implements these traits, `Arc<T>` has no reason not to do so either. This is useful for operating system handles like `File` or `TcpStream` which don't need a mutable reference to implement these traits. CC rust-lang#53835. CC rust-lang#94744.
1 parent 9fc2da1 commit 11fecf6

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

library/std/src/fs.rs

+46
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ use crate::fmt;
1616
use crate::io::{self, BorrowedCursor, IoSlice, IoSliceMut, Read, Seek, SeekFrom, Write};
1717
use crate::path::{Path, PathBuf};
1818
use crate::sealed::Sealed;
19+
use crate::sync::Arc;
1920
use crate::sys::fs as fs_imp;
2021
use crate::sys_common::{AsInner, AsInnerMut, FromInner, IntoInner};
2122
use crate::time::SystemTime;
@@ -846,6 +847,51 @@ impl Seek for File {
846847
}
847848
}
848849

850+
#[stable(feature = "io_traits_arc", since = "CURRENT_RUSTC_VERSION")]
851+
impl Read for Arc<File> {
852+
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
853+
(&**self).read(buf)
854+
}
855+
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> io::Result<usize> {
856+
(&**self).read_vectored(bufs)
857+
}
858+
fn read_buf(&mut self, cursor: BorrowedCursor<'_>) -> io::Result<()> {
859+
(&**self).read_buf(cursor)
860+
}
861+
#[inline]
862+
fn is_read_vectored(&self) -> bool {
863+
(&**self).is_read_vectored()
864+
}
865+
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> io::Result<usize> {
866+
(&**self).read_to_end(buf)
867+
}
868+
fn read_to_string(&mut self, buf: &mut String) -> io::Result<usize> {
869+
(&**self).read_to_string(buf)
870+
}
871+
}
872+
#[stable(feature = "io_traits_arc", since = "CURRENT_RUSTC_VERSION")]
873+
impl Write for Arc<File> {
874+
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
875+
(&**self).write(buf)
876+
}
877+
fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize> {
878+
(&**self).write_vectored(bufs)
879+
}
880+
#[inline]
881+
fn is_write_vectored(&self) -> bool {
882+
(&**self).is_write_vectored()
883+
}
884+
fn flush(&mut self) -> io::Result<()> {
885+
(&**self).flush()
886+
}
887+
}
888+
#[stable(feature = "io_traits_arc", since = "CURRENT_RUSTC_VERSION")]
889+
impl Seek for Arc<File> {
890+
fn seek(&mut self, pos: SeekFrom) -> io::Result<u64> {
891+
(&**self).seek(pos)
892+
}
893+
}
894+
849895
impl OpenOptions {
850896
/// Creates a blank new set of options ready for configuration.
851897
///

0 commit comments

Comments
 (0)