2021-11-16 15:41:01 +08:00
|
|
|
|
<?php
|
|
|
|
|
|
|
2022-03-15 18:05:33 +08:00
|
|
|
|
declare(strict_types=1);
|
2021-11-16 15:41:01 +08:00
|
|
|
|
|
|
|
|
|
|
namespace ZM\Command\Server;
|
|
|
|
|
|
|
|
|
|
|
|
use Swoole\Process;
|
|
|
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
2022-03-13 22:05:53 +08:00
|
|
|
|
use Symfony\Component\Console\Input\InputOption;
|
2021-11-16 15:41:01 +08:00
|
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
|
|
use ZM\Command\Daemon\DaemonCommand;
|
2022-03-13 22:05:53 +08:00
|
|
|
|
use ZM\Framework;
|
2021-11-16 15:41:01 +08:00
|
|
|
|
use ZM\Utils\DataProvider;
|
|
|
|
|
|
|
|
|
|
|
|
class ServerStopCommand extends DaemonCommand
|
|
|
|
|
|
{
|
|
|
|
|
|
protected static $defaultName = 'server:stop';
|
|
|
|
|
|
|
2022-03-15 18:05:33 +08:00
|
|
|
|
protected function configure()
|
|
|
|
|
|
{
|
|
|
|
|
|
$this->setDescription('停止运行的框架');
|
2022-03-13 22:05:53 +08:00
|
|
|
|
$this->setDefinition([
|
|
|
|
|
|
new InputOption('force', 'f', InputOption::VALUE_NONE, '强制停止'),
|
|
|
|
|
|
]);
|
2021-11-16 15:41:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2022-03-15 18:05:33 +08:00
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output): int
|
|
|
|
|
|
{
|
2022-03-13 22:05:53 +08:00
|
|
|
|
if ($input->getOption('force') !== false) {
|
|
|
|
|
|
$file_path = _zm_pid_dir();
|
|
|
|
|
|
$list = DataProvider::scanDirFiles($file_path, false, true);
|
2022-03-15 18:05:33 +08:00
|
|
|
|
foreach ($list as $file) {
|
2022-03-13 22:05:53 +08:00
|
|
|
|
$name = explode('.', $file);
|
|
|
|
|
|
if (end($name) == 'pid') {
|
2022-03-15 18:05:33 +08:00
|
|
|
|
$pid = file_get_contents($file_path . '/' . $file);
|
2022-03-13 22:05:53 +08:00
|
|
|
|
Process::kill($pid, SIGKILL);
|
|
|
|
|
|
} elseif ($file === 'master.json') {
|
2022-03-15 18:05:33 +08:00
|
|
|
|
$json = json_decode(file_get_contents($file_path . '/' . $file), true);
|
2022-03-13 22:05:53 +08:00
|
|
|
|
Process::kill($json['pid'], SIGKILL);
|
|
|
|
|
|
}
|
2022-03-15 18:05:33 +08:00
|
|
|
|
unlink($file_path . '/' . $file);
|
2022-03-13 22:05:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
parent::execute($input, $output);
|
|
|
|
|
|
}
|
2022-03-15 18:05:33 +08:00
|
|
|
|
Process::kill(intval($this->daemon_file['pid']), SIGTERM);
|
2021-11-16 15:41:01 +08:00
|
|
|
|
$i = 10;
|
2022-03-13 22:05:53 +08:00
|
|
|
|
while (Framework::getProcessState(ZM_PROCESS_MASTER) !== false && $i > 0) {
|
2021-11-16 15:41:01 +08:00
|
|
|
|
sleep(1);
|
|
|
|
|
|
--$i;
|
|
|
|
|
|
}
|
|
|
|
|
|
if ($i === 0) {
|
2022-03-15 18:05:33 +08:00
|
|
|
|
$output->writeln('<error>停止失败,请检查进程pid #' . $this->daemon_file['pid'] . ' 是否响应!</error>');
|
|
|
|
|
|
$output->writeln('<error>或者可以尝试使用参数 --force 来强行杀死所有进程</error>');
|
2021-11-16 15:41:01 +08:00
|
|
|
|
} else {
|
2022-03-15 18:05:33 +08:00
|
|
|
|
$output->writeln('<info>成功停止!</info>');
|
2021-11-16 15:41:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|