aboutsummaryrefslogtreecommitdiff
path: root/libbutl/process-run.cxx
blob: a5014f6caf51316aba37b8c10850d6fb9be2f548 (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
// file      : libbutl/process-run.cxx -*- C++ -*-
// license   : MIT; see accompanying LICENSE file

#include <libbutl/process.hxx>

#include <cstdlib>  // exit()
#include <iostream> // cerr

#include <libbutl/utility.hxx> // operator<<(ostream,exception)

using namespace std;

namespace butl
{
  process
  process_start (const dir_path* cwd,
                 const process_path& pp,
                 const char* cmd[],
                 const char* const* envvars,
                 process::pipe in,
                 process::pipe out,
                 process::pipe err)
  {
    try
    {
      return process (pp, cmd,
                      in, out, err,
                      cwd != nullptr ? cwd->string ().c_str () : nullptr,
                      envvars);
    }
    catch (const process_child_error& e)
    {
      cerr << "unable to execute " << cmd[0] << ": " << e << endl;
      exit (1);
    }
  }
}