This commit is contained in:
2024-12-27 21:53:16 +08:00
parent 95f52b58fd
commit 5defd5fb30
+3 -18
View File
@@ -6,6 +6,7 @@ namespace Kiri\Server\Processes;
use Swoole\Coroutine; use Swoole\Coroutine;
use Swoole\Process; use Swoole\Process;
use const SIGHUP; use const SIGHUP;
use const SIGTERM;
/** /**
* *
@@ -132,10 +133,7 @@ abstract class AbstractProcess implements OnProcessInterface
Coroutine::set($array); Coroutine::set($array);
Coroutine::create(fn() => $this->coroutineWaitSignal()); Coroutine::create(fn() => $this->coroutineWaitSignal());
} else { } else {
pcntl_signal(\SIGTERM, [$this, 'pointWaitSignal']); pcntl_signal(SIGTERM | SIGINT | SIGUSR1, [$this, 'pointWaitSignal']);
pcntl_signal(\SIGINT, [$this, 'pointWaitSignal']);
pcntl_signal(\SIGUSR1, [$this, 'pointWaitSignal']);
pcntl_signal(SIGHUP, [$this, 'pointWaitSignal']);
} }
return $this; return $this;
} }
@@ -154,21 +152,8 @@ abstract class AbstractProcess implements OnProcessInterface
public function pointWaitSignal($signal): void public function pointWaitSignal($signal): void
{ {
$this->stop = true; $this->stop = true;
$this->onSigterm(); $this->onSigterm();
switch ($signal) {
case \SIGTERM:
case \SIGUSR1:
case \SIGINT:
// some stuff before stop consumer e.g. delete lock etc
pcntl_signal($signal, SIG_DFL); // restore handler
posix_kill(posix_getpid(), $signal);
break; // kill self with signal, see https://www.cons.org/cracauer/sigint.html
case SIGHUP:
// some stuff to restart consumer
break;
default:
// do nothing
}
} }