Package ch.bailu.gtk.gio
Class SubprocessLauncher
java.lang.Object
ch.bailu.gtk.type.Type
ch.bailu.gtk.type.Pointer
ch.bailu.gtk.gobject.Object
ch.bailu.gtk.gio.SubprocessLauncher
- All Implemented Interfaces:
PointerInterface
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 #GSubprocess 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.
such as where its standard input and output will be directed, the
argument list, the environment, and more.
While the #GSubprocess 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.
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
static interface
Nested classes/interfaces inherited from class ch.bailu.gtk.gobject.Object
Object.OnBindingTransformFunc, Object.OnDuplicateFunc, Object.OnNotify, Object.OnToggleNotify, Object.OnWeakNotify
-
Field Summary
Fields inherited from class ch.bailu.gtk.gobject.Object
SIGNAL_ON_NOTIFY
-
Constructor Summary
ConstructorDescriptionSubprocessLauncher
(int flags) Creates a new #GSubprocessLauncher.SubprocessLauncher
(PointerContainer pointer) -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Closes all the file descriptors previously passed to the object with
g_subprocess_launcher_take_fd(), g_subprocess_launcher_take_stderr_fd(), etc.static ClassHandler
Returns the value of the environment variable @variable in the
environment of processes launched from this launcher.Returns the value of the environment variable @variable in the
environment of processes launched from this launcher.static int
static long
static TypeSystem.TypeSize
static long
static TypeSystem.TypeSize
void
setChildSetup
(SubprocessLauncher.OnSpawnChildSetupFunc child_setup, Pointer user_data, SubprocessLauncher.OnDestroyNotify destroy_notify) Sets up a child setup function.void
Sets the current working directory that processes will be launched
with.void
Sets the current working directory that processes will be launched
with.void
Sets the environment variable @variable in the environment of
processes launched from this launcher.void
Sets the environment variable @variable in the environment of
processes launched from this launcher.void
setFlags
(int flags) Sets the flags on the launcher.void
setStderrFilePath
(Str path) Sets the file path to use as the stderr for spawned processes.void
setStderrFilePath
(String path) Sets the file path to use as the stderr for spawned processes.void
setStdinFilePath
(Str path) Sets the file path to use as the stdin for spawned processes.void
setStdinFilePath
(String path) Sets the file path to use as the stdin for spawned processes.void
setStdoutFilePath
(Str path) Sets the file path to use as the stdout for spawned processes.void
setStdoutFilePath
(String path) Sets the file path to use as the stdout for spawned processes.void
takeFd
(int source_fd, int target_fd) Transfer an arbitrary file descriptor from parent process to the
child.void
takeStderrFd
(int fd) Sets the file descriptor to use as the stderr for spawned processes.void
takeStdinFd
(int fd) Sets the file descriptor to use as the stdin for spawned processes.void
takeStdoutFd
(int fd) Sets the file descriptor to use as the stdout for spawned processes.void
Removes the environment variable @variable from the environment of
processes launched from this launcher.void
Removes the environment variable @variable from the environment of
processes launched from this launcher.Methods inherited from class ch.bailu.gtk.gobject.Object
addToggleRef, bindProperty, bindProperty, bindPropertyFull, bindPropertyFull, bindPropertyWithClosures, bindPropertyWithClosures, compatControl, connect, connect, disconnect, disconnect, dupData, dupData, dupQdata, forceFloating, freezeNotify, get, get, getData, getData, getProperty, getProperty, getQdata, interfaceFindProperty, interfaceInstallProperty, isFloating, notify, notify, notifyByPspec, onNotify, ref, refSink, removeToggleRef, replaceData, replaceData, replaceQdata, runDispose, set, set, setData, setData, setDataFull, setDataFull, setProperty, setProperty, setQdata, setQdataFull, stealData, stealData, stealQdata, takeRef, thawNotify, unref, watchClosure, weakRef, weakUnref
Methods inherited from class ch.bailu.gtk.type.Pointer
asCPointer, cast, connectSignal, disconnectSignals, disconnectSignals, equals, hashCode, throwIfNull, throwNullPointerException, toString, unregisterCallbacks, unregisterCallbacks
Methods inherited from class ch.bailu.gtk.type.Type
asCPointer, asCPointer, asCPointerNotNull, asJnaPointer, asJnaPointer, asPointer, asPointer, cast, cast, throwIfNull
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface ch.bailu.gtk.type.PointerInterface
asCPointerNotNull, asJnaPointer, asPointer, isNotNull, isNull
-
Constructor Details
-
SubprocessLauncher
-
SubprocessLauncher
public SubprocessLauncher(int flags) Creates a new #GSubprocessLauncher.
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.- Parameters:
flags
- #GSubprocessFlags
-
-
Method Details
-
getClassHandler
-
close
public void close()Closes all the file descriptors previously passed to the object with
g_subprocess_launcher_take_fd(), g_subprocess_launcher_take_stderr_fd(), etc.
After calling this method, any subsequent calls to g_subprocess_launcher_spawn() or g_subprocess_launcher_spawnv() will
return %G_IO_ERROR_CLOSED. This method is idempotent if
called more than once.
This function is called automatically when the #GSubprocessLauncher
is disposed, but is provided separately so that garbage collected
language bindings can call it earlier to guarantee when FDs are closed. -
getenv
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.- Parameters:
variable
- the environment variable to get- Returns:
- the value of the environment variable, %NULL if unset
-
getenv
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.- Parameters:
variable
- the environment variable to get- Returns:
- the value of the environment variable, %NULL if unset
-
setChildSetup
public void setChildSetup(SubprocessLauncher.OnSpawnChildSetupFunc child_setup, @Nullable Pointer user_data, SubprocessLauncher.OnDestroyNotify destroy_notify) 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
#GSubprocessLauncher is dropped or when a new child setup function is
given.
%NULL can be given as @child_setup to disable the functionality.
Child setup functions are only available on UNIX.- Parameters:
child_setup
- a #GSpawnChildSetupFunc to use as the child setup functionuser_data
- user data for @child_setupdestroy_notify
- a #GDestroyNotify for @user_data
-
setCwd
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.- Parameters:
cwd
- the cwd for launched processes
-
setCwd
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.- Parameters:
cwd
- the cwd for launched processes
-
setFlags
public void setFlags(int flags) Sets the flags on the launcher.
The default flags are %G_SUBPROCESS_FLAGS_NONE.
You may not set flags that specify conflicting options for how to
handle a particular stdio stream (eg: specifying both
%G_SUBPROCESS_FLAGS_STDIN_PIPE and
%G_SUBPROCESS_FLAGS_STDIN_INHERIT).
You may also not set a flag that conflicts with a previous call to a
function like g_subprocess_launcher_set_stdin_file_path() or
g_subprocess_launcher_take_stdout_fd().- Parameters:
flags
- #GSubprocessFlags
-
setStderrFilePath
Sets the file path to use as the stderr for spawned processes.
If @path is %NULL 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
%G_SUBPROCESS_FLAGS_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.- Parameters:
path
- a filename or %NULL
-
setStderrFilePath
Sets the file path to use as the stderr for spawned processes.
If @path is %NULL 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
%G_SUBPROCESS_FLAGS_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.- Parameters:
path
- a filename or %NULL
-
setStdinFilePath
Sets the file path to use as the stdin for spawned processes.
If @path is %NULL 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.- Parameters:
path
-
-
setStdinFilePath
Sets the file path to use as the stdin for spawned processes.
If @path is %NULL 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.- Parameters:
path
-
-
setStdoutFilePath
Sets the file path to use as the stdout for spawned processes.
If @path is %NULL 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.- Parameters:
path
- a filename or %NULL
-
setStdoutFilePath
Sets the file path to use as the stdout for spawned processes.
If @path is %NULL 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.- Parameters:
path
- a filename or %NULL
-
setenv
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.- Parameters:
variable
- the environment variable to set, must not contain '='value
- the new value for the variableoverwrite
- whether to change the variable if it already exists
-
setenv
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.- Parameters:
variable
- the environment variable to set, must not contain '='value
- the new value for the variableoverwrite
- whether to change the variable if it already exists
-
takeFd
public void takeFd(int source_fd, int target_fd) 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.- Parameters:
source_fd
- File descriptor in parent processtarget_fd
- Target descriptor for child process
-
takeStderrFd
public void takeStderrFd(int fd) 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 #GSubprocessLauncher. 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.- Parameters:
fd
- a file descriptor, or -1
-
takeStdinFd
public void takeStdinFd(int fd) 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 %G_SUBPROCESS_FLAGS_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.- Parameters:
fd
- a file descriptor, or -1
-
takeStdoutFd
public void takeStdoutFd(int fd) 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.- Parameters:
fd
- a file descriptor, or -1
-
unsetenv
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.- Parameters:
variable
- the environment variable to unset, must not contain '='
-
unsetenv
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.- Parameters:
variable
- the environment variable to unset, must not contain '='
-
getTypeID
public static long getTypeID() -
getParentTypeID
public static long getParentTypeID() -
getTypeSize
-
getParentTypeSize
-
getInstanceSize
public static int getInstanceSize()
-