pub enum PersistableTempFile {
Linux(File),
Fallback(NamedTempFile),
}
Expand description
An abstraction over different platform-specific temporary file optimisations.
Variants§
Linux(File)
Fallback(NamedTempFile)
Implementations§
Source§impl PersistableTempFile
impl PersistableTempFile
Sourcepub fn new_in<P: AsRef<Path>>(dir: P) -> Result<PersistableTempFile>
pub fn new_in<P: AsRef<Path>>(dir: P) -> Result<PersistableTempFile>
Create a temporary file in a given filesystem, or, if the filesystem
does not support creating secure temporary files, create a
tempfile::NamedTempFile
.
Source§impl PersistableTempFile
impl PersistableTempFile
Sourcepub fn persist_noclobber<P: AsRef<Path>>(
self,
dest: P,
) -> Result<(), PersistError>
pub fn persist_noclobber<P: AsRef<Path>>( self, dest: P, ) -> Result<(), PersistError>
Store this temporary file into a real file path.
The path must not exist and must be on the same mounted filesystem.
(Note: Linux permits a filesystem to be mounted at multiple points,
but the link()
function does not work across different mount points,
even if the same filesystem is mounted on both.)
Sourcepub fn persist_by_rename<P: AsRef<Path>>(
self,
dest: P,
) -> Result<(), PersistError>
pub fn persist_by_rename<P: AsRef<Path>>( self, dest: P, ) -> Result<(), PersistError>
Store this temporary file into a real name.
The path must be on the same mounted filesystem. It may exist, and will be overwritten.
This method may create a named temporary file, and, in pathological failure cases, may silently fail to remove this temporary file. Sorry.
(Note: Linux permits a filesystem to be mounted at multiple points,
but the link()
function does not work across different mount points,
even if the same filesystem is mounted on both.)
Methods from Deref<Target = File>§
1.0.0 · Sourcepub fn sync_all(&self) -> Result<(), Error>
pub fn sync_all(&self) -> Result<(), Error>
Attempts to sync all OS-internal file content and metadata to disk.
This function will attempt to ensure that all in-memory data reaches the filesystem before returning.
This can be used to handle errors that would otherwise only be caught
when the File
is closed, as dropping a File
will ignore all errors.
Note, however, that sync_all
is generally more expensive than closing
a file by dropping it, because the latter is not required to block until
the data has been written to the filesystem.
If synchronizing the metadata is not required, use sync_data
instead.
§Examples
use std::fs::File;
use std::io::prelude::*;
fn main() -> std::io::Result<()> {
let mut f = File::create("foo.txt")?;
f.write_all(b"Hello, world!")?;
f.sync_all()?;
Ok(())
}
1.0.0 · Sourcepub fn sync_data(&self) -> Result<(), Error>
pub fn sync_data(&self) -> Result<(), Error>
This function is similar to sync_all
, except that it might not
synchronize file metadata to the filesystem.
This is intended for use cases that must synchronize content, but don’t need the metadata on disk. The goal of this method is to reduce disk operations.
Note that some platforms may simply implement this in terms of
sync_all
.
§Examples
use std::fs::File;
use std::io::prelude::*;
fn main() -> std::io::Result<()> {
let mut f = File::create("foo.txt")?;
f.write_all(b"Hello, world!")?;
f.sync_data()?;
Ok(())
}
Sourcepub fn lock(&self) -> Result<(), Error>
🔬This is a nightly-only experimental API. (file_lock
)
pub fn lock(&self) -> Result<(), Error>
file_lock
)Acquire an exclusive advisory lock on the file. Blocks until the lock can be acquired.
This acquires an exclusive advisory lock; no other file handle to this file may acquire another lock.
If this file handle, or a clone of it, already holds an advisory lock the exact behavior is unspecified and platform dependent, including the possibility that it will deadlock. However, if this method returns, then an exclusive lock is held.
If the file not open for writing, it is unspecified whether this function returns an error.
Note, this is an advisory lock meant to interact with lock_shared
, try_lock
,
try_lock_shared
, and unlock
. Its interactions with other methods, such as read
and write
are platform specific, and it may or may not cause non-lockholders to block.
§Platform-specific behavior
This function currently corresponds to the flock
function on Unix with the LOCK_EX
flag,
and the LockFileEx
function on Windows with the LOCKFILE_EXCLUSIVE_LOCK
flag. Note that,
this may change in the future.
§Examples
#![feature(file_lock)]
use std::fs::File;
fn main() -> std::io::Result<()> {
let f = File::open("foo.txt")?;
f.lock()?;
Ok(())
}
🔬This is a nightly-only experimental API. (file_lock
)
file_lock
)Acquire a shared advisory lock on the file. Blocks until the lock can be acquired.
This acquires a shared advisory lock; more than one file handle may hold a shared lock, but none may hold an exclusive lock.
If this file handle, or a clone of it, already holds an advisory lock, the exact behavior is unspecified and platform dependent, including the possibility that it will deadlock. However, if this method returns, then a shared lock is held.
Note, this is an advisory lock meant to interact with lock
, try_lock
,
try_lock_shared
, and unlock
. Its interactions with other methods, such as read
and write
are platform specific, and it may or may not cause non-lockholders to block.
§Platform-specific behavior
This function currently corresponds to the flock
function on Unix with the LOCK_SH
flag,
and the LockFileEx
function on Windows. Note that, this
may change in the future.
§Examples
#![feature(file_lock)]
use std::fs::File;
fn main() -> std::io::Result<()> {
let f = File::open("foo.txt")?;
f.lock_shared()?;
Ok(())
}
Sourcepub fn try_lock(&self) -> Result<bool, Error>
🔬This is a nightly-only experimental API. (file_lock
)
pub fn try_lock(&self) -> Result<bool, Error>
file_lock
)Acquire an exclusive advisory lock on the file. Returns Ok(false)
if the file is locked.
This acquires an exclusive advisory lock; no other file handle to this file may acquire another lock.
If this file handle, or a clone of it, already holds an advisory lock, the exact behavior is unspecified and platform dependent, including the possibility that it will deadlock. However, if this method returns, then an exclusive lock is held.
If the file not open for writing, it is unspecified whether this function returns an error.
Note, this is an advisory lock meant to interact with lock
, lock_shared
,
try_lock_shared
, and unlock
. Its interactions with other methods, such as read
and write
are platform specific, and it may or may not cause non-lockholders to block.
§Platform-specific behavior
This function currently corresponds to the flock
function on Unix with the LOCK_EX
and
LOCK_NB
flags, and the LockFileEx
function on Windows with the LOCKFILE_EXCLUSIVE_LOCK
and LOCKFILE_FAIL_IMMEDIATELY
flags. Note that, this
may change in the future.
§Examples
#![feature(file_lock)]
use std::fs::File;
fn main() -> std::io::Result<()> {
let f = File::open("foo.txt")?;
f.try_lock()?;
Ok(())
}
🔬This is a nightly-only experimental API. (file_lock
)
file_lock
)Acquire a shared advisory lock on the file.
Returns Ok(false)
if the file is exclusively locked.
This acquires a shared advisory lock; more than one file handle may hold a shared lock, but none may hold an exclusive lock.
If this file handle, or a clone of it, already holds an advisory lock, the exact behavior is unspecified and platform dependent, including the possibility that it will deadlock. However, if this method returns, then a shared lock is held.
Note, this is an advisory lock meant to interact with lock
, try_lock
,
try_lock
, and unlock
. Its interactions with other methods, such as read
and write
are platform specific, and it may or may not cause non-lockholders to block.
§Platform-specific behavior
This function currently corresponds to the flock
function on Unix with the LOCK_SH
and
LOCK_NB
flags, and the LockFileEx
function on Windows with the
LOCKFILE_FAIL_IMMEDIATELY
flag. Note that, this
may change in the future.
§Examples
#![feature(file_lock)]
use std::fs::File;
fn main() -> std::io::Result<()> {
let f = File::open("foo.txt")?;
f.try_lock_shared()?;
Ok(())
}
Sourcepub fn unlock(&self) -> Result<(), Error>
🔬This is a nightly-only experimental API. (file_lock
)
pub fn unlock(&self) -> Result<(), Error>
file_lock
)Release all locks on the file.
All remaining locks are released when the file handle, and all clones of it, are dropped.
§Platform-specific behavior
This function currently corresponds to the flock
function on Unix with the LOCK_UN
flag,
and the UnlockFile
function on Windows. Note that, this
may change in the future.
§Examples
#![feature(file_lock)]
use std::fs::File;
fn main() -> std::io::Result<()> {
let f = File::open("foo.txt")?;
f.lock()?;
f.unlock()?;
Ok(())
}
1.0.0 · Sourcepub fn set_len(&self, size: u64) -> Result<(), Error>
pub fn set_len(&self, size: u64) -> Result<(), Error>
Truncates or extends the underlying file, updating the size of
this file to become size
.
If the size
is less than the current file’s size, then the file will
be shrunk. If it is greater than the current file’s size, then the file
will be extended to size
and have all of the intermediate data filled
in with 0s.
The file’s cursor isn’t changed. In particular, if the cursor was at the end and the file is shrunk using this operation, the cursor will now be past the end.
§Errors
This function will return an error if the file is not opened for writing.
Also, std::io::ErrorKind::InvalidInput
will be returned if the desired length would cause an overflow due to
the implementation specifics.
§Examples
use std::fs::File;
fn main() -> std::io::Result<()> {
let mut f = File::create("foo.txt")?;
f.set_len(10)?;
Ok(())
}
Note that this method alters the content of the underlying file, even
though it takes &self
rather than &mut self
.
1.0.0 · Sourcepub fn metadata(&self) -> Result<Metadata, Error>
pub fn metadata(&self) -> Result<Metadata, Error>
Queries metadata about the underlying file.
§Examples
use std::fs::File;
fn main() -> std::io::Result<()> {
let mut f = File::open("foo.txt")?;
let metadata = f.metadata()?;
Ok(())
}
1.9.0 · Sourcepub fn try_clone(&self) -> Result<File, Error>
pub fn try_clone(&self) -> Result<File, Error>
Creates a new File
instance that shares the same underlying file handle
as the existing File
instance. Reads, writes, and seeks will affect
both File
instances simultaneously.
§Examples
Creates two handles for a file named foo.txt
:
use std::fs::File;
fn main() -> std::io::Result<()> {
let mut file = File::open("foo.txt")?;
let file_copy = file.try_clone()?;
Ok(())
}
Assuming there’s a file named foo.txt
with contents abcdef\n
, create
two handles, seek one of them, and read the remaining bytes from the
other handle:
use std::fs::File;
use std::io::SeekFrom;
use std::io::prelude::*;
fn main() -> std::io::Result<()> {
let mut file = File::open("foo.txt")?;
let mut file_copy = file.try_clone()?;
file.seek(SeekFrom::Start(3))?;
let mut contents = vec![];
file_copy.read_to_end(&mut contents)?;
assert_eq!(contents, b"def\n");
Ok(())
}
1.16.0 · Sourcepub fn set_permissions(&self, perm: Permissions) -> Result<(), Error>
pub fn set_permissions(&self, perm: Permissions) -> Result<(), Error>
Changes the permissions on the underlying file.
§Platform-specific behavior
This function currently corresponds to the fchmod
function on Unix and
the SetFileInformationByHandle
function on Windows. Note that, this
may change in the future.
§Errors
This function will return an error if the user lacks permission change attributes on the underlying file. It may also return an error in other os-specific unspecified cases.
§Examples
fn main() -> std::io::Result<()> {
use std::fs::File;
let file = File::open("foo.txt")?;
let mut perms = file.metadata()?.permissions();
perms.set_readonly(true);
file.set_permissions(perms)?;
Ok(())
}
Note that this method alters the permissions of the underlying file,
even though it takes &self
rather than &mut self
.
1.75.0 · Sourcepub fn set_times(&self, times: FileTimes) -> Result<(), Error>
pub fn set_times(&self, times: FileTimes) -> Result<(), Error>
Changes the timestamps of the underlying file.
§Platform-specific behavior
This function currently corresponds to the futimens
function on Unix (falling back to
futimes
on macOS before 10.13) and the SetFileTime
function on Windows. Note that this
may change in the future.
§Errors
This function will return an error if the user lacks permission to change timestamps on the underlying file. It may also return an error in other os-specific unspecified cases.
This function may return an error if the operating system lacks support to change one or
more of the timestamps set in the FileTimes
structure.
§Examples
fn main() -> std::io::Result<()> {
use std::fs::{self, File, FileTimes};
let src = fs::metadata("src")?;
let dest = File::options().write(true).open("dest")?;
let times = FileTimes::new()
.set_accessed(src.accessed()?)
.set_modified(src.modified()?);
dest.set_times(times)?;
Ok(())
}
1.75.0 · Sourcepub fn set_modified(&self, time: SystemTime) -> Result<(), Error>
pub fn set_modified(&self, time: SystemTime) -> Result<(), Error>
Changes the modification time of the underlying file.
This is an alias for set_times(FileTimes::new().set_modified(time))
.
Trait Implementations§
Source§impl AsMut<File> for PersistableTempFile
impl AsMut<File> for PersistableTempFile
Source§impl AsRawFd for PersistableTempFile
impl AsRawFd for PersistableTempFile
Source§impl AsRef<File> for PersistableTempFile
impl AsRef<File> for PersistableTempFile
Source§impl Debug for PersistableTempFile
impl Debug for PersistableTempFile
Source§impl Deref for PersistableTempFile
impl Deref for PersistableTempFile
Source§impl DerefMut for PersistableTempFile
impl DerefMut for PersistableTempFile
Source§impl<'a> Read for &'a PersistableTempFile
impl<'a> Read for &'a PersistableTempFile
Source§fn read(&mut self, buf: &mut [u8]) -> Result<usize>
fn read(&mut self, buf: &mut [u8]) -> Result<usize>
1.36.0 · Source§fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
read
, except that it reads into a slice of buffers. Read moreSource§fn is_read_vectored(&self) -> bool
fn is_read_vectored(&self) -> bool
can_vector
)1.0.0 · Source§fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
buf
. Read more1.0.0 · Source§fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
buf
. Read more1.6.0 · Source§fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
buf
. Read moreSource§fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
read_buf
)Source§fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
read_buf
)cursor
. Read more1.0.0 · Source§fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
Read
. Read moreSource§impl Read for PersistableTempFile
impl Read for PersistableTempFile
Source§fn read(&mut self, buf: &mut [u8]) -> Result<usize>
fn read(&mut self, buf: &mut [u8]) -> Result<usize>
1.36.0 · Source§fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
read
, except that it reads into a slice of buffers. Read moreSource§fn is_read_vectored(&self) -> bool
fn is_read_vectored(&self) -> bool
can_vector
)1.0.0 · Source§fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>
buf
. Read more1.0.0 · Source§fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
buf
. Read more1.6.0 · Source§fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
buf
. Read moreSource§fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
read_buf
)Source§fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
read_buf
)cursor
. Read more1.0.0 · Source§fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
Read
. Read moreSource§impl<'a> Seek for &'a PersistableTempFile
impl<'a> Seek for &'a PersistableTempFile
Source§fn seek(&mut self, pos: SeekFrom) -> Result<u64>
fn seek(&mut self, pos: SeekFrom) -> Result<u64>
1.55.0 · Source§fn rewind(&mut self) -> Result<(), Error>
fn rewind(&mut self) -> Result<(), Error>
Source§fn stream_len(&mut self) -> Result<u64, Error>
fn stream_len(&mut self) -> Result<u64, Error>
seek_stream_len
)Source§impl Seek for PersistableTempFile
impl Seek for PersistableTempFile
Source§fn seek(&mut self, pos: SeekFrom) -> Result<u64>
fn seek(&mut self, pos: SeekFrom) -> Result<u64>
1.55.0 · Source§fn rewind(&mut self) -> Result<(), Error>
fn rewind(&mut self) -> Result<(), Error>
Source§fn stream_len(&mut self) -> Result<u64, Error>
fn stream_len(&mut self) -> Result<u64, Error>
seek_stream_len
)Source§impl<'a> Write for &'a PersistableTempFile
impl<'a> Write for &'a PersistableTempFile
Source§fn write(&mut self, buf: &[u8]) -> Result<usize>
fn write(&mut self, buf: &[u8]) -> Result<usize>
Source§fn flush(&mut self) -> Result<()>
fn flush(&mut self) -> Result<()>
Source§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
can_vector
)1.0.0 · Source§fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
Source§fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
write_all_vectored
)Source§impl Write for PersistableTempFile
impl Write for PersistableTempFile
Source§fn write(&mut self, buf: &[u8]) -> Result<usize>
fn write(&mut self, buf: &[u8]) -> Result<usize>
Source§fn flush(&mut self) -> Result<()>
fn flush(&mut self) -> Result<()>
Source§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
can_vector
)1.0.0 · Source§fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
Source§fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
write_all_vectored
)