blob: d9a5a09c98e969811d26f71eda55dfc7b42336d1 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
#include <sys/types.h>
#include <string>
#include <iostream>
#ifndef NOFORK
#include <pwd.h>
#include <subprocess.h>
#endif
#include <filesystem>
#include "util.h"
using namespace std;
#ifndef NOFORK
int gerbolyze::run_cargo_command(const char *cmd_name, const char *cmdline[], const char *envvar) {
const char *homedir;
if ((homedir = getenv("HOME")) == NULL) {
homedir = getpwuid(getuid())->pw_dir;
}
string homedir_s(homedir);
string cargo_bin_dir = homedir_s + "/.cargo/bin/" + cmd_name;
bool found = false;
int proc_rc = -1;
for (int i=0; i<3; i++) {
const char *envvar_val;
switch (i) {
case 0:
if ((envvar_val = getenv(envvar)) == NULL) {
continue;
} else {
cmdline[0] = envvar_val;
}
break;
case 1:
cmdline[0] = cmd_name;
break;
case 2:
cmdline[0] = cargo_bin_dir.c_str();
break;
}
struct subprocess_s subprocess;
int rc = subprocess_create(cmdline, subprocess_option_inherit_environment, &subprocess);
if (rc) {
cerr << "Error calling " << cmd_name << endl;
return EXIT_FAILURE;
}
proc_rc = -1;
rc = subprocess_join(&subprocess, &proc_rc);
if (rc) {
cerr << "Error calling " << cmd_name << endl;
return EXIT_FAILURE;
}
rc = subprocess_destroy(&subprocess);
if (rc) {
cerr << "Error calling " << cmd_name << endl;
return EXIT_FAILURE;
}
/* Fail if the command given in the environment variable could not be found. */
if (i > 0 && proc_rc == 255) {
continue;
}
found = true;
break;
}
if (!found) {
cerr << "Error: Cannot find " << cmd_name << ". Is it installed and in $PATH?" << endl;
return EXIT_FAILURE;
}
if (proc_rc) {
cerr << cmd_name << " returned an error code: " << proc_rc << endl;
return EXIT_FAILURE;
}
return 0;
}
#else
int gerbolyze::run_cargo_command(const char *cmd_name, const char *cmdline[], const char *envvar) {
(void) cmd_name, (void) cmdline, (void) envvar;
cerr << "Error: Cannot spawn " << cmd_name << " subprocess since binary was built with fork/exec disabled (-DNOFORK=1)" << endl;
return EXIT_FAILURE;
}
#endif
|