This commit is contained in:
xl
2024-09-04 09:40:31 +08:00
parent 0e1fcef911
commit 80b9ae8f1e
4 changed files with 113 additions and 77 deletions
+77
View File
@@ -0,0 +1,77 @@
<?php
namespace Kiri\Server\Processes;
use Exception;
use Kiri;
use Swoole\Process;
trait TraitProcess
{
/**
* @var array
*/
private array $_process = [];
/**
* @param string|array|AbstractProcess $class
* @return void
* @throws
*/
public function addProcess(string|array|AbstractProcess $class): void
{
if (!is_array($class)) {
$class = [$class];
}
foreach ($class as $name) {
if (is_string($name)) {
$name = Kiri::getDi()->get($name);
}
if (isset($this->_process[$name->getName()])) {
throw new Exception('AbstractProcess(' . $name->getName() . ') is exists.');
}
$process = $this->genProcess($name);
if ($name->isEnableQueue()) {
$process->useQueue();
}
$this->_process[$name->getName()] = $process;
}
}
/**
* @param AbstractProcess $name
* @return Process
*/
private function genProcess(AbstractProcess $name): Process
{
return new Process(function (Process $process) use ($name) {
$process->name('[' . \config('id', 'system-service') . '].' . $name->getName());
$name->onShutdown($process)->process($process);
},
$name->getRedirectStdinAndStdout(),
$name->getPipeType(),
$name->isEnableCoroutine());
}
/**
* @param string $name
* @return AbstractProcess|null
*/
public function getProcess(string $name): ?Process
{
return $this->_process[$name] ?? null;
}
/**
* @return array
*/
public function getProcesses(): array
{
return $this->_process;
}
}