-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathos.cc
106 lines (77 loc) · 2.32 KB
/
os.cc
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
95
96
97
98
99
100
101
102
103
104
105
106
#include "os.hpp"
#include <cstdio>
#include <cstdlib>
#ifdef _WIN32
#include <string>
#include <windows.h>
#define WINDOWS_OS
static int spwanProcessWindows(const char* program, char* const args[]) {
STARTUPINFO si;
PROCESS_INFORMATION pi;
ZeroMemory(&si, sizeof(si));
ZeroMemory(&pi, sizeof(pi));
si.cb = sizeof(si);
// Build the command line string
std::string commandLine = program;
for (int i = 1; args[i] != nullptr; ++i) {
commandLine += " ";
commandLine += args[i];
}
// Documentation: https://learn.microsoft.com/en-us/windows/win32/procthread/creating-processes
const int status = !CreateProcess(nullptr,
const_cast<char*>(commandLine.c_str()),
nullptr,
nullptr,
FALSE,
0,
nullptr,
nullptr,
&si,
&pi);
if(!status) {
std::fprintf(stderr, "CreateProcess failed: %s\n", GetLastError());
std::exit(EXIT_FAILURE);
}
WaitForSingleObject(pi.hProcess, INFINITE);
DWORD exitCode;
GetExitCodeProcess(pi.hProcess, &exitCode);
CloseHandle(pi.hProcess);
CloseHandle(pi.hThread);
return exitCode;
}
#else
#include <unistd.h>
#include <sys/wait.h>
#include <sys/types.h>
static int spawnProcessPosix(const char* program, char* const args[]) {
const pid_t child = fork();
if(child < 0) {
std::fputs("An error occured during process creation.", stderr);
std::perror("fork()");
std::exit(EXIT_FAILURE);
}
if(child == 0) {
execvp(program, args);
std::perror("execvp()");
std::exit(EXIT_FAILURE);
}
int status;
if(waitpid(child, &status, 0) == -1) {
std::perror("waitpid()");
std::exit(EXIT_FAILURE);
}
return WIFEXITED(status)
? WEXITSTATUS(status)
: -1;
}
#endif
namespace pl0::os {
int spawnProcess(const char* program, char* const args[]) {
#ifdef WINDOWS_OS
return spawnProcessWindows(program, args);
#undef WINDOWS_OS
#else
return spawnProcessPosix(program, args);
#endif
}
}