ClickHouse/src/Common/ShellCommand.h

109 lines
3.6 KiB
C++
Raw Normal View History

#pragma once
#include <memory>
#include <IO/ReadBufferFromFile.h>
#include <IO/WriteBufferFromFile.h>
namespace DB
{
2017-05-07 20:25:26 +00:00
/** Lets you run the command,
* read it stdout and stderr; write to stdin;
* wait for completion.
*
2017-05-07 20:25:26 +00:00
* The implementation is similar to the popen function from POSIX (see libc source code).
*
2017-05-07 20:25:26 +00:00
* The most important difference: uses vfork instead of fork.
* This is done because fork does not work (with a memory shortage error),
* with some overcommit settings, if the address space of the process is more than half the amount of available memory.
* Also, changing memory maps - a fairly resource-intensive operation.
*
* The second difference - allows to work simultaneously with stdin, and with stdout, and with stderr of running process,
* and also to obtain the return code and completion status.
*/
2021-08-25 19:30:22 +00:00
class ShellCommand final
2021-03-03 19:34:25 +00:00
{
2021-08-25 19:30:22 +00:00
public:
~ShellCommand();
struct DestructorStrategy final
2021-03-03 19:34:25 +00:00
{
2021-08-25 19:30:22 +00:00
explicit DestructorStrategy(bool terminate_in_destructor_, size_t wait_for_normal_exit_before_termination_seconds_ = 0)
: terminate_in_destructor(terminate_in_destructor_)
, wait_for_normal_exit_before_termination_seconds(wait_for_normal_exit_before_termination_seconds_)
{
}
2021-03-03 19:34:25 +00:00
2021-08-25 19:30:22 +00:00
bool terminate_in_destructor;
2021-03-03 19:34:25 +00:00
2021-08-25 19:30:22 +00:00
/// If terminate in destructor is true, command will wait until send SIGTERM signal to created process
size_t wait_for_normal_exit_before_termination_seconds = 0;
};
2021-03-03 19:34:25 +00:00
2021-08-25 19:30:22 +00:00
struct Config
{
Config(const std::string & command_) /// NOLINT
2021-08-25 19:30:22 +00:00
: command(command_)
{}
2021-03-03 19:34:25 +00:00
Config(const char * command_) /// NOLINT
2021-08-25 19:30:22 +00:00
: command(command_)
{}
2021-08-25 19:30:22 +00:00
std::string command;
2021-08-25 19:30:22 +00:00
std::vector<std::string> arguments;
2019-12-09 14:49:21 +00:00
2021-08-28 19:47:59 +00:00
std::vector<int> read_fds;
2021-08-28 19:47:59 +00:00
std::vector<int> write_fds;
2021-08-25 19:30:22 +00:00
bool pipe_stdin_only = false;
2021-08-25 19:30:22 +00:00
DestructorStrategy terminate_in_destructor_strategy = DestructorStrategy(false);
};
/// Run the command using /bin/sh -c.
/// If terminate_in_destructor is true, send terminate signal in destructor and don't wait process.
2021-08-25 19:30:22 +00:00
static std::unique_ptr<ShellCommand> execute(const Config & config);
2017-05-07 20:25:26 +00:00
/// Run the executable with the specified arguments. `arguments` - without argv[0].
/// If terminate_in_destructor is true, send terminate signal in destructor and don't wait process.
2021-08-25 19:30:22 +00:00
static std::unique_ptr<ShellCommand> executeDirect(const Config & config);
2017-05-07 20:25:26 +00:00
/// Wait for the process to end, throw an exception if the code is not 0 or if the process was not completed by itself.
void wait();
2017-05-07 20:25:26 +00:00
/// Wait for the process to finish, see the return code. To throw an exception if the process was not completed independently.
int tryWait();
2021-08-25 19:30:22 +00:00
WriteBufferFromFile in; /// If the command reads from stdin, do not forget to call in.close() after writing all the data there.
ReadBufferFromFile out;
ReadBufferFromFile err;
2021-08-28 19:47:59 +00:00
std::unordered_map<int, ReadBufferFromFile> read_fds;
std::unordered_map<int, WriteBufferFromFile> write_fds;
2021-08-25 19:30:22 +00:00
private:
pid_t pid;
2021-08-28 19:47:59 +00:00
Config config;
2021-08-25 19:30:22 +00:00
bool wait_called = false;
2021-08-28 19:47:59 +00:00
ShellCommand(pid_t pid_, int & in_fd_, int & out_fd_, int & err_fd_, const Config & config);
2021-08-25 19:30:22 +00:00
bool tryWaitProcessWithTimeout(size_t timeout_in_seconds);
static Poco::Logger * getLogger();
/// Print command name and the list of arguments to log. NOTE: No escaping of arguments is performed.
static void logCommand(const char * filename, char * const argv[]);
static std::unique_ptr<ShellCommand> executeImpl(const char * filename, char * const argv[], const Config & config);
};
}