Lemme 首先给出我所拥有的代码的基本描述。我从一个主要的父进程开始(注意:为简单起见,我没有显示所有功能。如果您需要我随时扩展,请告诉我):
declare(ticks=1);
pcntl_signal(SIGHUP, array('forker', 'restartSignalHandler'));
if(forker_is_not_running()){
new Forker();
}
class Forker {
private $active_forks = array();
private $parent_pid = null;
public function __construct(){
$this->parent_pid = getmypid();
$this->create_fork();
$this->wait_for_active();
}
public function wait_for_active(){
while(!empty($this->active_forks)){
foreach($this->active_forks as $k=>$fork){
if($this->fork_no_longer_running($fork)){
unset($this->active_forks[$k]);
}
}
}
}
// Pseudo code
public function fork_no_longer_running($pid){
// return true if 'ps -elf | grep $pid' doesn't returns only the grep command
// else return false (aka the fork is still running)
}
public function create_fork(){
$pid = pcntl_fork();
if($pid == -1){
posix_kill($this->parent_pid, SIGTERM);
} else if($pid){
// add the pid to the current fork
$this->active_forks[] = $pid;
} else {
// Run our process
pcntl_exec('/usr/bin/php', array('/domain/dev/www/index.php','holder','process'));
exit(0);
}
}
public function restartSignalHandler(){
$forks = $this->active_forks;
foreach($forks as $pid){
$this->create_fork();
posix_kill($pid, SIGINT);
}
}
}
class holder {
public function process(){
$x = new Processor();
}
}
class Processor {
public function __construct(){
pcntl_signal(SIGINT, array($this, "shutdownSignalHandler"));
}
public function shutdownSignalHandler(){
echo "Shutting down";
exit;
}
}
这是正在发生的事情:
- 我启动我的脚本并正确获取进程(例如 Parentpid:2,childpid:3)
- 然后我向父母发送一个 SIGHUP 信号,它会正确终止并启动一个新的子进程(例如 Parentpid:2,childpid:4)
- 然后我向父级发送第二个 SIGHUP 信号,它会正确尝试并添加一个新的子进程,但它拒绝杀死第二个子进程。(例如 Parentpid:2、undyingchildpid:4、newchildpid:5)
让我知道这是否需要更多细节/没有意义。我不明白为什么第一次它会正确地杀死孩子,但第二次却没有。
更奇怪的部分是,当我更改它以便更改我的重新启动处理程序以使其不断尝试使用 SIGINT 杀死孩子时,它每次都会失败,但是当我向它发送 SIGKILL 命令时,它会杀死子进程:
if($time_passed > 60){
posix_kill($pid, SIGKILL);
}
我需要孩子能够被 SIGINT 杀死才能正确处理它。我不想只是 SIGKILL 它。是否有任何理由说明为什么第二次围绕 SIGINT 不起作用,但 SIGKILL 会?