Struct duct::ReaderHandle [−][src]
pub struct ReaderHandle { /* fields omitted */ }
Expand description
An incremental reader created with the
Expression::reader
method.
When this reader reaches EOF, it automatically calls
wait
on the inner handle. If the child
returns a non-zero exit status, the read at EOF will return an error,
unless you use unchecked
.
If the reader is dropped before reaching EOF, it calls
kill
in its destructor.
Both ReaderHandle
and &ReaderHandle
implement
std::io::Read
. That
makes it possible for one thread to
kill
the ReaderHandle
while
another thread is reading it. That can be useful for effectively canceling
the read and unblocking the reader thread. However, note that killed child
processes return a non-zero exit status, which is an error for the reader
by default, unless you use
unchecked
.
Example
use duct::cmd;
use duct::ReaderHandle;
use std::sync::Arc;
use std::io::prelude::*;
// This child process prints a single byte and then sleeps.
//
// CAUTION: Using Bash for this example would probably hang, because Bash
// would spawn a `sleep` grandchild processes, and that grandchild wouldn't
// receive the kill signal.
let python_child = "\
import sys
import time
print()
sys.stdout.flush()
time.sleep(24 * 60 * 60)
";
let reader: ReaderHandle = cmd!("python3", "-c", python_child)
.unchecked()
.reader()?;
// Spawn two threads that both try to read the single byte. Whichever one
// succeeds then calls kill() to unblock the other.
let arc_reader: Arc<ReaderHandle> = Arc::new(reader);
let mut threads = Vec::new();
for _ in 0..2 {
let arc_reader = arc_reader.clone();
threads.push(std::thread::spawn(move || -> std::io::Result<()> {
let mut single_byte = [0u8];
(&*arc_reader).read(&mut single_byte)?;
arc_reader.kill()?;
Ok(())
}));
}
// Join both threads. Because of the kill() above, both threads will exit
// quickly.
for thread in threads {
thread.join().unwrap()?;
}
Implementations
Check whether the underlying expression is finished. This is equivalent
to Handle::try_wait
. If the
ReaderHandle
has indicated EOF successfully, then it’s guaranteed
that this method will return Ok(Some(_))
.
Note that the
stdout
field of the returned
Output
will always be empty, because the ReaderHandle
itself owns the
child’s stdout pipe.
Kill the underlying expression and await all the child processes.
Any errors that would normally result from a non-zero exit status are
ignored during this wait, as with
Handle::kill
.
Note that as with
std::process::Child::kill
,
this does not kill any grandchild processes that the children have
spawned on their own. It only kills the child processes that Duct
spawned itself. This is especially relevant for ReaderHandle
,
because if you’re using kill
to unblock another thread that’s
reading, an unkilled grandchild process might keep the child’s stdout
pipe open and keep your reader thread blocked. For that use case, you
need to ensure that any grandchild processes your child might spawn are
going to be short-lived. See
gotchas.md
for an extensive discussion of these issues.
Trait Implementations
Like read
, except that it reads into a slice of buffers. Read more
can_vector
)Determines if this Read
er has an efficient read_vectored
implementation. Read more
read_initializer
)Determines if this Read
er can work with buffers of uninitialized
memory. Read more
Read all bytes until EOF in this source, placing them into buf
. Read more
Read all bytes until EOF in this source, appending them to buf
. Read more
Read the exact number of bytes required to fill buf
. Read more
Creates a “by reference” adapter for this instance of Read
. Read more
Creates an adapter which will chain this stream with another. Read more
Like read
, except that it reads into a slice of buffers. Read more
can_vector
)Determines if this Read
er has an efficient read_vectored
implementation. Read more
read_initializer
)Determines if this Read
er can work with buffers of uninitialized
memory. Read more
Read all bytes until EOF in this source, placing them into buf
. Read more
Read all bytes until EOF in this source, appending them to buf
. Read more
Read the exact number of bytes required to fill buf
. Read more
Creates a “by reference” adapter for this instance of Read
. Read more
Creates an adapter which will chain this stream with another. Read more