Copyright | Will Thompson and Iñaki García Etxebarria |
---|---|
License | LGPL-2.1 |
Maintainer | Iñaki García Etxebarria |
Safe Haskell | None |
Language | Haskell2010 |
GI.Gio.Objects.SubprocessLauncher
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.
Since: 2.40
Synopsis
- newtype SubprocessLauncher = SubprocessLauncher (ManagedPtr SubprocessLauncher)
- class (GObject o, IsDescendantOf SubprocessLauncher o) => IsSubprocessLauncher o
- toSubprocessLauncher :: (MonadIO m, IsSubprocessLauncher o) => o -> m SubprocessLauncher
- type family ResolveSubprocessLauncherMethod (t :: Symbol) o where ...
- data SubprocessLauncherCloseMethodInfo
- subprocessLauncherClose :: (HasCallStack, MonadIO m, IsSubprocessLauncher a) => a -> m ()
- data SubprocessLauncherGetenvMethodInfo
- subprocessLauncherGetenv :: (HasCallStack, MonadIO m, IsSubprocessLauncher a) => a -> [Char] -> m (Maybe [Char])
- subprocessLauncherNew :: (HasCallStack, MonadIO m) => [SubprocessFlags] -> m SubprocessLauncher
- data SubprocessLauncherSetCwdMethodInfo
- subprocessLauncherSetCwd :: (HasCallStack, MonadIO m, IsSubprocessLauncher a) => a -> [Char] -> m ()
- data SubprocessLauncherSetEnvironMethodInfo
- subprocessLauncherSetEnviron :: (HasCallStack, MonadIO m, IsSubprocessLauncher a) => a -> [[Char]] -> m ()
- data SubprocessLauncherSetFlagsMethodInfo
- subprocessLauncherSetFlags :: (HasCallStack, MonadIO m, IsSubprocessLauncher a) => a -> [SubprocessFlags] -> m ()
- data SubprocessLauncherSetStderrFilePathMethodInfo
- subprocessLauncherSetStderrFilePath :: (HasCallStack, MonadIO m, IsSubprocessLauncher a) => a -> Maybe [Char] -> m ()
- data SubprocessLauncherSetStdinFilePathMethodInfo
- subprocessLauncherSetStdinFilePath :: (HasCallStack, MonadIO m, IsSubprocessLauncher a) => a -> Maybe [Char] -> m ()
- data SubprocessLauncherSetStdoutFilePathMethodInfo
- subprocessLauncherSetStdoutFilePath :: (HasCallStack, MonadIO m, IsSubprocessLauncher a) => a -> Maybe [Char] -> m ()
- data SubprocessLauncherSetenvMethodInfo
- subprocessLauncherSetenv :: (HasCallStack, MonadIO m, IsSubprocessLauncher a) => a -> [Char] -> [Char] -> Bool -> m ()
- data SubprocessLauncherSpawnvMethodInfo
- subprocessLauncherSpawnv :: (HasCallStack, MonadIO m, IsSubprocessLauncher a) => a -> [[Char]] -> m Subprocess
- data SubprocessLauncherTakeFdMethodInfo
- subprocessLauncherTakeFd :: (HasCallStack, MonadIO m, IsSubprocessLauncher a) => a -> Int32 -> Int32 -> m ()
- data SubprocessLauncherTakeStderrFdMethodInfo
- subprocessLauncherTakeStderrFd :: (HasCallStack, MonadIO m, IsSubprocessLauncher a) => a -> Int32 -> m ()
- data SubprocessLauncherTakeStdinFdMethodInfo
- subprocessLauncherTakeStdinFd :: (HasCallStack, MonadIO m, IsSubprocessLauncher a) => a -> Int32 -> m ()
- data SubprocessLauncherTakeStdoutFdMethodInfo
- subprocessLauncherTakeStdoutFd :: (HasCallStack, MonadIO m, IsSubprocessLauncher a) => a -> Int32 -> m ()
- data SubprocessLauncherUnsetenvMethodInfo
- subprocessLauncherUnsetenv :: (HasCallStack, MonadIO m, IsSubprocessLauncher a) => a -> [Char] -> m ()
- data SubprocessLauncherFlagsPropertyInfo
- constructSubprocessLauncherFlags :: (IsSubprocessLauncher o, MonadIO m) => [SubprocessFlags] -> m (GValueConstruct o)
- subprocessLauncherFlags :: AttrLabelProxy "flags"
Exported types
newtype SubprocessLauncher Source #
Memory-managed wrapper type.
Constructors
SubprocessLauncher (ManagedPtr SubprocessLauncher) |
Instances
class (GObject o, IsDescendantOf SubprocessLauncher o) => IsSubprocessLauncher o Source #
Type class for types which can be safely cast to SubprocessLauncher
, for instance with toSubprocessLauncher
.
Instances
(GObject o, IsDescendantOf SubprocessLauncher o) => IsSubprocessLauncher o Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher |
toSubprocessLauncher :: (MonadIO m, IsSubprocessLauncher o) => o -> m SubprocessLauncher Source #
Cast to SubprocessLauncher
, for types for which this is known to be safe. For general casts, use castTo
.
Methods
Click to display all available methods, including inherited ones
Methods
bindProperty, bindPropertyFull, close, forceFloating, freezeNotify, getenv, getv, isFloating, notify, notifyByPspec, ref, refSink, runDispose, setenv, spawnv, stealData, stealQdata, takeFd, takeStderrFd, takeStdinFd, takeStdoutFd, thawNotify, unref, unsetenv, watchClosure.
Getters
getData, getProperty, getQdata.
Setters
setCwd, setData, setDataFull, setEnviron, setFlags, setProperty, setStderrFilePath, setStdinFilePath, setStdoutFilePath.
type family ResolveSubprocessLauncherMethod (t :: Symbol) o where ... Source #
Equations
close
data SubprocessLauncherCloseMethodInfo Source #
Instances
(signature ~ m (), MonadIO m, IsSubprocessLauncher a) => OverloadedMethod SubprocessLauncherCloseMethodInfo a signature Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo SubprocessLauncherCloseMethodInfo (a :: Type) Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods |
subprocessLauncherClose Source #
Arguments
:: (HasCallStack, MonadIO m, IsSubprocessLauncher a) | |
=> a |
|
-> m () |
Closes all the file descriptors previously passed to the object with
subprocessLauncherTakeFd
, subprocessLauncherTakeStderrFd
, etc.
After calling this method, any subsequent calls to g_subprocess_launcher_spawn()
or subprocessLauncherSpawnv
will
return IOErrorEnumClosed
. This method is idempotent if
called more than once.
This function is called automatically when the SubprocessLauncher
is disposed, but is provided separately so that garbage collected
language bindings can call it earlier to guarantee when FDs are closed.
Since: 2.68
getenv
data SubprocessLauncherGetenvMethodInfo Source #
Instances
(signature ~ ([Char] -> m (Maybe [Char])), MonadIO m, IsSubprocessLauncher a) => OverloadedMethod SubprocessLauncherGetenvMethodInfo a signature Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo SubprocessLauncherGetenvMethodInfo (a :: Type) Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods |
subprocessLauncherGetenv Source #
Arguments
:: (HasCallStack, MonadIO m, IsSubprocessLauncher a) | |
=> a |
|
-> [Char] |
|
-> m (Maybe [Char]) | Returns: the value of the environment variable,
|
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.
Since: 2.40
new
subprocessLauncherNew Source #
Arguments
:: (HasCallStack, MonadIO m) | |
=> [SubprocessFlags] |
|
-> m SubprocessLauncher |
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.
Since: 2.40
setCwd
data SubprocessLauncherSetCwdMethodInfo Source #
Instances
(signature ~ ([Char] -> m ()), MonadIO m, IsSubprocessLauncher a) => OverloadedMethod SubprocessLauncherSetCwdMethodInfo a signature Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo SubprocessLauncherSetCwdMethodInfo (a :: Type) Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods |
subprocessLauncherSetCwd Source #
Arguments
:: (HasCallStack, MonadIO m, IsSubprocessLauncher a) | |
=> a |
|
-> [Char] |
|
-> m () |
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.
Since: 2.40
setEnviron
data SubprocessLauncherSetEnvironMethodInfo Source #
Instances
(signature ~ ([[Char]] -> m ()), MonadIO m, IsSubprocessLauncher a) => OverloadedMethod SubprocessLauncherSetEnvironMethodInfo a signature Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo SubprocessLauncherSetEnvironMethodInfo (a :: Type) Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods |
subprocessLauncherSetEnviron Source #
Arguments
:: (HasCallStack, MonadIO m, IsSubprocessLauncher a) | |
=> a |
|
-> [[Char]] |
|
-> m () |
Replace the entire environment of processes launched from this launcher with the given 'environ' variable.
Typically you will build this variable by using listenv
to copy
the process 'environ' and using the functions environSetenv
,
environUnsetenv
, etc.
As an alternative, you can use subprocessLauncherSetenv
,
subprocessLauncherUnsetenv
, etc.
Pass an empty array to set an empty environment. Pass Nothing
to inherit the
parent process’ environment. As of GLib 2.54, the parent process’ environment
will be copied when subprocessLauncherSetEnviron
is called.
Previously, it was copied when the subprocess was executed. This means the
copied environment may now be modified (using subprocessLauncherSetenv
,
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.
Since: 2.40
setFlags
data SubprocessLauncherSetFlagsMethodInfo Source #
Instances
(signature ~ ([SubprocessFlags] -> m ()), MonadIO m, IsSubprocessLauncher a) => OverloadedMethod SubprocessLauncherSetFlagsMethodInfo a signature Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo SubprocessLauncherSetFlagsMethodInfo (a :: Type) Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods |
subprocessLauncherSetFlags Source #
Arguments
:: (HasCallStack, MonadIO m, IsSubprocessLauncher a) | |
=> a |
|
-> [SubprocessFlags] |
|
-> m () |
Sets the flags on the launcher.
The default flags are SubprocessFlagsNone
.
You may not set flags that specify conflicting options for how to
handle a particular stdio stream (eg: specifying both
SubprocessFlagsStdinPipe
and
SubprocessFlagsStdinInherit
).
You may also not set a flag that conflicts with a previous call to a
function like subprocessLauncherSetStdinFilePath
or
subprocessLauncherTakeStdoutFd
.
Since: 2.40
setStderrFilePath
data SubprocessLauncherSetStderrFilePathMethodInfo Source #
Instances
(signature ~ (Maybe [Char] -> m ()), MonadIO m, IsSubprocessLauncher a) => OverloadedMethod SubprocessLauncherSetStderrFilePathMethodInfo a signature Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo SubprocessLauncherSetStderrFilePathMethodInfo (a :: Type) Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods |
subprocessLauncherSetStderrFilePath Source #
Arguments
:: (HasCallStack, MonadIO m, IsSubprocessLauncher a) | |
=> a |
|
-> Maybe [Char] |
|
-> m () |
Sets the file path to use as the stderr for spawned processes.
If path
is Nothing
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
SubprocessFlagsStderrMerge
.
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.
Since: 2.40
setStdinFilePath
data SubprocessLauncherSetStdinFilePathMethodInfo Source #
Instances
(signature ~ (Maybe [Char] -> m ()), MonadIO m, IsSubprocessLauncher a) => OverloadedMethod SubprocessLauncherSetStdinFilePathMethodInfo a signature Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo SubprocessLauncherSetStdinFilePathMethodInfo (a :: Type) Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods |
subprocessLauncherSetStdinFilePath Source #
Arguments
:: (HasCallStack, MonadIO m, IsSubprocessLauncher a) | |
=> a |
|
-> Maybe [Char] |
|
-> m () |
Sets the file path to use as the stdin for spawned processes.
If path
is Nothing
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.
Since: 2.40
setStdoutFilePath
data SubprocessLauncherSetStdoutFilePathMethodInfo Source #
Instances
(signature ~ (Maybe [Char] -> m ()), MonadIO m, IsSubprocessLauncher a) => OverloadedMethod SubprocessLauncherSetStdoutFilePathMethodInfo a signature Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo SubprocessLauncherSetStdoutFilePathMethodInfo (a :: Type) Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods |
subprocessLauncherSetStdoutFilePath Source #
Arguments
:: (HasCallStack, MonadIO m, IsSubprocessLauncher a) | |
=> a |
|
-> Maybe [Char] |
|
-> m () |
Sets the file path to use as the stdout for spawned processes.
If path
is Nothing
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.
Since: 2.40
setenv
data SubprocessLauncherSetenvMethodInfo Source #
Instances
(signature ~ ([Char] -> [Char] -> Bool -> m ()), MonadIO m, IsSubprocessLauncher a) => OverloadedMethod SubprocessLauncherSetenvMethodInfo a signature Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo SubprocessLauncherSetenvMethodInfo (a :: Type) Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods |
subprocessLauncherSetenv Source #
Arguments
:: (HasCallStack, MonadIO m, IsSubprocessLauncher a) | |
=> a |
|
-> [Char] |
|
-> [Char] |
|
-> Bool |
|
-> m () |
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.
Since: 2.40
spawnv
data SubprocessLauncherSpawnvMethodInfo Source #
Instances
(signature ~ ([[Char]] -> m Subprocess), MonadIO m, IsSubprocessLauncher a) => OverloadedMethod SubprocessLauncherSpawnvMethodInfo a signature Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo SubprocessLauncherSpawnvMethodInfo (a :: Type) Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods |
subprocessLauncherSpawnv Source #
Arguments
:: (HasCallStack, MonadIO m, IsSubprocessLauncher a) | |
=> a |
|
-> [[Char]] |
|
-> m Subprocess | Returns: A new |
Creates a Subprocess
given a provided array of arguments.
Since: 2.40
takeFd
data SubprocessLauncherTakeFdMethodInfo Source #
Instances
(signature ~ (Int32 -> Int32 -> m ()), MonadIO m, IsSubprocessLauncher a) => OverloadedMethod SubprocessLauncherTakeFdMethodInfo a signature Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo SubprocessLauncherTakeFdMethodInfo (a :: Type) Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods |
subprocessLauncherTakeFd Source #
Arguments
:: (HasCallStack, MonadIO m, IsSubprocessLauncher a) | |
=> a |
|
-> Int32 |
|
-> Int32 |
|
-> m () |
Transfer an arbitrary file descriptor from parent process to the
child. This function takes ownership of the sourceFd
; 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.
takeStderrFd
data SubprocessLauncherTakeStderrFdMethodInfo Source #
Instances
(signature ~ (Int32 -> m ()), MonadIO m, IsSubprocessLauncher a) => OverloadedMethod SubprocessLauncherTakeStderrFdMethodInfo a signature Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo SubprocessLauncherTakeStderrFdMethodInfo (a :: Type) Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods |
subprocessLauncherTakeStderrFd Source #
Arguments
:: (HasCallStack, MonadIO m, IsSubprocessLauncher a) | |
=> a |
|
-> Int32 |
|
-> m () |
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.
Since: 2.40
takeStdinFd
data SubprocessLauncherTakeStdinFdMethodInfo Source #
Instances
(signature ~ (Int32 -> m ()), MonadIO m, IsSubprocessLauncher a) => OverloadedMethod SubprocessLauncherTakeStdinFdMethodInfo a signature Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo SubprocessLauncherTakeStdinFdMethodInfo (a :: Type) Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods |
subprocessLauncherTakeStdinFd Source #
Arguments
:: (HasCallStack, MonadIO m, IsSubprocessLauncher a) | |
=> a |
|
-> Int32 |
|
-> m () |
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 SubprocessFlagsStdinInherit
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.
Since: 2.40
takeStdoutFd
data SubprocessLauncherTakeStdoutFdMethodInfo Source #
Instances
(signature ~ (Int32 -> m ()), MonadIO m, IsSubprocessLauncher a) => OverloadedMethod SubprocessLauncherTakeStdoutFdMethodInfo a signature Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo SubprocessLauncherTakeStdoutFdMethodInfo (a :: Type) Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods |
subprocessLauncherTakeStdoutFd Source #
Arguments
:: (HasCallStack, MonadIO m, IsSubprocessLauncher a) | |
=> a |
|
-> Int32 |
|
-> m () |
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.
Since: 2.40
unsetenv
data SubprocessLauncherUnsetenvMethodInfo Source #
Instances
(signature ~ ([Char] -> m ()), MonadIO m, IsSubprocessLauncher a) => OverloadedMethod SubprocessLauncherUnsetenvMethodInfo a signature Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo SubprocessLauncherUnsetenvMethodInfo (a :: Type) Source # | |
Defined in GI.Gio.Objects.SubprocessLauncher Methods |
subprocessLauncherUnsetenv Source #
Arguments
:: (HasCallStack, MonadIO m, IsSubprocessLauncher a) | |
=> a |
|
-> [Char] |
|
-> m () |
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.
Since: 2.40
Properties
flags
- flags
gio
.SubprocessFlags - for launched processes.
Since: 2.40
data SubprocessLauncherFlagsPropertyInfo Source #
Instances
constructSubprocessLauncherFlags :: (IsSubprocessLauncher o, MonadIO m) => [SubprocessFlags] -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “flags
” property. This is rarely needed directly, but it is used by new
.
subprocessLauncherFlags :: AttrLabelProxy "flags" Source #