10#include <cosmos/error/UsageError.hxx>
11#include <cosmos/fs/FileDescriptor.hxx>
12#include <cosmos/proc/Scheduler.hxx>
13#include <cosmos/proc/SubProc.hxx>
14#include <cosmos/string.hxx>
58 setArgsFromView(args);
62 bool hasExe()
const {
return !m_executable.empty(); }
65 auto&
getExe() {
return m_executable; }
66 const auto& getExe()
const {
return m_executable; }
73 void setExe(
const std::string_view exe) {
85 const auto&
getArgs()
const {
return m_argv; }
103 for (
const auto s: svv)
104 m_argv.push_back(std::string{s});
114 if (m_argv.size() > 1) {
115 m_argv.erase(m_argv.begin() + 1);
124 void setCWD(
const std::string_view cwd) { m_cwd = cwd; }
127 const auto&
getCWD()
const {
return m_cwd; }
185 if (fd.
raw() <= FileNum::STDERR) {
186 cosmos_throw(
UsageError{
"added stdio or invalid FD as extra inherit FD"});
188 m_inherit_fds.push_back(fd);
209 template <
typename SCHED_SETTING>
266 m_argv.emplace_back(m_executable);
268 m_argv[0] = m_executable;
271 void setExeFromArgv0() {
273 m_executable.clear();
275 m_executable = m_argv[0];
302 friend std::ostream& operator<<(std::ostream&,
const ChildCloner&);
317 cloner.
getArgs().push_back(std::string{arg});
Sub process creation facility.
void clearArgs()
Clears any currently set parameters.
StringVector m_argv
Argument vector including argv0 denoting the executable name (which can be different than m_executabl...
void addInheritFD(FileDescriptor fd)
Adds a file descriptor to inherit to the child process.
const auto & getCWD() const
Returns the currently set CWD for sub process execution.
void setArgs(const StringVector &sv)
Sets the argument vector to be used including argv0.
void resetPostForkCB()
Removes a previously stored post fork callback.
void setExe(const std::string_view exe)
Sets the path to the executable and argv0.
void setStdIn(FileDescriptor fd)
ChildCloner(const StringViewVector args)
Creates an instance configured with the provided arguments.
void setStdErr(FileDescriptor fd)
Redirect the child's stderr to the given file descriptor.
void resetStdFiles()
Restore the default inheritance behaviour for stdin/stderr/stdout.
void setInheritEnv()
Clears any previously set environment variables and let's to-be-started child processes inherit the p...
ChildCloner()=default
Creates an instance with default settings.
void setArgv0()
sets argv0 from the current executable name.
void setStdOut(FileDescriptor fd)
std::function< void(const ChildCloner &)> Callback
callback function type used in setPostForkCB().
void setEnv(const StringVector &vars)
Sets explicit environment variables for the child process.
std::string m_executable
Path to the child process executable to run.
void setPostForkCB(Callback cb)
Sets a callback function to be invoked in the child process context.
std::optional< StringVector > m_env
Explicit environment child environment variables, if any.
std::string m_cwd
Path to an explicit working directory, if any.
std::optional< SchedulerSettingsVariant > m_sched_settings
Scheduler policy settings, if any.
FileDescriptor m_stderr
File descriptor to use as child's stderr.
const auto & getArgs() const
Returns the currently configured argument vector.
void setSchedulerSettings(const SCHED_SETTING &ss)
Sets scheduler type and settings.
FileDescriptor m_stdout
File descriptor to use as child's stdin.
void setInheritSchedulerSettings()
clear previously set scheduler settings and inherit them from the parent instead
void setArgsFromView(const StringViewVector &svv)
void setInheritCWD()
Clear a previously configured CWD and inherit it from the parent.
FileDescriptor m_stdin
File descriptor to use as child's stdin.
auto & getExe()
Returns the currently set executable name.
std::vector< FileDescriptor > m_inherit_fds
Additional file descriptors to inherit to the child process.
void setCWD(const std::string_view cwd)
Set an explicit working directory the child process.
bool hasExe() const
Returns whether currently an executable is set.
Thin Wrapper around OS file descriptors.
FileNum raw() const
Returns the primitive file descriptor contained in the object.
Represents a child process created via ChildCloner.
Exception type for logical usage errors within the application.
std::vector< std::string > StringVector
A vector of std::string.
std::vector< std::string_view > StringViewVector
A vector of std::string_view.