pub struct Reopen<FD> { /* private fields */ }
Expand description
A Read
/Write
proxy that can reopen the underlying object.
It is constructed with a function that can open a new instance of the object. If it is signaled
to reopen it (though handle
), it drops the old instance and uses the
function to create a new one at the next IO operation.
§Error handling
The reopening is performed lazily, on the first operation done to the object. Opening a new
instance can fail with an error. If this happens, the error is returned as part of the
operation being performed ‒ therefore, you can get an error like File not found
while
performing read
.
If an error happens, the operation is aborted. Next time an operation is performed, another attempt to open the object is made (which in turn can fail again).
§Scheduling of a reopen
The implementation tries to ensure whole operations happen on the same FD. For example, even if
multiple read
calls need to be performed as part of
read_exact
, the Reopen
will check for reopening flags only once
before the whole operation and then will keep the same FD.
If this is not enough, the Reopen
can be locked to bundle multiple
operations without reopening.
§Handling of ends
Certain operations make ordinary file descriptors „finished“ ‒ for example,
read_to_end
. Usually, further calls to any read operations would produce
EOF from then on.
While this reaches the end of the currently opened FD and further read operations would still
produce EOF, reopening the FD may lead to it being readable again. Therefore, reaching EOF is
not necessarily final for Reopen
.
Implementations§
Source§impl<FD> Reopen<FD>
impl<FD> Reopen<FD>
Sourcepub fn new(
constructor: Box<dyn Fn() -> Result<FD, Error> + Send>,
) -> Result<Self, Error>
pub fn new( constructor: Box<dyn Fn() -> Result<FD, Error> + Send>, ) -> Result<Self, Error>
Creates a new instance.
Sourcepub fn with_handle(
handle: Handle,
constructor: Box<dyn Fn() -> Result<FD, Error> + Send>,
) -> Result<Self, Error>
pub fn with_handle( handle: Handle, constructor: Box<dyn Fn() -> Result<FD, Error> + Send>, ) -> Result<Self, Error>
Creates a new instance from the given handle.
This might come useful if you want to create the handle beforehand with
Handle::stub
(eg. in
once_cell
).
Note that using the same handle for multiple Reopen
s will not work as expected (the first
one to be used resets the signal and the others don’t reopen).
§Examples
// Something that implements `Write`, for example.
struct Writer;
let handle = Handle::stub();
let reopen = Reopen::with_handle(handle.clone(), Box::new(|| Ok(Writer)));
handle.reopen();
Sourcepub fn handle(&self) -> Handle
pub fn handle(&self) -> Handle
Returns a handle to signal this Reopen
to perform the reopening.
Sourcepub fn lock(&mut self) -> Result<&mut FD, Error>
pub fn lock(&mut self) -> Result<&mut FD, Error>
Lock the Reopen
against reopening in the middle of operation.
In case of needing to perform multiple operations without reopening in the middle, it can be locked by this method. This provides access to the inner FD.
§Errors
This can result in an error in case the FD needs to be reopened (or wasn’t opened previously) and the reopening results in an error.
§Examples
let mut writer = Reopen::new(Box::new(|| {
// Vec::<u8> is an in-memory writer
Ok(Vec::new())
}))?;
let handle = writer.handle();
let mut lock = writer.lock()?;
write!(&mut lock, "Hello ")?;
// Request reopening. But as we locked, it won't happen until we are done with it.
handle.reopen();
write!(&mut lock, "world")?;
// See? Both writes are here now.
assert_eq!(b"Hello world", &lock[..]);
// But when we return to using the writer directly (and drop the lock by that), it gets
// reopened and we get a whole new Vec to play with.
write!(&mut writer, "Another message")?;
assert_eq!(b"Another message", &writer.lock()?[..]);
Trait Implementations§
Source§impl<FD: Read> Read for Reopen<FD>
impl<FD: Read> Read for Reopen<FD>
Source§fn read(&mut self, buf: &mut [u8]) -> Result<usize, Error>
fn read(&mut self, buf: &mut [u8]) -> Result<usize, Error>
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_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 moreSource§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.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
)Source§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<FD: Write> Write for Reopen<FD>
impl<FD: Write> Write for Reopen<FD>
Source§fn flush(&mut self) -> Result<(), Error>
fn flush(&mut self) -> Result<(), Error>
Source§fn write(&mut self, buf: &[u8]) -> Result<usize, Error>
fn write(&mut self, buf: &[u8]) -> Result<usize, Error>
Source§fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
Source§fn write_fmt(&mut self, fmt: Arguments<'_>) -> Result<(), Error>
fn write_fmt(&mut self, fmt: Arguments<'_>) -> Result<(), Error>
Source§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
can_vector
)