launcher#
Fully qualified name: carb::launcher
-
namespace launcher#
Namespace for the Carbonite process launch helper interface.
Classes#
- ArgCollector
A simple child process argument collector helper class.
- EnvCollector
A simple environment variable collector helper class.
Enumerations#
- KillStatus
Return statuses for ILauncher::killProcessWithTimeout() .
Functions#
- void restoreParentDeathSignal(KillFlags flags=0)
Restores the parent death signal on set-user-ID and set-group-ID images.
Structs#
- ILauncher
A simple process launcher helper interface.
- LaunchDesc
Descriptor of the new process to be launched by ILauncher::openProcess().
Typedefs#
- AddSettingPredicateFn
Prototype for a callback function used to check if a setting should be added.
- ExitCode
Base type for a process exit code.
- KillFlags
Process kill flags.
- LauncherFlags
Launcher flags.
- OnProcessReadFn
Prototype for a stream read callback function.
- ProcessId
Base type for the identifier of a process.
- SettingsEnumFlags
Base type for the flags used when adding a settings tree to an argument collector object.
- WaitFlags
Stream waiting flags.
Variables#
- constexpr KillFlags fKillFlagFailOnDebugger
Flag to indicate that ILauncher::killProcess() or ILauncher::killProcessWithTimeout() calls should simply fail if a debugger is currently attached to the child process being terminated.
- constexpr KillFlags fKillFlagForce
Flag to indicate that a child process should be force killed.
- constexpr KillFlags fKillFlagKillChildProcesses
Flag to indicate that any direct child processes of the process being terminated should also be terminated.
- constexpr KillFlags fKillFlagSkipWait
Flag to indicate that the ILauncher::killProcess() or ILauncher::killProcessWithTimeout() calls should not wait for the child process to fully exit before returning.
- constexpr LauncherFlags fLaunchFlagAllowBadEnv
Flag to indicate that the child process should still continue to be launched even if the environment block for it could not be created for any reason.
- constexpr LauncherFlags fLaunchFlagAllowBadLog
Flag to indicate that launching the child process should not fail if either of the log files fails to open for write.
- constexpr LauncherFlags fLaunchFlagByteMode
Flag to indicate that reading from the
stdout
orstderr
streams of the child process should be handled as a byte stream.- constexpr LauncherFlags fLaunchFlagForce
When the fLaunchFlagKillOnParentExit flag is also used, this indicates that the child process should be forcibly terminated instead of just being asked to exit when the parent process dies.
- constexpr LauncherFlags fLaunchFlagKillOnParentExit
Flag to indicate that the new child process should be killed when the calling parent process exits.
- constexpr LauncherFlags fLaunchFlagLaunchDetached
Flag to indicate that the child process should be launched fully detached from the launching (ie: parent) process.
- constexpr LauncherFlags fLaunchFlagMessageMode
Flag to indicate that reading from the
stdout
orstderr
streams of the child process should be handled as a message stream.- constexpr LauncherFlags fLaunchFlagNoInheritEnv
Flag to indicate that the calling process's environment should not be inherited by the child process in addition to the new environment variables specified in the launch descriptor.
- constexpr LauncherFlags fLaunchFlagNoStdErr
Flags to indicate that the child process' standard output streams should be closed upon launch.
- constexpr LauncherFlags fLaunchFlagNoStdOut
Flags to indicate that the child process' standard output streams should be closed upon launch.
- constexpr LauncherFlags fLaunchFlagNoStdStreams
Flags to indicate that the child process' standard output streams should be closed upon launch.
- constexpr LauncherFlags fLaunchFlagOpenStdin
Flag to indicate that the stdin stream for the child process should be opened and accessible on the side of the parent process.
- constexpr LauncherFlags fLaunchFlagScript
Flag to indicate that the requested command should be launched as a script.
- constexpr SettingsEnumFlags fSettingsEnumFlagRecursive
Flag to indicate that the settings in the requested tree should be added recursively to the argument collector.
- constexpr WaitFlags fWaitFlagAnyStream
Flag to indicate that the wait should succeed when any of the flagged streams have been successfully waited on.
- constexpr WaitFlags fWaitFlagCloseStdErrStream
Flag to indicate that the
stderr
stream for a child should be closed before waiting on it.- constexpr WaitFlags fWaitFlagCloseStdOutStream
Flag to indicate that the
stdout
stream for a child should be closed before waiting on it.- constexpr WaitFlags fWaitFlagStdErrStream
Flag to indicate that the
stderr
stream should be waited on.- constexpr WaitFlags fWaitFlagStdOutStream
Flag to indicate that the
stdout
stream should be waited on.- constexpr ProcessId kBadId
Special value to indicate a bad process identifier.
- constexpr size_t kDefaultProcessBufferSize
A default buffer size to use for reading from a child process's
stdout
orstderr
streams.- constexpr uint64_t kInfiniteTimeout
Indicates an infinite timeout for use in the ILauncher::waitProcessExit() function in its timeout parameter.
- constexpr char kInterpreterPythonCommand
Interpreter names for python scripts.
- constexpr char kInterpreterPythonScript
Interpreter names for python scripts.
- constexpr char kInterpreterShellScript
Standard command interpreters for Windows and Linux.
- constexpr char kInterpreterShellScript2
Standard command interpreters for Windows and Linux.
- constexpr size_t kNullTerminated
Special value that can be passed to ILauncher::writeProcessStdin() for the bytes parameter to indicate that the input is a null terminated UTF-8 string.
- constexpr ExitCode kStillActive
Special exit code to indicate that the process is still running and has not exited yet.