- 论坛徽章:
- 0
|
父进程是个类似命令行的东西,是无限循环的。
string final_command = _command;
list<string>::const_iterator iter;
for (iter = _argument_list.begin(); iter != _argument_list.end(); ++iter) {
final_command += " ";
final_command += *iter;
}
//
// Save the current execution ID, and set the new execution ID
//
_exec_id.save_current_exec_id();
if (_exec_id.set_effective_exec_id(error_msg) != XORP_OK) {
XLOG_ERROR("Failed to set effective execution ID: %s",
error_msg.c_str());
_exec_id.restore_saved_exec_id(error_msg);
return (XORP_ERROR);
}
#ifndef HOST_OS_WINDOWS
signal(SIGCHLD, child_handler);
#endif
//
// Temporary block the child signals
//
block_child_signals();
//
// Run the command
//
_pid = popen2(_command, _argument_list, _stdout_stream, _stderr_stream,
redirect_stderr_to_stdout());
if (_stdout_stream == NULL) {
XLOG_ERROR("Failed to execute command \"%s\"", final_command.c_str());
cleanup();
_exec_id.restore_saved_exec_id(error_msg);
return (XORP_ERROR);
}
// Insert the new process to the map of processes
XLOG_ASSERT(pid2command.find(_pid) == pid2command.end());
pid2command[_pid] = this;
_is_running = true;
//
// Restore the saved execution ID
//
_exec_id.restore_saved_exec_id(error_msg);
//
// Unblock the child signals that were blocked earlier
//
unblock_child_signals();
return (XORP_OK);
static void
child_handler(int signo)
{
XLOG_ASSERT(signo == SIGCHLD);
do {
pid_t pid = 0;
int wait_status = 0;
map<pid_t, RunCommandBase *>::iterator iter;
pid = waitpid(-1, &wait_status, WUNTRACED | WNOHANG);
debug_msg("pid=%d, wait status=%d\n", XORP_INT_CAST(pid), wait_status);
if (pid <= 0)
return; // XXX: no more child processes
XLOG_ASSERT(pid > 0);
popen2_mark_as_closed(pid, wait_status);
iter = pid2command.find(pid);
if (iter == pid2command.end()) {
// XXX: we don't know anything about the exited process
continue;
}
RunCommandBase* run_command = iter->second;
run_command->wait_status_changed(wait_status);
} while (true);
}
这是主要的代码。 |
|