Compare commits
98 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ca274a3910 | |||
| 4d6f7d1d13 | |||
| 8296cda1f2 | |||
| 3bb14c5acb | |||
| b5bfff66dd | |||
| adb2269df0 | |||
| b557f15a98 | |||
| 862acf1db1 | |||
| a2272edc76 | |||
| 555d653288 | |||
| 45cf88e52c | |||
| a8f840bfb2 | |||
| d8222366b1 | |||
| fbe13eaa7e | |||
| 466df3387f | |||
| fa76b5170a | |||
| b0c66c9c6a | |||
| 2ffdf83645 | |||
| c3a3551ba3 | |||
| 829c063700 | |||
| eaf251ac53 | |||
| 776cc80495 | |||
| 103cc96103 | |||
| f2da99efce | |||
| 49d0ba7b3c | |||
| a6ed92206e | |||
| bb9b9dbcd2 | |||
| 9782147a47 | |||
| 7598bdbd63 | |||
| a569bd6897 | |||
| ffeef3ff4b | |||
| 7f6a0c01e0 | |||
| 32f9ebc2a2 | |||
| f35ffe6ff1 | |||
| 9a76ee0184 | |||
| 249f9b1c6f | |||
| 1df2d43b8b | |||
| 2daac841a3 | |||
| 28cd946219 | |||
| 70015f7ab8 | |||
| a467056c86 | |||
| a2a3f0fc40 | |||
| cfbebeb951 | |||
| 94851c3f51 | |||
| 1896dc90b4 | |||
| 6168adb401 | |||
| 5e742e7196 | |||
| 4605fc9162 | |||
| 54f19fb058 | |||
| a9165b601a | |||
| 5b35c4de4a | |||
| 8b6aff5c7b | |||
| 1d3b45e2c3 | |||
| f2ad97c7f0 | |||
| 19b3f0f1e9 | |||
| ebd643772d | |||
| 08d9551245 | |||
| 59eec80939 | |||
| 241385b575 | |||
| 73ce2b8a50 | |||
| 6f80b2fe6a | |||
| 8955891c2f | |||
| 035138a779 | |||
| c6e6c8d68d | |||
| 6a30fdfa8d | |||
| 367e1cd122 | |||
| 667d311d73 | |||
| 375f396467 | |||
| 7b1cc1bd7b | |||
| 1ae1d78ddf | |||
| 00212d133d | |||
| 7fbe9fbf44 | |||
| de1aff9efd | |||
| cef09a11ef | |||
| 7122018a2a | |||
| f8763953c5 | |||
| 22560d77d6 | |||
| 483c898f51 | |||
| 1fa651c587 | |||
| f7ca56a9b0 | |||
| 4fa5c23c10 | |||
| f46af653f2 | |||
| 5e02a79bf0 | |||
| 08dc3e262b | |||
| 8c5e52940f | |||
| 4dbcacdd1f | |||
| 97cd1a0ebf | |||
| 7165a67294 | |||
| 4bc7451424 | |||
| d7d0f685dc | |||
| 8ee7d30d6a | |||
| 224009e7e6 | |||
| b4551ae2fd | |||
| 5ca94925e3 | |||
| 0afa8fc400 | |||
| 842220e4de | |||
| c9726e5778 | |||
| f867f4be9e |
+20
-292
@@ -2,39 +2,29 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
|
||||||
namespace Kiri;
|
|
||||||
|
|
||||||
error_reporting(0);
|
error_reporting(0);
|
||||||
|
|
||||||
|
|
||||||
use Note\Note;
|
|
||||||
use Database\Collection;
|
use Database\Collection;
|
||||||
use Database\ModelInterface;
|
use Database\ModelInterface;
|
||||||
use Exception;
|
|
||||||
use JetBrains\PhpStorm\Pure;
|
use JetBrains\PhpStorm\Pure;
|
||||||
use Kiri\Abstracts\Config;
|
use Kiri\Abstracts\Config;
|
||||||
|
use Kiri\Annotation\Annotation;
|
||||||
|
use Kiri\Application;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
use Kiri\Di\Container;
|
use Kiri\Di\Container;
|
||||||
|
use Kiri\Environmental;
|
||||||
use Psr\Container\ContainerInterface;
|
use Psr\Container\ContainerInterface;
|
||||||
use ReflectionException;
|
|
||||||
use Server\ServerManager;
|
|
||||||
use Server\Tasker\AsyncTaskExecute;
|
|
||||||
use Swoole\Coroutine;
|
use Swoole\Coroutine;
|
||||||
use Swoole\Process;
|
use Swoole\Process;
|
||||||
use Swoole\WebSocket\Server;
|
use Swoole\WebSocket\Server;
|
||||||
|
|
||||||
|
|
||||||
defined('DB_ERROR_BUSY') or define('DB_ERROR_BUSY', 'The database is busy. Please try again later.');
|
defined('DB_ERROR_BUSY') or define('DB_ERROR_BUSY', 'The database is busy. Please try again later.');
|
||||||
defined('SELECT_IS_NULL') or define('SELECT_IS_NULL', 'Query data does not exist, please check the relevant conditions.');
|
defined('SELECT_IS_NULL') or define('SELECT_IS_NULL', 'Query data does not exist, please check the relevant conditions.');
|
||||||
defined('PARAMS_IS_NULL') or define('PARAMS_IS_NULL', 'Required items cannot be empty, please add.');
|
defined('PARAMS_IS_NULL') or define('PARAMS_IS_NULL', 'Required items cannot be empty, please add.');
|
||||||
defined('CONTROLLER_PATH') or define('CONTROLLER_PATH', APP_PATH . 'app/Controllers/');
|
defined('CONTROLLER_PATH') or define('CONTROLLER_PATH', realpath(APP_PATH . 'controllers/'));
|
||||||
defined('CRONTAB_PATH') or define('CRONTAB_PATH', APP_PATH . 'app/Crontab/');
|
defined('MODEL_PATH') or define('MODEL_PATH', realpath(APP_PATH . 'models/'));
|
||||||
defined('CLIENT_PATH') or define('CLIENT_PATH', APP_PATH . 'app/Client/');
|
defined('COMPONENT_PATH') or define('COMPONENT_PATH', realpath(APP_PATH . 'components/'));
|
||||||
defined('TASK_PATH') or define('TASK_PATH', APP_PATH . 'app/Async/');
|
|
||||||
defined('LISTENER_PATH') or define('LISTENER_PATH', APP_PATH . 'app/Listener/');
|
|
||||||
defined('KAFKA_PATH') or define('KAFKA_PATH', APP_PATH . 'app/Kafka/');
|
|
||||||
defined('RPC_CLIENT_PATH') or define('RPC_CLIENT_PATH', APP_PATH . 'app/Client/Rpc/');
|
|
||||||
defined('MODEL_PATH') or define('MODEL_PATH', APP_PATH . 'app/Model/');
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -73,6 +63,15 @@ class Kiri
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return Container
|
||||||
|
*/
|
||||||
|
public static function getContainer(): Container
|
||||||
|
{
|
||||||
|
return static::$container;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $alias
|
* @param $alias
|
||||||
* @param array $array
|
* @param array $array
|
||||||
@@ -140,43 +139,15 @@ class Kiri
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $port
|
* @return Annotation
|
||||||
* @return bool
|
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public static function port_already($port): bool
|
public static function getAnnotation(): Annotation
|
||||||
{
|
{
|
||||||
if (empty($port)) {
|
return static::app()->getAnnotation();
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (Kiri::getPlatform()->isLinux()) {
|
|
||||||
exec('netstat -tunlp | grep ' . $port, $output);
|
|
||||||
} else {
|
|
||||||
exec('lsof -i :' . $port . ' | grep -i "LISTEN"', $output);
|
|
||||||
}
|
|
||||||
return !empty($output);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return Note
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function getNote(): Note
|
|
||||||
{
|
|
||||||
return static::app()->getNote();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $service
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
#[Pure] public static function listen($service): string
|
|
||||||
{
|
|
||||||
return sprintf('Check listen %s::%d -> ok', $service['host'], $service['port']);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $className
|
* @param $className
|
||||||
@@ -199,6 +170,7 @@ class Kiri
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
@@ -214,15 +186,6 @@ class Kiri
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public static function inCoroutine(): bool
|
|
||||||
{
|
|
||||||
return Coroutine::getCid() > 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return Container
|
* @return Container
|
||||||
*/
|
*/
|
||||||
@@ -241,40 +204,6 @@ class Kiri
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $workerId
|
|
||||||
* @return mixed
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function setManagerId($workerId): mixed
|
|
||||||
{
|
|
||||||
if (empty($workerId) || static::isDocker()) {
|
|
||||||
return $workerId;
|
|
||||||
}
|
|
||||||
|
|
||||||
$tmpFile = storage($workerId . '.sock', 'pid/manager');
|
|
||||||
|
|
||||||
return self::writeFile($tmpFile, $workerId);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $workerId
|
|
||||||
* @return mixed
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function setProcessId($workerId): mixed
|
|
||||||
{
|
|
||||||
if (empty($workerId) || static::isDocker()) {
|
|
||||||
return $workerId;
|
|
||||||
}
|
|
||||||
|
|
||||||
$tmpFile = storage($workerId . '.sock', 'pid/process');
|
|
||||||
|
|
||||||
return self::writeFile($tmpFile, $workerId);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
@@ -288,39 +217,6 @@ class Kiri
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $workerId
|
|
||||||
* @return mixed
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function setWorkerId($workerId): mixed
|
|
||||||
{
|
|
||||||
if (empty($workerId) || static::isDocker()) {
|
|
||||||
return $workerId;
|
|
||||||
}
|
|
||||||
|
|
||||||
$tmpFile = storage($workerId . '.sock', 'pid/worker');
|
|
||||||
|
|
||||||
return self::writeFile($tmpFile, $workerId);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $workerId
|
|
||||||
* @return mixed
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function setTaskId($workerId): mixed
|
|
||||||
{
|
|
||||||
if (empty($workerId) || static::isDocker()) {
|
|
||||||
return $workerId;
|
|
||||||
}
|
|
||||||
|
|
||||||
$tmpFile = storage($workerId . '.sock', 'pid/task');
|
|
||||||
|
|
||||||
return self::writeFile($tmpFile, $workerId);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $fileName
|
* @param $fileName
|
||||||
* @param $content
|
* @param $content
|
||||||
@@ -333,7 +229,7 @@ class Kiri
|
|||||||
if ($is_append !== null) {
|
if ($is_append !== null) {
|
||||||
$params[] = $is_append;
|
$params[] = $is_append;
|
||||||
}
|
}
|
||||||
return !self::inCoroutine() ? file_put_contents(...$params) : Coroutine::writeFile(...$params);
|
return !(Coroutine::getCid() > 0) ? file_put_contents(...$params) : Coroutine::writeFile(...$params);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -354,95 +250,6 @@ class Kiri
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $workerId
|
|
||||||
* @param bool $isWorker
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function clearProcessId($workerId, bool $isWorker = false)
|
|
||||||
{
|
|
||||||
clearstatcache();
|
|
||||||
$directory = $isWorker === true ? 'pid/worker' : 'pid/task';
|
|
||||||
if (!file_exists($file = storage($workerId, $directory))) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
shell_exec('rm -rf ' . $file);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string|null $taskPid
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function clearTaskPid(string $taskPid = null)
|
|
||||||
{
|
|
||||||
if (empty($taskPid)) {
|
|
||||||
exec('rm -rf ' . storage(null, 'pid/task'));
|
|
||||||
} else {
|
|
||||||
static::clearProcessId($taskPid);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $taskPid
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function clearWorkerPid($taskPid = null)
|
|
||||||
{
|
|
||||||
if (empty($taskPid)) {
|
|
||||||
exec('rm -rf ' . storage(null, 'pid/worker'));
|
|
||||||
} else {
|
|
||||||
static::clearProcessId($taskPid, true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return Server|null
|
|
||||||
* @throws
|
|
||||||
*/
|
|
||||||
public static function getWebSocket(): ?\Swoole\Server
|
|
||||||
{
|
|
||||||
$server = static::app()->getSwoole();
|
|
||||||
if (!($server instanceof \Swoole\Server)) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
return $server;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return false|string
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function getMasterPid(): bool|string
|
|
||||||
{
|
|
||||||
$pid = Kiri::app()->getSwoole()->setting['pid_file'];
|
|
||||||
|
|
||||||
return file_get_contents($pid);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param int $fd
|
|
||||||
* @param $data
|
|
||||||
* @return mixed
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function push(int $fd, $data): mixed
|
|
||||||
{
|
|
||||||
$server = static::getWebSocket();
|
|
||||||
if (empty($server) || !$server->isEstablished($fd)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (!is_string($data)) {
|
|
||||||
$data = Json::encode($data);
|
|
||||||
}
|
|
||||||
return $server->push($fd, $data);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
@@ -452,19 +259,6 @@ class Kiri
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $class
|
|
||||||
* @param array $params
|
|
||||||
* @throws ReflectionException
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function async(string $class, array $params = [])
|
|
||||||
{
|
|
||||||
$manager = di(AsyncTaskExecute::class);
|
|
||||||
$manager->execute(new $class(...$params));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $v1
|
* @param array $v1
|
||||||
* @param array $v2
|
* @param array $v2
|
||||||
@@ -489,19 +283,6 @@ class Kiri
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $process
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function shutdown($process): void
|
|
||||||
{
|
|
||||||
static::app()->getSwoole()->shutdown();
|
|
||||||
if ($process instanceof Process) {
|
|
||||||
$process->exit(0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $tmp_name
|
* @param $tmp_name
|
||||||
* @return string
|
* @return string
|
||||||
@@ -539,34 +320,10 @@ class Kiri
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private static array $_autoload = [];
|
|
||||||
|
|
||||||
|
|
||||||
const PROCESS = 'process';
|
const PROCESS = 'process';
|
||||||
const TASK = 'task';
|
const TASK = 'task';
|
||||||
const WORKER = 'worker';
|
const WORKER = 'worker';
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $event
|
|
||||||
* @param null $data
|
|
||||||
* @return false|string
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function param(string $event, $data = NULL): bool|string
|
|
||||||
{
|
|
||||||
if (is_object($data)) {
|
|
||||||
if ($data instanceof ModelInterface || $data instanceof Collection) {
|
|
||||||
$data = $data->getAttributes();
|
|
||||||
} else {
|
|
||||||
$data = get_object_vars($data);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!is_array($data)) $data = ['data' => $data];
|
|
||||||
return json_encode(array_merge(['callback' => $event], $data));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string|null
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
@@ -602,35 +359,6 @@ class Kiri
|
|||||||
return static::getEnvironmental() == static::PROCESS;
|
return static::getEnvironmental() == static::PROCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $class
|
|
||||||
* @param $file
|
|
||||||
*/
|
|
||||||
public static function setAutoload($class, $file)
|
|
||||||
{
|
|
||||||
if (isset(static::$_autoload[$class])) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
static::$_autoload[$class] = $file;
|
|
||||||
include_once "Kiri.php";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $className
|
|
||||||
*/
|
|
||||||
public static function autoload($className)
|
|
||||||
{
|
|
||||||
if (!isset(static::$_autoload[$className])) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
$file = static::$_autoload[$className];
|
|
||||||
require_once "Kiri.php";
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
//spl_autoload_register([Kiri::class, 'autoload'], true, true);
|
|
||||||
Kiri::setContainer(new Container());
|
Kiri::setContainer(new Container());
|
||||||
@@ -12,12 +12,12 @@ function version($oldVersion, $newVersion): bool
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if ($endShift < $shift) {
|
if ($endShift < $shift) {
|
||||||
return true;
|
return TRUE;
|
||||||
} else {
|
} else {
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
var_dump(version('1.4.4', '1.4.3'));
|
var_dump(version('1.4.4', '1.4.3'));
|
||||||
|
|||||||
+9
-8
@@ -9,7 +9,7 @@
|
|||||||
],
|
],
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=8.0",
|
"php": ">=8.1",
|
||||||
"ext-json": "*",
|
"ext-json": "*",
|
||||||
"ext-fileinfo": "*",
|
"ext-fileinfo": "*",
|
||||||
"ext-pdo": "*",
|
"ext-pdo": "*",
|
||||||
@@ -21,26 +21,27 @@
|
|||||||
"ext-xml": "*",
|
"ext-xml": "*",
|
||||||
"ext-curl": "*",
|
"ext-curl": "*",
|
||||||
"ext-openssl": "*",
|
"ext-openssl": "*",
|
||||||
"symfony/console": "v5.3.10",
|
"symfony/console": "~v5.3.10",
|
||||||
"psr/log": "1.*",
|
"psr/log": "1.*",
|
||||||
"ext-sockets": "*",
|
|
||||||
"ext-pcntl": "*",
|
|
||||||
"ext-posix": "*",
|
|
||||||
"composer-runtime-api": "^2.0",
|
"composer-runtime-api": "^2.0",
|
||||||
"swiftmailer/swiftmailer": "v6.3.*",
|
|
||||||
"psr/container": "^2.0",
|
"psr/container": "^2.0",
|
||||||
"psr/http-server-middleware": "1.0.1",
|
"psr/http-server-middleware": "1.0.1",
|
||||||
"game-worker/kiri-event": "^v1.0",
|
"game-worker/kiri-event": "~v2.0",
|
||||||
|
"game-worker/kiri-di": "~v1.0",
|
||||||
"ext-inotify": "*"
|
"ext-inotify": "*"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
"Kiri\\": "kiri-engine/",
|
"Kiri\\": "kiri-engine/",
|
||||||
"Kiri\\Gateway\\": "kiri-gateway/",
|
"Kiri\\Gateway\\": "kiri-gateway/",
|
||||||
|
"Kiri\\Websocket\\": "kiri-websocket-server/",
|
||||||
"Gii\\": "kiri-gii/",
|
"Gii\\": "kiri-gii/",
|
||||||
"Note\\": "kiri-note/"
|
"Kiri\\Annotation\\": "kiri-annotation/",
|
||||||
|
"Kiri\\Server\\": "kiri-server/",
|
||||||
|
"Kiri\\Task\\": "kiri-task/"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
|
"Kiri.php",
|
||||||
"error.php",
|
"error.php",
|
||||||
"function.php"
|
"function.php"
|
||||||
]
|
]
|
||||||
|
|||||||
+36
-29
@@ -3,9 +3,10 @@
|
|||||||
defined('APP_PATH') or define('APP_PATH', realpath(__DIR__ . '/../../'));
|
defined('APP_PATH') or define('APP_PATH', realpath(__DIR__ . '/../../'));
|
||||||
|
|
||||||
|
|
||||||
use Http\Handler\Router;
|
|
||||||
use JetBrains\PhpStorm\Pure;
|
use JetBrains\PhpStorm\Pure;
|
||||||
use Kiri\Abstracts\Config;
|
use Kiri\Abstracts\Config;
|
||||||
|
use Kiri\Annotation\Annotation;
|
||||||
|
use Kiri\Annotation\Route\Route;
|
||||||
use Kiri\Application;
|
use Kiri\Application;
|
||||||
use Kiri\Core\ArrayAccess;
|
use Kiri\Core\ArrayAccess;
|
||||||
use Kiri\Di\NoteManager;
|
use Kiri\Di\NoteManager;
|
||||||
@@ -13,9 +14,7 @@ use Kiri\Error\Logger;
|
|||||||
use Kiri\Events\EventDispatch;
|
use Kiri\Events\EventDispatch;
|
||||||
use Kiri\Events\EventProvider;
|
use Kiri\Events\EventProvider;
|
||||||
use Kiri\Exception\ConfigException;
|
use Kiri\Exception\ConfigException;
|
||||||
use Kiri\Kiri;
|
use Kiri\Message\Handler\Router;
|
||||||
use Note\Note;
|
|
||||||
use Note\Route\Route;
|
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
use Swoole\Process;
|
use Swoole\Process;
|
||||||
use Swoole\WebSocket\Server;
|
use Swoole\WebSocket\Server;
|
||||||
@@ -192,16 +191,16 @@ if (!function_exists('workerName')) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (!function_exists('note')) {
|
if (!function_exists('Annotation')) {
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return Note
|
* @return Annotation
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
function annotation(): Note
|
function annotation(): Annotation
|
||||||
{
|
{
|
||||||
return Kiri::getNote();
|
return Kiri::getAnnotation();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -220,7 +219,7 @@ if (!function_exists('scan_directory')) {
|
|||||||
*/
|
*/
|
||||||
function scan_directory($dir, $namespace, array $exclude = [])
|
function scan_directory($dir, $namespace, array $exclude = [])
|
||||||
{
|
{
|
||||||
$annotation = Kiri::app()->getNote();
|
$annotation = Kiri::app()->getAnnotation();
|
||||||
$annotation->read($dir, $namespace, $exclude);
|
$annotation->read($dir, $namespace, $exclude);
|
||||||
|
|
||||||
injectRuntime($dir, $exclude);
|
injectRuntime($dir, $exclude);
|
||||||
@@ -256,12 +255,12 @@ if (!function_exists('injectRuntime')) {
|
|||||||
*/
|
*/
|
||||||
function injectRuntime(string $path, array $exclude = [])
|
function injectRuntime(string $path, array $exclude = [])
|
||||||
{
|
{
|
||||||
$fileLists = Kiri::getNote()->runtime($path, $exclude);
|
$fileLists = Kiri::getAnnotation()->runtime($path, $exclude);
|
||||||
$di = Kiri::getDi();
|
$di = Kiri::getDi();
|
||||||
|
|
||||||
$router = [];
|
$router = [];
|
||||||
foreach ($fileLists as $class) {
|
foreach ($fileLists as $class) {
|
||||||
foreach (NoteManager::getTargetNote($class) as $value) {
|
foreach (NoteManager::getTargetAnnotation($class) as $value) {
|
||||||
if (!method_exists($value, 'execute')) {
|
if (!method_exists($value, 'execute')) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@@ -298,22 +297,6 @@ if (!function_exists('injectRuntime')) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (!function_exists('swoole')) {
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return Server|null
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
function swoole(): ?Server
|
|
||||||
{
|
|
||||||
return Kiri::getWebSocket();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
if (!function_exists('directory')) {
|
if (!function_exists('directory')) {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -849,9 +832,9 @@ if (!function_exists('storage')) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (empty($fileName)) {
|
if (empty($fileName)) {
|
||||||
return $basePath . '/' . $path . '/';
|
return $basePath . '/' . $path;
|
||||||
}
|
}
|
||||||
$fileName = $basePath . '/' . $path . '/' . $fileName;
|
$fileName = $basePath . '/' . $path . $fileName;
|
||||||
if (!file_exists($fileName)) {
|
if (!file_exists($fileName)) {
|
||||||
touch($fileName);
|
touch($fileName);
|
||||||
}
|
}
|
||||||
@@ -1232,3 +1215,27 @@ if (!function_exists('success')) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (!function_exists('error_trigger_format')) {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Throwable|Error $throwable
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
function error_trigger_format(\Throwable|\Error $throwable): string
|
||||||
|
{
|
||||||
|
$message = "Throwable: " . $throwable->getMessage() . "\n" . ' ' . $throwable->getFile() . " at line " . $throwable->getLine() . "\n";
|
||||||
|
|
||||||
|
$message .= "trance\n";
|
||||||
|
foreach ($throwable->getTrace() as $value) {
|
||||||
|
if (!isset($value['file'])) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
$message .= $value['file'] . " -> " . $value['line'] . "(" . (isset($value['class']) ? $value['class'] . '::' : '') . ($value['function'] ?? 'Closure') . ")\n";
|
||||||
|
}
|
||||||
|
return "\033[41;37m" . $message . "\033[0m";
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
use DirectoryIterator;
|
use DirectoryIterator;
|
||||||
@@ -10,10 +10,10 @@ use ReflectionException;
|
|||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Note
|
* Class Annotation
|
||||||
* @package Note
|
* @package Annotation
|
||||||
*/
|
*/
|
||||||
class Note extends Component
|
class Annotation extends Component
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
@@ -10,7 +10,7 @@ defined('ASPECT_ERROR') or define('ASPECT_ERROR', 'Aspect annotation must implem
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Aspect
|
* Class Aspect
|
||||||
* @package Note
|
* @package Annotation
|
||||||
*/
|
*/
|
||||||
#[\Attribute(\Attribute::TARGET_METHOD)] class Aspect extends Attribute
|
#[\Attribute(\Attribute::TARGET_METHOD)] class Aspect extends Attribute
|
||||||
{
|
{
|
||||||
@@ -1,14 +1,14 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Attribute
|
* Class Attribute
|
||||||
* @package Note
|
* @package Annotation
|
||||||
*/
|
*/
|
||||||
abstract class Attribute implements INote
|
abstract class Attribute implements IAnnotation
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
@@ -1,17 +1,17 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Events\EventProvider;
|
use Kiri\Events\EventProvider;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Event
|
* Class Event
|
||||||
* @package Note
|
* @package Annotation
|
||||||
*/
|
*/
|
||||||
#[\Attribute(\Attribute::TARGET_METHOD)] class Event extends Attribute
|
#[\Attribute(\Attribute::TARGET_METHOD)] class Event extends Attribute
|
||||||
{
|
{
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
interface INote
|
interface IAnnotation
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -1,18 +1,18 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Core\Str;
|
use Kiri\Core\Str;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
use ReflectionException;
|
use ReflectionException;
|
||||||
use ReflectionProperty;
|
use ReflectionProperty;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Inject
|
* Class Inject
|
||||||
* @package Note
|
* @package Annotation
|
||||||
*/
|
*/
|
||||||
#[\Attribute(\Attribute::TARGET_PROPERTY)] class Inject extends Attribute
|
#[\Attribute(\Attribute::TARGET_PROPERTY)] class Inject extends Attribute
|
||||||
{
|
{
|
||||||
@@ -70,7 +70,6 @@ use ReflectionProperty;
|
|||||||
* @param $class
|
* @param $class
|
||||||
* @param $method
|
* @param $method
|
||||||
* @return ReflectionProperty|bool
|
* @return ReflectionProperty|bool
|
||||||
* @throws ReflectionException
|
|
||||||
*/
|
*/
|
||||||
private function getProperty($class, $method): ReflectionProperty|bool
|
private function getProperty($class, $method): ReflectionProperty|bool
|
||||||
{
|
{
|
||||||
@@ -1,13 +1,13 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
use DirectoryIterator;
|
use DirectoryIterator;
|
||||||
use Exception;
|
use Exception;
|
||||||
|
use Kiri;
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
use Kiri\Kiri;
|
|
||||||
use ReflectionClass;
|
use ReflectionClass;
|
||||||
use ReflectionException;
|
use ReflectionException;
|
||||||
use Throwable;
|
use Throwable;
|
||||||
@@ -15,21 +15,15 @@ use Throwable;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Loader
|
* Class Loader
|
||||||
* @package Note
|
* @package Annotation
|
||||||
*/
|
*/
|
||||||
class Loader extends Component
|
class Loader extends Component
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
private array $_classes = [];
|
|
||||||
|
|
||||||
|
|
||||||
private array $_directory = [];
|
private array $_directory = [];
|
||||||
|
|
||||||
|
|
||||||
private array $_property = [];
|
|
||||||
|
|
||||||
|
|
||||||
private array $_methods = [];
|
private array $_methods = [];
|
||||||
|
|
||||||
|
|
||||||
@@ -43,17 +37,6 @@ class Loader extends Component
|
|||||||
$this->_scanDir(new DirectoryIterator($path), $namespace);
|
$this->_scanDir(new DirectoryIterator($path), $namespace);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $class
|
|
||||||
* @param string $property
|
|
||||||
* @return \ReflectionProperty|array|null
|
|
||||||
* @throws ReflectionException
|
|
||||||
*/
|
|
||||||
public function getProperty(string $class, string $property = ''): \ReflectionProperty|array|null
|
|
||||||
{
|
|
||||||
return Kiri::getDi()->getClassReflectionProperty($class, $property);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $class
|
* @param string $class
|
||||||
@@ -101,6 +84,9 @@ class Loader extends Component
|
|||||||
public function _scanDir(DirectoryIterator $paths, $namespace, array $exclude = [])
|
public function _scanDir(DirectoryIterator $paths, $namespace, array $exclude = [])
|
||||||
{
|
{
|
||||||
foreach ($paths as $path) {
|
foreach ($paths as $path) {
|
||||||
|
if (function_exists('opcache_invalidate')) {
|
||||||
|
opcache_invalidate($path->getRealPath(), true);
|
||||||
|
}
|
||||||
if ($path->isDot() || str_starts_with($path->getFilename(), '.')) {
|
if ($path->isDot() || str_starts_with($path->getFilename(), '.')) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@@ -147,7 +133,6 @@ class Loader extends Component
|
|||||||
* @param DirectoryIterator $path
|
* @param DirectoryIterator $path
|
||||||
* @param string $namespace
|
* @param string $namespace
|
||||||
* @return ReflectionClass|null
|
* @return ReflectionClass|null
|
||||||
* @throws ReflectionException
|
|
||||||
*/
|
*/
|
||||||
private function getReflect(DirectoryIterator $path, string $namespace): ?ReflectionClass
|
private function getReflect(DirectoryIterator $path, string $namespace): ?ReflectionClass
|
||||||
{
|
{
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Note;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
#[\Attribute(\Attribute::TARGET_CLASS)] class Mapping extends Attribute
|
#[\Attribute(\Attribute::TARGET_CLASS)] class Mapping extends Attribute
|
||||||
{
|
{
|
||||||
@@ -1,14 +1,14 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note\Route;
|
namespace Kiri\Annotation\Route;
|
||||||
|
|
||||||
|
|
||||||
use Note\Attribute;
|
use Kiri\Annotation\Attribute;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Document
|
* Class Document
|
||||||
* @package Note\Route
|
* @package Annotation\Route
|
||||||
*/
|
*/
|
||||||
#[\Attribute(\Attribute::TARGET_METHOD)] class Document extends Attribute
|
#[\Attribute(\Attribute::TARGET_METHOD)] class Document extends Attribute
|
||||||
{
|
{
|
||||||
@@ -1,16 +1,16 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note\Route;
|
namespace Kiri\Annotation\Route;
|
||||||
|
|
||||||
|
|
||||||
use Note\Attribute;
|
use Kiri\Annotation\Attribute;
|
||||||
use Http\Handler\Abstracts\MiddlewareManager;
|
use Kiri\Message\Handler\Abstracts\MiddlewareManager;
|
||||||
use Psr\Http\Server\MiddlewareInterface;
|
use Psr\Http\Server\MiddlewareInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Middleware
|
* Class Middleware
|
||||||
* @package Note\Route
|
* @package Annotation\Route
|
||||||
*/
|
*/
|
||||||
#[\Attribute(\Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)] class Middleware extends Attribute
|
#[\Attribute(\Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)] class Middleware extends Attribute
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note\Route;
|
namespace Kiri\Annotation\Route;
|
||||||
|
|
||||||
|
|
||||||
use Note\Attribute;
|
use Kiri\Annotation\Attribute;
|
||||||
use Http\Handler\Router;
|
use Kiri\Message\Handler\Router;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
#[\Attribute(\Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)] class Route extends Attribute
|
#[\Attribute(\Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)] class Route extends Attribute
|
||||||
{
|
{
|
||||||
@@ -1,14 +1,14 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note\Route;
|
namespace Kiri\Annotation\Route;
|
||||||
|
|
||||||
|
|
||||||
use Note\Attribute;
|
use Kiri\Annotation\Attribute;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Socket
|
* Class Socket
|
||||||
* @package Note
|
* @package Annotation
|
||||||
*/
|
*/
|
||||||
#[\Attribute(\Attribute::TARGET_METHOD)] class Socket extends Attribute
|
#[\Attribute(\Attribute::TARGET_METHOD)] class Socket extends Attribute
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Target
|
* Class Target
|
||||||
* @package Note
|
* @package Annotation
|
||||||
*/
|
*/
|
||||||
#[\Attribute(\Attribute::TARGET_CLASS)] class Target extends Attribute
|
#[\Attribute(\Attribute::TARGET_CLASS)] class Target extends Attribute
|
||||||
{
|
{
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Kiri\Abstracts;
|
||||||
|
|
||||||
|
abstract class AbstractServer extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
public string $name = 'http';
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -10,31 +10,26 @@ declare(strict_types=1);
|
|||||||
namespace Kiri\Abstracts;
|
namespace Kiri\Abstracts;
|
||||||
|
|
||||||
|
|
||||||
use Note\Note as SNote;
|
|
||||||
use Database\Connection;
|
use Database\Connection;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Http\Handler\Router;
|
|
||||||
use Kiri\Events\OnBeforeCommandExecute;
|
|
||||||
use Server\Server;
|
|
||||||
use Kafka\KafkaProvider;
|
use Kafka\KafkaProvider;
|
||||||
|
use Kiri;
|
||||||
|
use Kiri\Annotation\Annotation as SAnnotation;
|
||||||
use Kiri\Async;
|
use Kiri\Async;
|
||||||
use Kiri\Cache\Redis;
|
use Kiri\Cache\Redis;
|
||||||
use Kiri\Di\LocalService;
|
use Kiri\Di\LocalService;
|
||||||
use Kiri\Error\ErrorHandler;
|
use Kiri\Error\{ErrorHandler, Logger};
|
||||||
use Kiri\Error\Logger;
|
use Kiri\Exception\{InitException, NotFindClassException};
|
||||||
use Kiri\Events\EventProvider;
|
use Kiri\Message\Handler\Router;
|
||||||
use Kiri\Exception\InitException;
|
use Kiri\Server\{Server, ServerManager};
|
||||||
use Kiri\Exception\NotFindClassException;
|
use Kiri\Task\AsyncTaskExecute;
|
||||||
use Kiri\Kiri;
|
use Kiri\Task\OnTaskInterface;
|
||||||
use ReflectionException;
|
use ReflectionException;
|
||||||
use Server\ServerManager;
|
|
||||||
use Server\Contract\OnTaskInterface;
|
|
||||||
use Server\Tasker\AsyncTaskExecute;
|
|
||||||
use Swoole\Table;
|
use Swoole\Table;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class BaseApplication
|
* Class BaseApplication
|
||||||
* @package Kiri\Kiri\Base
|
* @package Kiri\Base
|
||||||
*/
|
*/
|
||||||
abstract class BaseApplication extends Component
|
abstract class BaseApplication extends Component
|
||||||
{
|
{
|
||||||
@@ -207,7 +202,7 @@ abstract class BaseApplication extends Component
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param OnTaskInterface $execute
|
* @param OnTaskInterface $execute
|
||||||
* @throws ReflectionException
|
* @throws ReflectionException|Exception
|
||||||
*/
|
*/
|
||||||
public function task(OnTaskInterface $execute): void
|
public function task(OnTaskInterface $execute): void
|
||||||
{
|
{
|
||||||
@@ -224,20 +219,20 @@ abstract class BaseApplication extends Component
|
|||||||
private function addEvent($key, $value): void
|
private function addEvent($key, $value): void
|
||||||
{
|
{
|
||||||
if ($value instanceof \Closure || is_object($value)) {
|
if ($value instanceof \Closure || is_object($value)) {
|
||||||
$this->eventProvider->on($key, $value, 0);
|
$this->getEventProvider()->on($key, $value, 0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (is_array($value)) {
|
if (is_array($value)) {
|
||||||
if (is_object($value[0]) && !($value[0] instanceof \Closure)) {
|
if (is_object($value[0]) && !($value[0] instanceof \Closure)) {
|
||||||
$this->eventProvider->on($key, $value, 0);
|
$this->getEventProvider()->on($key, $value, 0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_string($value[0])) {
|
if (is_string($value[0])) {
|
||||||
$value[0] = Kiri::createObject($value[0]);
|
$value[0] = Kiri::createObject($value[0]);
|
||||||
$this->eventProvider->on($key, $value, 0);
|
$this->getEventProvider()->on($key, $value, 0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -246,7 +241,7 @@ abstract class BaseApplication extends Component
|
|||||||
if (!is_callable($item, true)) {
|
if (!is_callable($item, true)) {
|
||||||
throw new InitException("Class does not hav callback.");
|
throw new InitException("Class does not hav callback.");
|
||||||
}
|
}
|
||||||
$this->eventProvider->on($key, $item, 0);
|
$this->getEventProvider()->on($key, $item, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -377,7 +372,7 @@ abstract class BaseApplication extends Component
|
|||||||
*/
|
*/
|
||||||
public function getServer(): Server
|
public function getServer(): Server
|
||||||
{
|
{
|
||||||
return $this->get('server');
|
return Kiri::getDi()->get(Server::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -392,12 +387,12 @@ abstract class BaseApplication extends Component
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return SNote
|
* @return SAnnotation
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
public function getNote(): SNote
|
public function getAnnotation(): SAnnotation
|
||||||
{
|
{
|
||||||
return $this->get('note');
|
return $this->get('Annotation');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -411,7 +406,6 @@ abstract class BaseApplication extends Component
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $array
|
* @param $array
|
||||||
*/
|
*/
|
||||||
@@ -450,9 +444,8 @@ abstract class BaseApplication extends Component
|
|||||||
'error' => ['class' => ErrorHandler::class],
|
'error' => ['class' => ErrorHandler::class],
|
||||||
'config' => ['class' => Config::class],
|
'config' => ['class' => Config::class],
|
||||||
'logger' => ['class' => Logger::class],
|
'logger' => ['class' => Logger::class],
|
||||||
'note' => ['class' => SNote::class],
|
'Annotation' => ['class' => SAnnotation::class],
|
||||||
'databases' => ['class' => Connection::class],
|
'databases' => ['class' => Connection::class],
|
||||||
'jwt' => ['class' => Jwt::class],
|
|
||||||
'async' => ['class' => Async::class],
|
'async' => ['class' => Async::class],
|
||||||
'kafka-container' => ['class' => KafkaProvider::class],
|
'kafka-container' => ['class' => KafkaProvider::class],
|
||||||
]);
|
]);
|
||||||
|
|||||||
@@ -13,24 +13,21 @@ namespace Kiri\Abstracts;
|
|||||||
use Exception;
|
use Exception;
|
||||||
use JetBrains\PhpStorm\Pure;
|
use JetBrains\PhpStorm\Pure;
|
||||||
use Kiri\Di\Container;
|
use Kiri\Di\Container;
|
||||||
|
use Kiri\Events\EventDispatch;
|
||||||
use Kiri\Events\EventProvider;
|
use Kiri\Events\EventProvider;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
use Note\Inject;
|
|
||||||
use Psr\Container\ContainerExceptionInterface;
|
use Psr\Container\ContainerExceptionInterface;
|
||||||
use Psr\Container\ContainerInterface;
|
use Psr\Container\ContainerInterface;
|
||||||
use Psr\Container\NotFoundExceptionInterface;
|
use Psr\Container\NotFoundExceptionInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Component
|
* Class Component
|
||||||
* @package Kiri\Kiri\Base
|
* @package Kiri\Base
|
||||||
* @property ContainerInterface|Container $container
|
|
||||||
* @property EventProvider $eventProvider
|
|
||||||
*/
|
*/
|
||||||
class Component implements Configure
|
class Component implements Configure
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* BaseAbstract constructor.
|
* BaseAbstract constructor.
|
||||||
*
|
*
|
||||||
@@ -65,6 +62,16 @@ class Component implements Configure
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return EventDispatch
|
||||||
|
* @throws ContainerExceptionInterface
|
||||||
|
* @throws NotFoundExceptionInterface
|
||||||
|
*/
|
||||||
|
protected function getEventDispatch(): EventDispatch
|
||||||
|
{
|
||||||
|
return $this->getContainer()->get(EventDispatch::class);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
@@ -73,7 +80,6 @@ class Component implements Configure
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
@@ -82,38 +88,6 @@ class Component implements Configure
|
|||||||
return static::class;
|
return static::class;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $name
|
|
||||||
* @param $value
|
|
||||||
*
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public function __set($name, $value)
|
|
||||||
{
|
|
||||||
$method = 'set' . ucfirst($name);
|
|
||||||
if (method_exists($this, $method)) {
|
|
||||||
$this->{$method}($value);
|
|
||||||
} else {
|
|
||||||
throw new Exception('The set name ' . $name . ' not find in class ' . static::class);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $name
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public function __get($name): mixed
|
|
||||||
{
|
|
||||||
$method = 'get' . ucfirst($name);
|
|
||||||
if (method_exists($this, $method)) {
|
|
||||||
return $this->$method();
|
|
||||||
} else {
|
|
||||||
throw new Exception('The get name ' . $name . ' not find in class ' . static::class);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $message
|
* @param $message
|
||||||
@@ -124,13 +98,14 @@ class Component implements Configure
|
|||||||
public function addError($message, string $model = 'app'): bool
|
public function addError($message, string $model = 'app'): bool
|
||||||
{
|
{
|
||||||
if ($message instanceof \Throwable) {
|
if ($message instanceof \Throwable) {
|
||||||
$this->error(jTraceEx($message));
|
$this->error($message = jTraceEx($message));
|
||||||
} else {
|
} else {
|
||||||
if (!is_string($message)) {
|
if (!is_string($message)) {
|
||||||
$message = json_encode($message, JSON_UNESCAPED_UNICODE);
|
$message = json_encode($message, JSON_UNESCAPED_UNICODE);
|
||||||
}
|
}
|
||||||
$this->error($message);
|
$this->error($message);
|
||||||
}
|
}
|
||||||
|
Kiri::app()->getLogger()->fail($message, $model);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -139,7 +114,7 @@ class Component implements Configure
|
|||||||
* @return Logger
|
* @return Logger
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
private function logger(): Logger
|
protected function logger(): Logger
|
||||||
{
|
{
|
||||||
return Kiri::getDi()->get(Logger::class);
|
return Kiri::getDi()->get(Logger::class);
|
||||||
}
|
}
|
||||||
@@ -156,8 +131,6 @@ class Component implements Configure
|
|||||||
if (!is_string($message)) {
|
if (!is_string($message)) {
|
||||||
$message = print_r($message, true);
|
$message = print_r($message, true);
|
||||||
}
|
}
|
||||||
// $message = "\033[35m" . $message . "\033[0m";
|
|
||||||
|
|
||||||
$context = [];
|
$context = [];
|
||||||
if (!empty($method)) $context['method'] = $method;
|
if (!empty($method)) $context['method'] = $method;
|
||||||
if (!empty($file)) $context['file'] = $file;
|
if (!empty($file)) $context['file'] = $file;
|
||||||
@@ -177,8 +150,6 @@ class Component implements Configure
|
|||||||
if (!is_string($message)) {
|
if (!is_string($message)) {
|
||||||
$message = print_r($message, true);
|
$message = print_r($message, true);
|
||||||
}
|
}
|
||||||
// $message = "\033[34m" . $message . "\033[0m";
|
|
||||||
|
|
||||||
$context = [];
|
$context = [];
|
||||||
if (!empty($method)) $context['method'] = $method;
|
if (!empty($method)) $context['method'] = $method;
|
||||||
if (!empty($file)) $context['file'] = $file;
|
if (!empty($file)) $context['file'] = $file;
|
||||||
@@ -198,9 +169,6 @@ class Component implements Configure
|
|||||||
if (!is_string($message)) {
|
if (!is_string($message)) {
|
||||||
$message = print_r($message, true);
|
$message = print_r($message, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
// $message = "\033[36m" . $message . "\033[0m";
|
|
||||||
|
|
||||||
$context = [];
|
$context = [];
|
||||||
if (!empty($method)) $context['method'] = $method;
|
if (!empty($method)) $context['method'] = $method;
|
||||||
if (!empty($file)) $context['file'] = $file;
|
if (!empty($file)) $context['file'] = $file;
|
||||||
@@ -221,8 +189,6 @@ class Component implements Configure
|
|||||||
$message = print_r($message, true);
|
$message = print_r($message, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
// $message = "\033[33m" . $message . "\033[0m";
|
|
||||||
|
|
||||||
$context = [];
|
$context = [];
|
||||||
if (!empty($method)) $context['method'] = $method;
|
if (!empty($method)) $context['method'] = $method;
|
||||||
if (!empty($file)) $context['file'] = $file;
|
if (!empty($file)) $context['file'] = $file;
|
||||||
@@ -252,8 +218,6 @@ class Component implements Configure
|
|||||||
}
|
}
|
||||||
$context = $method;
|
$context = $method;
|
||||||
}
|
}
|
||||||
// $message = "\033[41;37m" . $message . "\033[0m";
|
|
||||||
|
|
||||||
if (!empty($method)) $context['method'] = $method;
|
if (!empty($method)) $context['method'] = $method;
|
||||||
if (!empty($file)) $context['file'] = $file;
|
if (!empty($file)) $context['file'] = $file;
|
||||||
|
|
||||||
|
|||||||
@@ -9,14 +9,12 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace Kiri\Abstracts;
|
namespace Kiri\Abstracts;
|
||||||
|
|
||||||
use Exception;
|
|
||||||
use Kiri\Exception\ConfigException;
|
use Kiri\Exception\ConfigException;
|
||||||
use Kiri\Kiri;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Config
|
* Class Config
|
||||||
* @package Kiri\Kiri\Base
|
* @package Kiri\Base
|
||||||
*/
|
*/
|
||||||
class Config extends Component
|
class Config extends Component
|
||||||
{
|
{
|
||||||
@@ -95,7 +93,19 @@ class Config extends Component
|
|||||||
*/
|
*/
|
||||||
public static function set($key, $value): mixed
|
public static function set($key, $value): mixed
|
||||||
{
|
{
|
||||||
return static::setData($key, $value);
|
$explode = explode('.', $key);
|
||||||
|
$parent = &static::$data;
|
||||||
|
foreach ($explode as $item) {
|
||||||
|
if (!isset($parent[$item])) {
|
||||||
|
$parent[$item] = [];
|
||||||
|
}
|
||||||
|
$parent = &$parent[$item];
|
||||||
|
}
|
||||||
|
$parent = $value;
|
||||||
|
|
||||||
|
unset($parent);
|
||||||
|
|
||||||
|
return static::$data;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ namespace Kiri\Abstracts;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Interface Configure
|
* Interface Configure
|
||||||
* @package Kiri\Kiri\Base
|
* @package Kiri\Base
|
||||||
*/
|
*/
|
||||||
interface Configure
|
interface Configure
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -6,10 +6,10 @@ use DirectoryIterator;
|
|||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Events\EventProvider;
|
use Kiri\Events\EventProvider;
|
||||||
use Kiri\Exception\ConfigException;
|
use Kiri\Exception\ConfigException;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
use Kiri\Server\Events\OnWorkerStop;
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
use ReflectionException;
|
use ReflectionException;
|
||||||
use Server\Events\OnWorkerStop;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -222,7 +222,7 @@ class Logger implements LoggerInterface
|
|||||||
private function _string($message, $context): string
|
private function _string($message, $context): string
|
||||||
{
|
{
|
||||||
if (!empty($context)) {
|
if (!empty($context)) {
|
||||||
return $message . ' ' . PHP_EOL . print_r($context, TRUE) . PHP_EOL;
|
return $message . ' ' . PHP_EOL . print_r($context, true) . PHP_EOL;
|
||||||
}
|
}
|
||||||
return $message . PHP_EOL;
|
return $message . PHP_EOL;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,14 +4,11 @@
|
|||||||
namespace Kiri\Abstracts;
|
namespace Kiri\Abstracts;
|
||||||
|
|
||||||
|
|
||||||
use Note\Note as SNote;
|
use Kiri\Annotation\Annotation as SAnnotation;
|
||||||
use Database\Connection;
|
use Database\Connection;
|
||||||
use Database\DatabasesProviders;
|
use Database\DatabasesProviders;
|
||||||
use Http\Handler\Client\Client;
|
use Kiri\Message\Handler\Router;
|
||||||
use Http\Handler\Client\Curl;
|
use Kiri\Server\Server;
|
||||||
use Http\Handler\Router;
|
|
||||||
use Server\Server;
|
|
||||||
use Kiri\Crontab\Producer;
|
|
||||||
use Kiri\Async;
|
use Kiri\Async;
|
||||||
use Kiri\Error\Logger;
|
use Kiri\Error\Logger;
|
||||||
use Kiri\Jwt\JWTAuth;
|
use Kiri\Jwt\JWTAuth;
|
||||||
@@ -25,11 +22,9 @@ use Kiri\Jwt\JWTAuth;
|
|||||||
* @property Async $async
|
* @property Async $async
|
||||||
* @property Logger $logger
|
* @property Logger $logger
|
||||||
* @property JWTAuth $jwt
|
* @property JWTAuth $jwt
|
||||||
* @property SNote $annotation
|
* @property SAnnotation $annotation
|
||||||
* @property BaseGoto $goto
|
* @property BaseGoto $goto
|
||||||
* @property Client $client
|
|
||||||
* @property Connection $databases
|
* @property Connection $databases
|
||||||
* @property Curl $curl
|
|
||||||
*/
|
*/
|
||||||
trait TraitApplication
|
trait TraitApplication
|
||||||
{
|
{
|
||||||
|
|||||||
+23
-18
@@ -13,24 +13,23 @@ namespace Kiri;
|
|||||||
use Closure;
|
use Closure;
|
||||||
use Database\DatabasesProviders;
|
use Database\DatabasesProviders;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\BaseApplication;
|
use Kiri;
|
||||||
use Kiri\Abstracts\Config;
|
use Kiri\Abstracts\{BaseApplication, Config, Kernel};
|
||||||
use Kiri\Abstracts\Kernel;
|
|
||||||
use Kiri\Crontab\CrontabProviders;
|
use Kiri\Crontab\CrontabProviders;
|
||||||
use Kiri\Events\OnAfterCommandExecute;
|
use Kiri\Events\{OnAfterCommandExecute, OnBeforeCommandExecute};
|
||||||
use Kiri\Events\OnBeforeCommandExecute;
|
|
||||||
use Kiri\Exception\NotFindClassException;
|
|
||||||
use Kiri\FileListen\HotReload;
|
use Kiri\FileListen\HotReload;
|
||||||
|
use Kiri\Server\ServerProviders;
|
||||||
use ReflectionException;
|
use ReflectionException;
|
||||||
use Server\ServerProviders;
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
use Swoole\Process;
|
use Swoole\Process;
|
||||||
use Swoole\Timer;
|
use Swoole\Timer;
|
||||||
use Symfony\Component\Console\Application as ConsoleApplication;
|
use Symfony\Component\Console\{Application as ConsoleApplication,
|
||||||
use Symfony\Component\Console\Command\Command;
|
Command\Command,
|
||||||
use Symfony\Component\Console\Input\ArgvInput;
|
Input\ArgvInput,
|
||||||
use Symfony\Component\Console\Input\InputInterface;
|
Output\ConsoleOutput,
|
||||||
use Symfony\Component\Console\Output\ConsoleOutput;
|
Output\OutputInterface
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Init
|
* Class Init
|
||||||
@@ -192,7 +191,8 @@ class Application extends BaseApplication
|
|||||||
*/
|
*/
|
||||||
public function execute(array $argv): void
|
public function execute(array $argv): void
|
||||||
{
|
{
|
||||||
/** @var InputInterface $input */
|
ini_set('swoole.enable_preemptive_scheduler', 'On');
|
||||||
|
ini_set('swoole.enable_library', 'On');
|
||||||
[$input, $output] = $this->argument($argv);
|
[$input, $output] = $this->argument($argv);
|
||||||
try {
|
try {
|
||||||
$console = di(ConsoleApplication::class);
|
$console = di(ConsoleApplication::class);
|
||||||
@@ -212,7 +212,6 @@ class Application extends BaseApplication
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $argv
|
* @param $argv
|
||||||
* @return array
|
* @return array
|
||||||
@@ -223,7 +222,6 @@ class Application extends BaseApplication
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws ReflectionException
|
* @throws ReflectionException
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
@@ -232,16 +230,23 @@ class Application extends BaseApplication
|
|||||||
{
|
{
|
||||||
fire(new OnBeforeCommandExecute());
|
fire(new OnBeforeCommandExecute());
|
||||||
if (!($class instanceof HotReload)) {
|
if (!($class instanceof HotReload)) {
|
||||||
scan_directory(directory('app'), 'App');
|
$config = Config::get('scanner', []);
|
||||||
|
if (!empty($config)) {
|
||||||
|
foreach ($config as $key => $value) {
|
||||||
|
scan_directory($value, $key);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
scan_directory(MODEL_PATH, 'app\Model');
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->getContainer()->setBindings(OutputInterface::class, $output);
|
||||||
|
|
||||||
$class->run($input, $output);
|
$class->run($input, $output);
|
||||||
fire(new OnAfterCommandExecute());
|
fire(new OnAfterCommandExecute());
|
||||||
$output->writeln('ok' . PHP_EOL);
|
$output->writeln('ok' . PHP_EOL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $className
|
* @param $className
|
||||||
* @param null $abstracts
|
* @param null $abstracts
|
||||||
|
|||||||
@@ -6,9 +6,9 @@ namespace Kiri;
|
|||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
use Server\ServerManager;
|
use Kiri\Server\ServerManager;
|
||||||
use Server\Tasker\AsyncTaskExecute;
|
use Kiri\Task\AsyncTaskExecute;
|
||||||
|
use Kiri;
|
||||||
/**
|
/**
|
||||||
* Class Async
|
* Class Async
|
||||||
* @package Kiri
|
* @package Kiri
|
||||||
|
|||||||
@@ -4,9 +4,11 @@ namespace Kiri\Cache\Base;
|
|||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\Logger;
|
use Kiri\Abstracts\Logger;
|
||||||
|
use Kiri\Events\EventProvider;
|
||||||
use Kiri\Exception\RedisConnectException;
|
use Kiri\Exception\RedisConnectException;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
use Kiri\Pool\StopHeartbeatCheck;
|
use Kiri\Pool\StopHeartbeatCheck;
|
||||||
|
use Kiri\Server\Events\OnWorkerExit;
|
||||||
use RedisException;
|
use RedisException;
|
||||||
use Swoole\Timer;
|
use Swoole\Timer;
|
||||||
|
|
||||||
@@ -43,6 +45,7 @@ class Redis implements StopHeartbeatCheck
|
|||||||
private int $_last = 0;
|
private int $_last = 0;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $config
|
* @param array $config
|
||||||
*/
|
*/
|
||||||
@@ -65,14 +68,24 @@ class Redis implements StopHeartbeatCheck
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Kiri\Server\Events\OnWorkerExit $exit
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function onWorkerExit(OnWorkerExit $exit)
|
||||||
|
{
|
||||||
|
$this->stopHeartbeatCheck();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public function heartbeat_check(): void
|
public function heartbeat_check(): void
|
||||||
{
|
{
|
||||||
if (env('state', 'start') == 'exit') {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if ($this->_timer === -1) {
|
if ($this->_timer === -1) {
|
||||||
$this->_timer = Timer::tick(1000, fn() => $this->waite());
|
$this->_timer = Timer::tick(1000, fn() => $this->waite());
|
||||||
}
|
}
|
||||||
@@ -85,12 +98,13 @@ class Redis implements StopHeartbeatCheck
|
|||||||
private function waite(): void
|
private function waite(): void
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
if (env('state', 'start') == 'exit') {
|
if ($this->_timer === -1) {
|
||||||
Kiri::getDi()->get(Logger::class)->critical('timer end');
|
Kiri::getDi()->get(Logger::class)->critical('timer end');
|
||||||
$this->stopHeartbeatCheck();
|
$this->stopHeartbeatCheck();
|
||||||
}
|
}
|
||||||
if (time() - $this->_last > intval($this->pool['tick'] ?? 60)) {
|
if (time() - $this->_last > intval($this->pool['tick'] ?? 60)) {
|
||||||
$this->stopHeartbeatCheck();
|
$this->stopHeartbeatCheck();
|
||||||
|
|
||||||
$this->pdo = null;
|
$this->pdo = null;
|
||||||
}
|
}
|
||||||
} catch (\Throwable $throwable) {
|
} catch (\Throwable $throwable) {
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ use Swoole\Coroutine\System;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class File
|
* Class File
|
||||||
* @package Kiri\Kiri\Cache
|
* @package Kiri\Cache
|
||||||
*/
|
*/
|
||||||
class File extends Component implements ICache
|
class File extends Component implements ICache
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ namespace Kiri\Cache;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Interface ICache
|
* Interface ICache
|
||||||
* @package Kiri\Kiri\Cache
|
* @package Kiri\Cache
|
||||||
*/
|
*/
|
||||||
interface ICache
|
interface ICache
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -15,15 +15,17 @@ use Kiri\Abstracts\Config;
|
|||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
use Kiri\Events\EventProvider;
|
use Kiri\Events\EventProvider;
|
||||||
use Kiri\Exception\ConfigException;
|
use Kiri\Exception\ConfigException;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
use Kiri\Pool\Redis as PoolRedis;
|
use Kiri\Pool\Redis as PoolRedis;
|
||||||
use Note\Inject;
|
use Kiri\Annotation\Inject;
|
||||||
use Server\Events\OnWorkerExit;
|
use Kiri\Server\Events\OnWorkerExit;
|
||||||
|
use Psr\Container\ContainerExceptionInterface;
|
||||||
|
use Psr\Container\NotFoundExceptionInterface;
|
||||||
use Swoole\Timer;
|
use Swoole\Timer;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Redis
|
* Class Redis
|
||||||
* @package Kiri\Kiri\Cache
|
* @package Kiri\Cache
|
||||||
* @mixin \Redis
|
* @mixin \Redis
|
||||||
*/
|
*/
|
||||||
class Redis extends Component
|
class Redis extends Component
|
||||||
@@ -43,7 +45,10 @@ class Redis extends Component
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @return void
|
||||||
* @throws ConfigException
|
* @throws ConfigException
|
||||||
|
* @throws ContainerExceptionInterface
|
||||||
|
* @throws NotFoundExceptionInterface
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function init()
|
public function init()
|
||||||
@@ -54,7 +59,7 @@ class Redis extends Component
|
|||||||
|
|
||||||
$length = Config::get('cache.redis.pool.max', 10);
|
$length = Config::get('cache.redis.pool.max', 10);
|
||||||
|
|
||||||
$this->eventProvider->on(OnWorkerExit::class, [$this, 'destroy'], 0);
|
$this->getEventProvider()->on(OnWorkerExit::class, [$this, 'destroy'], 0);
|
||||||
|
|
||||||
$connections->initConnections('Redis:' . $config['host'], true, $length);
|
$connections->initConnections('Redis:' . $config['host'], true, $length);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ namespace Kiri;
|
|||||||
|
|
||||||
use Kiri\Abstracts\BaseContext;
|
use Kiri\Abstracts\BaseContext;
|
||||||
use Swoole\Coroutine;
|
use Swoole\Coroutine;
|
||||||
|
use Kiri;
|
||||||
/**
|
/**
|
||||||
* Class Context
|
* Class Context
|
||||||
* @package Yoc\http
|
* @package Yoc\http
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ namespace Kiri\Core;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class DateFormat
|
* Class DateFormat
|
||||||
* @package Kiri\Kiri\Core
|
* @package Kiri\Core
|
||||||
*/
|
*/
|
||||||
class DateFormat
|
class DateFormat
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -4,8 +4,9 @@ namespace Kiri\Core;
|
|||||||
|
|
||||||
use JetBrains\PhpStorm\Pure;
|
use JetBrains\PhpStorm\Pure;
|
||||||
use ReturnTypeWillChange;
|
use ReturnTypeWillChange;
|
||||||
|
use Traversable;
|
||||||
|
|
||||||
class HashMap implements \ArrayAccess
|
class HashMap implements \ArrayAccess, \IteratorAggregate
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -14,6 +15,15 @@ class HashMap implements \ArrayAccess
|
|||||||
private array $lists = [];
|
private array $lists = [];
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return Traversable
|
||||||
|
*/
|
||||||
|
public function getIterator(): Traversable
|
||||||
|
{
|
||||||
|
return new \ArrayIterator($this->lists);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $key
|
* @param string $key
|
||||||
* @param $value
|
* @param $value
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ use Exception;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Help
|
* Class Help
|
||||||
* @package Kiri\Kiri\Core
|
* @package Kiri\Core
|
||||||
*/
|
*/
|
||||||
class Help
|
class Help
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ use Throwable;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class JSON
|
* Class JSON
|
||||||
* @package Kiri\Kiri\Core
|
* @package Kiri\Core
|
||||||
*/
|
*/
|
||||||
class Json
|
class Json
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ namespace Kiri\Core;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Reader
|
* Class Reader
|
||||||
* @package Kiri\Kiri\Core
|
* @package Kiri\Core
|
||||||
*/
|
*/
|
||||||
class Reader
|
class Reader
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ use Exception;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Str
|
* Class Str
|
||||||
* @package Kiri\Kiri\Core
|
* @package Kiri\Core
|
||||||
*/
|
*/
|
||||||
class Str
|
class Str
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ use Exception;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Xml
|
* Class Xml
|
||||||
* @package Kiri\Kiri\Core
|
* @package Kiri\Core
|
||||||
*/
|
*/
|
||||||
class Xml
|
class Xml
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,452 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Created by PhpStorm.
|
|
||||||
* User: whwyy
|
|
||||||
* Date: 2018/4/24 0024
|
|
||||||
* Time: 17:27
|
|
||||||
*/
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Kiri\Di;
|
|
||||||
|
|
||||||
use Kiri\Abstracts\Component;
|
|
||||||
use Note\Inject;
|
|
||||||
use Closure;
|
|
||||||
use Exception;
|
|
||||||
use Kiri\Abstracts\Logger;
|
|
||||||
use Kiri\Kiri;
|
|
||||||
use Psr\Log\LoggerInterface;
|
|
||||||
use ReflectionClass;
|
|
||||||
use ReflectionException;
|
|
||||||
use ReflectionFunction;
|
|
||||||
use ReflectionMethod;
|
|
||||||
use ReflectionProperty;
|
|
||||||
use Psr\Container\ContainerInterface;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class Container
|
|
||||||
* @package Kiri\Di
|
|
||||||
*/
|
|
||||||
class Container implements ContainerInterface
|
|
||||||
{
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var array
|
|
||||||
*
|
|
||||||
* instance class by className
|
|
||||||
*/
|
|
||||||
private array $_singletons = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var ReflectionMethod[]
|
|
||||||
*
|
|
||||||
* class new instance construct parameter
|
|
||||||
*/
|
|
||||||
private array $_constructs = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var array
|
|
||||||
*
|
|
||||||
* implements \ReflectClass
|
|
||||||
*/
|
|
||||||
private array $_reflection = [];
|
|
||||||
|
|
||||||
|
|
||||||
/** @var array */
|
|
||||||
private array $_parameters = [];
|
|
||||||
|
|
||||||
|
|
||||||
/** @var array|string[] */
|
|
||||||
private array $_interfaces = [
|
|
||||||
LoggerInterface::class => Logger::class
|
|
||||||
];
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $id
|
|
||||||
* @return mixed
|
|
||||||
* @throws
|
|
||||||
*/
|
|
||||||
public function get(string $id): mixed
|
|
||||||
{
|
|
||||||
return $this->make($id, [], []);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $class
|
|
||||||
* @param array $constrict
|
|
||||||
* @param array $config
|
|
||||||
* @return mixed
|
|
||||||
* @throws ReflectionException
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public function make($class, array $constrict = [], array $config = []): mixed
|
|
||||||
{
|
|
||||||
if ($this->isInterface($class)) {
|
|
||||||
$class = $this->_interfaces[$class];
|
|
||||||
}
|
|
||||||
if (!isset($this->_singletons[$class])) {
|
|
||||||
$this->_singletons[$class] = $this->resolve($class, $constrict, $config);
|
|
||||||
}
|
|
||||||
return $this->_singletons[$class];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $interface
|
|
||||||
* @param string $class
|
|
||||||
*/
|
|
||||||
public function mapping(string $interface, string $class)
|
|
||||||
{
|
|
||||||
$this->_interfaces[$interface] = $class;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $class
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function isInterface($class): bool
|
|
||||||
{
|
|
||||||
$reflect = $this->getReflect($class);
|
|
||||||
if ($reflect->isInterface()) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $interface
|
|
||||||
* @param $object
|
|
||||||
*/
|
|
||||||
public function setBindings(string $interface, $object)
|
|
||||||
{
|
|
||||||
if (is_string($object)) {
|
|
||||||
$this->_interfaces[$interface] = $object;
|
|
||||||
} else {
|
|
||||||
$className = get_class($object);
|
|
||||||
$this->_interfaces[$interface] = $className;
|
|
||||||
$this->_singletons[$className] = $object;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $class
|
|
||||||
* @param array $constrict
|
|
||||||
* @param array $config
|
|
||||||
* @return object
|
|
||||||
* @throws
|
|
||||||
*/
|
|
||||||
public function create($class, array $constrict = [], array $config = []): object
|
|
||||||
{
|
|
||||||
return $this->resolve($class, $constrict, $config);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $class
|
|
||||||
* @param $constrict
|
|
||||||
* @param $config
|
|
||||||
*
|
|
||||||
* @return object
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
private function resolve($class, $constrict, $config): object
|
|
||||||
{
|
|
||||||
$reflect = $this->resolveDependencies($class);
|
|
||||||
if (!$reflect->isInstantiable()) {
|
|
||||||
throw new ReflectionException('Class ' . $class . ' cannot be instantiated');
|
|
||||||
}
|
|
||||||
|
|
||||||
$object = $this->newInstance($reflect, $constrict);
|
|
||||||
|
|
||||||
$this->propertyInject($reflect, $object);
|
|
||||||
|
|
||||||
return $this->onAfterInit($object, $config);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ReflectionClass $reflect
|
|
||||||
* @param $dependencies
|
|
||||||
* @return object
|
|
||||||
* @throws ReflectionException
|
|
||||||
*/
|
|
||||||
private function newInstance(ReflectionClass $reflect, $dependencies): object
|
|
||||||
{
|
|
||||||
if (!isset($this->_constructs[$reflect->getName()])) {
|
|
||||||
return $reflect->newInstance();
|
|
||||||
}
|
|
||||||
$construct = $this->_constructs[$reflect->getName()];
|
|
||||||
if ($construct->getNumberOfParameters() < 1) {
|
|
||||||
return $reflect->newInstance();
|
|
||||||
}
|
|
||||||
$parameters = $this->mergeParam($this->resolveMethodParameters($construct), $dependencies);
|
|
||||||
return $reflect->newInstanceArgs($parameters);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ReflectionClass $reflect
|
|
||||||
* @param $object
|
|
||||||
* @return mixed
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public function propertyInject(ReflectionClass $reflect, $object): mixed
|
|
||||||
{
|
|
||||||
foreach (NoteManager::getPropertyNote($reflect) as $property => $inject) {
|
|
||||||
/** @var Inject $inject */
|
|
||||||
$inject->execute($object, $property);
|
|
||||||
}
|
|
||||||
return $object;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $className
|
|
||||||
* @param $method
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function getMethodAttribute($className, $method = null): array
|
|
||||||
{
|
|
||||||
$methods = NoteManager::getMethodNote($this->getReflect($className));
|
|
||||||
if (!empty($method)) {
|
|
||||||
return $methods[$method] ?? [];
|
|
||||||
}
|
|
||||||
return $methods;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $class
|
|
||||||
* @param string|null $property
|
|
||||||
* @return ReflectionProperty|ReflectionProperty[]|null
|
|
||||||
*/
|
|
||||||
public function getClassReflectionProperty(string $class, string $property = null): ReflectionProperty|null|array
|
|
||||||
{
|
|
||||||
$lists = NoteManager::getProperty($this->getReflect($class));
|
|
||||||
if (empty($lists)) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
if (!empty($property)) {
|
|
||||||
return $lists[$property] ?? null;
|
|
||||||
}
|
|
||||||
return $lists;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $object
|
|
||||||
* @param $config
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
private function onAfterInit($object, $config): mixed
|
|
||||||
{
|
|
||||||
Kiri::configure($object, $config);
|
|
||||||
if (method_exists($object, 'init') && is_callable([$object, 'init'])) {
|
|
||||||
call_user_func([$object, 'init']);
|
|
||||||
}
|
|
||||||
return $object;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $class
|
|
||||||
* @return ReflectionClass
|
|
||||||
*/
|
|
||||||
private function resolveDependencies($class): ReflectionClass
|
|
||||||
{
|
|
||||||
if (isset($this->_reflection[$class])) {
|
|
||||||
return $this->_reflection[$class];
|
|
||||||
}
|
|
||||||
$reflect = new ReflectionClass($class);
|
|
||||||
if ($reflect->isAbstract() || $reflect->isTrait() || $reflect->isInterface()) {
|
|
||||||
return $this->_reflection[$class] = $reflect;
|
|
||||||
}
|
|
||||||
$construct = NoteManager::resolveTarget($reflect);
|
|
||||||
if (!empty($construct) && $construct->getNumberOfParameters() > 0) {
|
|
||||||
$this->_constructs[$class] = $construct;
|
|
||||||
}
|
|
||||||
return $this->_reflection[$class] = $reflect;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ReflectionClass|string $class
|
|
||||||
* @return ReflectionMethod[]
|
|
||||||
* @throws ReflectionException
|
|
||||||
*/
|
|
||||||
public function getReflectMethods(ReflectionClass|string $class): array
|
|
||||||
{
|
|
||||||
if (is_string($class)) {
|
|
||||||
$class = $this->getReflect($class);
|
|
||||||
}
|
|
||||||
return NoteManager::getMethods($class);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ReflectionClass|string $class
|
|
||||||
* @param string $method
|
|
||||||
* @return ReflectionMethod|null
|
|
||||||
* @throws ReflectionException
|
|
||||||
*/
|
|
||||||
public function getReflectMethod(ReflectionClass|string $class, string $method): ?ReflectionMethod
|
|
||||||
{
|
|
||||||
return $this->getReflectMethods($class)[$method] ?? null;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $className
|
|
||||||
* @param string $method
|
|
||||||
* @return array|null
|
|
||||||
* @throws ReflectionException
|
|
||||||
*/
|
|
||||||
public function getMethodParameters(string $className, string $method): ?array
|
|
||||||
{
|
|
||||||
if (isset($this->_parameters[$className]) && isset($this->_parameters[$className][$method])) {
|
|
||||||
return $this->_parameters[$className][$method];
|
|
||||||
}
|
|
||||||
$reflectMethod = $this->getReflectMethod($this->getReflect($className), $method);
|
|
||||||
if (!($reflectMethod instanceof ReflectionMethod)) {
|
|
||||||
throw new ReflectionException("Class does not have a function $className::$method");
|
|
||||||
}
|
|
||||||
$className = $reflectMethod->getDeclaringClass()->getName();
|
|
||||||
if (isset($this->_parameters[$className]) && isset($this->_parameters[$className][$reflectMethod->getName()])) {
|
|
||||||
return $this->_parameters[$className][$reflectMethod->getName()];
|
|
||||||
}
|
|
||||||
return $this->setParameters($className, $reflectMethod->getName(), $this->resolveMethodParameters($reflectMethod));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $class
|
|
||||||
* @param $method
|
|
||||||
* @param $parameters
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
private function setParameters($class, $method, $parameters): mixed
|
|
||||||
{
|
|
||||||
if (!isset($this->_parameters[$class])) {
|
|
||||||
$this->_parameters[$class] = [];
|
|
||||||
}
|
|
||||||
return $this->_parameters[$class][$method] = $parameters;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param Closure $reflectionMethod
|
|
||||||
* @return array
|
|
||||||
* @throws ReflectionException
|
|
||||||
*/
|
|
||||||
public function getFunctionParameters(Closure $reflectionMethod): array
|
|
||||||
{
|
|
||||||
return $this->resolveMethodParameters(new ReflectionFunction($reflectionMethod));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ReflectionMethod|ReflectionFunction $reflectionMethod
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
private function resolveMethodParameters(ReflectionMethod|ReflectionFunction $reflectionMethod): array
|
|
||||||
{
|
|
||||||
if ($reflectionMethod->getNumberOfParameters() < 1) {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
$params = [];
|
|
||||||
foreach ($reflectionMethod->getParameters() as $key => $parameter) {
|
|
||||||
if ($parameter->isDefaultValueAvailable()) {
|
|
||||||
$params[$key] = $parameter->getDefaultValue();
|
|
||||||
} else if ($parameter->getType() === null) {
|
|
||||||
$params[$key] = $parameter->getType();
|
|
||||||
} else {
|
|
||||||
$type = $parameter->getType()->getName();
|
|
||||||
if (is_string($type) && class_exists($type) || isset($this->_interfaces[$type])) {
|
|
||||||
$type = Kiri::getDi()->get($type);
|
|
||||||
}
|
|
||||||
$params[$key] = match ($parameter->getType()) {
|
|
||||||
'string' => '',
|
|
||||||
'int', 'float' => 0,
|
|
||||||
'', null, 'object', 'mixed' => NULL,
|
|
||||||
'bool' => false,
|
|
||||||
default => $type
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return $params;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $class
|
|
||||||
* @return ReflectionClass|null
|
|
||||||
*/
|
|
||||||
public function getReflect($class): ?ReflectionClass
|
|
||||||
{
|
|
||||||
if (!isset($this->_reflection[$class])) {
|
|
||||||
return $this->resolveDependencies($class);
|
|
||||||
}
|
|
||||||
return $this->_reflection[$class];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $class
|
|
||||||
*/
|
|
||||||
public function unset($class)
|
|
||||||
{
|
|
||||||
if (is_array($class) && isset($class['class'])) {
|
|
||||||
$class = $class['class'];
|
|
||||||
} else if (is_object($class)) {
|
|
||||||
$class = $class::class;
|
|
||||||
}
|
|
||||||
unset(
|
|
||||||
$this->_reflection[$class], $this->_singletons[$class], $this->_constructs[$class]
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return $this
|
|
||||||
*/
|
|
||||||
public function flush(): static
|
|
||||||
{
|
|
||||||
$this->_reflection = [];
|
|
||||||
$this->_singletons = [];
|
|
||||||
$this->_constructs = [];
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $old
|
|
||||||
* @param $newParam
|
|
||||||
*
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
private function mergeParam($old, $newParam): array
|
|
||||||
{
|
|
||||||
if (empty($old)) {
|
|
||||||
return $newParam;
|
|
||||||
} else if (empty($newParam)) {
|
|
||||||
return $old;
|
|
||||||
}
|
|
||||||
foreach ($newParam as $key => $val) {
|
|
||||||
$old[$key] = $val;
|
|
||||||
}
|
|
||||||
return $old;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $id
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function has(string $id): bool
|
|
||||||
{
|
|
||||||
return isset($this->_singletons[$id]) || isset($this->_interfaces[$id]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,88 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Kiri\Di;
|
|
||||||
|
|
||||||
use Kiri\Abstracts\Component;
|
|
||||||
use Kiri\Kiri;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 服务定位器
|
|
||||||
*/
|
|
||||||
class LocalService extends Component
|
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
private array $_components = [];
|
|
||||||
|
|
||||||
|
|
||||||
private array $_definition = [];
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $name
|
|
||||||
* @param $define
|
|
||||||
*/
|
|
||||||
public function set($name, $define)
|
|
||||||
{
|
|
||||||
unset($this->_components[$name]);
|
|
||||||
|
|
||||||
$this->_definition[$name] = $define;
|
|
||||||
if (is_object($define) || $define instanceof \Closure) {
|
|
||||||
$this->_components[$name] = $define;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @throws \Exception
|
|
||||||
*/
|
|
||||||
public function get(string $name, $throwException = true)
|
|
||||||
{
|
|
||||||
if (isset($this->_components[$name])) {
|
|
||||||
return $this->_components[$name];
|
|
||||||
}
|
|
||||||
if (isset($this->_definition[$name])) {
|
|
||||||
$definition = $this->_definition[$name];
|
|
||||||
if (is_object($definition) && !$definition instanceof \Closure) {
|
|
||||||
return $this->_components[$name] = $definition;
|
|
||||||
}
|
|
||||||
return $this->_components[$name] = Kiri::createObject($definition);
|
|
||||||
} else if ($throwException) {
|
|
||||||
throw new \Exception("Unknown component ID: $name");
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param array $components
|
|
||||||
*/
|
|
||||||
public function setComponents(array $components)
|
|
||||||
{
|
|
||||||
foreach ($components as $name => $component) {
|
|
||||||
$this->set($name, $component);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $id
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function has($id): bool
|
|
||||||
{
|
|
||||||
return isset($this->_components[$id]) || isset($this->_definition[$id]);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $id
|
|
||||||
*/
|
|
||||||
public function remove($id): void
|
|
||||||
{
|
|
||||||
unset($this->_components[$id], $this->_definition[$id]);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,303 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Kiri\Di;
|
|
||||||
|
|
||||||
use JetBrains\PhpStorm\Pure;
|
|
||||||
use ReflectionAttribute;
|
|
||||||
use ReflectionClass;
|
|
||||||
use ReflectionProperty;
|
|
||||||
|
|
||||||
class NoteManager
|
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
private static array $_classTarget = [];
|
|
||||||
private static array $_classMethodNote = [];
|
|
||||||
private static array $_classMethod = [];
|
|
||||||
private static array $_classPropertyNote = [];
|
|
||||||
private static array $_classProperty = [];
|
|
||||||
private static array $_mapping = [];
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public static function clear()
|
|
||||||
{
|
|
||||||
static::$_classTarget = [];
|
|
||||||
static::$_classMethodNote = [];
|
|
||||||
static::$_classMethod = [];
|
|
||||||
static::$_classPropertyNote = [];
|
|
||||||
static::$_classProperty = [];
|
|
||||||
static::$_mapping = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ReflectionClass $class
|
|
||||||
*/
|
|
||||||
public static function setTargetNote(ReflectionClass $class)
|
|
||||||
{
|
|
||||||
$className = $class->getName();
|
|
||||||
if (!isset(static::$_classTarget[$className])) {
|
|
||||||
static::$_classTarget[$className] = [];
|
|
||||||
}
|
|
||||||
foreach ($class->getAttributes() as $attribute) {
|
|
||||||
if (!class_exists($attribute->getName())) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
$instance = $attribute->newInstance();
|
|
||||||
|
|
||||||
static::$_classTarget[$className][] = $instance;
|
|
||||||
|
|
||||||
self::setMappingClass($attribute, $className);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ReflectionAttribute $attribute
|
|
||||||
* @param string $class
|
|
||||||
*/
|
|
||||||
public static function setMappingClass(ReflectionAttribute $attribute, string $class)
|
|
||||||
{
|
|
||||||
if (!isset(static::$_mapping[$attribute->getName()])) {
|
|
||||||
static::$_mapping[$attribute->getName()] = [];
|
|
||||||
}
|
|
||||||
if (!isset(static::$_mapping[$attribute->getName()][$class])) {
|
|
||||||
static::$_mapping[$attribute->getName()][$class] = [];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ReflectionAttribute $attribute
|
|
||||||
* @param string $class
|
|
||||||
* @param string $method
|
|
||||||
* @param mixed $instance
|
|
||||||
*/
|
|
||||||
public static function setMappingMethod(ReflectionAttribute $attribute, string $class, string $method, mixed $instance)
|
|
||||||
{
|
|
||||||
self::setMappingClass($attribute, $class);
|
|
||||||
|
|
||||||
if (!isset(static::$_mapping[$attribute->getName()][$class]['method'])) {
|
|
||||||
static::$_mapping[$attribute->getName()][$class]['method'] = [];
|
|
||||||
}
|
|
||||||
static::$_mapping[$attribute->getName()][$class]['method'][] = [$method => $instance];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ReflectionAttribute $attribute
|
|
||||||
* @param string $class
|
|
||||||
* @param string $property
|
|
||||||
* @param $instance
|
|
||||||
*/
|
|
||||||
public static function setMappingProperty(ReflectionAttribute $attribute, string $class, string $property, $instance)
|
|
||||||
{
|
|
||||||
self::setMappingClass($attribute, $class);
|
|
||||||
|
|
||||||
$mapping = static::$_mapping[$attribute->getName()][$class];
|
|
||||||
if (!isset($mapping['property'])) {
|
|
||||||
$mapping['property'] = [];
|
|
||||||
}
|
|
||||||
$mapping['property'][] = [$property => $instance];
|
|
||||||
static::$_mapping[$attribute->getName()][$class] = $mapping;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param mixed $class
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public static function getTargetNote(mixed $class): array
|
|
||||||
{
|
|
||||||
if (!is_string($class)) {
|
|
||||||
$class = $class::class;
|
|
||||||
}
|
|
||||||
return static::$_classTarget[$class] ?? [];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ReflectionClass $class
|
|
||||||
*/
|
|
||||||
public static function setMethodNote(ReflectionClass $class)
|
|
||||||
{
|
|
||||||
$className = $class->getName();
|
|
||||||
static::$_classMethodNote[$className] = static::$_classMethod[$className] = [];
|
|
||||||
foreach ($class->getMethods() as $ReflectionMethod) {
|
|
||||||
static::$_classMethod[$className][$ReflectionMethod->getName()] = $ReflectionMethod;
|
|
||||||
static::$_classMethodNote[$className][$ReflectionMethod->getName()] = [];
|
|
||||||
foreach ($ReflectionMethod->getAttributes() as $attribute) {
|
|
||||||
if (!class_exists($attribute->getName())) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
$instance = $attribute->newInstance();
|
|
||||||
|
|
||||||
static::$_classMethodNote[$className][$ReflectionMethod->getName()][] = $instance;
|
|
||||||
|
|
||||||
self::setMappingMethod($attribute, $className, $ReflectionMethod->getName(), $instance);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $class
|
|
||||||
* @param string $method
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public static function hasMethod(string $class, string $method): bool
|
|
||||||
{
|
|
||||||
return isset(static::$_classMethod[$class]) && isset(static::$_classMethod[$class][$method]);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ReflectionClass $class
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
#[Pure] public static function getMethodNote(ReflectionClass $class): array
|
|
||||||
{
|
|
||||||
return static::$_classMethodNote[$class->getName()] ?? [];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param \ReflectionClass $reflect
|
|
||||||
* @return \ReflectionMethod|null
|
|
||||||
*/
|
|
||||||
public static function resolveTarget(ReflectionClass $reflect): ?\ReflectionMethod
|
|
||||||
{
|
|
||||||
NoteManager::setPropertyNote($reflect);
|
|
||||||
NoteManager::setTargetNote($reflect);
|
|
||||||
NoteManager::setMethodNote($reflect);
|
|
||||||
|
|
||||||
return $reflect->getConstructor();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ReflectionClass $class
|
|
||||||
*/
|
|
||||||
public static function setPropertyNote(ReflectionClass $class)
|
|
||||||
{
|
|
||||||
$className = $class->getName();
|
|
||||||
static::$_classProperty[$className] = static::$_classPropertyNote[$className] = [];
|
|
||||||
foreach ($class->getProperties(ReflectionProperty::IS_PRIVATE | ReflectionProperty::IS_PUBLIC |
|
|
||||||
ReflectionProperty::IS_PROTECTED) as $ReflectionMethod) {
|
|
||||||
static::$_classProperty[$className][$ReflectionMethod->getName()] = $ReflectionMethod;
|
|
||||||
foreach ($ReflectionMethod->getAttributes() as $attribute) {
|
|
||||||
if (!class_exists($attribute->getName())) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
$instance = $attribute->newInstance();
|
|
||||||
|
|
||||||
static::$_classPropertyNote[$className][$ReflectionMethod->getName()] = $instance;
|
|
||||||
|
|
||||||
self::setMappingProperty($attribute, $className, $ReflectionMethod->getName(), $instance);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $attribute
|
|
||||||
* @param string|null $class
|
|
||||||
* @return array[]
|
|
||||||
*/
|
|
||||||
public static function getAttributeTrees(string $attribute, string $class = null): array
|
|
||||||
{
|
|
||||||
$mapping = static::$_mapping[$attribute] ?? [];
|
|
||||||
if (empty($mapping) || empty($class)) {
|
|
||||||
return $mapping;
|
|
||||||
}
|
|
||||||
return $mapping[$class] ?? [];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $attribute
|
|
||||||
* @param string $class
|
|
||||||
* @param string|null $method
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public static function getSpecify_annotation(string $attribute, string $class, string $method = null): mixed
|
|
||||||
{
|
|
||||||
$class = self::getAttributeTrees($attribute, $class);
|
|
||||||
if (empty($class) || !isset($class['method'])) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
if (empty($method)) {
|
|
||||||
return $class['method'];
|
|
||||||
}
|
|
||||||
foreach ($class['method'] as $value) {
|
|
||||||
$key = key($value);
|
|
||||||
if ($method == $key) {
|
|
||||||
return $value[$key];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $attribute
|
|
||||||
* @param string $class
|
|
||||||
* @param string $method
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
public static function getPropertyByNote(string $attribute, string $class, string $method): mixed
|
|
||||||
{
|
|
||||||
$class = self::getAttributeTrees($attribute, $class);
|
|
||||||
if (empty($class) || !isset($class['property'])) {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
foreach ($class['property'] as $value) {
|
|
||||||
$key = key($value);
|
|
||||||
if ($method == $key) {
|
|
||||||
return $value[$key];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ReflectionClass|string $class
|
|
||||||
* @return array
|
|
||||||
* @throws \ReflectionException
|
|
||||||
*/
|
|
||||||
public static function getMethods(ReflectionClass|string $class): array
|
|
||||||
{
|
|
||||||
if (is_string($class)) {
|
|
||||||
$class = self::getReflect($class);
|
|
||||||
}
|
|
||||||
return static::$_classMethod[$class->getName()] ?? [];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ReflectionClass $class
|
|
||||||
* @return ReflectionProperty[]
|
|
||||||
*/
|
|
||||||
#[Pure] public static function getProperty(ReflectionClass $class): array
|
|
||||||
{
|
|
||||||
return static::$_classProperty[$class->getName()] ?? [];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param ReflectionClass $class
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
#[Pure] public static function getPropertyNote(ReflectionClass $class): array
|
|
||||||
{
|
|
||||||
return static::$_classPropertyNote[$class->getName()] ?? [];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -5,7 +5,7 @@ namespace Kiri;
|
|||||||
|
|
||||||
|
|
||||||
use JetBrains\PhpStorm\Pure;
|
use JetBrains\PhpStorm\Pure;
|
||||||
|
use Kiri;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Environmental
|
* Class Environmental
|
||||||
|
|||||||
@@ -10,17 +10,17 @@ declare(strict_types=1);
|
|||||||
namespace Kiri\Error;
|
namespace Kiri\Error;
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Http\Handler\Formatter\IFormatter;
|
use Kiri\Message\Handler\Formatter\IFormatter;
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
use Kiri\Events\EventDispatch;
|
use Kiri\Events\EventDispatch;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
use Http\Events\OnAfterRequest;
|
use Kiri\Message\Events\OnAfterRequest;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class ErrorHandler
|
* Class ErrorHandler
|
||||||
*
|
*
|
||||||
* @package Kiri\Kiri\Base
|
* @package Kiri\Base
|
||||||
* @property-read $asError
|
* @property-read $asError
|
||||||
*/
|
*/
|
||||||
class ErrorHandler extends Component implements ErrorInterface
|
class ErrorHandler extends Component implements ErrorInterface
|
||||||
@@ -36,13 +36,8 @@ class ErrorHandler extends Component implements ErrorInterface
|
|||||||
*/
|
*/
|
||||||
public function register()
|
public function register()
|
||||||
{
|
{
|
||||||
// ini_set('display_errors', '1');
|
|
||||||
set_exception_handler([$this, 'exceptionHandler']);
|
set_exception_handler([$this, 'exceptionHandler']);
|
||||||
if (defined('HHVM_VERSION')) {
|
|
||||||
set_error_handler([$this, 'errorHandler']);
|
set_error_handler([$this, 'errorHandler']);
|
||||||
} else {
|
|
||||||
set_error_handler([$this, 'errorHandler']);
|
|
||||||
}
|
|
||||||
register_shutdown_function([$this, 'shutdown']);
|
register_shutdown_function([$this, 'shutdown']);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -118,8 +113,6 @@ class ErrorHandler extends Component implements ErrorInterface
|
|||||||
{
|
{
|
||||||
$path = ['file' => $file, 'line' => $line];
|
$path = ['file' => $file, 'line' => $line];
|
||||||
|
|
||||||
var_dump(func_get_args());
|
|
||||||
|
|
||||||
$data = Json::to($code, $this->category . ': ' . $message, $path);
|
$data = Json::to($code, $this->category . ': ' . $message, $path);
|
||||||
|
|
||||||
write($data, $this->category);
|
write($data, $this->category);
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ namespace Kiri\Error;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Interface ErrorInterface
|
* Interface ErrorInterface
|
||||||
* @package Kiri\Kiri\Error
|
* @package Kiri\Error
|
||||||
*/
|
*/
|
||||||
interface ErrorInterface
|
interface ErrorInterface
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -9,17 +9,17 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace Kiri\Error;
|
namespace Kiri\Error;
|
||||||
|
|
||||||
use Note\Inject;
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
use Kiri\Annotation\Inject;
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
use Throwable;
|
use Throwable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Logger
|
* Class Logger
|
||||||
* @package Kiri\Kiri\Error
|
* @package Kiri\Error
|
||||||
* @mixin \Kiri\Abstracts\Logger
|
* @mixin \Kiri\Abstracts\Logger
|
||||||
*/
|
*/
|
||||||
class Logger extends Component
|
class Logger extends Component
|
||||||
@@ -46,9 +46,21 @@ class Logger extends Component
|
|||||||
*/
|
*/
|
||||||
public function getLastError(string $application = 'app'): string
|
public function getLastError(string $application = 'app'): string
|
||||||
{
|
{
|
||||||
return 'Unknown error.';
|
return $this->logs[$application] ?? 'Unknown error.';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $message
|
||||||
|
* @param $method
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function fail($message, $method)
|
||||||
|
{
|
||||||
|
$this->logs[$method] = $message;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $messages
|
* @param string $messages
|
||||||
* @param string $method
|
* @param string $method
|
||||||
|
|||||||
@@ -5,10 +5,10 @@ namespace Kiri\Error;
|
|||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Http\Aspect\OnAspectInterface;
|
use Kiri\Message\Aspect\OnAspectInterface;
|
||||||
use Http\Aspect\OnJoinPointInterface;
|
use Kiri\Message\Aspect\OnJoinPointInterface;
|
||||||
use Http\Constrict\RequestInterface;
|
use Kiri\Message\Constrict\RequestInterface;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -7,8 +7,10 @@ namespace Kiri\Error;
|
|||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
use Kiri\Exception\ComponentException;
|
use Kiri\Exception\ComponentException;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
use Server\Abstracts\BaseProcess;
|
use Kiri\Server\Abstracts\BaseProcess;
|
||||||
|
use Kiri\Server\Broadcast\OnBroadcastInterface;
|
||||||
|
use Psr\Log\LoggerInterface;
|
||||||
use Swoole\Coroutine;
|
use Swoole\Coroutine;
|
||||||
use Swoole\Process;
|
use Swoole\Process;
|
||||||
|
|
||||||
@@ -34,6 +36,17 @@ class LoggerProcess extends BaseProcess
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param OnBroadcastInterface $message
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function onBroadcast(OnBroadcastInterface $message): void
|
||||||
|
{
|
||||||
|
$logger = Kiri::getDi()->get(LoggerInterface::class);
|
||||||
|
$logger->debug($message->data . '::' . static::class);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Process $process
|
* @param Process $process
|
||||||
* @throws ComponentException
|
* @throws ComponentException
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ namespace Kiri;
|
|||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
|
use Kiri;
|
||||||
/**
|
/**
|
||||||
* Class Event
|
* Class Event
|
||||||
* @package Kiri
|
* @package Kiri
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ use Throwable;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class ComponentException
|
* Class ComponentException
|
||||||
* @package Kiri\Kiri\Exception
|
* @package Kiri\Exception
|
||||||
*/
|
*/
|
||||||
class ComponentException extends \Exception
|
class ComponentException extends \Exception
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ use Throwable;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class NotFindClassException
|
* Class NotFindClassException
|
||||||
* @package Kiri\Kiri\Exception
|
* @package Kiri\Exception
|
||||||
*/
|
*/
|
||||||
class NotFindClassException extends \Exception
|
class NotFindClassException extends \Exception
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ use Throwable;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class NotFindClassException
|
* Class NotFindClassException
|
||||||
* @package Kiri\Kiri\Exception
|
* @package Kiri\Exception
|
||||||
*/
|
*/
|
||||||
class NotFindPropertyException extends \Exception
|
class NotFindPropertyException extends \Exception
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,18 +3,17 @@
|
|||||||
namespace Kiri\FileListen;
|
namespace Kiri\FileListen;
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
|
use Kiri;
|
||||||
use Kiri\Abstracts\Config;
|
use Kiri\Abstracts\Config;
|
||||||
|
use Kiri\Annotation\Inject;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
use Kiri\Error\Logger;
|
use Kiri\Error\Logger;
|
||||||
use Kiri\Exception\ConfigException;
|
use Kiri\Exception\ConfigException;
|
||||||
use Kiri\Kiri;
|
|
||||||
use Note\Inject;
|
|
||||||
use Swoole\Coroutine;
|
use Swoole\Coroutine;
|
||||||
use Swoole\Process;
|
use Swoole\Process;
|
||||||
use Swoole\Timer;
|
use Swoole\Timer;
|
||||||
use Symfony\Component\Console\Command\Command;
|
use Symfony\Component\Console\Command\Command;
|
||||||
use Symfony\Component\Console\Input\InputInterface;
|
use Symfony\Component\Console\Input\InputInterface;
|
||||||
use Symfony\Component\Console\Input\InputOption;
|
|
||||||
use Symfony\Component\Console\Output\OutputInterface;
|
use Symfony\Component\Console\Output\OutputInterface;
|
||||||
|
|
||||||
|
|
||||||
@@ -61,7 +60,6 @@ class HotReload extends Command
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws ConfigException
|
* @throws ConfigException
|
||||||
* @throws \ReflectionException
|
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
protected function initCore()
|
protected function initCore()
|
||||||
@@ -176,7 +174,6 @@ class HotReload extends Command
|
|||||||
Timer::clearAll();
|
Timer::clearAll();
|
||||||
$this->driver->clear();
|
$this->driver->clear();
|
||||||
$this->stopServer();
|
$this->stopServer();
|
||||||
$this->stopManager();
|
|
||||||
while ($ret = Process::wait(TRUE)) {
|
while ($ret = Process::wait(TRUE)) {
|
||||||
echo "PID={$ret['pid']}\n";
|
echo "PID={$ret['pid']}\n";
|
||||||
sleep(1);
|
sleep(1);
|
||||||
@@ -193,14 +190,6 @@ class HotReload extends Command
|
|||||||
if (!empty($pid) && Process::kill($pid, 0)) {
|
if (!empty($pid) && Process::kill($pid, 0)) {
|
||||||
Process::kill($pid, SIGTERM);
|
Process::kill($pid, SIGTERM);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
protected function stopManager()
|
|
||||||
{
|
|
||||||
if ($this->process && Process::kill($this->process->pid, 0)) {
|
if ($this->process && Process::kill($this->process->pid, 0)) {
|
||||||
Process::kill($this->process->pid) && Process::wait(TRUE);
|
Process::kill($this->process->pid) && Process::wait(TRUE);
|
||||||
}
|
}
|
||||||
@@ -212,24 +201,24 @@ class HotReload extends Command
|
|||||||
*
|
*
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function trigger_reload()
|
public function trigger_reload(string $path = '')
|
||||||
{
|
{
|
||||||
if ($this->int == 1) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
$this->int = 1;
|
|
||||||
$this->logger->warning('change reload');
|
$this->logger->warning('change reload');
|
||||||
|
if (!empty($path) && str_starts_with($path, CONTROLLER_PATH)) {
|
||||||
|
$pid = file_get_contents(storage('.swoole.pid'));
|
||||||
|
if (!empty($pid) && Process::kill($pid, 0)) {
|
||||||
|
Process::kill($pid, SIGUSR1);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$this->int = 1;
|
||||||
$this->stopServer();
|
$this->stopServer();
|
||||||
$this->stopManager();
|
|
||||||
|
|
||||||
$this->process = new Process(function (Process $process) {
|
$this->process = new Process(function (Process $process) {
|
||||||
$process->exec(PHP_BINARY, [APP_PATH . "kiri.php", "sw:server", "restart"]);
|
$process->exec(PHP_BINARY, [APP_PATH . "kiri.php", "sw:server", "start"]);
|
||||||
});
|
});
|
||||||
|
|
||||||
$this->process->start();
|
$this->process->start();
|
||||||
$this->int = -1;
|
$this->int = -1;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -54,6 +54,7 @@ class Inotify
|
|||||||
if (!is_dir($dir)) continue;
|
if (!is_dir($dir)) continue;
|
||||||
$this->watch($dir);
|
$this->watch($dir);
|
||||||
}
|
}
|
||||||
|
$this->process->int = -1;
|
||||||
Event::add($this->inotify, [$this, 'check']);
|
Event::add($this->inotify, [$this, 'check']);
|
||||||
Event::wait();
|
Event::wait();
|
||||||
}
|
}
|
||||||
@@ -84,9 +85,13 @@ class Inotify
|
|||||||
if (!in_array($ev['mask'], $LISTEN_TYPE)) {
|
if (!in_array($ev['mask'], $LISTEN_TYPE)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$search = array_search($ev['wd'], $this->watchFiles);
|
||||||
|
|
||||||
//非重启类型
|
//非重启类型
|
||||||
if (str_ends_with($ev['name'], '.php')) {
|
if (str_ends_with($ev['name'], '.php')) {
|
||||||
Timer::after(3000, fn() => $this->reload());
|
|
||||||
|
Timer::after(3000, fn() => $this->reload($search));
|
||||||
$this->isReloading = TRUE;
|
$this->isReloading = TRUE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -95,14 +100,15 @@ class Inotify
|
|||||||
/**
|
/**
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function reload()
|
public function reload($path)
|
||||||
{
|
{
|
||||||
$this->process->trigger_reload();
|
$this->process->trigger_reload($path);
|
||||||
|
$this->process->int = -1;
|
||||||
|
|
||||||
$this->clearWatch();
|
$this->clearWatch();
|
||||||
foreach ($this->dirs as $root) {
|
foreach ($this->dirs as $root) {
|
||||||
$this->watch($root);
|
$this->watch($root);
|
||||||
}
|
}
|
||||||
$this->process->int = -1;
|
|
||||||
$this->isReloading = FALSE;
|
$this->isReloading = FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -113,11 +119,7 @@ class Inotify
|
|||||||
public function clearWatch()
|
public function clearWatch()
|
||||||
{
|
{
|
||||||
foreach ($this->watchFiles as $wd) {
|
foreach ($this->watchFiles as $wd) {
|
||||||
try {
|
|
||||||
@inotify_rm_watch($this->inotify, $wd);
|
@inotify_rm_watch($this->inotify, $wd);
|
||||||
} catch (\Throwable $exception) {
|
|
||||||
// logger()->addError($exception->getMessage(), 'throwable');
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
$this->watchFiles = [];
|
$this->watchFiles = [];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,6 @@
|
|||||||
namespace Kiri\FileListen;
|
namespace Kiri\FileListen;
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Swoole\Timer;
|
|
||||||
|
|
||||||
class Scaner
|
class Scaner
|
||||||
{
|
{
|
||||||
@@ -68,8 +67,11 @@ class Scaner
|
|||||||
}
|
}
|
||||||
if (is_file($value)) {
|
if (is_file($value)) {
|
||||||
if ($this->checkFile($value, $isReload)) {
|
if ($this->checkFile($value, $isReload)) {
|
||||||
Timer::after(2000, fn() => $this->timerReload());
|
|
||||||
$this->isReloading = TRUE;
|
$this->isReloading = TRUE;
|
||||||
|
|
||||||
|
sleep(2);
|
||||||
|
|
||||||
|
$this->timerReload($value);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -106,15 +108,16 @@ class Scaner
|
|||||||
/**
|
/**
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function timerReload()
|
public function timerReload($path)
|
||||||
{
|
{
|
||||||
$this->isReloading = TRUE;
|
$this->isReloading = TRUE;
|
||||||
$this->process->trigger_reload();
|
|
||||||
|
|
||||||
$this->process->int = -1;
|
$this->process->trigger_reload($path);
|
||||||
|
|
||||||
$this->loadDirs();
|
$this->loadDirs();
|
||||||
|
|
||||||
|
$this->process->int = -1;
|
||||||
|
|
||||||
$this->isReloading = FALSE;
|
$this->isReloading = FALSE;
|
||||||
$this->process->isReloadingOut = FALSE;
|
$this->process->isReloadingOut = FALSE;
|
||||||
|
|
||||||
|
|||||||
@@ -6,10 +6,10 @@ namespace Kiri\Pool;
|
|||||||
use Closure;
|
use Closure;
|
||||||
use Database\Mysql\PDO;
|
use Database\Mysql\PDO;
|
||||||
use Exception;
|
use Exception;
|
||||||
|
use Kiri;
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
use Kiri\Abstracts\Config;
|
use Kiri\Abstracts\Config;
|
||||||
use Kiri\Context;
|
use Kiri\Context;
|
||||||
use Kiri\Kiri;
|
|
||||||
use Swoole\Error;
|
use Swoole\Error;
|
||||||
use Throwable;
|
use Throwable;
|
||||||
|
|
||||||
@@ -118,6 +118,19 @@ class Connection extends Component
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $name
|
||||||
|
* @param PDO $PDO
|
||||||
|
* @return void
|
||||||
|
* @throws Kiri\Exception\ConfigException
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public function addItem(string $name, PDO $PDO)
|
||||||
|
{
|
||||||
|
$this->getPool()->push($name, $PDO);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $name
|
* @param $name
|
||||||
* @param $isMaster
|
* @param $isMaster
|
||||||
@@ -126,21 +139,24 @@ class Connection extends Component
|
|||||||
*/
|
*/
|
||||||
public function initConnections($name, $isMaster, $max)
|
public function initConnections($name, $isMaster, $max)
|
||||||
{
|
{
|
||||||
$this->getPool()->initConnections($name, $isMaster, $max);
|
$pool = $this->getPool();
|
||||||
|
$pool->initConnections($name, $isMaster, $max);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $coroutineName
|
* @param $coroutineName
|
||||||
* @param $isMaster
|
* @param $isMaster
|
||||||
|
* @param array $config
|
||||||
|
* @throws Kiri\Exception\ConfigException
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function release($coroutineName, $isMaster)
|
public function release($coroutineName, $isMaster, array $config)
|
||||||
{
|
{
|
||||||
$coroutineName = $this->name('Mysql:' . $coroutineName, $isMaster);
|
$coroutineName = $this->name('Mysql:' . $coroutineName, $isMaster);
|
||||||
/** @var PDO $client */
|
/** @var PDO $client */
|
||||||
if (!($client = Context::getContext($coroutineName)) instanceof PDO) {
|
if (!($client = Context::getContext($coroutineName)) instanceof PDO) {
|
||||||
return;
|
$client = call_user_func($this->create($coroutineName, $config));
|
||||||
}
|
}
|
||||||
if ($client->inTransaction()) {
|
if ($client->inTransaction()) {
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -41,11 +41,10 @@ class Pool extends Component
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Channel $channel
|
* @param Channel|SplQueue $channel
|
||||||
* @param $retain_number
|
* @param $retain_number
|
||||||
* @throws Exception
|
|
||||||
*/
|
*/
|
||||||
protected function pop(Channel $channel, $retain_number): void
|
protected function pop(Channel|SplQueue $channel, $retain_number): void
|
||||||
{
|
{
|
||||||
while ($channel->length() > $retain_number) {
|
while ($channel->length() > $retain_number) {
|
||||||
if (Context::inCoroutine()) {
|
if (Context::inCoroutine()) {
|
||||||
|
|||||||
@@ -10,11 +10,11 @@ use Exception;
|
|||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
use Kiri\Context;
|
use Kiri\Context;
|
||||||
use Kiri\Exception\ConfigException;
|
use Kiri\Exception\ConfigException;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class RedisClient
|
* Class RedisClient
|
||||||
* @package Kiri\Kiri\Pool
|
* @package Kiri\Pool
|
||||||
*/
|
*/
|
||||||
class Redis extends Component
|
class Redis extends Component
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ use Kiri\Abstracts\Input;
|
|||||||
use Symfony\Component\Console\Command\Command;
|
use Symfony\Component\Console\Command\Command;
|
||||||
use Symfony\Component\Console\Input\InputInterface;
|
use Symfony\Component\Console\Input\InputInterface;
|
||||||
use Symfony\Component\Console\Output\OutputInterface;
|
use Symfony\Component\Console\Output\OutputInterface;
|
||||||
|
use Kiri;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Runtime
|
* Class Runtime
|
||||||
@@ -44,7 +44,7 @@ class Runtime extends Command
|
|||||||
public function execute(InputInterface $input, OutputInterface $output): int
|
public function execute(InputInterface $input, OutputInterface $output): int
|
||||||
{
|
{
|
||||||
// TODO: Implement onHandler() method.
|
// TODO: Implement onHandler() method.
|
||||||
$annotation = Kiri::app()->getNote();
|
$annotation = Kiri::app()->getAnnotation();
|
||||||
|
|
||||||
$runtime = storage(static::CACHE_NAME);
|
$runtime = storage(static::CACHE_NAME);
|
||||||
$config = storage(static::CONFIG_NAME);
|
$config = storage(static::CONFIG_NAME);
|
||||||
|
|||||||
+1
-1
@@ -13,7 +13,7 @@ use Database\Connection;
|
|||||||
use Database\Db;
|
use Database\Db;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Cache\Redis;
|
use Kiri\Cache\Redis;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
use Symfony\Component\Console\Input\InputInterface;
|
use Symfony\Component\Console\Input\InputInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ namespace Gii;
|
|||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\Config;
|
use Kiri\Abstracts\Config;
|
||||||
use Kiri\Exception\ConfigException;
|
use Kiri\Exception\ConfigException;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
use Symfony\Component\Console\Command\Command;
|
use Symfony\Component\Console\Command\Command;
|
||||||
use Symfony\Component\Console\Input\InputArgument;
|
use Symfony\Component\Console\Input\InputArgument;
|
||||||
use Symfony\Component\Console\Input\InputInterface;
|
use Symfony\Component\Console\Input\InputInterface;
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ namespace Gii;
|
|||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use ReflectionException;
|
use ReflectionException;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class GiiController
|
* Class GiiController
|
||||||
@@ -65,14 +65,14 @@ namespace {$namespace};
|
|||||||
} else {
|
} else {
|
||||||
$import = "use Kiri;
|
$import = "use Kiri;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Note\Target;
|
use Kiri\Annotation\Target;
|
||||||
use Note\Route\Middleware;
|
use Kiri\Annotation\Route\Middleware;
|
||||||
use Note\Route\Route;
|
use Kiri\Annotation\Route\Route;
|
||||||
use Kiri\Core\Str;
|
use Kiri\Core\Str;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
use Http\Context\Request;
|
use Kiri\Message\Context\Request;
|
||||||
use Http\Context\Response;
|
use Kiri\Message\Context\Response;
|
||||||
use Http\Controller;
|
use Kiri\Message\Controller;
|
||||||
use JetBrains\PhpStorm\ArrayShape;
|
use JetBrains\PhpStorm\ArrayShape;
|
||||||
use {$model_namespace}\\{$managerName};
|
use {$model_namespace}\\{$managerName};
|
||||||
";
|
";
|
||||||
|
|||||||
@@ -51,8 +51,8 @@ interface ' . ucfirst($name) . 'RpcInterface
|
|||||||
namespace Rpc\Producers;
|
namespace Rpc\Producers;
|
||||||
|
|
||||||
|
|
||||||
use Note\Target;
|
use Kiri\Annotation\Target;
|
||||||
use Note\Mapping;
|
use Kiri\Annotation\Mapping;
|
||||||
use Rpc\\' . ucfirst($name) . 'RpcInterface;
|
use Rpc\\' . ucfirst($name) . 'RpcInterface;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Rpc\JsonRpcConsumers;
|
use Kiri\Rpc\JsonRpcConsumers;
|
||||||
@@ -86,9 +86,9 @@ class ' . ucfirst($name) . 'RpcService extends JsonRpcConsumers implements ' . u
|
|||||||
namespace Rpc\Consumers;
|
namespace Rpc\Consumers;
|
||||||
|
|
||||||
|
|
||||||
use Note\Target;
|
use Kiri\Annotation\Target;
|
||||||
use Kiri\Rpc\Note\JsonRpc;
|
use Kiri\Rpc\Annotation\JsonRpc;
|
||||||
use Http\Handler\Controller;
|
use Kiri\Message\Handler\Controller;
|
||||||
use Rpc\\' . ucfirst($name) . 'RpcInterface;
|
use Rpc\\' . ucfirst($name) . 'RpcInterface;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ namespace Gii;
|
|||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class GiiMiddleware
|
* Class GiiMiddleware
|
||||||
@@ -34,7 +34,7 @@ namespace App\Middleware;
|
|||||||
|
|
||||||
use Closure;
|
use Closure;
|
||||||
use Psr\Http\Server\MiddlewareInterface;
|
use Psr\Http\Server\MiddlewareInterface;
|
||||||
use Server\Constrict\RequestInterface;
|
use Kiri\Server\Constrict\RequestInterface;
|
||||||
|
|
||||||
';
|
';
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ use Database\Db;
|
|||||||
use Database\Model;
|
use Database\Model;
|
||||||
use Exception;
|
use Exception;
|
||||||
use ReflectionException;
|
use ReflectionException;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class GiiModel
|
* Class GiiModel
|
||||||
@@ -66,11 +66,11 @@ namespace ' . $namespace . ';
|
|||||||
$html .= $imports . PHP_EOL;
|
$html .= $imports . PHP_EOL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!str_contains($imports, 'Database\Note\Set')) {
|
if (!str_contains($imports, 'Database\Annotation\Set')) {
|
||||||
$html .= 'use Database\Note\Set;' . PHP_EOL;
|
$html .= 'use Database\Annotation\Set;' . PHP_EOL;
|
||||||
}
|
}
|
||||||
if (!str_contains($imports, 'Database\Note\Get')) {
|
if (!str_contains($imports, 'Database\Annotation\Get')) {
|
||||||
$html .= 'use Database\Note\Get;' . PHP_EOL;
|
$html .= 'use Database\Annotation\Get;' . PHP_EOL;
|
||||||
}
|
}
|
||||||
} catch (\Throwable $e) {
|
} catch (\Throwable $e) {
|
||||||
logger()->addError($e, 'throwable');
|
logger()->addError($e, 'throwable');
|
||||||
@@ -84,11 +84,11 @@ namespace ' . $namespace . ';
|
|||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Note\Target;
|
use Kiri\Annotation\Target;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
use Database\Connection;
|
use Database\Connection;
|
||||||
use Database\Note\Get;
|
use Database\Annotation\Get;
|
||||||
use Database\Note\Set;
|
use Database\Annotation\Set;
|
||||||
use Database\Relation;
|
use Database\Relation;
|
||||||
use Database\Model;
|
use Database\Model;
|
||||||
' . PHP_EOL;
|
' . PHP_EOL;
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ namespace Gii;
|
|||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\Providers;
|
use Kiri\Abstracts\Providers;
|
||||||
use Kiri\Application;
|
use Kiri\Application;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class DatabasesProviders
|
* Class DatabasesProviders
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ namespace Gii;
|
|||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class GiiRpcClient
|
* Class GiiRpcClient
|
||||||
@@ -36,13 +36,13 @@ class GiiRpcClient extends GiiBase
|
|||||||
|
|
||||||
namespace App\Client\Rpc;
|
namespace App\Client\Rpc;
|
||||||
|
|
||||||
use Note\Rpc\Consumer;
|
use Kiri\Annotation\Rpc\Consumer;
|
||||||
use Note\Rpc\RpcClient;
|
use Kiri\Annotation\Rpc\RpcClient;
|
||||||
use Note\Target;
|
use Kiri\Annotation\Target;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Rpc\Client;
|
use Rpc\Client;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
';
|
';
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ namespace Gii;
|
|||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class GiiRpcClient
|
* Class GiiRpcClient
|
||||||
@@ -33,10 +33,10 @@ class GiiRpcService extends GiiBase
|
|||||||
|
|
||||||
namespace App\Rpc;
|
namespace App\Rpc;
|
||||||
|
|
||||||
use Note\Route\RpcProducer;
|
use Kiri\Annotation\Route\RpcProducer;
|
||||||
use Note\Target;
|
use Kiri\Annotation\Target;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Http\Controller;
|
use Kiri\Message\Controller;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
|
|
||||||
';
|
';
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ declare(strict_types=1);
|
|||||||
namespace Gii;
|
namespace Gii;
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class GiiModel
|
* Class GiiModel
|
||||||
@@ -31,7 +31,7 @@ class GiiTask extends GiiBase
|
|||||||
|
|
||||||
namespace App\Async;
|
namespace App\Async;
|
||||||
|
|
||||||
use Server\Contract\OnTaskInterface;
|
use Kiri\Task\OnTaskInterface;
|
||||||
|
|
||||||
';
|
';
|
||||||
|
|
||||||
|
|||||||
@@ -1,44 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
|
|
||||||
namespace Note;
|
|
||||||
|
|
||||||
|
|
||||||
use Exception;
|
|
||||||
use Kiri\Kiri;
|
|
||||||
use Server\Tasker\AsyncTaskExecute;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class Task
|
|
||||||
* @package Note
|
|
||||||
* Task任务
|
|
||||||
*/
|
|
||||||
#[\Attribute(\Attribute::TARGET_CLASS)] class Task extends Attribute
|
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Task constructor.
|
|
||||||
* @param string $name
|
|
||||||
*/
|
|
||||||
public function __construct(public string $name)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param mixed $class
|
|
||||||
* @param mixed|null $method
|
|
||||||
* @return bool
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public function execute(mixed $class, mixed $method = null): bool
|
|
||||||
{
|
|
||||||
$task = Kiri::getDi()->get(AsyncTaskExecute::class);
|
|
||||||
$task->reg($this->name, $class);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,115 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Kiri\Server;
|
||||||
|
|
||||||
|
use Kiri;
|
||||||
|
use Kiri\Context;
|
||||||
|
use Kiri\Events\EventDispatch;
|
||||||
|
use Kiri\Server\Abstracts\BaseProcess;
|
||||||
|
use Kiri\Server\Contract\OnProcessInterface;
|
||||||
|
use Kiri\Server\Events\OnProcessStart;
|
||||||
|
use Swoole\Coroutine;
|
||||||
|
use Swoole\Coroutine\Http\Server;
|
||||||
|
use Swoole\Http\Request;
|
||||||
|
use Swoole\Http\Response;
|
||||||
|
use Swoole\Process\Manager;
|
||||||
|
use Swoole\Process\Pool;
|
||||||
|
|
||||||
|
|
||||||
|
class CoroutineServer
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
private Manager $manager;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string|OnProcessInterface|BaseProcess $customProcess
|
||||||
|
* @param string $system
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function addProcess(string|OnProcessInterface|BaseProcess $customProcess, string $system)
|
||||||
|
{
|
||||||
|
if (is_string($customProcess)) {
|
||||||
|
$customProcess = Kiri::getDi()->get($customProcess);
|
||||||
|
}
|
||||||
|
$this->manager->add(function (Pool $pool, int $workerId) use ($customProcess, $system) {
|
||||||
|
$process = $pool->getProcess($workerId);
|
||||||
|
|
||||||
|
if (Kiri::getPlatform()->isLinux()) {
|
||||||
|
$process->name($system . '(' . $customProcess->getName() . ')');
|
||||||
|
}
|
||||||
|
|
||||||
|
Kiri::getDi()->get(EventDispatch::class)->dispatch(new OnProcessStart());
|
||||||
|
|
||||||
|
set_env('environmental', Kiri::PROCESS);
|
||||||
|
$channel = Coroutine::create(function () use ($process, $customProcess) {
|
||||||
|
while (!$customProcess->isStop()) {
|
||||||
|
$message = $process->read();
|
||||||
|
if (!empty($message)) {
|
||||||
|
$message = unserialize($message);
|
||||||
|
}
|
||||||
|
if (is_null($message)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
$customProcess->onBroadcast($message);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
Context::setContext('waite:process:message', $channel);
|
||||||
|
|
||||||
|
$customProcess->onSigterm()->process($process);
|
||||||
|
|
||||||
|
}, $customProcess->isEnableCoroutine());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $settings
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function httpServer(array $settings = []): void
|
||||||
|
{
|
||||||
|
$this->manager->add(function (Pool $pool, int $workerId) use ($settings) {
|
||||||
|
$host = $settings['host'];
|
||||||
|
$port = $settings['port'];
|
||||||
|
|
||||||
|
$server = new Server($host, $port, false, true);
|
||||||
|
$server->set($settings);
|
||||||
|
|
||||||
|
$callback = $settings['events'][Constant::REQUEST] ?? null;
|
||||||
|
if (is_null($callback)) {
|
||||||
|
$pool->shutdown();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (is_string($callback[0])) {
|
||||||
|
$callback[0] = Kiri::getDi()->get($callback[0]);
|
||||||
|
}
|
||||||
|
$server->handle('/', $callback);
|
||||||
|
$server->start();
|
||||||
|
}, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $settings
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function websocketServer(array $settings)
|
||||||
|
{
|
||||||
|
$this->manager->add(function () use ($settings) {
|
||||||
|
$host = $settings['host'];
|
||||||
|
$port = $settings['port'];
|
||||||
|
|
||||||
|
$server = new Server($host, $port, false, true);
|
||||||
|
$server->set($settings);
|
||||||
|
$hServer = \Kiri::getDi()->get(\Kiri\Message\Server::class);
|
||||||
|
$server->handle('/', function (Request $request, Response $response) use ($hServer) {
|
||||||
|
call_user_func([$hServer, 'onRequest'], $request, $response);
|
||||||
|
});
|
||||||
|
$server->start();
|
||||||
|
}, true);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Kiri\Server;
|
||||||
|
|
||||||
|
use Kiri\Abstracts\Component;
|
||||||
|
use Kiri\Abstracts\Config;
|
||||||
|
use Kiri\Exception\ConfigException;
|
||||||
|
use Kiri\Task\OnServerTask;
|
||||||
|
use Swoole\Coroutine;
|
||||||
|
use Swoole\Coroutine\Channel;
|
||||||
|
use Swoole\Server\Task;
|
||||||
|
|
||||||
|
class CoroutineTasker extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
public Channel $channel;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return void
|
||||||
|
* @throws ConfigException
|
||||||
|
*/
|
||||||
|
public function initCore()
|
||||||
|
{
|
||||||
|
$taskWorker = Config::get('server.settings.task_worker_num', 0);
|
||||||
|
|
||||||
|
if ($taskWorker > 1) {
|
||||||
|
$this->channel = new Channel($taskWorker);
|
||||||
|
for ($i = 0; $i < $taskWorker; $i++) {
|
||||||
|
|
||||||
|
Coroutine::create(function () {
|
||||||
|
while ($this->channel->capacity) {
|
||||||
|
$data = $this->channel->pop(-1);
|
||||||
|
|
||||||
|
$execute = $this->getContainer()->get(OnServerTask::class);
|
||||||
|
|
||||||
|
$task = new Task();
|
||||||
|
$task->data = $data;
|
||||||
|
$execute->onCoroutineTask(null, $task);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public function dispatch($data)
|
||||||
|
{
|
||||||
|
$this->channel->push($data);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Kiri\Task\Annotation;
|
||||||
|
|
||||||
|
|
||||||
|
use Kiri\Annotation\Attribute;
|
||||||
|
use Kiri\Task\TaskManager;
|
||||||
|
|
||||||
|
#[\Attribute(\Attribute::TARGET_CLASS)] class AsynchronousTask extends Attribute
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $name
|
||||||
|
*/
|
||||||
|
public function __construct(public string $name)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param mixed $class
|
||||||
|
* @param mixed $method
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
public function execute(mixed $class, mixed $method = ''): mixed
|
||||||
|
{
|
||||||
|
$AsyncTaskExecute = \Kiri::getDi()->get(TaskManager::class);
|
||||||
|
$AsyncTaskExecute->add($this->name, $class::class);
|
||||||
|
return parent::execute($class, $method); // TODO: Change the autogenerated stub
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,42 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Kiri\Task;
|
||||||
|
|
||||||
|
use Exception;
|
||||||
|
use Kiri;
|
||||||
|
use Kiri\Abstracts\Component;
|
||||||
|
use Kiri\Server\SwooleServerInterface;
|
||||||
|
use Swoole\Coroutine;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
class AsyncTaskExecute extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
use TaskResolve;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param OnTaskInterface|string $handler
|
||||||
|
* @param array $params
|
||||||
|
* @param int $workerId
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public function execute(OnTaskInterface|string $handler, array $params = [], int $workerId = -1)
|
||||||
|
{
|
||||||
|
if (is_string($handler)) {
|
||||||
|
$handler = $this->handle($handler, $params);
|
||||||
|
}
|
||||||
|
|
||||||
|
$server = Kiri::getDi()->get(SwooleServerInterface::class);
|
||||||
|
if ($workerId < 0 || $workerId > $server->setting['task_worker_num']) {
|
||||||
|
$workerId = random_int(0, $server->setting['task_worker_num'] - 1);
|
||||||
|
}
|
||||||
|
$server->task(serialize($handler), $workerId);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,86 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Kiri\Task;
|
||||||
|
|
||||||
|
use Kiri\Abstracts\Component;
|
||||||
|
use Kiri\Core\HashMap;
|
||||||
|
use Kiri\Exception\ConfigException;
|
||||||
|
use ReflectionException;
|
||||||
|
use Swoole\Coroutine;
|
||||||
|
use Swoole\Server\Task;
|
||||||
|
|
||||||
|
class CoroutineTaskExecute extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
use TaskResolve;
|
||||||
|
|
||||||
|
|
||||||
|
private HashMap $hashMap;
|
||||||
|
|
||||||
|
|
||||||
|
private Coroutine\Channel $channel;
|
||||||
|
|
||||||
|
|
||||||
|
private OnServerTask $taskServer;
|
||||||
|
|
||||||
|
|
||||||
|
private int $total = 50;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public function init()
|
||||||
|
{
|
||||||
|
$this->hashMap = new HashMap();
|
||||||
|
|
||||||
|
$this->channel = new Coroutine\Channel($this->total);
|
||||||
|
|
||||||
|
$this->taskServer = \Kiri::getDi()->get(OnServerTask::class);
|
||||||
|
|
||||||
|
Coroutine::create(function () {
|
||||||
|
$barrier = Coroutine\Barrier::make();
|
||||||
|
for ($i = 0; $i < 50; $i++) {
|
||||||
|
Coroutine::create(function () {
|
||||||
|
$this->handler();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
Coroutine\Barrier::wait($barrier);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return void
|
||||||
|
* @throws ConfigException
|
||||||
|
*/
|
||||||
|
protected function handler()
|
||||||
|
{
|
||||||
|
Coroutine\defer(function () {
|
||||||
|
$this->handler();
|
||||||
|
});
|
||||||
|
$data = $this->channel->pop(-1);
|
||||||
|
|
||||||
|
$task = new Task();
|
||||||
|
$task->data = $data;
|
||||||
|
|
||||||
|
$this->taskServer->onCoroutineTask(null, $task);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param OnTaskInterface|string $handler
|
||||||
|
* @param array $params
|
||||||
|
* @param int $workerId
|
||||||
|
* @return void
|
||||||
|
* @throws ReflectionException
|
||||||
|
*/
|
||||||
|
public function execute(OnTaskInterface|string $handler, array $params = [], int $workerId = -1)
|
||||||
|
{
|
||||||
|
if (is_string($handler)) {
|
||||||
|
$handler = $this->handle($handler, $params);
|
||||||
|
}
|
||||||
|
$this->channel->push(serialize($handler));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,94 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
|
||||||
|
namespace Kiri\Task;
|
||||||
|
|
||||||
|
|
||||||
|
use Kiri\Annotation\Inject;
|
||||||
|
use Kiri\Abstracts\Logger;
|
||||||
|
use Kiri\Exception\ConfigException;
|
||||||
|
use Kiri\Task\OnTaskInterface;
|
||||||
|
use Swoole\Server;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class OnServerTask
|
||||||
|
* @package Server\Task
|
||||||
|
*/
|
||||||
|
class OnServerTask
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
#[Inject(Logger::class)]
|
||||||
|
public Logger $logger;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Server $server
|
||||||
|
* @param int $task_id
|
||||||
|
* @param int $src_worker_id
|
||||||
|
* @param mixed $data
|
||||||
|
* @throws ConfigException
|
||||||
|
*/
|
||||||
|
public function onTask(Server $server, int $task_id, int $src_worker_id, mixed $data)
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$data = $this->resolve($data);
|
||||||
|
} catch (\Throwable $exception) {
|
||||||
|
$data = jTraceEx($exception);
|
||||||
|
|
||||||
|
$this->logger->error('task', [error_trigger_format($exception)]);
|
||||||
|
} finally {
|
||||||
|
$server->finish($data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Server|null $server
|
||||||
|
* @param Server\Task $task
|
||||||
|
* @throws ConfigException
|
||||||
|
*/
|
||||||
|
public function onCoroutineTask(?Server $server, Server\Task $task)
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$data = $this->resolve($task->data);
|
||||||
|
} catch (\Throwable $exception) {
|
||||||
|
$data = jTraceEx($exception);
|
||||||
|
|
||||||
|
$this->logger->error('task', [error_trigger_format($exception)]);
|
||||||
|
} finally {
|
||||||
|
$task->finish($data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $data
|
||||||
|
* @return null
|
||||||
|
*/
|
||||||
|
private function resolve($data)
|
||||||
|
{
|
||||||
|
$execute = unserialize($data);
|
||||||
|
if ($execute instanceof OnTaskInterface) {
|
||||||
|
return $execute->execute();
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Server $server
|
||||||
|
* @param int $task_id
|
||||||
|
* @param mixed $data
|
||||||
|
*/
|
||||||
|
public function onFinish(Server $server, int $task_id, mixed $data)
|
||||||
|
{
|
||||||
|
if (!($data instanceof OnTaskInterface)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
$data->finish($server, $task_id);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
|
||||||
|
namespace Kiri\Task;
|
||||||
|
|
||||||
|
|
||||||
|
use Swoole\Server;
|
||||||
|
|
||||||
|
interface OnTaskInterface
|
||||||
|
{
|
||||||
|
|
||||||
|
public function execute();
|
||||||
|
|
||||||
|
|
||||||
|
public function finish(Server $server, int $task_id);
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Kiri\Task;
|
||||||
|
|
||||||
|
use Kiri\Abstracts\Component;
|
||||||
|
use Kiri\Core\HashMap;
|
||||||
|
use Psr\Container\ContainerExceptionInterface;
|
||||||
|
use Psr\Container\NotFoundExceptionInterface;
|
||||||
|
use Swoole\Server;
|
||||||
|
|
||||||
|
class TaskManager extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
private HashMap $hashMap;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public function init()
|
||||||
|
{
|
||||||
|
$this->hashMap = new HashMap();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Server $swollen
|
||||||
|
* @return void
|
||||||
|
* @throws ContainerExceptionInterface
|
||||||
|
* @throws NotFoundExceptionInterface
|
||||||
|
*/
|
||||||
|
public function taskListener(Server $swollen)
|
||||||
|
{
|
||||||
|
if (!isset($swollen->setting['task_worker_num']) || $swollen->setting['task_worker_num'] < 1) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$task_use_object = $swollen->setting['task_object'] ?? $swollen->setting['task_use_object'] ?? false;
|
||||||
|
$reflect = $this->getContainer()->get(OnServerTask::class);
|
||||||
|
|
||||||
|
$swollen->on('finish', [$reflect, 'onFinish']);
|
||||||
|
if ($task_use_object || $swollen->setting['task_enable_coroutine']) {
|
||||||
|
$swollen->on('task', [$reflect, 'onCoroutineTask']);
|
||||||
|
} else {
|
||||||
|
$swollen->on('task', [$reflect, 'onTask']);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $key
|
||||||
|
* @param $handler
|
||||||
|
*/
|
||||||
|
public function add(string $key, $handler)
|
||||||
|
{
|
||||||
|
$this->hashMap->put($key, $handler);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $key
|
||||||
|
* @return OnTaskInterface
|
||||||
|
* @throws ContainerExceptionInterface
|
||||||
|
* @throws NotFoundExceptionInterface
|
||||||
|
*/
|
||||||
|
public function get(string $key): OnTaskInterface
|
||||||
|
{
|
||||||
|
$task = $this->hashMap->get($key);
|
||||||
|
if (is_string($task)) {
|
||||||
|
$task = $this->getContainer()->get($task);
|
||||||
|
}
|
||||||
|
return $task;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Kiri\Task;
|
||||||
|
|
||||||
|
use Exception;
|
||||||
|
use ReflectionException;
|
||||||
|
|
||||||
|
trait TaskResolve
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $handler
|
||||||
|
* @param $params
|
||||||
|
* @return object
|
||||||
|
* @throws ReflectionException
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
private function handle($handler, $params): object
|
||||||
|
{
|
||||||
|
if (!class_exists($handler) && $this->hashMap->has($handler)) {
|
||||||
|
$handler = $this->hashMap->get($handler);
|
||||||
|
}
|
||||||
|
$implements = $this->getContainer()->getReflect($handler);
|
||||||
|
if (!in_array(OnTaskInterface::class, $implements->getInterfaceNames())) {
|
||||||
|
throw new Exception('Task must instance ' . OnTaskInterface::class);
|
||||||
|
}
|
||||||
|
return $implements->newInstanceArgs($params);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -2,20 +2,101 @@
|
|||||||
|
|
||||||
namespace Kiri\Websocket;
|
namespace Kiri\Websocket;
|
||||||
|
|
||||||
class Sender
|
use Kiri;
|
||||||
|
use Swoole\{Coroutine\Http\Server as AliasServer, WebSocket\Server};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
class Sender implements WebSocketInterface
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
public function push($fd, $data)
|
/**
|
||||||
|
* @var AliasServer|Server
|
||||||
|
*/
|
||||||
|
private AliasServer|Server $server;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public function __construct()
|
||||||
{
|
{
|
||||||
|
$this->server = Kiri::getDi()->get(WebSocketInterface::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function close($fd)
|
|
||||||
|
/**
|
||||||
|
* @param AliasServer|Server $server
|
||||||
|
*/
|
||||||
|
public function setServer(mixed $server): void
|
||||||
{
|
{
|
||||||
|
$this->server = $server;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $fd
|
||||||
|
* @param mixed $data
|
||||||
|
* @param int $opcode
|
||||||
|
* @param int $flags
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function push(int $fd, string $data, int $opcode = WEBSOCKET_OPCODE_TEXT, int $flags = SWOOLE_WEBSOCKET_FLAG_FIN): bool
|
||||||
|
{
|
||||||
|
if ($this->isEstablished($fd)) {
|
||||||
|
return $this->server->push($fd, $data, $opcode, $flags);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $fd
|
||||||
|
* @param $reactor_id
|
||||||
|
* @return array|null
|
||||||
|
*/
|
||||||
|
public function connection_info($fd, $reactor_id = null): ?array
|
||||||
|
{
|
||||||
|
return $this->server->getClientInfo($fd, $reactor_id);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $fd
|
||||||
|
* @param int $code
|
||||||
|
* @param string $reason
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function disconnect(int $fd, int $code = SWOOLE_WEBSOCKET_CLOSE_NORMAL, string $reason = ''): bool
|
||||||
|
{
|
||||||
|
if ($this->isEstablished($fd)) {
|
||||||
|
return $this->server->disconnect($fd, $code, $reason);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $fd
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function isEstablished(int $fd): bool
|
||||||
|
{
|
||||||
|
return $this->exist($fd) && $this->server->isEstablished($fd);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $fd
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function exist(int $fd): bool
|
||||||
|
{
|
||||||
|
return $this->server->exist($fd);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,54 +2,54 @@
|
|||||||
|
|
||||||
namespace Kiri\Websocket;
|
namespace Kiri\Websocket;
|
||||||
|
|
||||||
use Http\Handler\DataGrip;
|
use Exception;
|
||||||
use Http\Handler\Router;
|
use Kiri\Abstracts\AbstractServer;
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Message\Handler\DataGrip;
|
||||||
|
use Kiri\Message\Handler\RouterCollector;
|
||||||
|
use Kiri\Server\Contract\OnCloseInterface;
|
||||||
|
use Kiri\Server\Contract\OnHandshakeInterface;
|
||||||
|
use Kiri\Server\Contract\OnMessageInterface;
|
||||||
use Kiri\Server\Contract\OnOpenInterface;
|
use Kiri\Server\Contract\OnOpenInterface;
|
||||||
use Psr\Container\ContainerExceptionInterface;
|
use Psr\Container\ContainerExceptionInterface;
|
||||||
use Psr\Container\NotFoundExceptionInterface;
|
use Psr\Container\NotFoundExceptionInterface;
|
||||||
use ReflectionException;
|
|
||||||
use Server\Contract\OnCloseInterface;
|
|
||||||
use Server\Contract\OnHandshakeInterface;
|
|
||||||
use Server\Contract\OnMessageInterface;
|
|
||||||
use Swoole\Http\Request;
|
use Swoole\Http\Request;
|
||||||
use Swoole\Http\Response;
|
use Swoole\Http\Response;
|
||||||
use Swoole\WebSocket\CloseFrame;
|
|
||||||
use Swoole\WebSocket\Frame;
|
use Swoole\WebSocket\Frame;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* websocket server
|
||||||
*/
|
*/
|
||||||
class Server extends Component implements OnHandshakeInterface, OnMessageInterface, OnCloseInterface
|
class Server extends AbstractServer
|
||||||
{
|
{
|
||||||
|
|
||||||
public Router $router;
|
public RouterCollector $router;
|
||||||
|
|
||||||
|
|
||||||
public string $serverName = 'ws';
|
const SHA1_KEY = '258EAFA5-E914-47DA-95CA-C5AB0DC85B11';
|
||||||
|
|
||||||
|
|
||||||
public mixed $callback = null;
|
public mixed $callback = null;
|
||||||
|
|
||||||
|
|
||||||
public mixed $server;
|
public Sender $sender;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws ContainerExceptionInterface
|
* @throws ContainerExceptionInterface
|
||||||
* @throws NotFoundExceptionInterface
|
* @throws NotFoundExceptionInterface
|
||||||
* @throws ReflectionException
|
|
||||||
*/
|
*/
|
||||||
public function init()
|
public function init()
|
||||||
{
|
{
|
||||||
$this->router = $this->container->get(DataGrip::class)->get($this->serverName);
|
$this->router = $this->getContainer()->get(DataGrip::class)->get('ws');
|
||||||
$handler = $this->router->find('/', 'GET');
|
$handler = $this->router->find('/', 'GET');
|
||||||
if (is_int($handler) || is_null($handler)) {
|
if (is_int($handler) || is_null($handler)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$this->callback = $handler->callback[0];
|
$this->callback = $handler->callback[0];
|
||||||
|
|
||||||
|
$this->sender = $this->getContainer()->get(Sender::class);
|
||||||
|
$this->sender->setServer($this->server);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -59,8 +59,41 @@ class Server extends Component implements OnHandshakeInterface, OnMessageInterfa
|
|||||||
*/
|
*/
|
||||||
public function onClose(\Swoole\Server $server, int $fd): void
|
public function onClose(\Swoole\Server $server, int $fd): void
|
||||||
{
|
{
|
||||||
|
$clientInfo = $server->getClientInfo($fd);
|
||||||
|
if (!isset($clientInfo['websocket_status'])) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
if ($this->callback instanceof OnCloseInterface) {
|
if ($this->callback instanceof OnCloseInterface) {
|
||||||
$this->callback->onClose($server, $fd);
|
$this->callback->onClose($fd);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Request $request
|
||||||
|
* @param Response $response
|
||||||
|
* @return void
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
protected function setWebSocketProtocol(Request $request, Response $response)
|
||||||
|
{
|
||||||
|
$secWebSocketKey = $request->header['sec-websocket-key'];
|
||||||
|
$patten = '#^[+/0-9A-Za-z]{21}[AQgw]==$#';
|
||||||
|
if (preg_match($patten, $secWebSocketKey) === 0 || strlen(base64_decode($secWebSocketKey)) !== 16) {
|
||||||
|
throw new Exception('protocol error.', 500);
|
||||||
|
}
|
||||||
|
$key = base64_encode(sha1($request->header['sec-websocket-key'] . self::SHA1_KEY, true));
|
||||||
|
$headers = [
|
||||||
|
'Upgrade' => 'websocket',
|
||||||
|
'Connection' => 'Upgrade',
|
||||||
|
'Sec-Websocket-Accept' => $key,
|
||||||
|
'Sec-Websocket-Version' => '13',
|
||||||
|
];
|
||||||
|
if (isset($request->header['sec-websocket-protocol'])) {
|
||||||
|
$headers['Sec-Websocket-Protocol'] = $request->header['sec-websocket-protocol'];
|
||||||
|
}
|
||||||
|
foreach ($headers as $key => $val) {
|
||||||
|
$response->header($key, $val);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -72,49 +105,56 @@ class Server extends Component implements OnHandshakeInterface, OnMessageInterfa
|
|||||||
public function onHandshake(Request $request, Response $response): void
|
public function onHandshake(Request $request, Response $response): void
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
if (!$this->callback instanceof OnHandshakeInterface) {
|
$this->setWebSocketProtocol($request, $response);
|
||||||
throw new \Exception('Page not found.');
|
if ($this->callback instanceof OnHandshakeInterface) {
|
||||||
}
|
|
||||||
$this->callback->onHandshake($request, $response);
|
$this->callback->onHandshake($request, $response);
|
||||||
|
} else {
|
||||||
$this->afterHandshake($request);
|
$response->setStatusCode(101, 'connection success.');
|
||||||
if ($this->server instanceof \Swoole\Coroutine\Http\Server) {
|
$response->end();
|
||||||
while (true) {
|
|
||||||
$data = $response->recv();
|
|
||||||
if ($data === '' || $data === false || $data instanceof CloseFrame) {
|
|
||||||
$this->onClose($this->server, $response->fd);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
$this->onMessage($this->server, $data);
|
|
||||||
}
|
}
|
||||||
|
// if ($this->server instanceof \Swoole\Coroutine\Http\Server) {
|
||||||
|
// $response->upgrade();
|
||||||
|
// $this->deferOpen($request);
|
||||||
|
// while (true) {
|
||||||
|
// $receive = $response->recv();
|
||||||
|
// if ($receive === '' || $receive instanceof CloseFrame) {
|
||||||
|
// $response->close();
|
||||||
|
// if ($this->callback instanceof OnCloseInterface) {
|
||||||
|
// $this->callback->onClose($this->server, $response->fd);
|
||||||
|
// }
|
||||||
|
// break;
|
||||||
|
// }
|
||||||
|
// $this->callback->onMessage($this->server, $receive);
|
||||||
|
// }
|
||||||
|
// } else {
|
||||||
|
// $this->deferOpen($request);
|
||||||
|
// }
|
||||||
|
if ($response->isWritable()) {
|
||||||
|
$this->deferOpen($request);
|
||||||
}
|
}
|
||||||
} catch (\Throwable $throwable) {
|
} catch (\Throwable $throwable) {
|
||||||
$response->status(500, $throwable->getMessage());
|
$response->status(4000 + $throwable->getCode(), $throwable->getMessage());
|
||||||
$response->end();
|
$response->end();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
private function deferOpen($request)
|
||||||
* @param $request
|
|
||||||
*/
|
|
||||||
public function afterHandshake($request)
|
|
||||||
{
|
{
|
||||||
if (!($this->callback instanceof OnOpenInterface)) {
|
if ($this->callback instanceof OnOpenInterface) {
|
||||||
return;
|
$this->callback->onOpen($request);
|
||||||
}
|
}
|
||||||
$this->callback->onOpen($this->server, $request);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param \Swoole\Server $server
|
* @param $server
|
||||||
* @param Frame $frame
|
* @param Frame $frame
|
||||||
*/
|
*/
|
||||||
public function onMessage(\Swoole\Server $server, Frame $frame): void
|
public function onMessage($server, Frame $frame): void
|
||||||
{
|
{
|
||||||
if ($this->callback instanceof OnMessageInterface) {
|
if ($this->callback instanceof OnMessageInterface) {
|
||||||
$this->callback->onMessage($server, $frame);
|
$this->callback->onMessage($frame);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,47 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Kiri\Websocket;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @mixin \Swoole\WebSocket\Server
|
||||||
|
* @mixin \Swoole\Coroutine\Http\Server
|
||||||
|
*/
|
||||||
|
interface WebSocketInterface
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $fd
|
||||||
|
* @param mixed $data
|
||||||
|
* @param int $opcode
|
||||||
|
* @param int $flags
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function push(int $fd, string $data, int $opcode = WEBSOCKET_OPCODE_TEXT, int $flags = SWOOLE_WEBSOCKET_FLAG_FIN): bool;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $fd
|
||||||
|
* @param int $code
|
||||||
|
* @param string $reason
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
public function disconnect(int $fd, int $code = SWOOLE_WEBSOCKET_CLOSE_NORMAL, string $reason = ''): bool;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $fd
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function isEstablished(int $fd): bool;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $fd
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function exist(int $fd): bool;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
var_dump(json_encode([
|
var_dump(json_encode([
|
||||||
"Datacenter" => "dc1",
|
"Datacenter" => "dc1",
|
||||||
"Node" => "iz8vbi3edjyskl7kpuwudqz",
|
"Node" => "iz8vbi3edjyskl7kpuwudqz",
|
||||||
"SkipNodeUpdate" => false,
|
"SkipNodeUpdate" => FALSE,
|
||||||
"Service" => [
|
"Service" => [
|
||||||
"ID" => "redis1",
|
"ID" => "redis1",
|
||||||
"Service" => "FriendRpcService",
|
"Service" => "FriendRpcService",
|
||||||
@@ -61,17 +61,17 @@ var_dump(json_encode([
|
|||||||
"TaggedAddresses" => [
|
"TaggedAddresses" => [
|
||||||
"lan" => [
|
"lan" => [
|
||||||
"address" => "127.0.0.1",
|
"address" => "127.0.0.1",
|
||||||
"port" => 9627
|
"port" => 9627,
|
||||||
],
|
],
|
||||||
"wan" => [
|
"wan" => [
|
||||||
"address" => "172.26.221.211",
|
"address" => "172.26.221.211",
|
||||||
"port" => 9627
|
"port" => 9627,
|
||||||
]
|
],
|
||||||
],
|
],
|
||||||
"Meta" => [
|
"Meta" => [
|
||||||
"redis_version" => "4.0"
|
"redis_version" => "4.0",
|
||||||
],
|
],
|
||||||
"Port" => 9627
|
"Port" => 9627,
|
||||||
],
|
],
|
||||||
"Check" => [
|
"Check" => [
|
||||||
"Node" => "iz8vbi3edjyskl7kpuwudqz",
|
"Node" => "iz8vbi3edjyskl7kpuwudqz",
|
||||||
@@ -84,7 +84,7 @@ var_dump(json_encode([
|
|||||||
"Http" => "http://172.26.221.211:9627",
|
"Http" => "http://172.26.221.211:9627",
|
||||||
"Interval" => "5s",
|
"Interval" => "5s",
|
||||||
"Timeout" => "1s",
|
"Timeout" => "1s",
|
||||||
"DeregisterCriticalServiceAfter" => "30s"
|
"DeregisterCriticalServiceAfter" => "30s",
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
]));
|
]));
|
||||||
|
|||||||
@@ -27,11 +27,21 @@ namespace Ar;
|
|||||||
use Swoole\Coroutine\Http\Client;
|
use Swoole\Coroutine\Http\Client;
|
||||||
use function Swoole\Coroutine\run;
|
use function Swoole\Coroutine\run;
|
||||||
|
|
||||||
run(function () {
|
//run(function () {
|
||||||
|
//
|
||||||
|
// $client = new Client('47.92.194.207',8500);
|
||||||
|
// $client->get('/v1/agent/services?filter=Service == FriendRpcService');
|
||||||
|
// $client->close();
|
||||||
|
// var_dump($client->getBody());
|
||||||
|
//
|
||||||
|
//});
|
||||||
|
|
||||||
$client = new Client('47.92.194.207',8500);
|
function order(int $userId): string
|
||||||
$client->get('/v1/agent/services?filter=Service == FriendRpcService');
|
{
|
||||||
$client->close();
|
$explode = current(explode(' ', str_replace('0.', '', round((float)microtime(),6))));
|
||||||
var_dump($client->getBody());
|
|
||||||
|
|
||||||
});
|
return 'N'.sprintf('%09d', $userId) . '.' . date('YmdHis') . '.' . str_pad($explode,6,0);
|
||||||
|
}
|
||||||
|
var_dump(
|
||||||
|
order(1)
|
||||||
|
);
|
||||||
Reference in New Issue
Block a user