aboutsummaryrefslogtreecommitdiff
path: root/store/works/life/linux-run/linux-run.h
blob: d953115e4a9e8bcf0b4e53b016e2097afc2cdd22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifndef LINUX_RUN_H
#define LINUX_RUN_H

#include <functional>
#include <stdexcept>
#include <string>
#include <vector>

namespace linux_run {

enum StopReason { Exited, Killed };

struct RunOptions {
  RunOptions()
      : timeout_in_second(0), check_exit_code(true), stop_reason(nullptr),
        exit_code(nullptr) {}

  int timeout_in_second;
  bool check_exit_code;
  std::string stdin_file_path;
  std::string stdout_file_path;
  StopReason *stop_reason;
  int *exit_code;
  // Before reap so you can get final information of the process.
  std::function<void(int pid)> before_reap_callback;
};

class TimeoutError : std::runtime_error {
public:
  using runtime_error::runtime_error;
};

class ExitCodeError : std::runtime_error {
public:
  using runtime_error::runtime_error;
};

void run(const std::string &program, std::vector<std::string> arguments,
         RunOptions options);

} // namespace linux_run

#endif