Struct gio::Subprocess [−][src]
pub struct Subprocess(_);
Expand description
Subprocess
allows the creation of and interaction with child
processes.
Processes can be communicated with using standard GIO-style APIs (ie:
InputStream
, OutputStream
). There are GIO-style APIs to wait for
process termination (ie: cancellable and with an asynchronous
variant).
There is an API to force a process to terminate, as well as a race-free API for sending UNIX signals to a subprocess.
One major advantage that GIO brings over the core GLib library is
comprehensive API for asynchronous I/O, such
OutputStreamExt::splice_async()
. This makes GSubprocess
significantly more powerful and flexible than equivalent APIs in
some other languages such as the subprocess.py
included with Python. For example, using Subprocess
one could
create two child processes, reading standard output from the first,
processing it, and writing to the input stream of the second, all
without blocking the main loop.
A powerful communicate()
API is provided similar to the
communicate()
method of subprocess.py
. This enables very easy
interaction with a subprocess that has been opened with pipes.
Subprocess
defaults to tight control over the file descriptors open
in the child process, avoiding dangling-fd issues that are caused by
a simple fork()
/exec()
. The only open file descriptors in the
spawned process are ones that were explicitly specified by the
Subprocess
API (unless SubprocessFlags::INHERIT_FDS
was
specified).
Subprocess
will quickly reap all child processes as they exit,
avoiding “zombie processes” remaining around for long periods of
time. wait()
can be used to wait for this to happen,
but it will happen even without the call being explicitly made.
As a matter of principle, Subprocess
has no API that accepts
shell-style space-separated strings. It will, however, match the
typical shell behaviour of searching the PATH for executables that do
not contain a directory separator in their name.
Subprocess
attempts to have a very simple API for most uses (ie:
spawning a subprocess with arguments and support for most typical
kinds of input and output redirection). See g_subprocess_new()
. The
SubprocessLauncher
API is provided for more complicated cases
(advanced types of redirection, environment variable manipulation,
change of working directory, child setup functions, etc).
A typical use of Subprocess
will involve calling
g_subprocess_new()
, followed by wait_async()
or
wait()
. After the process exits, the status can be
checked using functions such as has_exited()
(which
are similar to the familiar WIFEXITED-style POSIX macros).
Implements
Implementations
Asynchronous version of communicate_utf8()
. Complete
invocation with g_subprocess_communicate_utf8_finish()
.
stdin_buf
Input data, or None
cancellable
Cancellable
callback
Callback
Communicate with the subprocess until it terminates, and all input and output has been completed.
If stdin_buf
is given, the subprocess must have been created with
SubprocessFlags::STDIN_PIPE
. The given data is fed to the
stdin of the subprocess and the pipe is closed (ie: EOF).
At the same time (as not to cause blocking when dealing with large
amounts of data), if SubprocessFlags::STDOUT_PIPE
or
SubprocessFlags::STDERR_PIPE
were used, reads from those
streams. The data that was read is returned in stdout
and/or
the stderr
.
If the subprocess was created with SubprocessFlags::STDOUT_PIPE
,
stdout_buf
will contain the data read from stdout. Otherwise, for
subprocesses not created with SubprocessFlags::STDOUT_PIPE
,
stdout_buf
will be set to None
. Similar provisions apply to
stderr_buf
and SubprocessFlags::STDERR_PIPE
.
As usual, any output variable may be given as None
to ignore it.
If you desire the stdout and stderr data to be interleaved, create
the subprocess with SubprocessFlags::STDOUT_PIPE
and
SubprocessFlags::STDERR_MERGE
. The merged result will be returned
in stdout_buf
and stderr_buf
will be set to None
.
In case of any error (including cancellation), false
will be
returned with error
set. Some or all of the stdin data may have
been written. Any stdout or stderr data that has been read will be
discarded. None of the out variables (aside from error
) will have
been set to anything in particular and should not be inspected.
In the case that true
is returned, the subprocess has exited and the
exit status inspection APIs (eg: has_exited()
,
exit_status()
) may be used.
You should not attempt to use any of the subprocess pipes after starting this function, since they may be left in strange states, even if the operation was cancelled. You should especially not attempt to interact with the pipes while the operation is in progress (either from another thread or if using the asynchronous version).
stdin_buf
data to send to the stdin of the subprocess, or None
cancellable
Returns
true
if successful
stdout_buf
data read from the subprocess stdout
stderr_buf
data read from the subprocess stderr
Asynchronous version of communicate()
. Complete
invocation with g_subprocess_communicate_finish()
.
stdin_buf
Input data, or None
cancellable
Cancellable
callback
Callback
pub fn communicate_async_future(
&self,
stdin_buf: Option<&Bytes>
) -> Pin<Box_<dyn Future<Output = Result<(Option<Bytes>, Option<Bytes>), Error>> + 'static>>
Like communicate()
, but validates the output of the
process as UTF-8, and returns it as a regular NUL terminated string.
On error, stdout_buf
and stderr_buf
will be set to undefined values and
should not be used.
stdin_buf
data to send to the stdin of the subprocess, or None
cancellable
Returns
stdout_buf
data read from the subprocess stdout
stderr_buf
data read from the subprocess stderr
Use an operating-system specific method to attempt an immediate,
forceful termination of the process. There is no mechanism to
determine whether or not the request itself was successful;
however, you can use wait()
to monitor the status of
the process after calling this function.
On Unix, this function sends SIGKILL
.
Check the exit status of the subprocess, given that it exited
normally. This is the value passed to the exit()
system call or the
return value from main.
This is equivalent to the system WEXITSTATUS macro.
It is an error to call this function before wait()
and
unless has_exited()
returned true
.
Returns
the exit status
Gets the raw status code of the process, as from waitpid()
.
This value has no particular meaning, but it can be used with the
macros defined by the system headers such as WIFEXITED. It can also
be used with g_spawn_check_exit_status()
.
It is more likely that you want to use has_exited()
followed by exit_status()
.
It is an error to call this function before wait()
has
returned.
Returns
the (meaningless) waitpid()
exit status from the kernel
Gets the InputStream
from which to read the stderr output of
self
.
The process must have been created with SubprocessFlags::STDERR_PIPE
,
otherwise None
will be returned.
Returns
the stderr pipe
Gets the OutputStream
that you can write to in order to give data
to the stdin of self
.
The process must have been created with SubprocessFlags::STDIN_PIPE
and
not SubprocessFlags::STDIN_INHERIT
, otherwise None
will be returned.
Returns
the stdout pipe
Gets the InputStream
from which to read the stdout output of
self
.
The process must have been created with SubprocessFlags::STDOUT_PIPE
,
otherwise None
will be returned.
Returns
the stdout pipe
Checks if the process was “successful”. A process is considered
successful if it exited cleanly with an exit status of 0, either by
way of the exit()
system call or return from main()
.
It is an error to call this function before wait()
has
returned.
Returns
true
if the process exited cleanly with a exit status of 0
Get the signal number that caused the subprocess to terminate, given that it terminated due to a signal.
This is equivalent to the system WTERMSIG macro.
It is an error to call this function before wait()
and
unless has_signaled()
returned true
.
Returns
the signal causing termination
This is supported on non-Windows only.
Sends the UNIX signal signal_num
to the subprocess, if it is still
running.
This API is race-free. If the subprocess has terminated, it will not be signalled.
This API is not available on Windows.
signal_num
the signal number to send
Synchronously wait for the subprocess to terminate.
After the process terminates you can query its exit status with
functions such as has_exited()
and
exit_status()
.
This function does not fail in the case of the subprocess having
abnormal termination. See wait_check()
for that.
Cancelling cancellable
doesn’t kill the subprocess. Call
force_exit()
if it is desirable.
cancellable
Returns
Wait for the subprocess to terminate.
This is the asynchronous version of wait()
.
cancellable
a Cancellable
, or None
callback
a GAsyncReadyCallback
to call when the operation is complete
Combines wait()
with g_spawn_check_exit_status()
.
cancellable
Returns
true
on success, false
if process exited abnormally, or
cancellable
was cancelled
Combines wait_async()
with g_spawn_check_exit_status()
.
This is the asynchronous version of wait_check()
.
cancellable
a Cancellable
, or None
callback
a GAsyncReadyCallback
to call when the operation is complete
Trait Implementations
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Returns the type identifier of Self
.
Auto Trait Implementations
impl RefUnwindSafe for Subprocess
impl !Send for Subprocess
impl !Sync for Subprocess
impl Unpin for Subprocess
impl UnwindSafe for Subprocess
Blanket Implementations
Mutably borrows from an owned value. Read more
Upcasts an object to a superclass or interface T
. Read more
Upcasts an object to a reference of its superclass or interface T
. Read more
Tries to downcast to a subclass or interface implementor T
. Read more
Tries to downcast to a reference of its subclass or interface implementor T
. Read more
Tries to cast to an object of type T
. This handles upcasting, downcasting
and casting between interface and interface implementors. All checks are performed at
runtime, while downcast
and upcast
will do many checks at compile-time already. Read more
Tries to cast to reference to an object of type T
. This handles upcasting, downcasting
and casting between interface and interface implementors. All checks are performed at
runtime, while downcast
and upcast
will do many checks at compile-time already. Read more
Casts to T
unconditionally. Read more
Casts to &T
unconditionally. Read more
Returns true
if the object is an instance of (can be cast to) T
.
pub fn set_properties_from_value(
&self,
property_values: &[(&str, Value)]
) -> Result<(), BoolError>
pub fn set_property<'a, N, V>(
&self,
property_name: N,
value: V
) -> Result<(), BoolError> where
V: ToValue,
N: Into<&'a str>,
pub fn set_property_from_value<'a, N>(
&self,
property_name: N,
value: &Value
) -> Result<(), BoolError> where
N: Into<&'a str>,
Safety Read more
Safety Read more
Safety Read more
Safety Read more
pub fn connect_notify<F>(&self, name: Option<&str>, f: F) -> SignalHandlerId where
F: 'static + Fn(&T, &ParamSpec) + Send + Sync,
pub fn connect_notify_local<F>(
&self,
name: Option<&str>,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&T, &ParamSpec),
pub unsafe fn connect_notify_unsafe<F>(
&self,
name: Option<&str>,
f: F
) -> SignalHandlerId where
F: Fn(&T, &ParamSpec),
pub fn has_property<'a, N>(&self, property_name: N, type_: Option<Type>) -> bool where
N: Into<&'a str>,
pub fn find_property<'a, N>(&self, property_name: N) -> Option<ParamSpec> where
N: Into<&'a str>,
pub fn connect<'a, N, F>(
&self,
signal_name: N,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value> + Send + Sync + 'static,
N: Into<&'a str>,
Same as connect
but takes a SignalId
instead of a signal name.
pub fn connect_local<'a, N, F>(
&self,
signal_name: N,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value> + 'static,
N: Into<&'a str>,
Same as connect_local
but takes a SignalId
instead of a signal name.
pub unsafe fn connect_unsafe<'a, N, F>(
&self,
signal_name: N,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value>,
N: Into<&'a str>,
Same as connect_unsafe
but takes a SignalId
instead of a signal name.
Emit signal by signal id.
Emit signal with details by signal id.
Emit signal by it’s name.
pub fn bind_property<'a, O, N, M>(
&'a self,
source_property: N,
target: &'a O,
target_property: M
) -> BindingBuilder<'a> where
O: ObjectType,
N: Into<&'a str>,
M: Into<&'a str>,
Same as emit
but takes Value
for the arguments.
Same as emit_by_name
but takes Value
for the arguments.
Returns a SendValue
clone of self
.
impl<'a, T, C> FromValueOptional<'a> for T where
C: ValueTypeChecker<Error = ValueTypeMismatchOrNoneError>,
T: FromValue<'a, Checker = C>,