[][src]Struct reopen::Reopen

pub struct Reopen<FD> { /* fields omitted */ }

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

impl<FD> Reopen<FD>[src]

pub fn new(
    constructor: Box<dyn Fn() -> Result<FD, Error> + Send>
) -> Result<Self, Error>
[src]

Creates a new instance.

pub fn with_handle(
    handle: Handle,
    constructor: Box<dyn Fn() -> Result<FD, Error> + Send>
) -> Result<Self, Error>
[src]

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 Reopens 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();

pub fn handle(&self) -> Handle[src]

Returns a handle to signal this Reopen to perform the reopening.

pub fn lock(&mut self) -> Result<&mut FD, Error>[src]

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

impl<FD: Debug> Debug for Reopen<FD>[src]

impl<FD: Read> Read for Reopen<FD>[src]

impl<FD: Write> Write for Reopen<FD>[src]

Auto Trait Implementations

impl<FD> !RefUnwindSafe for Reopen<FD>

impl<FD> Send for Reopen<FD> where
    FD: Send

impl<FD> !Sync for Reopen<FD>

impl<FD> Unpin for Reopen<FD> where
    FD: Unpin

impl<FD> !UnwindSafe for Reopen<FD>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.