精简进程管理相关代码
This commit is contained in:
parent
ae99662a3d
commit
62543202a5
|
|
@ -48,15 +48,14 @@ static void setupChildProcess() {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Start function for cloned child */
|
/* Start function for cloned child */
|
||||||
static int runChildProcess(const string &cmd, string &log_file_tmp) {
|
static int runChildProcess(string cmd, string log_file) {
|
||||||
setupChildProcess();
|
setupChildProcess();
|
||||||
|
|
||||||
string log_file;
|
if (log_file.empty()) {
|
||||||
if (log_file_tmp.empty()) {
|
|
||||||
//未指定子进程日志文件时,重定向至/dev/null
|
//未指定子进程日志文件时,重定向至/dev/null
|
||||||
log_file = "/dev/null";
|
log_file = "/dev/null";
|
||||||
} else {
|
} else {
|
||||||
log_file = StrPrinter << log_file_tmp << "." << getpid();
|
log_file = StrPrinter << log_file << "." << getpid();
|
||||||
}
|
}
|
||||||
|
|
||||||
//重定向shell日志至文件
|
//重定向shell日志至文件
|
||||||
|
|
@ -103,19 +102,17 @@ static int cloneFunc(void *ptr) {
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void Process::run(const string &cmd, string &log_file_tmp) {
|
void Process::run(const string &cmd, string &log_file) {
|
||||||
kill(2000);
|
kill(2000);
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
STARTUPINFO si = { 0 };
|
STARTUPINFO si = { 0 };
|
||||||
PROCESS_INFORMATION pi = { 0 };
|
PROCESS_INFORMATION pi = { 0 };
|
||||||
string log_file;
|
if (log_file.empty()) {
|
||||||
if (log_file_tmp.empty()) {
|
|
||||||
//未指定子进程日志文件时,重定向至/dev/null
|
//未指定子进程日志文件时,重定向至/dev/null
|
||||||
log_file = "NUL";
|
log_file = "NUL";
|
||||||
} else {
|
} else {
|
||||||
log_file = StrPrinter << log_file_tmp << "." << getCurrentMillisecond();
|
log_file = StrPrinter << log_file << "." << getCurrentMillisecond();
|
||||||
}
|
}
|
||||||
log_file_tmp = log_file;
|
|
||||||
|
|
||||||
//重定向shell日志至文件
|
//重定向shell日志至文件
|
||||||
auto fp = File::create_file(log_file.data(), "ab");
|
auto fp = File::create_file(log_file.data(), "ab");
|
||||||
|
|
@ -144,39 +141,34 @@ void Process::run(const string &cmd, string &log_file_tmp) {
|
||||||
WarnL << "start child process fail: " << get_uv_errmsg();
|
WarnL << "start child process fail: " << get_uv_errmsg();
|
||||||
}
|
}
|
||||||
fclose(fp);
|
fclose(fp);
|
||||||
#elif ((defined(__linux) || defined(__linux__)))
|
#else
|
||||||
|
|
||||||
|
#if (defined(__linux) || defined(__linux__))
|
||||||
_process_stack = malloc(STACK_SIZE);
|
_process_stack = malloc(STACK_SIZE);
|
||||||
auto args = std::make_pair(cmd, log_file_tmp);
|
auto args = std::make_pair(cmd, log_file);
|
||||||
int pid = clone(reinterpret_cast<int (*)(void *)>(&cloneFunc), (char *)_process_stack + STACK_SIZE, CLONE_FS | SIGCHLD, (void *)(&args));
|
_pid = clone(reinterpret_cast<int (*)(void *)>(&cloneFunc), (char *)_process_stack + STACK_SIZE, CLONE_FS | SIGCHLD, (void *)(&args));
|
||||||
if (pid == -1) {
|
if (_pid == -1) {
|
||||||
WarnL << "clone process failed:" << get_uv_errmsg();
|
WarnL << "clone process failed:" << get_uv_errmsg();
|
||||||
free(_process_stack);
|
free(_process_stack);
|
||||||
|
_process_stack = nullptr;
|
||||||
throw std::runtime_error(StrPrinter << "fork child process failed,err:" << get_uv_errmsg());
|
throw std::runtime_error(StrPrinter << "fork child process failed,err:" << get_uv_errmsg());
|
||||||
}
|
}
|
||||||
_pid = pid;
|
|
||||||
if (log_file_tmp.empty()) {
|
|
||||||
InfoL << "start child process " << _pid << ", log file:" << "/dev/null";
|
|
||||||
} else {
|
|
||||||
InfoL << "start child process " << _pid << ", log file:" << log_file_tmp.c_str() << "." << _pid;
|
|
||||||
}
|
|
||||||
#else
|
#else
|
||||||
_pid = fork();
|
_pid = fork();
|
||||||
if (_pid < 0) {
|
if (_pid == -1) {
|
||||||
throw std::runtime_error(StrPrinter << "fork child process failed,err:" << get_uv_errmsg());
|
throw std::runtime_error(StrPrinter << "fork child process failed,err:" << get_uv_errmsg());
|
||||||
}
|
}
|
||||||
if (_pid == 0) {
|
if (_pid == 0) {
|
||||||
//子进程
|
//子进程
|
||||||
exit(runChildProcess(cmd, log_file_tmp));
|
exit(runChildProcess(cmd, log_file));
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
string log_file;
|
if (log_file.empty()) {
|
||||||
if (log_file_tmp.empty()) {
|
|
||||||
//未指定子进程日志文件时,重定向至/dev/null
|
//未指定子进程日志文件时,重定向至/dev/null
|
||||||
log_file = "/dev/null";
|
log_file = "/dev/null";
|
||||||
} else {
|
} else {
|
||||||
log_file = StrPrinter << log_file_tmp << "." << _pid;
|
log_file = StrPrinter << log_file << "." << _pid;
|
||||||
}
|
}
|
||||||
log_file_tmp = log_file;
|
|
||||||
InfoL << "start child process " << _pid << ", log file:" << log_file;
|
InfoL << "start child process " << _pid << ", log file:" << log_file;
|
||||||
#endif // _WIN32
|
#endif // _WIN32
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue