Files
kiri-http-server/Task/Task.php
T
2023-04-22 02:46:58 +08:00

91 lines
2.0 KiB
PHP

<?php
namespace Kiri\Server\Task;
use Kiri\Server\Constant;
use Psr\Container\ContainerExceptionInterface;
use Psr\Container\NotFoundExceptionInterface;
use ReflectionException;
use Swoole\Server;
class Task implements TaskInterface
{
/**
* @param Server $server
* @return void
*/
public function initTaskWorker(Server $server): void
{
if (!isset($server->setting[Constant::OPTION_TASK_WORKER_NUM])) {
return;
}
if ($server->setting[Constant::OPTION_TASK_WORKER_NUM] < 1) {
return;
}
$server->on('finish', [$this, 'onFinish']);
$server->on('task', [$this, 'onTask']);
}
/**
* @param Server $server
* @param int $task_id
* @param mixed $data
* @return void
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
* @throws ReflectionException
*/
public function onFinish(Server $server, int $task_id, mixed $data): void
{
event(new OnTaskFinish($task_id, $data));
}
/**
* @param Server $server
* @param int $task_id
* @param int $src_worker_id
* @param mixed $data
* @return mixed
* @throws ReflectionException
*/
public function onTask(Server $server, int $task_id, int $src_worker_id, mixed $data): mixed
{
$data = json_decode($data, true);
if (is_null($data)) {
return null;
}
$data[0] = \Kiri::getDi()->get($data[0]);
return call_user_func($data, $task_id, $src_worker_id);
}
/**
* @param array|string|object $handler
* @param int|null $workerId
* @return void
* @throws ReflectionException
*/
public function dispatch(array|string|object $handler, ?int $workerId = null): void
{
/** @var Server $server */
$server = \Kiri::service()->get('server');
if (is_null($workerId)) {
$workerId = rand(0, $server->setting[Constant::OPTION_TASK_WORKER_NUM] - 1);
}
if (is_string($handler)) {
$server->task(serialize([di($handler), 'handle']), $workerId);
} else if (is_string($handler[0])) {
$server->task(serialize($handler), $workerId);
} else {
$server->task(serialize([$handler, 'handle']), $workerId);
}
}
}