Struct gio::SubprocessLauncher [−][src]
pub struct SubprocessLauncher(_);
Expand description
This class contains a set of options for launching child processes, such as where its standard input and output will be directed, the argument list, the environment, and more.
While the Subprocess
class has high level functions covering
popular cases, use of this class allows access to more advanced
options. It can also be used to launch multiple subprocesses with
a similar configuration.
Implements
Implementations
This is supported on Unix only.
Transfer an arbitrary file descriptor from parent process to the
child. This function takes ownership of the source_fd
; it will be closed
in the parent when self
is freed.
By default, all file descriptors from the parent will be closed.
This function allows you to create (for example) a custom pipe()
or
socketpair()
before launching the process, and choose the target
descriptor in the child.
An example use case is GNUPG, which has a command line argument
--passphrase-fd
providing a file descriptor number where it expects
the passphrase to be written.
source_fd
File descriptor in parent process
target_fd
Target descriptor for child process
This is supported on Unix only.
Sets the file descriptor to use as the stderr for spawned processes.
If fd
is -1 then any previously given fd is unset.
Note that the default behaviour is to pass stderr through to the stderr of the parent process.
The passed fd
belongs to the SubprocessLauncher
. It will be
automatically closed when the launcher is finalized. The file
descriptor will also be closed on the child side when executing the
spawned process.
You may not set a stderr fd if a stderr file path is already set or if the launcher flags contain any flags directing stderr elsewhere.
This feature is only available on UNIX.
fd
a file descriptor, or -1
This is supported on Unix only.
Sets the file descriptor to use as the stdin for spawned processes.
If fd
is -1 then any previously given fd is unset.
Note that if your intention is to have the stdin of the calling
process inherited by the child then SubprocessFlags::STDIN_INHERIT
is a better way to go about doing that.
The passed fd
is noted but will not be touched in the current
process. It is therefore necessary that it be kept open by the
caller until the subprocess is spawned. The file descriptor will
also not be explicitly closed on the child side, so it must be marked
O_CLOEXEC if that’s what you want.
You may not set a stdin fd if a stdin file path is already set or if the launcher flags contain any flags directing stdin elsewhere.
This feature is only available on UNIX.
fd
a file descriptor, or -1
This is supported on Unix only.
Sets the file descriptor to use as the stdout for spawned processes.
If fd
is -1 then any previously given fd is unset.
Note that the default behaviour is to pass stdout through to the stdout of the parent process.
The passed fd
is noted but will not be touched in the current
process. It is therefore necessary that it be kept open by the
caller until the subprocess is spawned. The file descriptor will
also not be explicitly closed on the child side, so it must be marked
O_CLOEXEC if that’s what you want.
You may not set a stdout fd if a stdout file path is already set or if the launcher flags contain any flags directing stdout elsewhere.
This feature is only available on UNIX.
fd
a file descriptor, or -1
Creates a new SubprocessLauncher
.
The launcher is created with the default options. A copy of the environment of the calling process is made at the time of this call and will be used as the environment that the process is launched in.
flags
Returns the value of the environment variable variable
in the
environment of processes launched from this launcher.
On UNIX, the returned string can be an arbitrary byte string. On Windows, it will be UTF-8.
variable
the environment variable to get
Returns
the value of the environment variable,
None
if unset
This is supported on Unix only.
Sets up a child setup function.
The child setup function will be called after fork()
but before
exec()
on the child’s side.
destroy_notify
will not be automatically called on the child’s side
of the fork()
. It will only be called when the last reference on the
SubprocessLauncher
is dropped or when a new child setup function is
given.
None
can be given as child_setup
to disable the functionality.
Child setup functions are only available on UNIX.
child_setup
a GSpawnChildSetupFunc
to use as the child setup function
destroy_notify
a GDestroyNotify
for user_data
Sets the current working directory that processes will be launched with.
By default processes are launched with the current working directory of the launching process at the time of launch.
cwd
the cwd for launched processes
Replace the entire environment of processes launched from this launcher with the given ‘environ’ variable.
Typically you will build this variable by using g_listenv()
to copy
the process ‘environ’ and using the functions g_environ_setenv()
,
g_environ_unsetenv()
, etc.
As an alternative, you can use setenv()
,
unsetenv()
, etc.
Pass an empty array to set an empty environment. Pass None
to inherit the
parent process’ environment. As of GLib 2.54, the parent process’ environment
will be copied when set_environ()
is called.
Previously, it was copied when the subprocess was executed. This means the
copied environment may now be modified (using setenv()
,
etc.) before launching the subprocess.
On UNIX, all strings in this array can be arbitrary byte strings. On Windows, they should be in UTF-8.
env
the replacement environment
Sets the flags on the launcher.
The default flags are SubprocessFlags::NONE
.
You may not set flags that specify conflicting options for how to
handle a particular stdio stream (eg: specifying both
SubprocessFlags::STDIN_PIPE
and
SubprocessFlags::STDIN_INHERIT
).
You may also not set a flag that conflicts with a previous call to a
function like set_stdin_file_path()
or
take_stdout_fd()
.
flags
This is supported on Unix only.
Sets the file path to use as the stderr for spawned processes.
If path
is None
then any previously given path is unset.
The file will be created or truncated when the process is spawned, as would be the case if using ‘2>’ at the shell.
If you want to send both stdout and stderr to the same file then use
SubprocessFlags::STDERR_MERGE
.
You may not set a stderr file path if a stderr fd is already set or if the launcher flags contain any flags directing stderr elsewhere.
This feature is only available on UNIX.
path
a filename or None
This is supported on Unix only.
Sets the file path to use as the stdin for spawned processes.
If path
is None
then any previously given path is unset.
The file must exist or spawning the process will fail.
You may not set a stdin file path if a stdin fd is already set or if the launcher flags contain any flags directing stdin elsewhere.
This feature is only available on UNIX.
This is supported on Unix only.
Sets the file path to use as the stdout for spawned processes.
If path
is None
then any previously given path is unset.
The file will be created or truncated when the process is spawned, as would be the case if using ‘>’ at the shell.
You may not set a stdout file path if a stdout fd is already set or if the launcher flags contain any flags directing stdout elsewhere.
This feature is only available on UNIX.
path
a filename or None
Sets the environment variable variable
in the environment of
processes launched from this launcher.
On UNIX, both the variable’s name and value can be arbitrary byte strings, except that the variable’s name cannot contain ‘=’. On Windows, they should be in UTF-8.
variable
the environment variable to set, must not contain ‘=’
value
the new value for the variable
overwrite
whether to change the variable if it already exists
Creates a Subprocess
given a provided varargs list of arguments.
argv0
Command line arguments
Returns
A new Subprocess
, or None
on error (and error
will be set)
Removes the environment variable variable
from the environment of
processes launched from this launcher.
On UNIX, the variable’s name can be an arbitrary byte string not containing ‘=’. On Windows, it should be in UTF-8.
variable
the environment variable to unset, must not contain ‘=’
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 SubprocessLauncher
impl !Send for SubprocessLauncher
impl !Sync for SubprocessLauncher
impl Unpin for SubprocessLauncher
impl UnwindSafe for SubprocessLauncher
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>,