Class SubprocessLauncher
- All Implemented Interfaces:
Proxy
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.
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Inner class implementing a builder pattern to construct a GObject with properties.Nested classes/interfaces inherited from class org.gnome.gobject.GObject
GObject.NotifyCallback, GObject.ObjectClass
-
Constructor Summary
ConstructorDescriptionSubprocessLauncher
(MemorySegment address) Create a SubprocessLauncher proxy instance for the provided memory address.SubprocessLauncher
(Set<SubprocessFlags> flags) Creates a newGSubprocessLauncher
.SubprocessLauncher
(SubprocessFlags... flags) Creates a newGSubprocessLauncher
. -
Method Summary
Modifier and TypeMethodDescriptionprotected SubprocessLauncher
asParent()
Returns this instance as if it were its parent type.static SubprocessLauncher.Builder
<? extends SubprocessLauncher.Builder> builder()
ASubprocessLauncher.Builder
object constructs aSubprocessLauncher
with the specified properties.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.Returns the value of the environment variablevariable
in the environment of processes launched from this launcher.static Type
getType()
Get the GType of the SubprocessLauncher classvoid
setChildSetup
(SpawnChildSetupFunc childSetup) Sets up a child setup function.void
Sets the current working directory that processes will be launched with.void
Sets the environment variablevariable
in the environment of processes launched from this launcher.void
setEnviron
(String[] env) Replace the entire environment of processes launched from this launcher with the given 'environ' variable.void
setFlags
(Set<SubprocessFlags> flags) Sets the flags on the launcher.void
setFlags
(SubprocessFlags... flags) Sets the flags on the launcher.void
setStderrFilePath
(@Nullable String path) Sets the file path to use as the stderr for spawned processes.void
setStdinFilePath
(@Nullable String path) Sets the file path to use as the stdin for spawned processes.void
setStdoutFilePath
(@Nullable String path) Sets the file path to use as the stdout for spawned processes.Creates aGSubprocess
given a provided varargs list of arguments.Creates aGSubprocess
given a provided array of arguments.void
takeFd
(int sourceFd, int targetFd) 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 variablevariable
from the environment of processes launched from this launcher.Methods inherited from class org.gnome.gobject.GObject
addToggleRef, addWeakPointer, bindProperty, bindProperty, bindProperty, bindPropertyFull, bindPropertyFull, bindPropertyWithClosures, bindPropertyWithClosures, compatControl, connect, connect, connect, constructed, disconnect, dispatchPropertiesChanged, dispose, dupData, dupQdata, emit, emitNotify, finalize_, forceFloating, freezeNotify, get, getData, getMemoryLayout, getProperty, getProperty, getProperty, getQdata, getv, interfaceFindProperty, interfaceInstallProperty, interfaceListProperties, isFloating, newInstance, newInstance, newInstance, newInstance, newv, notify_, notify_, notifyByPspec, onNotify, ref, refSink, removeToggleRef, removeWeakPointer, replaceData, replaceQdata, runDispose, set, setData, setDataFull, setProperty, setProperty, setProperty, setQdata, setQdataFull, setv, stealData, stealQdata, takeRef, thawNotify, unref, watchClosure, weakRef, weakUnref, withProperties
Methods inherited from class org.gnome.gobject.TypeInstance
callParent, callParent, getPrivate, readGClass, writeGClass
Methods inherited from class io.github.jwharm.javagi.base.ProxyInstance
equals, handle, hashCode
-
Constructor Details
-
SubprocessLauncher
Create a SubprocessLauncher proxy instance for the provided memory address.- Parameters:
address
- the memory address of the native object
-
SubprocessLauncher
Creates a newGSubprocessLauncher
.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
-
SubprocessLauncher
Creates a newGSubprocessLauncher
.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
-
getType
-
asParent
Returns this instance as if it were its parent type. This is mostly synonymous to the Javasuper
keyword, but will set the native typeclass function pointers to the parent type. When overriding a native virtual method in Java, "chaining up" withsuper.methodName()
doesn't work, because it invokes the overridden function pointer again. To chain up, callasParent().methodName()
. This will call the native function pointer of this virtual method in the typeclass of the parent type. -
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
IOErrorEnum.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 variablevariable
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
Sets up a child setup function.The child setup function will be called after fork() but before exec() on the child's side.
destroyNotify
will not be automatically called on the child's side of the fork(). It will only be called when the last reference on theGSubprocessLauncher
is dropped or when a new child setup function is given.null
can be given aschildSetup
to disable the functionality.Child setup functions are only available on UNIX.
- Parameters:
childSetup
- aGSpawnChildSetupFunc
to use as the child setup function
-
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
-
setEnviron
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 g_subprocess_launcher_setenv(), g_subprocess_launcher_unsetenv(), etc.
Pass an empty array to set an empty environment. Pass
null
to inherit the parent process’ environment. As of GLib 2.54, the parent process’ environment will be copied when g_subprocess_launcher_set_environ() is called. Previously, it was copied when the subprocess was executed. This means the copied environment may now be modified (using g_subprocess_launcher_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.
- Parameters:
env
- the replacement environment
-
setFlags
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
andSubprocessFlags.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
-
setFlags
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
andSubprocessFlags.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
isnull
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.
- Parameters:
path
- a filename ornull
-
setStdinFilePath
Sets the file path to use as the stdin for spawned processes.If
path
isnull
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
- a filename ornull
-
setStdoutFilePath
Sets the file path to use as the stdout for spawned processes.If
path
isnull
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 ornull
-
setenv
Sets the environment variablevariable
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
-
spawn
Creates aGSubprocess
given a provided varargs list of arguments.- Parameters:
error
- Errorargv0
- Command line argumentsvarargs
- Continued arguments,null
terminated- Returns:
- A new
GSubprocess
, ornull
on error (anderror
will be set)
-
spawnv
Creates aGSubprocess
given a provided array of arguments.- Parameters:
argv
- Command line arguments- Returns:
- A new
GSubprocess
, ornull
on error (anderror
will be set) - Throws:
GErrorException
- seeGError
-
takeFd
public void takeFd(int sourceFd, int targetFd) Transfer an arbitrary file descriptor from parent process to the child. This function takes ownership of thesourceFd
; it will be closed in the parent when this SubprocessLauncher is freed.By default, all file descriptors from the parent will be closed. This function allows you to create (for example) a custom
pipe()
orsocketpair()
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:
sourceFd
- File descriptor in parent processtargetFd
- 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 theGSubprocessLauncher
. 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
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.
- 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 variablevariable
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 '='
-
builder
ASubprocessLauncher.Builder
object constructs aSubprocessLauncher
with the specified properties. Use the variousset...()
methods to set properties, and finish construction withSubprocessLauncher.Builder.build()
.
-