// file : butl/process -*- C++ -*- // copyright : Copyright (c) 2014-2016 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file #ifndef BUTL_PROCESS #define BUTL_PROCESS #ifndef _WIN32 # include // pid_t #endif #include #include // uint32_t #include #include namespace butl { struct process_error: std::system_error { bool child () const {return child_;} public: #ifndef _WIN32 process_error (int e, bool child) : system_error (e, std::system_category ()), child_ (child) {} #else process_error (const std::string& d) : system_error (ECHILD, std::system_category (), d), child_ (false) {} #endif private: bool child_; }; class LIBBUTL_EXPORT process { public: // Start another process using the specified command line. The default // values to the in, out and err arguments indicate that the child process // should inherit the parent process stdin, stdout, and stderr, // respectively. If -1 is passed instead, then the corresponding child // process descriptor is connected (via a pipe) to out_fd for stdin, // in_ofd for stdout, and in_efd for stderr (see data members below). If // -2 is passed, then the corresponding child process descriptor is // replaced with the null device descriptor (e.g., /dev/null). This // results in the child process not being able to read anything from stdin // (gets immediate EOF) and all data written to stdout/stderr being // discarded. // // On Windows parent process pipe descriptors are set to text mode to be // consistent with the default (text) mode of standard file descriptors of // the child process. When reading in the text mode the sequence of 0xD, // 0xA characters is translated into the single OxA character and 0x1A is // interpreted as EOF. When writing in the text mode the OxA character is // translated into the 0xD, 0xA sequence. Use the _setmode() function to // change the mode, if required. // // Instead of passing -1, -2 or the default value, you can also pass your // own descriptors. Note, however, that in this case they are not closed by // the parent. So you should do this yourself, if required. For example, // to redirect the child process stdout to stderr, you can do: // // process p (..., 0, 2); // // Throw process_error if anything goes wrong. Note that some of the // exceptions (e.g., if exec() failed) can be thrown in the child // version of us. // process (char const* const args[], int in = 0, int out = 1, int err = 2); // The "piping" constructor, for example: // // process lhs (..., 0, -1); // Redirect stdout to a pipe. // process rhs (..., lhs); // Redirect stdin to lhs's pipe. // // rhs.wait (); // Wait for last first. // lhs.wait (); // process (char const* const args[], process& in, int out = 1, int err = 2); // Versions of the above constructors that allow us to change the // current working directory of the child process. NULL and empty // cwd arguments are ignored. // process (const char* cwd, char const* const[], int = 0, int = 1, int = 2); process (const char* cwd, char const* const[], process&, int = 1, int = 2); // Wait for the process to terminate. Return true if the process // terminated normally and with the zero exit status. Unless ignore_error // is true, throw process_error if anything goes wrong. This function can // be called multiple times with subsequent calls simply returning the // status. // bool wait (bool ignore_errors = false); // Return true if the process has already terminated in which case // the argument is set to the result of wait(). // bool try_wait (bool&); // Note that the destructor will wait for the process but will ignore // any errors and the exit status. // ~process () {if (handle != 0) wait (true);} // Moveable-only type. // process (process&&); process& operator= (process&&); process (const process&) = delete; process& operator= (const process&) = delete; // Create an empty or "already terminated" process. That is, handle is 0 // and exit status is 0. // process (); public: #ifndef _WIN32 using handle_type = pid_t; using id_type = pid_t; using status_type = int; #else using handle_type = void*; // Win32 HANDLE using id_type = std::uint32_t; // Win32 DWORD using status_type = std::uint32_t; // Win32 DWORD #endif static id_type current_id (); public: handle_type handle; status_type status; int out_fd; // Write to this fd to send to the new process' stdin. int in_ofd; // Read from this fd to receive from the new process' stdout. int in_efd; // Read from this fd to receive from the new process' stderr. }; } #include #endif // BUTL_PROCESS