Compare commits
122 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f46af653f2 | |||
| 5e02a79bf0 | |||
| 08dc3e262b | |||
| 8c5e52940f | |||
| 4dbcacdd1f | |||
| 97cd1a0ebf | |||
| 7165a67294 | |||
| 4bc7451424 | |||
| d7d0f685dc | |||
| 8ee7d30d6a | |||
| 224009e7e6 | |||
| b4551ae2fd | |||
| 5ca94925e3 | |||
| 0afa8fc400 | |||
| 842220e4de | |||
| c9726e5778 | |||
| f867f4be9e | |||
| 45319c3733 | |||
| 06c9459f14 | |||
| 5fd2abcb69 | |||
| 58a3d91df3 | |||
| c61842402a | |||
| 623bae9e97 | |||
| 12610c218c | |||
| c3ca24884e | |||
| 02c14874a2 | |||
| 6eff48e22f | |||
| 6c46a54d4b | |||
| 03287cfd65 | |||
| 93ce4c16b6 | |||
| 4b92edd40f | |||
| a76c81df8e | |||
| aa59caad07 | |||
| 6fd8a5dd34 | |||
| 9ca53a73ce | |||
| d904e78864 | |||
| 0d64ef7ac4 | |||
| 154d9d74d6 | |||
| 2c61abff01 | |||
| b4ce762cf3 | |||
| 4b3c2234af | |||
| 7ee78a9642 | |||
| f9838f781d | |||
| 848416af4f | |||
| 0216e761be | |||
| acf6631c5c | |||
| 64e4307a57 | |||
| ab672127e6 | |||
| 6e5b545a1e | |||
| 8229395e6d | |||
| d5d2b04321 | |||
| ce9c184c83 | |||
| 620de34559 | |||
| b01c71ea5e | |||
| 90e1f7eb29 | |||
| f3ad09ef66 | |||
| dfccb8816c | |||
| 1670ff3fef | |||
| 8870a7ca27 | |||
| ebb7ac9673 | |||
| 5aad8d2001 | |||
| 80713788c9 | |||
| 9f36acbbca | |||
| 044d213a69 | |||
| e5fe525f82 | |||
| 39e4e52908 | |||
| f62014ff34 | |||
| 7935e6a6a3 | |||
| d2acd50352 | |||
| d02337ec22 | |||
| 57f12b6701 | |||
| d500fd21ce | |||
| 30d7b8684e | |||
| d8eb4d4e45 | |||
| 7004c5c0f8 | |||
| 81e55ecdf1 | |||
| 20adc186d4 | |||
| 8c16d9f4b3 | |||
| b3e06a680a | |||
| 3176443e5c | |||
| 83962fa3ba | |||
| 5475f2cd51 | |||
| 30212c0b86 | |||
| 4731463897 | |||
| 87e901f5b1 | |||
| 66f87b6da4 | |||
| 0007242b70 | |||
| 8653e6914b | |||
| 816fec8ef4 | |||
| b0ef09fd35 | |||
| f7a2d6f30e | |||
| 2950ba8fd5 | |||
| 2de5c82a73 | |||
| 758c4e7d5b | |||
| 33f045aec7 | |||
| 35189de442 | |||
| 34e7fc0392 | |||
| a3ce9f52ba | |||
| 6e7da1b0ed | |||
| a6e0b5c1a2 | |||
| 13ab14f965 | |||
| 6729094f63 | |||
| e1aeb17a5a | |||
| b9e20051ef | |||
| 4ab6332176 | |||
| abe2dad521 | |||
| b0f70a13da | |||
| 1e8aca91dd | |||
| b4ac5c4758 | |||
| d161477957 | |||
| a26b99dd1e | |||
| 86e4a92ab0 | |||
| ea425bb82d | |||
| ad0154d319 | |||
| edb70d2b9b | |||
| 9f3355cab4 | |||
| 4107b5bb07 | |||
| 048960c572 | |||
| b826e1f594 | |||
| e5b57cbcdb | |||
| 2870a64792 | |||
| 4d1587bc8d |
@@ -3,21 +3,21 @@
|
|||||||
|
|
||||||
function version($oldVersion, $newVersion): bool
|
function version($oldVersion, $newVersion): bool
|
||||||
{
|
{
|
||||||
$first = explode('.', $oldVersion);
|
$first = explode('.', $oldVersion);
|
||||||
$end = explode('.', $newVersion);
|
$end = explode('.', $newVersion);
|
||||||
while (count($first) > 0) {
|
while (count($first) > 0) {
|
||||||
$shift = (int)array_shift($first);
|
$shift = (int)array_shift($first);
|
||||||
$endShift = (int)array_shift($end);
|
$endShift = (int)array_shift($end);
|
||||||
if ($endShift == $shift) {
|
if ($endShift == $shift) {
|
||||||
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'));
|
||||||
|
|||||||
+7
-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,23 +21,22 @@
|
|||||||
"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",
|
||||||
"ext-inotify": "*"
|
"ext-inotify": "*"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
"Kiri\\": "kiri-engine/",
|
"Kiri\\": "kiri-engine/",
|
||||||
|
"Kiri\\Gateway\\": "kiri-gateway/",
|
||||||
|
"Kiri\\Websocket\\": "kiri-websocket-server/",
|
||||||
"Gii\\": "kiri-gii/",
|
"Gii\\": "kiri-gii/",
|
||||||
"Annotation\\": "kiri-note/"
|
"Kiri\\Annotation\\": "kiri-annotation/",
|
||||||
|
"Kiri\\Task\\": "kiri-task/"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"error.php",
|
"error.php",
|
||||||
|
|||||||
+132
-53
@@ -3,7 +3,6 @@
|
|||||||
defined('APP_PATH') or define('APP_PATH', realpath(__DIR__ . '/../../'));
|
defined('APP_PATH') or define('APP_PATH', realpath(__DIR__ . '/../../'));
|
||||||
|
|
||||||
|
|
||||||
use Annotation\Annotation;
|
|
||||||
use Http\Handler\Router;
|
use Http\Handler\Router;
|
||||||
use JetBrains\PhpStorm\Pure;
|
use JetBrains\PhpStorm\Pure;
|
||||||
use Kiri\Abstracts\Config;
|
use Kiri\Abstracts\Config;
|
||||||
@@ -14,10 +13,10 @@ 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\Exception\NotFindClassException;
|
|
||||||
use Kiri\Kiri;
|
use Kiri\Kiri;
|
||||||
|
use Kiri\Annotation\Annotation;
|
||||||
|
use Kiri\Annotation\Route\Route;
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
use Server\ServerManager;
|
|
||||||
use Swoole\Process;
|
use Swoole\Process;
|
||||||
use Swoole\WebSocket\Server;
|
use Swoole\WebSocket\Server;
|
||||||
|
|
||||||
@@ -30,7 +29,7 @@ if (!function_exists('make')) {
|
|||||||
* @return mixed
|
* @return mixed
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
function make($name, $default = null): mixed
|
function make($name, $default = NULL): mixed
|
||||||
{
|
{
|
||||||
if (class_exists($name)) {
|
if (class_exists($name)) {
|
||||||
return Kiri::createObject($name);
|
return Kiri::createObject($name);
|
||||||
@@ -45,7 +44,7 @@ if (!function_exists('make')) {
|
|||||||
return Kiri::app()->get($default);
|
return Kiri::app()->get($default);
|
||||||
}
|
}
|
||||||
$class = Kiri::createObject($default);
|
$class = Kiri::createObject($default);
|
||||||
class_alias($name, $default, true);
|
class_alias($name, $default, TRUE);
|
||||||
return $class;
|
return $class;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -53,6 +52,22 @@ if (!function_exists('make')) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (!function_exists('map')) {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $params
|
||||||
|
* @param Closure $closure
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
function map(array $params, Closure $closure): mixed
|
||||||
|
{
|
||||||
|
return array_map($closure, $params);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
if (!function_exists('checkPortIsAlready')) {
|
if (!function_exists('checkPortIsAlready')) {
|
||||||
|
|
||||||
|
|
||||||
@@ -65,7 +80,7 @@ if (!function_exists('checkPortIsAlready')) {
|
|||||||
{
|
{
|
||||||
if (!Kiri::getPlatform()->isLinux()) {
|
if (!Kiri::getPlatform()->isLinux()) {
|
||||||
exec("lsof -i :" . $port . " | grep -i 'LISTEN' | awk '{print $2}'", $output);
|
exec("lsof -i :" . $port . " | grep -i 'LISTEN' | awk '{print $2}'", $output);
|
||||||
if (empty($output)) return false;
|
if (empty($output)) return FALSE;
|
||||||
$output = explode(PHP_EOL, $output[0]);
|
$output = explode(PHP_EOL, $output[0]);
|
||||||
return $output[0];
|
return $output[0];
|
||||||
}
|
}
|
||||||
@@ -77,7 +92,7 @@ if (!function_exists('checkPortIsAlready')) {
|
|||||||
|
|
||||||
exec('netstat -lnp | grep ' . $port . ' | grep "LISTEN" | awk \'{print $7}\'', $output);
|
exec('netstat -lnp | grep ' . $port . ' | grep "LISTEN" | awk \'{print $7}\'', $output);
|
||||||
if (empty($output)) {
|
if (empty($output)) {
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
return explode('/', $output[0])[0];
|
return explode('/', $output[0])[0];
|
||||||
}
|
}
|
||||||
@@ -157,7 +172,7 @@ if (!function_exists('now')) {
|
|||||||
*/
|
*/
|
||||||
function now(): string
|
function now(): string
|
||||||
{
|
{
|
||||||
return date('Y-m-d H:i:s') . '.' . str_replace(time() . '.', '', (string)microtime(true));
|
return date('Y-m-d H:i:s') . '.' . str_replace(time() . '.', '', (string)microtime(TRUE));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -177,7 +192,7 @@ if (!function_exists('workerName')) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (!function_exists('annotation')) {
|
if (!function_exists('Annotation')) {
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -213,6 +228,22 @@ if (!function_exists('scan_directory')) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!class_exists('ReturnTypeWillChange')) {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 8.1
|
||||||
|
*/
|
||||||
|
#[Attribute(Attribute::TARGET_METHOD)]
|
||||||
|
final class ReturnTypeWillChange
|
||||||
|
{
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
if (!function_exists('injectRuntime')) {
|
if (!function_exists('injectRuntime')) {
|
||||||
|
|
||||||
@@ -227,8 +258,13 @@ if (!function_exists('injectRuntime')) {
|
|||||||
{
|
{
|
||||||
$fileLists = Kiri::getAnnotation()->runtime($path, $exclude);
|
$fileLists = Kiri::getAnnotation()->runtime($path, $exclude);
|
||||||
$di = Kiri::getDi();
|
$di = Kiri::getDi();
|
||||||
|
|
||||||
|
$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')) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
$value->execute($class);
|
$value->execute($class);
|
||||||
}
|
}
|
||||||
$methods = $di->getMethodAttribute($class);
|
$methods = $di->getMethodAttribute($class);
|
||||||
@@ -237,10 +273,26 @@ if (!function_exists('injectRuntime')) {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
foreach ($attribute as $item) {
|
foreach ($attribute as $item) {
|
||||||
$item->execute($class, $method);
|
if ($item instanceof Route) {
|
||||||
|
$router[] = [$item, $class, $method];
|
||||||
|
} else {
|
||||||
|
if (!method_exists($item, 'execute')) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
$item->execute($class, $method);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (!empty($router)) {
|
||||||
|
foreach ($router as $class) {
|
||||||
|
[$item, $class, $method] = $class;
|
||||||
|
if (!method_exists($item, 'execute')) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
$item->execute($class, $method);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -285,25 +337,28 @@ if (!function_exists('isUrl')) {
|
|||||||
* @param bool $get_info
|
* @param bool $get_info
|
||||||
* @return false|array
|
* @return false|array
|
||||||
*/
|
*/
|
||||||
function isUrl($url, bool $get_info = true): bool|array
|
function isUrl($url, bool $get_info = TRUE): bool|array
|
||||||
{
|
{
|
||||||
if (str_starts_with($url, '/')) {
|
if (str_starts_with($url, '/')) {
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
$queryMatch = '/((http[s]?):\/\/)?(([\w\-\_]+\.)+\w+(:\d+)?)(\/.*)?/';
|
$queryMatch = '/((http[s]?):\/\/)?(([\w\-\_]+\.)+\w+(:\d+)?)(\/.*)?/';
|
||||||
if (!preg_match($queryMatch, $url, $outPut)) {
|
if (!preg_match($queryMatch, $url, $outPut)) {
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
$port = str_replace(':', '', $outPut[5]);
|
|
||||||
|
|
||||||
[$isHttps, $domain, $port, $path] = [$outPut[2] == 'https', $outPut[3], $port, $outPut[6] ?? ''];
|
[$scheme, $host, $port, $user, $pass, $query, $path, $fragment] = parse_url($url);
|
||||||
if ($isHttps && empty($port)) {
|
if ($scheme == 'https' && empty($port)) {
|
||||||
$port = 443;
|
$port = 443;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!empty($query)) $path .= '?' . $query;
|
||||||
|
if (!empty($fragment)) $path .= '#' . $fragment;
|
||||||
|
|
||||||
|
|
||||||
unset($outPut);
|
unset($outPut);
|
||||||
|
|
||||||
return [$isHttps == 'https', $domain, $port, $path];
|
return [$scheme == 'https', $host, $port, $path];
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -318,8 +373,8 @@ if (!function_exists('split_request_uri')) {
|
|||||||
*/
|
*/
|
||||||
function split_request_uri($url): bool|array
|
function split_request_uri($url): bool|array
|
||||||
{
|
{
|
||||||
if (($parse = isUrl($url, null)) === false) {
|
if (($parse = isUrl($url, NULL)) === FALSE) {
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
[$isHttps, $domain, $port, $path] = $parse;
|
[$isHttps, $domain, $port, $path] = $parse;
|
||||||
@@ -343,7 +398,7 @@ if (!function_exists('hadDomain')) {
|
|||||||
function hadDomain($url): bool|array
|
function hadDomain($url): bool|array
|
||||||
{
|
{
|
||||||
$param = split_request_uri($url);
|
$param = split_request_uri($url);
|
||||||
return !is_array($param) ? false : $param[0];
|
return !is_array($param) ? FALSE : $param[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -392,7 +447,7 @@ if (!function_exists('loadByDir')) {
|
|||||||
classAutoload($namespace, $value);
|
classAutoload($namespace, $value);
|
||||||
} else {
|
} else {
|
||||||
$pos = strpos($value, '.php');
|
$pos = strpos($value, '.php');
|
||||||
if ($pos === false || strlen($value) - 4 != $pos) {
|
if ($pos === FALSE || strlen($value) - 4 != $pos) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -445,7 +500,7 @@ if (!function_exists('fire')) {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param object $event
|
* @param object $event
|
||||||
*/
|
*/
|
||||||
function fire(object $event)
|
function fire(object $event)
|
||||||
{
|
{
|
||||||
di(EventDispatch::class)->dispatch($event);
|
di(EventDispatch::class)->dispatch($event);
|
||||||
@@ -470,7 +525,7 @@ if (!function_exists('instance_load')) {
|
|||||||
|
|
||||||
function instance_load()
|
function instance_load()
|
||||||
{
|
{
|
||||||
$content = json_decode(file_get_contents(__DIR__ . '/composer.json'), true);
|
$content = json_decode(file_get_contents(__DIR__ . '/composer.json'), TRUE);
|
||||||
if (isset($content['autoload']) && isset($content['autoload']['psr-4'])) {
|
if (isset($content['autoload']) && isset($content['autoload']['psr-4'])) {
|
||||||
$psr4 = $content['autoload']['psr-4'];
|
$psr4 = $content['autoload']['psr-4'];
|
||||||
foreach ($psr4 as $namespace => $dirname) {
|
foreach ($psr4 as $namespace => $dirname) {
|
||||||
@@ -520,7 +575,7 @@ if (!function_exists('trim_blank')) {
|
|||||||
* @param bool $htmlTags
|
* @param bool $htmlTags
|
||||||
* @return array|string|null
|
* @return array|string|null
|
||||||
*/
|
*/
|
||||||
function trim_blank(string $content, int $len = 0, string $encode = 'utf-8', bool $htmlTags = true): array|string|null
|
function trim_blank(string $content, int $len = 0, string $encode = 'utf-8', bool $htmlTags = TRUE): array|string|null
|
||||||
{
|
{
|
||||||
$str = trim($content);
|
$str = trim($content);
|
||||||
if ($htmlTags) {
|
if ($htmlTags) {
|
||||||
@@ -540,7 +595,7 @@ if (!function_exists('trim_blank')) {
|
|||||||
if (!function_exists('get_file_extension')) {
|
if (!function_exists('get_file_extension')) {
|
||||||
|
|
||||||
function get_file_extension($filename): bool|int|string
|
function get_file_extension($filename): bool|int|string
|
||||||
{
|
{
|
||||||
$mime_types = [
|
$mime_types = [
|
||||||
'txt' => 'text/plain',
|
'txt' => 'text/plain',
|
||||||
'htm' => 'text/html',
|
'htm' => 'text/html',
|
||||||
@@ -760,12 +815,12 @@ if (!function_exists('get_file_extension')) {
|
|||||||
$ext = strtolower(array_pop($explode));
|
$ext = strtolower(array_pop($explode));
|
||||||
if (array_key_exists($ext, $mime_types)) {
|
if (array_key_exists($ext, $mime_types)) {
|
||||||
return $ext;
|
return $ext;
|
||||||
} elseif (function_exists('finfo_open')) {
|
} else if (function_exists('finfo_open')) {
|
||||||
$fInfo = finfo_open(FILEINFO_MIME);
|
$fInfo = finfo_open(FILEINFO_MIME);
|
||||||
$mimeType = finfo_file($fInfo, $filename);
|
$mimeType = finfo_file($fInfo, $filename);
|
||||||
finfo_close($fInfo);
|
finfo_close($fInfo);
|
||||||
$mimeType = current(explode('; ', $mimeType));
|
$mimeType = current(explode('; ', $mimeType));
|
||||||
if (($search = array_search($mimeType, $mime_types)) == false) {
|
if (($search = array_search($mimeType, $mime_types)) == FALSE) {
|
||||||
return $mimeType;
|
return $mimeType;
|
||||||
}
|
}
|
||||||
return $search;
|
return $search;
|
||||||
@@ -790,13 +845,13 @@ if (!function_exists('storage')) {
|
|||||||
if (!empty($path)) {
|
if (!empty($path)) {
|
||||||
$path = ltrim($path, '/');
|
$path = ltrim($path, '/');
|
||||||
if (!is_dir($basePath . '/' . $path)) {
|
if (!is_dir($basePath . '/' . $path)) {
|
||||||
mkdir($basePath . '/' . $path, 0777, true);
|
mkdir($basePath . '/' . $path, 0777, TRUE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
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);
|
||||||
}
|
}
|
||||||
@@ -814,7 +869,7 @@ if (!function_exists('event')) {
|
|||||||
* @param bool $isAppend
|
* @param bool $isAppend
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
function event($name, $callback, bool $isAppend = true)
|
function event($name, $callback, bool $isAppend = TRUE)
|
||||||
{
|
{
|
||||||
$pro = di(EventProvider::class);
|
$pro = di(EventProvider::class);
|
||||||
$pro->on($name, $callback, 0);
|
$pro->on($name, $callback, 0);
|
||||||
@@ -831,7 +886,7 @@ if (!function_exists('name')) {
|
|||||||
* @throws ConfigException
|
* @throws ConfigException
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
function name(int $pid, string $prefix = null)
|
function name(int $pid, string $prefix = NULL)
|
||||||
{
|
{
|
||||||
if (Kiri::getPlatform()->isMac()) {
|
if (Kiri::getPlatform()->isMac()) {
|
||||||
return;
|
return;
|
||||||
@@ -862,10 +917,10 @@ if (!function_exists('env')) {
|
|||||||
* @param null $default
|
* @param null $default
|
||||||
* @return array|string|null
|
* @return array|string|null
|
||||||
*/
|
*/
|
||||||
#[Pure] function env($key, $default = null): null|array|string
|
#[Pure] function env($key, $default = NULL): null|array|string
|
||||||
{
|
{
|
||||||
$env = getenv($key);
|
$env = getenv($key);
|
||||||
if ($env === false) {
|
if ($env === FALSE) {
|
||||||
return $default;
|
return $default;
|
||||||
}
|
}
|
||||||
return $env;
|
return $env;
|
||||||
@@ -877,11 +932,10 @@ if (!function_exists('env')) {
|
|||||||
if (!function_exists('di')) {
|
if (!function_exists('di')) {
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $className
|
* @param string $className
|
||||||
* @return mixed
|
* @return mixed
|
||||||
* @throws ReflectionException
|
*/
|
||||||
*/
|
|
||||||
function di(string $className): mixed
|
function di(string $className): mixed
|
||||||
{
|
{
|
||||||
return Kiri::getDi()->get($className);
|
return Kiri::getDi()->get($className);
|
||||||
@@ -889,18 +943,43 @@ if (!function_exists('di')) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (!function_exists('interval')) {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param callable $callback
|
||||||
|
* @param int $interval
|
||||||
|
* @param bool $is
|
||||||
|
*/
|
||||||
|
function interval(callable $callback, int $interval = 1000, bool $is = FALSE)
|
||||||
|
{
|
||||||
|
usleep($interval * 1000);
|
||||||
|
|
||||||
|
$callback();
|
||||||
|
|
||||||
|
interval($callback, $interval, $is);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
if (!function_exists('duplicate')) {
|
if (!function_exists('duplicate')) {
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $className
|
* @param string $className
|
||||||
* @return mixed
|
* @return mixed
|
||||||
* @throws ReflectionException
|
* @throws ReflectionException
|
||||||
*/
|
*/
|
||||||
function duplicate(string $className): mixed
|
function duplicate(string $className): mixed
|
||||||
{
|
{
|
||||||
$class = di($className);
|
$class = di($className);
|
||||||
return clone $class;
|
$clone = clone $class;
|
||||||
|
if (method_exists($clone, 'clear')) {
|
||||||
|
$clone->clear();
|
||||||
|
}
|
||||||
|
return $clone;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -952,7 +1031,7 @@ if (!function_exists('swoole_unserialize')) {
|
|||||||
function swoole_unserialize($data): mixed
|
function swoole_unserialize($data): mixed
|
||||||
{
|
{
|
||||||
if (empty($data)) {
|
if (empty($data)) {
|
||||||
return null;
|
return NULL;
|
||||||
}
|
}
|
||||||
// if (class_exists('swoole_serialize')) {
|
// if (class_exists('swoole_serialize')) {
|
||||||
// return \swoole_serialize::unpack($data);
|
// return \swoole_serialize::unpack($data);
|
||||||
@@ -1033,7 +1112,7 @@ if (!function_exists('jTraceEx')) {
|
|||||||
* @param bool $toHtml
|
* @param bool $toHtml
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
function jTraceEx($e, $seen = null, bool $toHtml = false): string
|
function jTraceEx($e, $seen = NULL, bool $toHtml = FALSE): string
|
||||||
{
|
{
|
||||||
$starter = $seen ? 'Caused by: ' : '';
|
$starter = $seen ? 'Caused by: ' : '';
|
||||||
$result = [];
|
$result = [];
|
||||||
@@ -1049,12 +1128,12 @@ if (!function_exists('jTraceEx')) {
|
|||||||
count($value) && array_key_exists('class', $value) ? str_replace('\\', '.', $value['class']) : '',
|
count($value) && array_key_exists('class', $value) ? str_replace('\\', '.', $value['class']) : '',
|
||||||
count($value) && array_key_exists('class', $value) && array_key_exists('function', $value) ? '.' : '',
|
count($value) && array_key_exists('class', $value) && array_key_exists('function', $value) ? '.' : '',
|
||||||
count($value) && array_key_exists('function', $value) ? str_replace('\\', '.', $value['function']) : '(main)',
|
count($value) && array_key_exists('function', $value) ? str_replace('\\', '.', $value['function']) : '(main)',
|
||||||
$line === null ? $file : basename($file),
|
$line === NULL ? $file : basename($file),
|
||||||
$line === null ? '' : ':',
|
$line === NULL ? '' : ':',
|
||||||
$line === null ? '' : $line);
|
$line === NULL ? '' : $line);
|
||||||
|
|
||||||
$file = array_key_exists('file', $value) ? $value['file'] : 'Unknown Source';
|
$file = array_key_exists('file', $value) ? $value['file'] : 'Unknown Source';
|
||||||
$line = array_key_exists('file', $value) && array_key_exists('line', $value) && $value['line'] ? $value['line'] : null;
|
$line = array_key_exists('file', $value) && array_key_exists('line', $value) && $value['line'] ? $value['line'] : NULL;
|
||||||
}
|
}
|
||||||
$result = join($toHtml ? "<br>" : "\n", $result);
|
$result = join($toHtml ? "<br>" : "\n", $result);
|
||||||
if ($prev) {
|
if ($prev) {
|
||||||
@@ -1078,7 +1157,7 @@ if (!function_exists('swoole_substr_json_decode')) {
|
|||||||
*/
|
*/
|
||||||
function swoole_substr_json_decode($packet, int $length = 0): mixed
|
function swoole_substr_json_decode($packet, int $length = 0): mixed
|
||||||
{
|
{
|
||||||
return json_decode($packet, true);
|
return json_decode($packet, TRUE);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Annotation;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
use DirectoryIterator;
|
use DirectoryIterator;
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Annotation;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Annotation;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -17,6 +17,7 @@ abstract class Attribute implements IAnnotation
|
|||||||
* @param mixed|string $method
|
* @param mixed|string $method
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
|
#[\ReturnTypeWillChange]
|
||||||
public function execute(mixed $class, mixed $method = ''): mixed
|
public function execute(mixed $class, mixed $method = ''): mixed
|
||||||
{
|
{
|
||||||
// TODO: Implement execute() method.
|
// TODO: Implement execute() method.
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Annotation;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Annotation;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Annotation;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
@@ -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,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Annotation;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
use DirectoryIterator;
|
use DirectoryIterator;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\BaseObject;
|
use Kiri\Abstracts\Component;
|
||||||
use Kiri\Kiri;
|
use Kiri\Kiri;
|
||||||
use ReflectionClass;
|
use ReflectionClass;
|
||||||
use ReflectionException;
|
use ReflectionException;
|
||||||
@@ -17,19 +17,13 @@ use Throwable;
|
|||||||
* Class Loader
|
* Class Loader
|
||||||
* @package Annotation
|
* @package Annotation
|
||||||
*/
|
*/
|
||||||
class Loader extends BaseObject
|
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 BaseObject
|
|||||||
$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
|
||||||
@@ -147,7 +130,6 @@ class Loader extends BaseObject
|
|||||||
* @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,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Annotation;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
use Kiri\Kiri;
|
use Kiri\Kiri;
|
||||||
|
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Annotation\Route;
|
namespace Kiri\Annotation\Route;
|
||||||
|
|
||||||
|
|
||||||
use Annotation\Attribute;
|
use Kiri\Annotation\Attribute;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Document
|
* Class Document
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Annotation\Route;
|
namespace Kiri\Annotation\Route;
|
||||||
|
|
||||||
|
|
||||||
use Annotation\Attribute;
|
use Kiri\Annotation\Attribute;
|
||||||
use Http\Handler\Abstracts\MiddlewareManager;
|
use Http\Handler\Abstracts\MiddlewareManager;
|
||||||
use Psr\Http\Server\MiddlewareInterface;
|
use Psr\Http\Server\MiddlewareInterface;
|
||||||
|
|
||||||
@@ -41,6 +41,7 @@ use Psr\Http\Server\MiddlewareInterface;
|
|||||||
* @param mixed $class
|
* @param mixed $class
|
||||||
* @param mixed|null $method
|
* @param mixed|null $method
|
||||||
* @return $this
|
* @return $this
|
||||||
|
* @throws \ReflectionException
|
||||||
*/
|
*/
|
||||||
public function execute(mixed $class, mixed $method = null): mixed
|
public function execute(mixed $class, mixed $method = null): mixed
|
||||||
{
|
{
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Annotation\Route;
|
namespace Kiri\Annotation\Route;
|
||||||
|
|
||||||
|
|
||||||
use Annotation\Attribute;
|
use Kiri\Annotation\Attribute;
|
||||||
use Http\Handler\Router;
|
use Http\Handler\Router;
|
||||||
use Kiri\Kiri;
|
use Kiri\Kiri;
|
||||||
|
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Annotation\Route;
|
namespace Kiri\Annotation\Route;
|
||||||
|
|
||||||
|
|
||||||
use Annotation\Attribute;
|
use Kiri\Annotation\Attribute;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Socket
|
* Class Socket
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Annotation;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -1,24 +1,25 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Annotation;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Kiri;
|
use Kiri\Kiri;
|
||||||
|
use Server\Tasker\AsyncTaskExecute;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Asynchronous
|
* Class Task
|
||||||
* @package Annotation
|
* @package Annotation
|
||||||
* Task任务
|
* Task任务
|
||||||
*/
|
*/
|
||||||
#[\Attribute(\Attribute::TARGET_CLASS)] class Asynchronous extends Attribute
|
#[\Attribute(\Attribute::TARGET_CLASS)] class Task extends Attribute
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Asynchronous constructor.
|
* Task constructor.
|
||||||
* @param string $name
|
* @param string $name
|
||||||
*/
|
*/
|
||||||
public function __construct(public string $name)
|
public function __construct(public string $name)
|
||||||
@@ -35,8 +36,8 @@ use Kiri\Kiri;
|
|||||||
*/
|
*/
|
||||||
public function execute(mixed $class, mixed $method = null): bool
|
public function execute(mixed $class, mixed $method = null): bool
|
||||||
{
|
{
|
||||||
$async = Kiri::app()->getAsync();
|
$task = Kiri::getDi()->get(AsyncTaskExecute::class);
|
||||||
$async->addAsync($this->name, $class);
|
$task->reg($this->name, $class);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Kiri\Abstracts;
|
||||||
|
|
||||||
|
abstract class AbstractServer extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
public string $name = 'http';
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -10,25 +10,18 @@ declare(strict_types=1);
|
|||||||
namespace Kiri\Abstracts;
|
namespace Kiri\Abstracts;
|
||||||
|
|
||||||
|
|
||||||
use Annotation\Annotation as SAnnotation;
|
|
||||||
use Database\Connection;
|
use Database\Connection;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Http\Handler\Router;
|
use Http\Handler\Router;
|
||||||
use Kiri\Events\OnBeforeCommandExecute;
|
|
||||||
use Server\Server;
|
|
||||||
use Kafka\KafkaProvider;
|
use Kafka\KafkaProvider;
|
||||||
use Kiri\Async;
|
use Kiri\{Async, Kiri};
|
||||||
|
use Kiri\Annotation\Annotation as SAnnotation;
|
||||||
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\Exception\InitException;
|
|
||||||
use Kiri\Exception\NotFindClassException;
|
|
||||||
use Kiri\Kiri;
|
|
||||||
use ReflectionException;
|
use ReflectionException;
|
||||||
use Server\ServerManager;
|
use Server\{Contract\OnTaskInterface, Server, ServerManager, Tasker\AsyncTaskExecute};
|
||||||
use Server\Contract\OnTaskInterface;
|
|
||||||
use Swoole\Table;
|
use Swoole\Table;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -210,7 +203,7 @@ abstract class BaseApplication extends Component
|
|||||||
*/
|
*/
|
||||||
public function task(OnTaskInterface $execute): void
|
public function task(OnTaskInterface $execute): void
|
||||||
{
|
{
|
||||||
di(ServerManager::class)->task($execute);
|
di(AsyncTaskExecute::class)->execute($execute);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -222,22 +215,21 @@ abstract class BaseApplication extends Component
|
|||||||
*/
|
*/
|
||||||
private function addEvent($key, $value): void
|
private function addEvent($key, $value): void
|
||||||
{
|
{
|
||||||
$eventProvider = di(EventProvider::class);
|
|
||||||
if ($value instanceof \Closure || is_object($value)) {
|
if ($value instanceof \Closure || is_object($value)) {
|
||||||
$eventProvider->on($key, $value, 0);
|
$this->eventProvider->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)) {
|
||||||
$eventProvider->on($key, $value, 0);
|
$this->eventProvider->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]);
|
||||||
$eventProvider->on($key, $value, 0);
|
$this->eventProvider->on($key, $value, 0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -246,7 +238,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.");
|
||||||
}
|
}
|
||||||
$eventProvider->on($key, $item, 0);
|
$this->eventProvider->on($key, $item, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -397,7 +389,7 @@ abstract class BaseApplication extends Component
|
|||||||
*/
|
*/
|
||||||
public function getAnnotation(): SAnnotation
|
public function getAnnotation(): SAnnotation
|
||||||
{
|
{
|
||||||
return $this->get('annotation');
|
return $this->get('Annotation');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -411,7 +403,6 @@ abstract class BaseApplication extends Component
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $array
|
* @param $array
|
||||||
*/
|
*/
|
||||||
@@ -450,7 +441,7 @@ 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],
|
||||||
'annotation' => ['class' => SAnnotation::class],
|
'Annotation' => ['class' => SAnnotation::class],
|
||||||
'databases' => ['class' => Connection::class],
|
'databases' => ['class' => Connection::class],
|
||||||
'jwt' => ['class' => Jwt::class],
|
'jwt' => ['class' => Jwt::class],
|
||||||
'async' => ['class' => Async::class],
|
'async' => ['class' => Async::class],
|
||||||
|
|||||||
@@ -1,243 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* Created by PhpStorm.
|
|
||||||
* User: whwyy
|
|
||||||
* Date: 2018/3/30 0030
|
|
||||||
* Time: 14:10
|
|
||||||
*/
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Kiri\Abstracts;
|
|
||||||
|
|
||||||
use Exception;
|
|
||||||
use JetBrains\PhpStorm\Pure;
|
|
||||||
use Kiri\Kiri;
|
|
||||||
use Swoole\Coroutine;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class BaseObject
|
|
||||||
* @package Kiri\Kiri\Base
|
|
||||||
*/
|
|
||||||
class BaseObject implements Configure
|
|
||||||
{
|
|
||||||
|
|
||||||
/**
|
|
||||||
* BaseAbstract constructor.
|
|
||||||
*
|
|
||||||
* @param array $config
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public function __construct(array $config = [])
|
|
||||||
{
|
|
||||||
if (!empty($config) && is_array($config)) {
|
|
||||||
Kiri::configure($this, $config);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public function init()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param array|callable $callback
|
|
||||||
* @param object $scope
|
|
||||||
*/
|
|
||||||
public function async_create(array|callable $callback, object $scope)
|
|
||||||
{
|
|
||||||
Coroutine::create($callback, $scope);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
#[Pure] public static function className(): string
|
|
||||||
{
|
|
||||||
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 string $model
|
|
||||||
* @return bool
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public function addError($message, string $model = 'app'): bool
|
|
||||||
{
|
|
||||||
if ($message instanceof \Throwable) {
|
|
||||||
$this->error(jTraceEx($message));
|
|
||||||
} else {
|
|
||||||
if (!is_string($message)) {
|
|
||||||
$message = json_encode($message, JSON_UNESCAPED_UNICODE);
|
|
||||||
}
|
|
||||||
$this->error($message);
|
|
||||||
}
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return Logger
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
private function logger(): Logger
|
|
||||||
{
|
|
||||||
return Kiri::getDi()->get(Logger::class);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param mixed $message
|
|
||||||
* @param string $method
|
|
||||||
* @param string $file
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public function debug(mixed $message, string $method = '', string $file = '')
|
|
||||||
{
|
|
||||||
if (!is_string($message)) {
|
|
||||||
$message = print_r($message, true);
|
|
||||||
}
|
|
||||||
$message = "\033[35m" . $message . "\033[0m";
|
|
||||||
|
|
||||||
|
|
||||||
$context = [];
|
|
||||||
if (!empty($method)) $context['method'] = $method;
|
|
||||||
if (!empty($file)) $context['file'] = $file;
|
|
||||||
|
|
||||||
$this->logger()->debug($message, $context);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param mixed $message
|
|
||||||
* @param string $method
|
|
||||||
* @param string $file
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public function info(mixed $message, string $method = '', string $file = '')
|
|
||||||
{
|
|
||||||
if (!is_string($message)) {
|
|
||||||
$message = print_r($message, true);
|
|
||||||
}
|
|
||||||
$message = "\033[34m" . $message . "\033[0m";
|
|
||||||
|
|
||||||
|
|
||||||
$context = [];
|
|
||||||
if (!empty($method)) $context['method'] = $method;
|
|
||||||
if (!empty($file)) $context['file'] = $file;
|
|
||||||
|
|
||||||
$this->logger()->info($message, $context);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param mixed $message
|
|
||||||
* @param string $method
|
|
||||||
* @param string $file
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public function success(mixed $message, string $method = '', string $file = '')
|
|
||||||
{
|
|
||||||
if (!is_string($message)) {
|
|
||||||
$message = print_r($message, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
$message = "\033[36m" . $message . "\033[0m";
|
|
||||||
|
|
||||||
|
|
||||||
$context = [];
|
|
||||||
if (!empty($method)) $context['method'] = $method;
|
|
||||||
if (!empty($file)) $context['file'] = $file;
|
|
||||||
|
|
||||||
$this->logger()->notice($message, $context);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param mixed $message
|
|
||||||
* @param string $method
|
|
||||||
* @param string $file
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public function warning(mixed $message, string $method = '', string $file = '')
|
|
||||||
{
|
|
||||||
if (!is_string($message)) {
|
|
||||||
$message = print_r($message, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
$message = "\033[33m" . $message . "\033[0m";
|
|
||||||
|
|
||||||
|
|
||||||
$context = [];
|
|
||||||
if (!empty($method)) $context['method'] = $method;
|
|
||||||
if (!empty($file)) $context['file'] = $file;
|
|
||||||
|
|
||||||
$this->logger()->critical($message, $context);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param mixed $message
|
|
||||||
* @param null $method
|
|
||||||
* @param null $file
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public function error(mixed $message, $method = null, $file = null)
|
|
||||||
{
|
|
||||||
if ($message instanceof \Throwable) {
|
|
||||||
$message = $message->getMessage() . " on line " . $message->getLine() . " at file " . $message->getFile();
|
|
||||||
}
|
|
||||||
$content = (empty($method) ? '' : $method . ': ') . $message;
|
|
||||||
|
|
||||||
$message = "\033[41;37m" . $content . "\033[0m";
|
|
||||||
|
|
||||||
if (!empty($file)) {
|
|
||||||
$message .= PHP_EOL . "\03341;37m[" . $file . "\033[0m";
|
|
||||||
}
|
|
||||||
|
|
||||||
$context = [];
|
|
||||||
if (!empty($method)) $context['method'] = $method;
|
|
||||||
if (!empty($file)) $context['file'] = $file;
|
|
||||||
|
|
||||||
$this->logger()->error($message, $context);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -11,45 +11,250 @@ namespace Kiri\Abstracts;
|
|||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
|
|
||||||
use JetBrains\PhpStorm\Pure;
|
use JetBrains\PhpStorm\Pure;
|
||||||
use Kiri\Exception\ComponentException;
|
use Kiri\Di\Container;
|
||||||
|
use Kiri\Events\EventDispatch;
|
||||||
|
use Kiri\Events\EventProvider;
|
||||||
use Kiri\Kiri;
|
use Kiri\Kiri;
|
||||||
|
use Psr\Container\ContainerExceptionInterface;
|
||||||
|
use Psr\Container\ContainerInterface;
|
||||||
|
use Psr\Container\NotFoundExceptionInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Component
|
* Class Component
|
||||||
* @package Kiri\Kiri\Base
|
* @package Kiri\Kiri\Base
|
||||||
|
* @property ContainerInterface|Container $container
|
||||||
|
* @property EventProvider $eventProvider
|
||||||
|
* @property EventDispatch $eventDispatch
|
||||||
*/
|
*/
|
||||||
class Component extends BaseObject
|
class Component implements Configure
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $name
|
* BaseAbstract constructor.
|
||||||
* @param $value
|
*
|
||||||
|
* @param array $config
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function __set($name, $value)
|
public function __construct(array $config = [])
|
||||||
{
|
{
|
||||||
if (property_exists($this, $name)) {
|
if (!empty($config) && is_array($config)) {
|
||||||
$this->$name = $value;
|
Kiri::configure($this, $config);
|
||||||
} else {
|
|
||||||
parent::__set($name, $value);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return Container|ContainerInterface
|
||||||
|
*/
|
||||||
|
#[Pure] public function getContainer(): ContainerInterface|Container
|
||||||
|
{
|
||||||
|
return Kiri::getDi();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return EventProvider
|
||||||
|
* @throws ContainerExceptionInterface
|
||||||
|
* @throws NotFoundExceptionInterface
|
||||||
|
*/
|
||||||
|
public function getEventProvider(): EventProvider
|
||||||
|
{
|
||||||
|
return $this->getContainer()->get(EventProvider::class);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return EventDispatch
|
||||||
|
*/
|
||||||
|
protected function getEventDispatch(): EventDispatch
|
||||||
|
{
|
||||||
|
return Kiri::getDi()->get(EventDispatch::class);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public function init()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
#[Pure] public static function className(): string
|
||||||
|
{
|
||||||
|
return static::class;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $name
|
* @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
|
* @return mixed
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function __get($name): mixed
|
public function __get($name): mixed
|
||||||
{
|
{
|
||||||
if (property_exists($this, $name)) {
|
$method = 'get' . ucfirst($name);
|
||||||
return $this->$name ?? null;
|
if (method_exists($this, $method)) {
|
||||||
|
return $this->$method();
|
||||||
} else {
|
} else {
|
||||||
return parent::__get($name);
|
throw new Exception('The get name ' . $name . ' not find in class ' . static::class);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $message
|
||||||
|
* @param string $model
|
||||||
|
* @return bool
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public function addError($message, string $model = 'app'): bool
|
||||||
|
{
|
||||||
|
if ($message instanceof \Throwable) {
|
||||||
|
$this->error($message = jTraceEx($message));
|
||||||
|
} else {
|
||||||
|
if (!is_string($message)) {
|
||||||
|
$message = json_encode($message, JSON_UNESCAPED_UNICODE);
|
||||||
|
}
|
||||||
|
$this->error($message);
|
||||||
|
}
|
||||||
|
Kiri::app()->getLogger()->fail($message, $model);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return Logger
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
private function logger(): Logger
|
||||||
|
{
|
||||||
|
return Kiri::getDi()->get(Logger::class);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param mixed $message
|
||||||
|
* @param string $method
|
||||||
|
* @param string $file
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public function debug(mixed $message, string $method = '', string $file = '')
|
||||||
|
{
|
||||||
|
if (!is_string($message)) {
|
||||||
|
$message = print_r($message, true);
|
||||||
|
}
|
||||||
|
$context = [];
|
||||||
|
if (!empty($method)) $context['method'] = $method;
|
||||||
|
if (!empty($file)) $context['file'] = $file;
|
||||||
|
|
||||||
|
$this->logger()->debug($message, $context);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param mixed $message
|
||||||
|
* @param string $method
|
||||||
|
* @param string $file
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public function info(mixed $message, string $method = '', string $file = '')
|
||||||
|
{
|
||||||
|
if (!is_string($message)) {
|
||||||
|
$message = print_r($message, true);
|
||||||
|
}
|
||||||
|
$context = [];
|
||||||
|
if (!empty($method)) $context['method'] = $method;
|
||||||
|
if (!empty($file)) $context['file'] = $file;
|
||||||
|
|
||||||
|
$this->logger()->info($message, $context);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param mixed $message
|
||||||
|
* @param string $method
|
||||||
|
* @param string $file
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public function success(mixed $message, string $method = '', string $file = '')
|
||||||
|
{
|
||||||
|
if (!is_string($message)) {
|
||||||
|
$message = print_r($message, true);
|
||||||
|
}
|
||||||
|
$context = [];
|
||||||
|
if (!empty($method)) $context['method'] = $method;
|
||||||
|
if (!empty($file)) $context['file'] = $file;
|
||||||
|
|
||||||
|
$this->logger()->notice($message, $context);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param mixed $message
|
||||||
|
* @param string $method
|
||||||
|
* @param string $file
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public function warning(mixed $message, string $method = '', string $file = '')
|
||||||
|
{
|
||||||
|
if (!is_string($message)) {
|
||||||
|
$message = print_r($message, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
$context = [];
|
||||||
|
if (!empty($method)) $context['method'] = $method;
|
||||||
|
if (!empty($file)) $context['file'] = $file;
|
||||||
|
|
||||||
|
$this->logger()->critical($message, $context);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param mixed $message
|
||||||
|
* @param null $method
|
||||||
|
* @param null $file
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public function error(mixed $message, $method = null, $file = null)
|
||||||
|
{
|
||||||
|
if ($message instanceof \Throwable) {
|
||||||
|
$message = $message->getMessage() . " on line " . $message->getLine() . " at file " . $message->getFile();
|
||||||
|
}
|
||||||
|
|
||||||
|
$context = [];
|
||||||
|
if (is_string($method)) {
|
||||||
|
$message = (empty($method) ? '' : $method . ': ') . $message;
|
||||||
|
} else {
|
||||||
|
if (is_null($method)) {
|
||||||
|
$method = [];
|
||||||
|
}
|
||||||
|
$context = $method;
|
||||||
|
}
|
||||||
|
if (!empty($method)) $context['method'] = $method;
|
||||||
|
if (!empty($file)) $context['file'] = $file;
|
||||||
|
|
||||||
|
$this->logger()->error($message, $context);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,9 +9,7 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace Kiri\Abstracts;
|
namespace Kiri\Abstracts;
|
||||||
|
|
||||||
use Exception;
|
|
||||||
use Kiri\Exception\ConfigException;
|
use Kiri\Exception\ConfigException;
|
||||||
use Kiri\Kiri;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -23,15 +21,15 @@ class Config extends Component
|
|||||||
|
|
||||||
const ERROR_MESSAGE = 'The not find %s in app configs.';
|
const ERROR_MESSAGE = 'The not find %s in app configs.';
|
||||||
|
|
||||||
protected mixed $data = [];
|
protected static mixed $data = [];
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public function getData(): mixed
|
public static function getData(): mixed
|
||||||
{
|
{
|
||||||
return $this->data;
|
return static::$data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -40,23 +38,21 @@ class Config extends Component
|
|||||||
* @param $value
|
* @param $value
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public function setData($key, $value): mixed
|
public static function setData($key, $value): mixed
|
||||||
{
|
{
|
||||||
return $this->data[$key] = $value;
|
return static::$data[$key] = $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $configs
|
* @param array $configs
|
||||||
* @throws Exception
|
|
||||||
*/
|
*/
|
||||||
public static function sets(array $configs)
|
public static function sets(array $configs)
|
||||||
{
|
{
|
||||||
$config = Kiri::app()->getConfig();
|
|
||||||
if (empty($configs)) {
|
if (empty($configs)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$config->data = $configs;
|
static::$data = $configs;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -64,11 +60,11 @@ class Config extends Component
|
|||||||
* @param bool $try
|
* @param bool $try
|
||||||
* @param mixed|null $default
|
* @param mixed|null $default
|
||||||
* @return mixed
|
* @return mixed
|
||||||
* @throws
|
* @throws ConfigException
|
||||||
*/
|
*/
|
||||||
public static function get($key, mixed $default = null, bool $try = FALSE): mixed
|
public static function get($key, mixed $default = null, bool $try = FALSE): mixed
|
||||||
{
|
{
|
||||||
$instance = Kiri::app()->getConfig()->getData();
|
$instance = static::$data;
|
||||||
if (!str_contains($key, '.')) {
|
if (!str_contains($key, '.')) {
|
||||||
return $instance[$key] ?? $default;
|
return $instance[$key] ?? $default;
|
||||||
}
|
}
|
||||||
@@ -94,27 +90,35 @@ class Config extends Component
|
|||||||
* @param $key
|
* @param $key
|
||||||
* @param $value
|
* @param $value
|
||||||
* @return mixed
|
* @return mixed
|
||||||
* @throws Exception
|
|
||||||
*/
|
*/
|
||||||
public static function set($key, $value): mixed
|
public static function set($key, $value): mixed
|
||||||
{
|
{
|
||||||
$config = Kiri::app()->getConfig();
|
$explode = explode('.', $key);
|
||||||
return $config->setData($key, $value);
|
$parent = &static::$data;
|
||||||
|
foreach ($explode as $item) {
|
||||||
|
if (!isset($parent[$item])) {
|
||||||
|
$parent[$item] = [];
|
||||||
|
}
|
||||||
|
$parent = &$parent[$item];
|
||||||
|
}
|
||||||
|
$parent = $value;
|
||||||
|
|
||||||
|
unset($parent);
|
||||||
|
|
||||||
|
return static::$data;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $key
|
* @param $key
|
||||||
* @param bool $must_not_null
|
* @param bool $must_not_null
|
||||||
* @return bool
|
* @return bool
|
||||||
* @throws Exception
|
|
||||||
*/
|
*/
|
||||||
public static function has($key, bool $must_not_null = false): bool
|
public static function has($key, bool $must_not_null = false): bool
|
||||||
{
|
{
|
||||||
$config = Kiri::app()->getConfig();
|
if (!isset(static::$data[$key])) {
|
||||||
if (!isset($config->data[$key])) {
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
$config = $config->data[$key];
|
$config = static::$data[$key];
|
||||||
if ($must_not_null === false) {
|
if ($must_not_null === false) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,11 +2,13 @@
|
|||||||
|
|
||||||
namespace Kiri\Abstracts;
|
namespace Kiri\Abstracts;
|
||||||
|
|
||||||
use Annotation\Inject;
|
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 Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
|
use ReflectionException;
|
||||||
use Server\Events\OnWorkerStop;
|
use Server\Events\OnWorkerStop;
|
||||||
|
|
||||||
|
|
||||||
@@ -26,12 +28,6 @@ class Logger implements LoggerInterface
|
|||||||
const DEBUG = 'debug';
|
const DEBUG = 'debug';
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var EventProvider
|
|
||||||
*/
|
|
||||||
#[Inject(EventProvider::class)]
|
|
||||||
public EventProvider $eventProvider;
|
|
||||||
|
|
||||||
private array $_loggers = [];
|
private array $_loggers = [];
|
||||||
|
|
||||||
|
|
||||||
@@ -39,11 +35,12 @@ class Logger implements LoggerInterface
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 监听事件
|
* @return void
|
||||||
|
* @throws ReflectionException
|
||||||
*/
|
*/
|
||||||
public function init()
|
public function init()
|
||||||
{
|
{
|
||||||
$this->eventProvider->on(OnWorkerStop::class, [$this, 'onAfterRequest']);
|
Kiri::getDi()->get(EventProvider::class)->on(OnWorkerStop::class, [$this, 'onAfterRequest']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -158,7 +155,7 @@ class Logger implements LoggerInterface
|
|||||||
{
|
{
|
||||||
// TODO: Implement log() method.
|
// TODO: Implement log() method.
|
||||||
$levels = Config::get('log.level', Logger::LOGGER_LEVELS);
|
$levels = Config::get('log.level', Logger::LOGGER_LEVELS);
|
||||||
if (!in_array($level, $levels)) {
|
if (!in_array($level, $levels) || str_contains($message, 'Event::rshutdown')) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -179,13 +176,44 @@ class Logger implements LoggerInterface
|
|||||||
$loggers = implode(PHP_EOL, $this->_loggers);
|
$loggers = implode(PHP_EOL, $this->_loggers);
|
||||||
$this->_loggers = [];
|
$this->_loggers = [];
|
||||||
if (!empty($loggers)) {
|
if (!empty($loggers)) {
|
||||||
$filename = storage('log-' . date('Y-m-d') . '.log', 'logs/');
|
$filename = storage('log-' . date('Y-m-d') . '.log', 'log/');
|
||||||
|
|
||||||
file_put_contents($filename, $loggers);
|
file_put_contents($filename, $loggers);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return void
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public function flush()
|
||||||
|
{
|
||||||
|
$this->removeFile(storage());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $dirname
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
private function removeFile(string $dirname)
|
||||||
|
{
|
||||||
|
$paths = new DirectoryIterator($dirname);
|
||||||
|
/** @var DirectoryIterator $path */
|
||||||
|
foreach ($paths as $path) {
|
||||||
|
if ($path->isDot() || str_starts_with($path->getFilename(), '.')) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if ($path->isDir()) {
|
||||||
|
$directory = rtrim($path->getRealPath(), '/');
|
||||||
|
$this->removeFile($directory);
|
||||||
|
}
|
||||||
|
@unlink($path->getRealPath());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $message
|
* @param $message
|
||||||
* @param $context
|
* @param $context
|
||||||
@@ -194,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 . ' ' . 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 Annotation\Annotation as SAnnotation;
|
use Kiri\Annotation\Annotation as SAnnotation;
|
||||||
use Database\Connection;
|
use Database\Connection;
|
||||||
use Database\DatabasesProviders;
|
use Database\DatabasesProviders;
|
||||||
use Http\Handler\Client\Client;
|
|
||||||
use Http\Handler\Client\Curl;
|
|
||||||
use Http\Handler\Router;
|
use Http\Handler\Router;
|
||||||
use Server\Server;
|
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;
|
||||||
@@ -27,9 +24,7 @@ use Kiri\Jwt\JWTAuth;
|
|||||||
* @property JWTAuth $jwt
|
* @property JWTAuth $jwt
|
||||||
* @property SAnnotation $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
|
||||||
{
|
{
|
||||||
|
|||||||
+14
-17
@@ -13,24 +13,22 @@ namespace Kiri;
|
|||||||
use Closure;
|
use Closure;
|
||||||
use Database\DatabasesProviders;
|
use Database\DatabasesProviders;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\BaseApplication;
|
use Kiri\Abstracts\{BaseApplication, Config, Kernel};
|
||||||
use Kiri\Abstracts\Config;
|
|
||||||
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 ReflectionException;
|
use ReflectionException;
|
||||||
use Server\ServerProviders;
|
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;
|
Input\InputInterface,
|
||||||
use Symfony\Component\Console\Output\ConsoleOutput;
|
Output\ConsoleOutput,
|
||||||
|
Output\OutputInterface
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Init
|
* Class Init
|
||||||
@@ -192,7 +190,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 +211,6 @@ class Application extends BaseApplication
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $argv
|
* @param $argv
|
||||||
* @return array
|
* @return array
|
||||||
@@ -223,9 +221,7 @@ class Application extends BaseApplication
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws NotFindClassException
|
|
||||||
* @throws ReflectionException
|
* @throws ReflectionException
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
@@ -235,14 +231,15 @@ class Application extends BaseApplication
|
|||||||
if (!($class instanceof HotReload)) {
|
if (!($class instanceof HotReload)) {
|
||||||
scan_directory(directory('app'), 'App');
|
scan_directory(directory('app'), 'App');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$this->container->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
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ namespace Kiri;
|
|||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
use Server\ServerManager;
|
use Server\ServerManager;
|
||||||
|
use Server\Tasker\AsyncTaskExecute;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Async
|
* Class Async
|
||||||
@@ -36,8 +37,8 @@ class Async extends Component
|
|||||||
*/
|
*/
|
||||||
public function dispatch(string $name, array $params = [])
|
public function dispatch(string $name, array $params = [])
|
||||||
{
|
{
|
||||||
$context = di(ServerManager::class);
|
$context = di(AsyncTaskExecute::class);
|
||||||
$context->task(static::$_absences[$name], $params);
|
$context->execute(static::$_absences[$name], $params);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,12 +2,12 @@
|
|||||||
|
|
||||||
namespace Kiri\Cache\Base;
|
namespace Kiri\Cache\Base;
|
||||||
|
|
||||||
|
use Exception;
|
||||||
use Kiri\Abstracts\Logger;
|
use Kiri\Abstracts\Logger;
|
||||||
use Kiri\Exception\RedisConnectException;
|
use Kiri\Exception\RedisConnectException;
|
||||||
use Kiri\Kiri;
|
use Kiri\Kiri;
|
||||||
use Kiri\Pool\StopHeartbeatCheck;
|
use Kiri\Pool\StopHeartbeatCheck;
|
||||||
use RedisException;
|
use RedisException;
|
||||||
use Kiri\Context;
|
|
||||||
use Swoole\Timer;
|
use Swoole\Timer;
|
||||||
|
|
||||||
|
|
||||||
@@ -22,9 +22,21 @@ class Redis implements StopHeartbeatCheck
|
|||||||
|
|
||||||
private ?\Redis $pdo = null;
|
private ?\Redis $pdo = null;
|
||||||
|
|
||||||
|
public string $host;
|
||||||
|
|
||||||
private int $_transaction = 0;
|
public int $port;
|
||||||
|
|
||||||
|
public int $database = 0;
|
||||||
|
|
||||||
|
public string $auth = '';
|
||||||
|
|
||||||
|
public string $prefix = '';
|
||||||
|
|
||||||
|
public int $timeout = 30;
|
||||||
|
|
||||||
|
public int $read_timeout = 30;
|
||||||
|
|
||||||
|
public array $pool = [];
|
||||||
|
|
||||||
private int $_timer = -1;
|
private int $_timer = -1;
|
||||||
|
|
||||||
@@ -32,18 +44,18 @@ class Redis implements StopHeartbeatCheck
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $host
|
* @param array $config
|
||||||
* @param int $port
|
|
||||||
* @param int $database
|
|
||||||
* @param string $auth
|
|
||||||
* @param string $prefix
|
|
||||||
* @param int $timeout
|
|
||||||
* @param int $read_timeout
|
|
||||||
*/
|
*/
|
||||||
public function __construct(public string $host, public int $port, public int $database = 0,
|
public function __construct(array $config)
|
||||||
public string $auth = '', public string $prefix = '', public int $timeout = 30,
|
|
||||||
public int $read_timeout = 30)
|
|
||||||
{
|
{
|
||||||
|
$this->host = $config['host'];
|
||||||
|
$this->port = $config['port'];
|
||||||
|
$this->database = $config['databases'];
|
||||||
|
$this->auth = $config['auth'];
|
||||||
|
$this->prefix = $config['prefix'];
|
||||||
|
$this->timeout = $config['timeout'];
|
||||||
|
$this->read_timeout = $config['read_timeout'];
|
||||||
|
$this->pool = $config['pool'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -61,21 +73,28 @@ class Redis implements StopHeartbeatCheck
|
|||||||
if (env('state', 'start') == 'exit') {
|
if (env('state', 'start') == 'exit') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ($this->_timer === -1 && Context::inCoroutine()) {
|
if ($this->_timer === -1) {
|
||||||
$this->_timer = Timer::tick(1000, function () {
|
$this->_timer = Timer::tick(1000, fn() => $this->waite());
|
||||||
try {
|
}
|
||||||
if (env('state', 'start') == 'exit') {
|
}
|
||||||
Kiri::getDi()->get(Logger::class)->critical('timer end');
|
|
||||||
$this->stopHeartbeatCheck();
|
|
||||||
}
|
/**
|
||||||
if (time() - $this->_last > 10 * 60) {
|
* @throws Exception
|
||||||
$this->stopHeartbeatCheck();
|
*/
|
||||||
$this->pdo = null;
|
private function waite(): void
|
||||||
}
|
{
|
||||||
} catch (\Throwable $throwable) {
|
try {
|
||||||
error($throwable);
|
if (env('state', 'start') == 'exit') {
|
||||||
}
|
Kiri::getDi()->get(Logger::class)->critical('timer end');
|
||||||
});
|
$this->stopHeartbeatCheck();
|
||||||
|
}
|
||||||
|
if (time() - $this->_last > intval($this->pool['tick'] ?? 60)) {
|
||||||
|
$this->stopHeartbeatCheck();
|
||||||
|
$this->pdo = null;
|
||||||
|
}
|
||||||
|
} catch (\Throwable $throwable) {
|
||||||
|
error($throwable);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+37
-11
@@ -9,9 +9,7 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace Kiri\Cache;
|
namespace Kiri\Cache;
|
||||||
|
|
||||||
use Annotation\Inject;
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Server\Events\OnWorkerExit;
|
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
use Kiri\Abstracts\Config;
|
use Kiri\Abstracts\Config;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
@@ -19,6 +17,9 @@ use Kiri\Events\EventProvider;
|
|||||||
use Kiri\Exception\ConfigException;
|
use Kiri\Exception\ConfigException;
|
||||||
use Kiri\Kiri;
|
use Kiri\Kiri;
|
||||||
use Kiri\Pool\Redis as PoolRedis;
|
use Kiri\Pool\Redis as PoolRedis;
|
||||||
|
use Kiri\Annotation\Inject;
|
||||||
|
use Server\Events\OnWorkerExit;
|
||||||
|
use Swoole\Timer;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Redis
|
* Class Redis
|
||||||
@@ -28,11 +29,17 @@ use Kiri\Pool\Redis as PoolRedis;
|
|||||||
class Redis extends Component
|
class Redis extends Component
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
|
||||||
* @var EventProvider
|
const REDIS_OPTION_HOST = 'host';
|
||||||
*/
|
const REDIS_OPTION_PORT = 'port';
|
||||||
#[Inject(EventProvider::class)]
|
const REDIS_OPTION_PREFIX = 'prefix';
|
||||||
public EventProvider $eventProvider;
|
const REDIS_OPTION_AUTH = 'auth';
|
||||||
|
const REDIS_OPTION_DATABASES = 'databases';
|
||||||
|
const REDIS_OPTION_TIMEOUT = 'timeout';
|
||||||
|
const REDIS_OPTION_POOL = 'pool';
|
||||||
|
const REDIS_OPTION_POOL_TICK = 'tick';
|
||||||
|
const REDIS_OPTION_POOL_MIN = 'min';
|
||||||
|
const REDIS_OPTION_POOL_MAX = 'max';
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -41,11 +48,11 @@ class Redis extends Component
|
|||||||
*/
|
*/
|
||||||
public function init()
|
public function init()
|
||||||
{
|
{
|
||||||
$connections = Kiri::getDi()->get(PoolRedis::class);
|
$connections = Kiri::getDi()->get(PoolRedis::class);
|
||||||
|
|
||||||
$config = $this->get_config();
|
$config = $this->get_config();
|
||||||
|
|
||||||
$length = Config::get('connections.pool.max', 10);
|
$length = Config::get('cache.redis.pool.max', 10);
|
||||||
|
|
||||||
$this->eventProvider->on(OnWorkerExit::class, [$this, 'destroy'], 0);
|
$this->eventProvider->on(OnWorkerExit::class, [$this, 'destroy'], 0);
|
||||||
|
|
||||||
@@ -74,6 +81,25 @@ class Redis extends Component
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $key
|
||||||
|
* @param int $timeout
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function waite($key, int $timeout = 5): bool
|
||||||
|
{
|
||||||
|
$time = time();
|
||||||
|
while (!$this->setNx($key, 1)) {
|
||||||
|
if (time()- $time >= $timeout) {
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
usleep(1000);
|
||||||
|
}
|
||||||
|
$this->expire($key, $timeout);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $key
|
* @param $key
|
||||||
* @param int $timeout
|
* @param int $timeout
|
||||||
@@ -111,7 +137,7 @@ SCRIPT;
|
|||||||
*/
|
*/
|
||||||
public function release()
|
public function release()
|
||||||
{
|
{
|
||||||
$connections = Kiri::getDi()->get(PoolRedis::class);
|
$connections = Kiri::getDi()->get(PoolRedis::class);
|
||||||
$connections->release($this->get_config(), true);
|
$connections->release($this->get_config(), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -135,7 +161,7 @@ SCRIPT;
|
|||||||
*/
|
*/
|
||||||
public function proxy($name, $arguments): mixed
|
public function proxy($name, $arguments): mixed
|
||||||
{
|
{
|
||||||
$connections = Kiri::getDi()->get(PoolRedis::class);
|
$connections = Kiri::getDi()->get(PoolRedis::class);
|
||||||
|
|
||||||
$config = $this->get_config();
|
$config = $this->get_config();
|
||||||
|
|
||||||
|
|||||||
+28
-8
@@ -24,10 +24,13 @@ class Context extends BaseContext
|
|||||||
*/
|
*/
|
||||||
public static function setContext($id, $context, $coroutineId = null): mixed
|
public static function setContext($id, $context, $coroutineId = null): mixed
|
||||||
{
|
{
|
||||||
if (Coroutine::getCid() === -1) {
|
if (is_null($coroutineId)) {
|
||||||
return static::$_contents[$id] = $context;
|
$coroutineId = Coroutine::getCid();
|
||||||
}
|
}
|
||||||
return Coroutine::getContext($coroutineId)[$id] = $context;
|
if (Coroutine::getCid() !== -1) {
|
||||||
|
return Coroutine::getContext($coroutineId)[$id] = $context;
|
||||||
|
}
|
||||||
|
return static::$_contents[$id] = $context;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -38,6 +41,9 @@ class Context extends BaseContext
|
|||||||
*/
|
*/
|
||||||
public static function increment($id, int $value = 1, $coroutineId = null): bool|int
|
public static function increment($id, int $value = 1, $coroutineId = null): bool|int
|
||||||
{
|
{
|
||||||
|
if (is_null($coroutineId)) {
|
||||||
|
$coroutineId = Coroutine::getCid();
|
||||||
|
}
|
||||||
if (!isset(Coroutine::getContext($coroutineId)[$id])) {
|
if (!isset(Coroutine::getContext($coroutineId)[$id])) {
|
||||||
Coroutine::getContext($coroutineId)[$id] = 0;
|
Coroutine::getContext($coroutineId)[$id] = 0;
|
||||||
}
|
}
|
||||||
@@ -52,6 +58,9 @@ class Context extends BaseContext
|
|||||||
*/
|
*/
|
||||||
public static function decrement($id, int $value = 1, $coroutineId = null): bool|int
|
public static function decrement($id, int $value = 1, $coroutineId = null): bool|int
|
||||||
{
|
{
|
||||||
|
if (is_null($coroutineId)) {
|
||||||
|
$coroutineId = Coroutine::getCid();
|
||||||
|
}
|
||||||
if (!isset(Coroutine::getContext($coroutineId)[$id])) {
|
if (!isset(Coroutine::getContext($coroutineId)[$id])) {
|
||||||
Coroutine::getContext($coroutineId)[$id] = 0;
|
Coroutine::getContext($coroutineId)[$id] = 0;
|
||||||
}
|
}
|
||||||
@@ -81,6 +90,9 @@ class Context extends BaseContext
|
|||||||
*/
|
*/
|
||||||
private static function loadByContext($id, $default = null, $coroutineId = null): mixed
|
private static function loadByContext($id, $default = null, $coroutineId = null): mixed
|
||||||
{
|
{
|
||||||
|
if (is_null($coroutineId)) {
|
||||||
|
$coroutineId = Coroutine::getCid();
|
||||||
|
}
|
||||||
return Coroutine::getContext($coroutineId)[$id] ?? $default;
|
return Coroutine::getContext($coroutineId)[$id] ?? $default;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -115,6 +127,9 @@ class Context extends BaseContext
|
|||||||
*/
|
*/
|
||||||
public static function remove(string $id, $coroutineId = null)
|
public static function remove(string $id, $coroutineId = null)
|
||||||
{
|
{
|
||||||
|
if (is_null($coroutineId)) {
|
||||||
|
$coroutineId = Coroutine::getCid();
|
||||||
|
}
|
||||||
if (!static::hasContext($id, $coroutineId)) {
|
if (!static::hasContext($id, $coroutineId)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -150,8 +165,9 @@ class Context extends BaseContext
|
|||||||
if (!isset(static::$_contents[$id])) {
|
if (!isset(static::$_contents[$id])) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (!empty($key) && !isset(static::$_contents[$id][$key])) {
|
$value = static::$_contents[$id];
|
||||||
return false;
|
if (!empty($key) && is_array($value)) {
|
||||||
|
return isset($value[$key]);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -165,11 +181,15 @@ class Context extends BaseContext
|
|||||||
*/
|
*/
|
||||||
private static function searchByCoroutine($id, $key = null, $coroutineId = null): bool
|
private static function searchByCoroutine($id, $key = null, $coroutineId = null): bool
|
||||||
{
|
{
|
||||||
|
if (is_null($coroutineId)) {
|
||||||
|
$coroutineId = Coroutine::getCid();
|
||||||
|
}
|
||||||
if (!isset(Coroutine::getContext($coroutineId)[$id])) {
|
if (!isset(Coroutine::getContext($coroutineId)[$id])) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if ($key !== null) {
|
$value = Coroutine::getContext($coroutineId)[$id];
|
||||||
return isset((Coroutine::getContext($coroutineId)[$id] ?? [])[$key]);
|
if ($key !== null && is_array($value)) {
|
||||||
|
return isset($value[$key]);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ class DateFormat
|
|||||||
if ($time === null) {
|
if ($time === null) {
|
||||||
$time = time();
|
$time = time();
|
||||||
} else if (is_numeric($time)) {
|
} else if (is_numeric($time)) {
|
||||||
$length = strlen(floatval($time));
|
$length = strlen((string)$time);
|
||||||
if ($length != 10 && $length != 13) {
|
if ($length != 10 && $length != 13) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@@ -86,9 +86,7 @@ class DateFormat
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
$time = date('t', $time);
|
return date('t', $time);
|
||||||
|
|
||||||
return $time;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ class Dtl extends Component
|
|||||||
/**
|
/**
|
||||||
* Dtl constructor.
|
* Dtl constructor.
|
||||||
* @param $params
|
* @param $params
|
||||||
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function __construct($params)
|
public function __construct($params)
|
||||||
{
|
{
|
||||||
@@ -35,9 +36,6 @@ class Dtl extends Component
|
|||||||
*/
|
*/
|
||||||
public function toArray(): array
|
public function toArray(): array
|
||||||
{
|
{
|
||||||
if (!is_array($this->params)) {
|
|
||||||
return ArrayAccess::toArray($this->params);
|
|
||||||
}
|
|
||||||
return $this->params;
|
return $this->params;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,101 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Kiri\Core;
|
||||||
|
|
||||||
|
use JetBrains\PhpStorm\Pure;
|
||||||
|
use ReturnTypeWillChange;
|
||||||
|
|
||||||
|
class HashMap implements \ArrayAccess
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
private array $lists = [];
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $key
|
||||||
|
* @param $value
|
||||||
|
*/
|
||||||
|
public function put(string $key, $value)
|
||||||
|
{
|
||||||
|
$this->lists[$key] = $value;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $key
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
#[Pure] public function get(string $key): mixed
|
||||||
|
{
|
||||||
|
if (!$this->has($key)) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return $this->lists[$key];
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $key
|
||||||
|
*/
|
||||||
|
public function del(string $key)
|
||||||
|
{
|
||||||
|
if (!$this->has($key)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
unset($this->lists[$key]);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $key
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function has(string $key): bool
|
||||||
|
{
|
||||||
|
return array_key_exists($key, $this->lists);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param mixed $offset
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function offsetExists(mixed $offset): bool
|
||||||
|
{
|
||||||
|
return isset($this->lists[$offset]);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param mixed $offset
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
#[Pure] public function offsetGet(mixed $offset): mixed
|
||||||
|
{
|
||||||
|
return $this->get($offset);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param mixed $offset
|
||||||
|
* @param mixed $value
|
||||||
|
*/
|
||||||
|
#[ReturnTypeWillChange]
|
||||||
|
public function offsetSet(mixed $offset, mixed $value)
|
||||||
|
{
|
||||||
|
$this->put($offset, $value);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param mixed $offset
|
||||||
|
*/
|
||||||
|
#[ReturnTypeWillChange]
|
||||||
|
public function offsetUnset(mixed $offset)
|
||||||
|
{
|
||||||
|
unset($this->lists[$offset]);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -59,6 +59,7 @@ class Help
|
|||||||
/**
|
/**
|
||||||
* @param $xml
|
* @param $xml
|
||||||
* @return mixed
|
* @return mixed
|
||||||
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public static function toArray($xml): mixed
|
public static function toArray($xml): mixed
|
||||||
{
|
{
|
||||||
@@ -200,6 +201,9 @@ class Help
|
|||||||
*/
|
*/
|
||||||
public static function sendEmail($email, string $Subject, $messageContent)
|
public static function sendEmail($email, string $Subject, $messageContent)
|
||||||
{
|
{
|
||||||
|
if (!class_exists('\Swift_Mailer')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
$mailer = new \Swift_Mailer((new \Swift_SmtpTransport($email['host'], $email['port']))
|
$mailer = new \Swift_Mailer((new \Swift_SmtpTransport($email['host'], $email['port']))
|
||||||
->setUsername($email['username'])->setPassword($email['password']));
|
->setUsername($email['username'])->setPassword($email['password']));
|
||||||
$message = (new \Swift_Message($Subject))
|
$message = (new \Swift_Message($Subject))
|
||||||
|
|||||||
+10
-11
@@ -43,7 +43,7 @@ class Json
|
|||||||
* @param bool $asArray
|
* @param bool $asArray
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public static function decode($data, $asArray = true): mixed
|
public static function decode($data, bool $asArray = true): mixed
|
||||||
{
|
{
|
||||||
if (is_array($data) || is_numeric($data)) {
|
if (is_array($data) || is_numeric($data)) {
|
||||||
return $data;
|
return $data;
|
||||||
@@ -55,22 +55,21 @@ class Json
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $code
|
* @param $code
|
||||||
* @param string $message
|
* @param string|array $message
|
||||||
* @param array $data
|
* @param array|int $data
|
||||||
* @param int $count
|
* @param int $count
|
||||||
* @param array $exPageInfo
|
* @param array $exPageInfo
|
||||||
* @return mixed
|
* @return string|bool
|
||||||
* @throws
|
|
||||||
*/
|
*/
|
||||||
public static function to($code, $message = '', $data = [], $count = 0, $exPageInfo = []): mixed
|
public static function to($code, string|array $message = '', array|int $data = [], int $count = 0, array $exPageInfo = []): string|bool
|
||||||
{
|
{
|
||||||
$params['code'] = $code;
|
$params['code'] = $code;
|
||||||
if (!is_string($message)) {
|
if (!is_string($message)) {
|
||||||
$params['param'] = $message;
|
$params['message'] = 'System success.';
|
||||||
if (!empty($data)) {
|
$params['param'] = $message;
|
||||||
$params['exPageInfo'] = $data;
|
if (!empty($data)) {
|
||||||
}
|
$params['exPageInfo'] = $data;
|
||||||
$params['message'] = 'System success.';
|
}
|
||||||
} else {
|
} else {
|
||||||
$params['message'] = $message;
|
$params['message'] = $message;
|
||||||
$params['param'] = $data;
|
$params['param'] = $data;
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Kiri\Core;
|
||||||
|
|
||||||
|
class Network
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public static function local(): string
|
||||||
|
{
|
||||||
|
return current(swoole_get_local_ip());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -9,10 +9,9 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace Kiri\Di;
|
namespace Kiri\Di;
|
||||||
|
|
||||||
use Annotation\Inject;
|
use Kiri\Annotation\Inject;
|
||||||
use Closure;
|
use Closure;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\BaseObject;
|
|
||||||
use Kiri\Abstracts\Logger;
|
use Kiri\Abstracts\Logger;
|
||||||
use Kiri\Kiri;
|
use Kiri\Kiri;
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
@@ -27,7 +26,7 @@ use Psr\Container\ContainerInterface;
|
|||||||
* Class Container
|
* Class Container
|
||||||
* @package Kiri\Di
|
* @package Kiri\Di
|
||||||
*/
|
*/
|
||||||
class Container extends BaseObject implements ContainerInterface
|
class Container implements ContainerInterface
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -65,7 +64,7 @@ class Container extends BaseObject implements ContainerInterface
|
|||||||
/**
|
/**
|
||||||
* @param string $id
|
* @param string $id
|
||||||
* @return mixed
|
* @return mixed
|
||||||
* @throws ReflectionException
|
* @throws
|
||||||
*/
|
*/
|
||||||
public function get(string $id): mixed
|
public function get(string $id): mixed
|
||||||
{
|
{
|
||||||
@@ -79,8 +78,7 @@ class Container extends BaseObject implements ContainerInterface
|
|||||||
* @param array $constrict
|
* @param array $constrict
|
||||||
* @param array $config
|
* @param array $config
|
||||||
* @return mixed
|
* @return mixed
|
||||||
* @throws ReflectionException
|
* @throws
|
||||||
* @throws Exception
|
|
||||||
*/
|
*/
|
||||||
public function make($class, array $constrict = [], array $config = []): mixed
|
public function make($class, array $constrict = [], array $config = []): mixed
|
||||||
{
|
{
|
||||||
@@ -108,7 +106,6 @@ class Container extends BaseObject implements ContainerInterface
|
|||||||
/**
|
/**
|
||||||
* @param $class
|
* @param $class
|
||||||
* @return bool
|
* @return bool
|
||||||
* @throws ReflectionException
|
|
||||||
*/
|
*/
|
||||||
public function isInterface($class): bool
|
public function isInterface($class): bool
|
||||||
{
|
{
|
||||||
@@ -200,7 +197,7 @@ class Container extends BaseObject implements ContainerInterface
|
|||||||
*/
|
*/
|
||||||
public function propertyInject(ReflectionClass $reflect, $object): mixed
|
public function propertyInject(ReflectionClass $reflect, $object): mixed
|
||||||
{
|
{
|
||||||
foreach (NoteManager::getPropertyNote($reflect) as $property => $inject) {
|
foreach (NoteManager::getPropertyAnnotation($reflect) as $property => $inject) {
|
||||||
/** @var Inject $inject */
|
/** @var Inject $inject */
|
||||||
$inject->execute($object, $property);
|
$inject->execute($object, $property);
|
||||||
}
|
}
|
||||||
@@ -212,11 +209,10 @@ class Container extends BaseObject implements ContainerInterface
|
|||||||
* @param $className
|
* @param $className
|
||||||
* @param $method
|
* @param $method
|
||||||
* @return array
|
* @return array
|
||||||
* @throws ReflectionException
|
|
||||||
*/
|
*/
|
||||||
public function getMethodAttribute($className, $method = null): array
|
public function getMethodAttribute($className, $method = null): array
|
||||||
{
|
{
|
||||||
$methods = NoteManager::getMethodNote($this->getReflect($className));
|
$methods = NoteManager::getMethodAnnotation($this->getReflect($className));
|
||||||
if (!empty($method)) {
|
if (!empty($method)) {
|
||||||
return $methods[$method] ?? [];
|
return $methods[$method] ?? [];
|
||||||
}
|
}
|
||||||
@@ -228,7 +224,6 @@ class Container extends BaseObject implements ContainerInterface
|
|||||||
* @param string $class
|
* @param string $class
|
||||||
* @param string|null $property
|
* @param string|null $property
|
||||||
* @return ReflectionProperty|ReflectionProperty[]|null
|
* @return ReflectionProperty|ReflectionProperty[]|null
|
||||||
* @throws ReflectionException
|
|
||||||
*/
|
*/
|
||||||
public function getClassReflectionProperty(string $class, string $property = null): ReflectionProperty|null|array
|
public function getClassReflectionProperty(string $class, string $property = null): ReflectionProperty|null|array
|
||||||
{
|
{
|
||||||
@@ -261,7 +256,6 @@ class Container extends BaseObject implements ContainerInterface
|
|||||||
/**
|
/**
|
||||||
* @param $class
|
* @param $class
|
||||||
* @return ReflectionClass
|
* @return ReflectionClass
|
||||||
* @throws ReflectionException
|
|
||||||
*/
|
*/
|
||||||
private function resolveDependencies($class): ReflectionClass
|
private function resolveDependencies($class): ReflectionClass
|
||||||
{
|
{
|
||||||
@@ -340,9 +334,6 @@ class Container extends BaseObject implements ContainerInterface
|
|||||||
if (!isset($this->_parameters[$class])) {
|
if (!isset($this->_parameters[$class])) {
|
||||||
$this->_parameters[$class] = [];
|
$this->_parameters[$class] = [];
|
||||||
}
|
}
|
||||||
if (!isset($this->_parameters[$class][$method])) {
|
|
||||||
$this->_parameters[$class][$method] = [];
|
|
||||||
}
|
|
||||||
return $this->_parameters[$class][$method] = $parameters;
|
return $this->_parameters[$class][$method] = $parameters;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -361,7 +352,6 @@ class Container extends BaseObject implements ContainerInterface
|
|||||||
/**
|
/**
|
||||||
* @param ReflectionMethod|ReflectionFunction $reflectionMethod
|
* @param ReflectionMethod|ReflectionFunction $reflectionMethod
|
||||||
* @return array
|
* @return array
|
||||||
* @throws ReflectionException
|
|
||||||
*/
|
*/
|
||||||
private function resolveMethodParameters(ReflectionMethod|ReflectionFunction $reflectionMethod): array
|
private function resolveMethodParameters(ReflectionMethod|ReflectionFunction $reflectionMethod): array
|
||||||
{
|
{
|
||||||
@@ -395,7 +385,6 @@ class Container extends BaseObject implements ContainerInterface
|
|||||||
/**
|
/**
|
||||||
* @param $class
|
* @param $class
|
||||||
* @return ReflectionClass|null
|
* @return ReflectionClass|null
|
||||||
* @throws ReflectionException
|
|
||||||
*/
|
*/
|
||||||
public function getReflect($class): ?ReflectionClass
|
public function getReflect($class): ?ReflectionClass
|
||||||
{
|
{
|
||||||
|
|||||||
+253
-239
@@ -11,279 +11,293 @@ class NoteManager
|
|||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
private static array $_classTarget = [];
|
private static array $_classTarget = [];
|
||||||
private static array $_classMethodNote = [];
|
private static array $_classMethodAnnotation = [];
|
||||||
private static array $_classMethod = [];
|
private static array $_classMethod = [];
|
||||||
private static array $_classPropertyNote = [];
|
private static array $_classPropertyAnnotation = [];
|
||||||
private static array $_classProperty = [];
|
private static array $_classProperty = [];
|
||||||
private static array $_mapping = [];
|
private static array $_mapping = [];
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param ReflectionClass $class
|
* @return void
|
||||||
*/
|
*/
|
||||||
public static function setTargetNote(ReflectionClass $class)
|
public static function clear()
|
||||||
{
|
{
|
||||||
$className = $class->getName();
|
static::$_classTarget = [];
|
||||||
if (!isset(static::$_classTarget[$className])) {
|
static::$_classMethodAnnotation = [];
|
||||||
static::$_classTarget[$className] = [];
|
static::$_classMethod = [];
|
||||||
}
|
static::$_classPropertyAnnotation = [];
|
||||||
foreach ($class->getAttributes() as $attribute) {
|
static::$_classProperty = [];
|
||||||
if (!class_exists($attribute->getName())) {
|
static::$_mapping = [];
|
||||||
continue;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
$instance = $attribute->newInstance();
|
|
||||||
|
|
||||||
static::$_classTarget[$className][] = $instance;
|
|
||||||
|
|
||||||
self::setMappingClass($attribute, $className);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param ReflectionAttribute $attribute
|
* @param ReflectionClass $class
|
||||||
* @param string $class
|
*/
|
||||||
*/
|
public static function setTargetAnnotation(ReflectionClass $class)
|
||||||
public static function setMappingClass(ReflectionAttribute $attribute, string $class)
|
{
|
||||||
{
|
$className = $class->getName();
|
||||||
if (!isset(static::$_mapping[$attribute->getName()])) {
|
if (!isset(static::$_classTarget[$className])) {
|
||||||
static::$_mapping[$attribute->getName()] = [];
|
static::$_classTarget[$className] = [];
|
||||||
}
|
}
|
||||||
if (!isset(static::$_mapping[$attribute->getName()][$class])) {
|
foreach ($class->getAttributes() as $attribute) {
|
||||||
static::$_mapping[$attribute->getName()][$class] = [];
|
if (!class_exists($attribute->getName())) {
|
||||||
}
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$instance = $attribute->newInstance();
|
||||||
|
|
||||||
|
static::$_classTarget[$className][] = $instance;
|
||||||
|
|
||||||
|
self::setMappingClass($attribute, $className);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param ReflectionAttribute $attribute
|
* @param ReflectionAttribute $attribute
|
||||||
* @param string $class
|
* @param string $class
|
||||||
* @param string $method
|
*/
|
||||||
* @param mixed $instance
|
public static function setMappingClass(ReflectionAttribute $attribute, string $class)
|
||||||
*/
|
{
|
||||||
public static function setMappingMethod(ReflectionAttribute $attribute, string $class, string $method, mixed $instance)
|
if (!isset(static::$_mapping[$attribute->getName()])) {
|
||||||
{
|
static::$_mapping[$attribute->getName()] = [];
|
||||||
self::setMappingClass($attribute, $class);
|
}
|
||||||
|
if (!isset(static::$_mapping[$attribute->getName()][$class])) {
|
||||||
if (!isset(static::$_mapping[$attribute->getName()][$class]['method'])) {
|
static::$_mapping[$attribute->getName()][$class] = [];
|
||||||
static::$_mapping[$attribute->getName()][$class]['method'] = [];
|
}
|
||||||
}
|
}
|
||||||
static::$_mapping[$attribute->getName()][$class]['method'][] = [$method => $instance];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param ReflectionAttribute $attribute
|
* @param ReflectionAttribute $attribute
|
||||||
* @param string $class
|
* @param string $class
|
||||||
* @param string $property
|
* @param string $method
|
||||||
* @param $instance
|
* @param mixed $instance
|
||||||
*/
|
*/
|
||||||
public static function setMappingProperty(ReflectionAttribute $attribute, string $class, string $property, $instance)
|
public static function setMappingMethod(ReflectionAttribute $attribute, string $class, string $method, mixed $instance)
|
||||||
{
|
{
|
||||||
self::setMappingClass($attribute, $class);
|
self::setMappingClass($attribute, $class);
|
||||||
|
|
||||||
$mapping = static::$_mapping[$attribute->getName()][$class];
|
if (!isset(static::$_mapping[$attribute->getName()][$class]['method'])) {
|
||||||
if (!isset($mapping['property'])) {
|
static::$_mapping[$attribute->getName()][$class]['method'] = [];
|
||||||
$mapping['property'] = [];
|
}
|
||||||
}
|
static::$_mapping[$attribute->getName()][$class]['method'][] = [$method => $instance];
|
||||||
$mapping['property'][] = [$property => $instance];
|
}
|
||||||
static::$_mapping[$attribute->getName()][$class] = $mapping;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param mixed $class
|
* @param ReflectionAttribute $attribute
|
||||||
* @return array
|
* @param string $class
|
||||||
*/
|
* @param string $property
|
||||||
public static function getTargetNote(mixed $class): array
|
* @param $instance
|
||||||
{
|
*/
|
||||||
if (!is_string($class)) {
|
public static function setMappingProperty(ReflectionAttribute $attribute, string $class, string $property, $instance)
|
||||||
$class = $class::class;
|
{
|
||||||
}
|
self::setMappingClass($attribute, $class);
|
||||||
return static::$_classTarget[$class] ?? [];
|
|
||||||
}
|
$mapping = static::$_mapping[$attribute->getName()][$class];
|
||||||
|
if (!isset($mapping['property'])) {
|
||||||
|
$mapping['property'] = [];
|
||||||
|
}
|
||||||
|
$mapping['property'][] = [$property => $instance];
|
||||||
|
static::$_mapping[$attribute->getName()][$class] = $mapping;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param ReflectionClass $class
|
* @param mixed $class
|
||||||
*/
|
* @return array
|
||||||
public static function setMethodNote(ReflectionClass $class)
|
*/
|
||||||
{
|
public static function getTargetAnnotation(mixed $class): array
|
||||||
$className = $class->getName();
|
{
|
||||||
static::$_classMethodNote[$className] = static::$_classMethod[$className] = [];
|
if (!is_string($class)) {
|
||||||
foreach ($class->getMethods() as $ReflectionMethod) {
|
$class = $class::class;
|
||||||
static::$_classMethod[$className][$ReflectionMethod->getName()] = $ReflectionMethod;
|
}
|
||||||
static::$_classMethodNote[$className][$ReflectionMethod->getName()] = [];
|
return static::$_classTarget[$class] ?? [];
|
||||||
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 ReflectionClass $class
|
||||||
* @param string $method
|
*/
|
||||||
* @return bool
|
public static function setMethodAnnotation(ReflectionClass $class)
|
||||||
*/
|
{
|
||||||
public static function hasMethod(string $class, string $method): bool
|
$className = $class->getName();
|
||||||
{
|
static::$_classMethodAnnotation[$className] = static::$_classMethod[$className] = [];
|
||||||
return isset(static::$_classMethod[$class]) && isset(static::$_classMethod[$class][$method]);
|
foreach ($class->getMethods() as $ReflectionMethod) {
|
||||||
}
|
static::$_classMethod[$className][$ReflectionMethod->getName()] = $ReflectionMethod;
|
||||||
|
static::$_classMethodAnnotation[$className][$ReflectionMethod->getName()] = [];
|
||||||
|
foreach ($ReflectionMethod->getAttributes() as $attribute) {
|
||||||
|
if (!class_exists($attribute->getName())) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
$instance = $attribute->newInstance();
|
||||||
|
|
||||||
|
static::$_classMethodAnnotation[$className][$ReflectionMethod->getName()][] = $instance;
|
||||||
|
|
||||||
|
self::setMappingMethod($attribute, $className, $ReflectionMethod->getName(), $instance);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param ReflectionClass $class
|
* @param string $class
|
||||||
* @return array
|
* @param string $method
|
||||||
*/
|
* @return bool
|
||||||
#[Pure] public static function getMethodNote(ReflectionClass $class): array
|
*/
|
||||||
{
|
public static function hasMethod(string $class, string $method): bool
|
||||||
return static::$_classMethodNote[$class->getName()] ?? [];
|
{
|
||||||
}
|
return isset(static::$_classMethod[$class]) && isset(static::$_classMethod[$class][$method]);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param \ReflectionClass $reflect
|
* @param ReflectionClass $class
|
||||||
* @return \ReflectionMethod|null
|
* @return array
|
||||||
*/
|
*/
|
||||||
public static function resolveTarget(ReflectionClass $reflect): ?\ReflectionMethod
|
#[Pure] public static function getMethodAnnotation(ReflectionClass $class): array
|
||||||
{
|
{
|
||||||
NoteManager::setPropertyNote($reflect);
|
return static::$_classMethodAnnotation[$class->getName()] ?? [];
|
||||||
NoteManager::setTargetNote($reflect);
|
}
|
||||||
NoteManager::setMethodNote($reflect);
|
|
||||||
|
|
||||||
return $reflect->getConstructor();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param ReflectionClass $class
|
* @param \ReflectionClass $reflect
|
||||||
*/
|
* @return \ReflectionMethod|null
|
||||||
public static function setPropertyNote(ReflectionClass $class)
|
*/
|
||||||
{
|
public static function resolveTarget(ReflectionClass $reflect): ?\ReflectionMethod
|
||||||
$className = $class->getName();
|
{
|
||||||
static::$_classProperty[$className] = static::$_classPropertyNote[$className] = [];
|
NoteManager::setPropertyAnnotation($reflect);
|
||||||
foreach ($class->getProperties(ReflectionProperty::IS_PRIVATE | ReflectionProperty::IS_PUBLIC |
|
NoteManager::setTargetAnnotation($reflect);
|
||||||
ReflectionProperty::IS_PROTECTED) as $ReflectionMethod) {
|
NoteManager::setMethodAnnotation($reflect);
|
||||||
static::$_classProperty[$className][$ReflectionMethod->getName()] = $ReflectionMethod;
|
|
||||||
foreach ($ReflectionMethod->getAttributes() as $attribute) {
|
|
||||||
if (!class_exists($attribute->getName())) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
$instance = $attribute->newInstance();
|
return $reflect->getConstructor();
|
||||||
|
}
|
||||||
static::$_classPropertyNote[$className][$ReflectionMethod->getName()] = $instance;
|
|
||||||
|
|
||||||
self::setMappingProperty($attribute, $className, $ReflectionMethod->getName(), $instance);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $attribute
|
* @param ReflectionClass $class
|
||||||
* @param string|null $class
|
*/
|
||||||
* @return array[]
|
public static function setPropertyAnnotation(ReflectionClass $class)
|
||||||
*/
|
{
|
||||||
public static function getAttributeTrees(string $attribute, string $class = null): array
|
$className = $class->getName();
|
||||||
{
|
static::$_classProperty[$className] = static::$_classPropertyAnnotation[$className] = [];
|
||||||
$mapping = static::$_mapping[$attribute] ?? [];
|
foreach ($class->getProperties(ReflectionProperty::IS_PRIVATE | ReflectionProperty::IS_PUBLIC |
|
||||||
if (empty($mapping) || empty($class)) {
|
ReflectionProperty::IS_PROTECTED) as $ReflectionMethod) {
|
||||||
return $mapping;
|
static::$_classProperty[$className][$ReflectionMethod->getName()] = $ReflectionMethod;
|
||||||
}
|
foreach ($ReflectionMethod->getAttributes() as $attribute) {
|
||||||
return $mapping[$class] ?? [];
|
if (!class_exists($attribute->getName())) {
|
||||||
}
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
$instance = $attribute->newInstance();
|
||||||
|
|
||||||
|
static::$_classPropertyAnnotation[$className][$ReflectionMethod->getName()] = $instance;
|
||||||
|
|
||||||
|
self::setMappingProperty($attribute, $className, $ReflectionMethod->getName(), $instance);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $attribute
|
* @param string $attribute
|
||||||
* @param string $class
|
* @param string|null $class
|
||||||
* @param string|null $method
|
* @return array[]
|
||||||
* @return array
|
*/
|
||||||
*/
|
public static function getAttributeTrees(string $attribute, string $class = null): array
|
||||||
public static function getSpecify_annotation(string $attribute, string $class, string $method = null): mixed
|
{
|
||||||
{
|
$mapping = static::$_mapping[$attribute] ?? [];
|
||||||
$class = self::getAttributeTrees($attribute, $class);
|
if (empty($mapping) || empty($class)) {
|
||||||
if (empty($class) || !isset($class['method'])){
|
return $mapping;
|
||||||
return null;
|
}
|
||||||
}
|
return $mapping[$class] ?? [];
|
||||||
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 $attribute
|
||||||
* @param string $class
|
* @param string $class
|
||||||
* @param string $method
|
* @param string|null $method
|
||||||
* @return mixed
|
* @return array
|
||||||
*/
|
*/
|
||||||
public static function getPropertyByAnnotation(string $attribute, string $class, string $method): mixed
|
public static function getSpecify_annotation(string $attribute, string $class, string $method = null): mixed
|
||||||
{
|
{
|
||||||
$class = self::getAttributeTrees($attribute, $class);
|
$class = self::getAttributeTrees($attribute, $class);
|
||||||
if (empty($class) || !isset($class['property'])) {
|
if (empty($class) || !isset($class['method'])) {
|
||||||
return [];
|
return null;
|
||||||
}
|
}
|
||||||
foreach ($class['property'] as $value) {
|
if (empty($method)) {
|
||||||
$key = key($value);
|
return $class['method'];
|
||||||
if ($method == $key) {
|
}
|
||||||
return $value[$key];
|
foreach ($class['method'] as $value) {
|
||||||
}
|
$key = key($value);
|
||||||
}
|
if ($method == $key) {
|
||||||
return null;
|
return $value[$key];
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param ReflectionClass|string $class
|
* @param string $attribute
|
||||||
* @return array
|
* @param string $class
|
||||||
* @throws \ReflectionException
|
* @param string $method
|
||||||
*/
|
* @return mixed
|
||||||
public static function getMethods(ReflectionClass|string $class): array
|
*/
|
||||||
{
|
public static function getPropertyByAnnotation(string $attribute, string $class, string $method): mixed
|
||||||
if (is_string($class)) {
|
{
|
||||||
$class = self::getReflect($class);
|
$class = self::getAttributeTrees($attribute, $class);
|
||||||
}
|
if (empty($class) || !isset($class['property'])) {
|
||||||
return static::$_classMethod[$class->getName()] ?? [];
|
return [];
|
||||||
}
|
}
|
||||||
|
foreach ($class['property'] as $value) {
|
||||||
|
$key = key($value);
|
||||||
|
if ($method == $key) {
|
||||||
|
return $value[$key];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param ReflectionClass $class
|
* @param ReflectionClass|string $class
|
||||||
* @return ReflectionProperty[]
|
* @return array
|
||||||
*/
|
* @throws \ReflectionException
|
||||||
#[Pure] public static function getProperty(ReflectionClass $class): array
|
*/
|
||||||
{
|
public static function getMethods(ReflectionClass|string $class): array
|
||||||
return static::$_classProperty[$class->getName()] ?? [];
|
{
|
||||||
}
|
if (is_string($class)) {
|
||||||
|
$class = self::getReflect($class);
|
||||||
|
}
|
||||||
|
return static::$_classMethod[$class->getName()] ?? [];
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param ReflectionClass $class
|
* @param ReflectionClass $class
|
||||||
* @return array
|
* @return ReflectionProperty[]
|
||||||
*/
|
*/
|
||||||
#[Pure] public static function getPropertyNote(ReflectionClass $class): array
|
#[Pure] public static function getProperty(ReflectionClass $class): array
|
||||||
{
|
{
|
||||||
return static::$_classPropertyNote[$class->getName()] ?? [];
|
return static::$_classProperty[$class->getName()] ?? [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param ReflectionClass $class
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
#[Pure] public static function getPropertyAnnotation(ReflectionClass $class): array
|
||||||
|
{
|
||||||
|
return static::$_classPropertyAnnotation[$class->getName()] ?? [];
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,12 +9,11 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace Kiri\Error;
|
namespace Kiri\Error;
|
||||||
|
|
||||||
use Annotation\Inject;
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
use Kiri\Events\EventProvider;
|
|
||||||
use Kiri\Kiri;
|
use Kiri\Kiri;
|
||||||
|
use Kiri\Annotation\Inject;
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
use Throwable;
|
use Throwable;
|
||||||
|
|
||||||
@@ -29,11 +28,6 @@ class Logger extends Component
|
|||||||
private array $logs = [];
|
private array $logs = [];
|
||||||
|
|
||||||
|
|
||||||
/** @var EventProvider */
|
|
||||||
#[Inject(EventProvider::class)]
|
|
||||||
public EventProvider $eventProvider;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* inject logger
|
* inject logger
|
||||||
*
|
*
|
||||||
@@ -52,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
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ use Http\Aspect\OnAspectInterface;
|
|||||||
use Http\Aspect\OnJoinPointInterface;
|
use Http\Aspect\OnJoinPointInterface;
|
||||||
use Http\Constrict\RequestInterface;
|
use Http\Constrict\RequestInterface;
|
||||||
use Kiri\Kiri;
|
use Kiri\Kiri;
|
||||||
|
use Psr\Log\LoggerInterface;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -43,10 +44,10 @@ class LoggerAspect implements OnAspectInterface
|
|||||||
private function print_runtime($startTime)
|
private function print_runtime($startTime)
|
||||||
{
|
{
|
||||||
$request = Kiri::getDi()->get(RequestInterface::class);
|
$request = Kiri::getDi()->get(RequestInterface::class);
|
||||||
|
|
||||||
$runTime = round(microtime(true) - $startTime, 6);
|
$runTime = round(microtime(true) - $startTime, 6);
|
||||||
echo sprintf('run %s use time %6f', $request->getUri()->__toString(), $runTime);
|
|
||||||
echo PHP_EOL;
|
$logger = Kiri::getDi()->get(LoggerInterface::class);
|
||||||
|
$logger->debug(sprintf('run %s use time %6f', $request->getUri()->__toString(), $runTime));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,13 +5,12 @@ namespace Kiri\Error;
|
|||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use JetBrains\PhpStorm\Pure;
|
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
use Kiri\Exception\ComponentException;
|
use Kiri\Exception\ComponentException;
|
||||||
use Kiri\Kiri;
|
use Kiri\Kiri;
|
||||||
|
use Server\Abstracts\BaseProcess;
|
||||||
use Swoole\Coroutine;
|
use Swoole\Coroutine;
|
||||||
use Swoole\Process;
|
use Swoole\Process;
|
||||||
use Server\Abstracts\BaseProcess;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class LoggerProcess
|
* Class LoggerProcess
|
||||||
@@ -24,7 +23,6 @@ class LoggerProcess extends BaseProcess
|
|||||||
public string $name = 'logger process';
|
public string $name = 'logger process';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Process $process
|
* @param Process $process
|
||||||
* @throws ComponentException
|
* @throws ComponentException
|
||||||
@@ -43,6 +41,9 @@ class LoggerProcess extends BaseProcess
|
|||||||
*/
|
*/
|
||||||
public function message(Process $process)
|
public function message(Process $process)
|
||||||
{
|
{
|
||||||
|
if ($this->isStop()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
$message = Json::decode($process->read());
|
$message = Json::decode($process->read());
|
||||||
if (!empty($message)) {
|
if (!empty($message)) {
|
||||||
Kiri::writeFile($this->getDirName($message), $message[0], FILE_APPEND);
|
Kiri::writeFile($this->getDirName($message), $message[0], FILE_APPEND);
|
||||||
|
|||||||
@@ -6,14 +6,13 @@ namespace Kiri;
|
|||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\BaseObject;
|
use Kiri\Abstracts\Component;
|
||||||
use Swoole\Coroutine;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Event
|
* Class Event
|
||||||
* @package Kiri
|
* @package Kiri
|
||||||
*/
|
*/
|
||||||
class Event extends BaseObject
|
class Event extends Component
|
||||||
{
|
{
|
||||||
|
|
||||||
public bool $isVide = true;
|
public bool $isVide = true;
|
||||||
|
|||||||
@@ -2,16 +2,19 @@
|
|||||||
|
|
||||||
namespace Kiri\FileListen;
|
namespace Kiri\FileListen;
|
||||||
|
|
||||||
use Annotation\Inject;
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\Config;
|
use Kiri\Abstracts\Config;
|
||||||
|
use Kiri\Core\Json;
|
||||||
use Kiri\Error\Logger;
|
use Kiri\Error\Logger;
|
||||||
use Kiri\Exception\ConfigException;
|
use Kiri\Exception\ConfigException;
|
||||||
use Kiri\Kiri;
|
use Kiri\Kiri;
|
||||||
|
use Kiri\Annotation\Inject;
|
||||||
use Swoole\Coroutine;
|
use Swoole\Coroutine;
|
||||||
use Swoole\Process;
|
use Swoole\Process;
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
@@ -22,133 +25,211 @@ class HotReload extends Command
|
|||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
public bool $isReloading = false;
|
public bool $isReloading = FALSE;
|
||||||
public bool $isReloadingOut = false;
|
public bool $isReloadingOut = FALSE;
|
||||||
public ?array $dirs = [];
|
public ?array $dirs = [];
|
||||||
|
|
||||||
public int $events;
|
public int $events;
|
||||||
|
|
||||||
public int $int = -1;
|
public int $int = -1;
|
||||||
|
|
||||||
|
|
||||||
private ?Process $process = null;
|
private ?Process $process = NULL;
|
||||||
|
|
||||||
|
|
||||||
public Inotify|Scaner $driver;
|
public Inotify|Scaner $driver;
|
||||||
|
|
||||||
|
|
||||||
#[Inject(Logger::class)]
|
#[Inject(Logger::class)]
|
||||||
public Logger $logger;
|
public Logger $logger;
|
||||||
|
|
||||||
|
|
||||||
protected mixed $source = null;
|
protected mixed $source = NULL;
|
||||||
|
|
||||||
protected mixed $pipes = [];
|
protected mixed $pipes = [];
|
||||||
|
|
||||||
protected ?Coroutine\Channel $channel = null;
|
protected ?Coroutine\Channel $channel = NULL;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*/
|
||||||
*/
|
protected function configure()
|
||||||
protected function configure()
|
{
|
||||||
{
|
$this->setName('sw:wather')->setDescription('server start');
|
||||||
$this->setName('sw:wather')
|
}
|
||||||
->setDescription('server start');
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param InputInterface $input
|
* @throws ConfigException
|
||||||
* @param OutputInterface $output
|
* @throws \ReflectionException
|
||||||
* @return int
|
* @throws Exception
|
||||||
* @throws ConfigException
|
*/
|
||||||
* @throws Exception
|
protected function initCore()
|
||||||
*/
|
{
|
||||||
public function execute(InputInterface $input, OutputInterface $output): int
|
set_error_handler([$this, 'errorHandler']);
|
||||||
{
|
$this->dirs = Config::get('inotify', [APP_PATH . 'app']);
|
||||||
// TODO: Implement onHandler() method.
|
if (!extension_loaded('inotify')) {
|
||||||
set_error_handler([$this, 'onErrorHandler']);
|
$this->driver = Kiri::getDi()->make(Scaner::class, [$this->dirs, $this]);
|
||||||
$this->dirs = Config::get('inotify', [APP_PATH . 'app']);
|
} else {
|
||||||
swoole_async_set(['enable_coroutine' => false]);
|
$this->driver = Kiri::getDi()->make(Inotify::class, [$this->dirs, $this]);
|
||||||
if (!extension_loaded('inotify')) {
|
}
|
||||||
$this->driver = Kiri::getDi()->make(Scaner::class, [$this->dirs, $this]);
|
$this->clearOtherService();
|
||||||
} else {
|
$this->setProcessName();
|
||||||
$this->driver = Kiri::getDi()->make(Inotify::class, [$this->dirs, $this]);
|
}
|
||||||
}
|
|
||||||
if (Kiri::getPlatform()->isLinux()) {
|
|
||||||
swoole_set_process_name('[' . Config::get('id', 'sw service.') . '].sw:wather');
|
|
||||||
}
|
|
||||||
$this->trigger_reload();
|
|
||||||
|
|
||||||
var_dump(getmypid());
|
|
||||||
Process::signal(SIGTERM, [$this, 'onSignal']);
|
|
||||||
Process::signal(SIGKILL, [$this, 'onSignal']);
|
|
||||||
|
|
||||||
$this->driver->start();
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $data
|
* @throws ConfigException
|
||||||
* @throws Exception
|
*/
|
||||||
*/
|
public function setProcessName()
|
||||||
public function onSignal($data)
|
{
|
||||||
{
|
swoole_async_set(['enable_coroutine' => FALSE]);
|
||||||
if (!$data) {
|
if (Kiri::getPlatform()->isLinux()) {
|
||||||
return;
|
swoole_set_process_name('[' . Config::get('id', 'sw service.') . '].sw:wather');
|
||||||
}
|
}
|
||||||
$this->driver->clear();
|
}
|
||||||
$pid = file_get_contents(storage('.swoole.pid'));
|
|
||||||
if (!empty($pid) && Process::kill($pid, 0)) {
|
|
||||||
Process::kill($pid, SIGTERM);
|
|
||||||
}
|
|
||||||
if ($this->process && Process::kill($this->process->pid, 0)) {
|
|
||||||
Process::kill($this->process->pid) && Process::wait(true);
|
|
||||||
}
|
|
||||||
while ($ret = Process::wait(true)) {
|
|
||||||
echo "PID={$ret['pid']}\n";
|
|
||||||
sleep(1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $code
|
* @throws Exception
|
||||||
* @param $message
|
*/
|
||||||
* @param $file
|
public function clearOtherService()
|
||||||
* @param $line
|
{
|
||||||
* @throws Exception
|
if (file_exists(storage('.manager.pid'))) {
|
||||||
*/
|
$pid = (int)file_get_contents(storage('.manager.pid'));
|
||||||
public function onErrorHandler($code, $message, $file, $line)
|
if ($pid > 0 && Process::kill($pid, 0)) {
|
||||||
{
|
Process::kill($pid, 15) && Process::wait(TRUE);
|
||||||
if (str_contains($message, 'The file descriptor is not an inotify instance')) {
|
}
|
||||||
return;
|
}
|
||||||
}
|
file_put_contents(storage('.manager.pid'), getmypid());
|
||||||
debug('Error:' . $message . ' at ' . $file . ':' . $line);
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 重启
|
* @throws Exception
|
||||||
*
|
*/
|
||||||
* @throws Exception
|
public function errorHandler()
|
||||||
*/
|
{
|
||||||
public function trigger_reload()
|
$error = func_get_args();
|
||||||
{
|
|
||||||
$this->logger->warning('change reload');
|
$path = ['file' => $error[2], 'line' => $error[3]];
|
||||||
$pid = $this->process?->pid;
|
|
||||||
$process = new Process(function (Process $process) {
|
if ($error[0] === 0) {
|
||||||
$process->exec(PHP_BINARY, [APP_PATH . "kiri.php", "sw:server", "restart"]);
|
$error[0] = 500;
|
||||||
});
|
}
|
||||||
$process->start();
|
$data = Json::to(500, $error[1], $path);
|
||||||
if ($pid && Process::kill($pid, 0)) {
|
|
||||||
Process::kill($pid) && Process::wait(true);
|
$this->logger->error($data, 'error');
|
||||||
}
|
}
|
||||||
$this->process = null;
|
|
||||||
$this->process = $process;
|
|
||||||
}
|
/**
|
||||||
|
* @param InputInterface $input
|
||||||
|
* @param OutputInterface $output
|
||||||
|
* @return int
|
||||||
|
* @throws ConfigException
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public function execute(InputInterface $input, OutputInterface $output): int
|
||||||
|
{
|
||||||
|
$this->initCore();
|
||||||
|
|
||||||
|
$this->trigger_reload();
|
||||||
|
Timer::tick(1000, fn() => $this->healthCheck());
|
||||||
|
|
||||||
|
Process::signal(SIGTERM, [$this, 'onSignal']);
|
||||||
|
Process::signal(SIGKILL, [$this, 'onSignal']);
|
||||||
|
|
||||||
|
$this->driver->start();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public function healthCheck()
|
||||||
|
{
|
||||||
|
$pid = (int)file_get_contents(storage('.swoole.pid'));
|
||||||
|
if ($this->int == 1) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (empty($pid)) {
|
||||||
|
$this->logger->warning('service is shutdown you need reload.');
|
||||||
|
$this->trigger_reload();
|
||||||
|
} else if (!Process::kill($pid, 0)) {
|
||||||
|
$this->logger->warning('service is shutdown you need reload.');
|
||||||
|
$this->trigger_reload();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $data
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public function onSignal($data)
|
||||||
|
{
|
||||||
|
if (!$data) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
Timer::clearAll();
|
||||||
|
$this->driver->clear();
|
||||||
|
$this->stopServer();
|
||||||
|
$this->stopManager();
|
||||||
|
while ($ret = Process::wait(TRUE)) {
|
||||||
|
echo "PID={$ret['pid']}\n";
|
||||||
|
sleep(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
protected function stopServer()
|
||||||
|
{
|
||||||
|
$pid = file_get_contents(storage('.swoole.pid'));
|
||||||
|
if (!empty($pid) && Process::kill($pid, 0)) {
|
||||||
|
Process::kill($pid, SIGTERM);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
protected function stopManager()
|
||||||
|
{
|
||||||
|
if ($this->process && Process::kill($this->process->pid, 0)) {
|
||||||
|
Process::kill($this->process->pid) && Process::wait(TRUE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 重启
|
||||||
|
*
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public function trigger_reload()
|
||||||
|
{
|
||||||
|
if ($this->int == 1) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
$this->int = 1;
|
||||||
|
$this->logger->warning('change reload');
|
||||||
|
|
||||||
|
$this->stopServer();
|
||||||
|
$this->stopManager();
|
||||||
|
|
||||||
|
$this->process = new Process(function (Process $process) {
|
||||||
|
$process->exec(PHP_BINARY, [APP_PATH . "kiri.php", "sw:server", "start"]);
|
||||||
|
});
|
||||||
|
|
||||||
|
$this->process->start();
|
||||||
|
$this->int = -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
+132
-121
@@ -9,150 +9,161 @@ use Swoole\Timer;
|
|||||||
class Inotify
|
class Inotify
|
||||||
{
|
{
|
||||||
|
|
||||||
private mixed $inotify;
|
private mixed $inotify;
|
||||||
private mixed $events;
|
private mixed $events;
|
||||||
|
|
||||||
private array $watchFiles = [];
|
private array $watchFiles = [];
|
||||||
|
|
||||||
|
|
||||||
protected bool $isReloading = FALSE;
|
public bool $isReloading = FALSE;
|
||||||
|
|
||||||
|
|
||||||
protected int $cid;
|
protected int $cid;
|
||||||
|
|
||||||
const IG_DIR = [APP_PATH . 'commands', APP_PATH . '.git', APP_PATH . '.gitee'];
|
const IG_DIR = [APP_PATH . 'commands', APP_PATH . '.git', APP_PATH . '.gitee'];
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $dirs
|
* @param array $dirs
|
||||||
* @param HotReload $process
|
* @param HotReload $process
|
||||||
*/
|
*/
|
||||||
public function __construct(protected array $dirs, public HotReload $process)
|
public function __construct(protected array $dirs, public HotReload $process)
|
||||||
{
|
{
|
||||||
}
|
set_error_handler([$this, 'error']);
|
||||||
|
set_exception_handler([$this, 'error']);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws Exception
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function start()
|
public function error(): void
|
||||||
{
|
{
|
||||||
$this->inotify = inotify_init();
|
|
||||||
$this->events = IN_MODIFY | IN_DELETE | IN_CREATE | IN_MOVE;
|
}
|
||||||
foreach ($this->dirs as $dir) {
|
|
||||||
if (!is_dir($dir)) continue;
|
|
||||||
$this->watch($dir);
|
|
||||||
}
|
|
||||||
Event::add($this->inotify, [$this, 'check']);
|
|
||||||
Event::wait();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public function clear()
|
/**
|
||||||
{
|
* @throws Exception
|
||||||
Event::del($this->inotify);
|
*/
|
||||||
Event::exit();
|
public function start()
|
||||||
}
|
{
|
||||||
|
$this->inotify = inotify_init();
|
||||||
|
$this->events = IN_MODIFY | IN_DELETE | IN_CREATE | IN_MOVE;
|
||||||
|
foreach ($this->dirs as $dir) {
|
||||||
|
if (!is_dir($dir)) continue;
|
||||||
|
$this->watch($dir);
|
||||||
|
}
|
||||||
|
Event::add($this->inotify, [$this, 'check']);
|
||||||
|
Event::wait();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
public function clear()
|
||||||
* 开始监听
|
{
|
||||||
* @throws Exception
|
Event::del($this->inotify);
|
||||||
*/
|
Event::exit();
|
||||||
public function check()
|
}
|
||||||
{
|
|
||||||
if (!($events = inotify_read($this->inotify))) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if ($this->isReloading) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$LISTEN_TYPE = [IN_CREATE, IN_DELETE, IN_MODIFY, IN_MOVED_TO, IN_MOVED_FROM];
|
|
||||||
foreach ($events as $ev) {
|
/**
|
||||||
if (!in_array($ev['mask'], $LISTEN_TYPE)) {
|
* 开始监听
|
||||||
continue;
|
* @throws Exception
|
||||||
}
|
*/
|
||||||
//非重启类型
|
public function check()
|
||||||
if (str_ends_with($ev['name'], '.php')) {
|
{
|
||||||
Timer::after(3000, fn()=>$this->reload());
|
if (!($events = inotify_read($this->inotify))) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if ($this->isReloading) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$LISTEN_TYPE = [IN_CREATE, IN_DELETE, IN_MODIFY, IN_MOVED_TO, IN_MOVED_FROM];
|
||||||
|
foreach ($events as $ev) {
|
||||||
|
if (!in_array($ev['mask'], $LISTEN_TYPE)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
//非重启类型
|
||||||
|
if (str_ends_with($ev['name'], '.php')) {
|
||||||
|
Timer::after(3000, fn() => $this->reload());
|
||||||
$this->isReloading = TRUE;
|
$this->isReloading = TRUE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function reload()
|
public function reload()
|
||||||
{
|
{
|
||||||
$this->process->trigger_reload();
|
$this->process->trigger_reload();
|
||||||
$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->process->int = -1;
|
||||||
$this->isReloading = FALSE;
|
$this->isReloading = FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function clearWatch()
|
public function clearWatch()
|
||||||
{
|
{
|
||||||
foreach ($this->watchFiles as $wd) {
|
foreach ($this->watchFiles as $wd) {
|
||||||
try {
|
try {
|
||||||
inotify_rm_watch($this->inotify, $wd);
|
@inotify_rm_watch($this->inotify, $wd);
|
||||||
} catch (\Throwable $exception) {
|
} catch (\Throwable $exception) {
|
||||||
logger()->addError($exception, 'throwable');
|
// logger()->addError($exception->getMessage(), 'throwable');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$this->watchFiles = [];
|
$this->watchFiles = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $dir
|
* @param $dir
|
||||||
* @return bool
|
* @return bool
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function watch($dir): bool
|
public function watch($dir): bool
|
||||||
{
|
{
|
||||||
//目录不存在
|
//目录不存在
|
||||||
if (!is_dir($dir)) {
|
if (!is_dir($dir)) {
|
||||||
return logger()->addError("[$dir] is not a directory.");
|
return logger()->addError("[$dir] is not a directory.");
|
||||||
}
|
}
|
||||||
//避免重复监听
|
//避免重复监听
|
||||||
if (isset($this->watchFiles[$dir])) {
|
if (isset($this->watchFiles[$dir])) {
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (in_array($dir, self::IG_DIR)) {
|
if (in_array($dir, self::IG_DIR)) {
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
$wd = @inotify_add_watch($this->inotify, $dir, $this->events);
|
$wd = @inotify_add_watch($this->inotify, $dir, $this->events);
|
||||||
$this->watchFiles[$dir] = $wd;
|
$this->watchFiles[$dir] = $wd;
|
||||||
|
|
||||||
$files = scandir($dir);
|
$files = scandir($dir);
|
||||||
foreach ($files as $f) {
|
foreach ($files as $f) {
|
||||||
if ($f == '.' || $f == '..') {
|
if ($f == '.' || $f == '..') {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
$path = $dir . '/' . $f;
|
$path = $dir . '/' . $f;
|
||||||
//递归目录
|
//递归目录
|
||||||
if (is_dir($path)) {
|
if (is_dir($path)) {
|
||||||
$this->watch($path);
|
$this->watch($path);
|
||||||
} else if (!str_ends_with($f, '.php')) {
|
} else if (!str_ends_with($f, '.php')) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
//检测文件类型
|
//检测文件类型
|
||||||
if (strstr($f, '.') == '.php') {
|
if (strstr($f, '.') == '.php') {
|
||||||
$wd = @inotify_add_watch($this->inotify, $path, $this->events);
|
$wd = @inotify_add_watch($this->inotify, $path, $this->events);
|
||||||
$this->watchFiles[$path] = $wd;
|
$this->watchFiles[$path] = $wd;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+119
-117
@@ -3,145 +3,147 @@
|
|||||||
namespace Kiri\FileListen;
|
namespace Kiri\FileListen;
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
|
use Swoole\Timer;
|
||||||
|
|
||||||
class Scaner
|
class Scaner
|
||||||
{
|
{
|
||||||
|
|
||||||
private array $md5Map = [];
|
private array $md5Map = [];
|
||||||
|
|
||||||
/**
|
public bool $isReloading = FALSE;
|
||||||
* @param array $dirs
|
|
||||||
* @param HotReload $process
|
|
||||||
*/
|
|
||||||
public function __construct(protected array $dirs, public HotReload $process)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws Exception
|
* @param array $dirs
|
||||||
*/
|
* @param HotReload $process
|
||||||
public function start(): void
|
*/
|
||||||
{
|
public function __construct(protected array $dirs, public HotReload $process)
|
||||||
$this->loadDirs();
|
{
|
||||||
$this->tick();
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param bool $isReload
|
* @throws Exception
|
||||||
* @throws Exception
|
*/
|
||||||
*/
|
public function start(): void
|
||||||
private function loadDirs(bool $isReload = false)
|
{
|
||||||
{
|
$this->loadDirs();
|
||||||
foreach ($this->dirs as $value) {
|
$this->tick();
|
||||||
if (is_bool($path = realpath($value))) {
|
}
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!is_dir($path)) continue;
|
|
||||||
|
|
||||||
$this->loadByDir($path, $isReload);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $path
|
* @param bool $isReload
|
||||||
* @param bool $isReload
|
* @throws Exception
|
||||||
* @return void
|
*/
|
||||||
* @throws Exception
|
private function loadDirs(bool $isReload = FALSE)
|
||||||
*/
|
{
|
||||||
private function loadByDir($path, bool $isReload = false): void
|
foreach ($this->dirs as $value) {
|
||||||
{
|
if (is_bool($path = realpath($value))) {
|
||||||
if (!is_string($path)) {
|
continue;
|
||||||
return;
|
}
|
||||||
}
|
|
||||||
$path = rtrim($path, '/');
|
if (!is_dir($path)) continue;
|
||||||
foreach (glob(realpath($path) . '/*') as $value) {
|
|
||||||
if (is_dir($value)) {
|
$this->loadByDir($path, $isReload);
|
||||||
$this->loadByDir($value, $isReload);
|
}
|
||||||
}
|
}
|
||||||
if (is_file($value)) {
|
|
||||||
if ($this->checkFile($value, $isReload)) {
|
|
||||||
$this->timerReload();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $value
|
* @param $path
|
||||||
* @param $isReload
|
* @param bool $isReload
|
||||||
* @return bool
|
* @return void
|
||||||
*/
|
* @throws Exception
|
||||||
private function checkFile($value, $isReload): bool
|
*/
|
||||||
{
|
private function loadByDir($path, bool $isReload = FALSE): void
|
||||||
$md5 = md5($value);
|
{
|
||||||
$mTime = filectime($value);
|
if (!is_string($path)) {
|
||||||
if (!isset($this->md5Map[$md5])) {
|
return;
|
||||||
if ($isReload) {
|
}
|
||||||
return true;
|
$path = rtrim($path, '/');
|
||||||
}
|
foreach (glob(realpath($path) . '/*') as $value) {
|
||||||
$this->md5Map[$md5] = $mTime;
|
if (is_dir($value)) {
|
||||||
} else {
|
$this->loadByDir($value, $isReload);
|
||||||
if ($this->md5Map[$md5] != $mTime) {
|
}
|
||||||
if ($isReload) {
|
if (is_file($value)) {
|
||||||
return true;
|
if ($this->checkFile($value, $isReload)) {
|
||||||
}
|
Timer::after(2000, fn() => $this->timerReload());
|
||||||
$this->md5Map[$md5] = $mTime;
|
$this->isReloading = TRUE;
|
||||||
}
|
break;
|
||||||
}
|
}
|
||||||
return false;
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws Exception
|
* @param $value
|
||||||
*/
|
* @param $isReload
|
||||||
public function timerReload()
|
* @return bool
|
||||||
{
|
*/
|
||||||
if ($this->process->isReloading) {
|
private function checkFile($value, $isReload): bool
|
||||||
return;
|
{
|
||||||
}
|
$md5 = md5($value);
|
||||||
$this->process->isReloading = true;
|
$mTime = filectime($value);
|
||||||
$this->process->trigger_reload();
|
if (!isset($this->md5Map[$md5])) {
|
||||||
|
if ($isReload) {
|
||||||
$this->process->int = -1;
|
return TRUE;
|
||||||
|
}
|
||||||
$this->loadDirs();
|
$this->md5Map[$md5] = $mTime;
|
||||||
|
} else {
|
||||||
$this->process->isReloading = FALSE;
|
if ($this->md5Map[$md5] != $mTime) {
|
||||||
$this->process->isReloadingOut = FALSE;
|
if ($isReload) {
|
||||||
|
return TRUE;
|
||||||
$this->tick();
|
}
|
||||||
}
|
$this->md5Map[$md5] = $mTime;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
private bool $isStop = false;
|
/**
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public function timerReload()
|
||||||
|
{
|
||||||
|
$this->isReloading = TRUE;
|
||||||
|
$this->process->trigger_reload();
|
||||||
|
|
||||||
public function clear()
|
$this->process->int = -1;
|
||||||
{
|
|
||||||
$this->isStop = true;
|
$this->loadDirs();
|
||||||
}
|
|
||||||
|
$this->isReloading = FALSE;
|
||||||
|
$this->process->isReloadingOut = FALSE;
|
||||||
|
|
||||||
|
$this->tick();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
private bool $isStop = FALSE;
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public function tick()
|
|
||||||
{
|
|
||||||
if ($this->process->isReloading || $this->isStop) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->loadDirs(true);
|
public function clear()
|
||||||
|
{
|
||||||
|
$this->isStop = TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
sleep(2);
|
|
||||||
|
|
||||||
$this->tick();
|
/**
|
||||||
}
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
public function tick()
|
||||||
|
{
|
||||||
|
if ($this->isReloading || $this->isStop) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->loadDirs(TRUE);
|
||||||
|
|
||||||
|
sleep(2);
|
||||||
|
|
||||||
|
$this->tick();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,8 +4,10 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace Kiri;
|
namespace Kiri;
|
||||||
|
|
||||||
|
error_reporting(0);
|
||||||
|
|
||||||
use Annotation\Annotation;
|
|
||||||
|
use Kiri\Annotation\Annotation;
|
||||||
use Database\Collection;
|
use Database\Collection;
|
||||||
use Database\ModelInterface;
|
use Database\ModelInterface;
|
||||||
use Exception;
|
use Exception;
|
||||||
@@ -16,6 +18,7 @@ use Kiri\Di\Container;
|
|||||||
use Psr\Container\ContainerInterface;
|
use Psr\Container\ContainerInterface;
|
||||||
use ReflectionException;
|
use ReflectionException;
|
||||||
use Server\ServerManager;
|
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;
|
||||||
@@ -457,8 +460,8 @@ class Kiri
|
|||||||
*/
|
*/
|
||||||
public static function async(string $class, array $params = [])
|
public static function async(string $class, array $params = [])
|
||||||
{
|
{
|
||||||
$manager = di(ServerManager::class);
|
$manager = di(AsyncTaskExecute::class);
|
||||||
$manager->task(new $class(...$params));
|
$manager->execute(new $class(...$params));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -113,9 +113,7 @@ class Connection extends Component
|
|||||||
public function create($coroutineName, $config): Closure
|
public function create($coroutineName, $config): Closure
|
||||||
{
|
{
|
||||||
return static function () use ($coroutineName, $config) {
|
return static function () use ($coroutineName, $config) {
|
||||||
return Kiri::getDi()->create(PDO::class, [
|
return Kiri::getDi()->create(PDO::class, [$config]);
|
||||||
$config['database'], $config['cds'], $config['username'], $config['password'], $config['charset'] ?? 'utf8mb4'
|
|
||||||
]);
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -50,11 +50,7 @@ class Redis extends Component
|
|||||||
public function create(string $name, mixed $config): Closure
|
public function create(string $name, mixed $config): Closure
|
||||||
{
|
{
|
||||||
return static function () use ($name, $config) {
|
return static function () use ($name, $config) {
|
||||||
return Kiri::getDi()->create(\Kiri\Cache\Base\Redis::class, [
|
return Kiri::getDi()->create(\Kiri\Cache\Base\Redis::class, [$config]);
|
||||||
$config['host'], (int)$config['port'], $config['databases'] ?? 0,
|
|
||||||
$config['auth'], $config['prefix'] ?? '', $config['timeout'] ?? 30,
|
|
||||||
$config['read_timeout'] ?? 30
|
|
||||||
]);
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ namespace Kiri;
|
|||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
|
use Kiri\Abstracts\Config;
|
||||||
use Kiri\Abstracts\Input;
|
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;
|
||||||
@@ -62,8 +63,7 @@ class Runtime extends Command
|
|||||||
public function configEach(): string
|
public function configEach(): string
|
||||||
{
|
{
|
||||||
$array = [];
|
$array = [];
|
||||||
$configs = Kiri::app()->getConfig();
|
foreach (Config::getData() as $key => $datum) {
|
||||||
foreach ($configs->getData() as $key => $datum) {
|
|
||||||
if ($datum instanceof \Closure) {
|
if ($datum instanceof \Closure) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,14 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Kiri\Gateway;
|
||||||
|
|
||||||
|
class Collector
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
public function get()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Kiri\Gateway;
|
||||||
|
|
||||||
|
use Swoole\Http\Request;
|
||||||
|
use Swoole\Http\Response;
|
||||||
|
|
||||||
|
class GatewayServer
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Request $request
|
||||||
|
* @param Response $response
|
||||||
|
*/
|
||||||
|
public function onRequest(Request $request, Response $response)
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Kiri\Gateway;
|
||||||
|
|
||||||
|
class HashMap
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
const HTTP = 1;
|
||||||
|
const TCP = 2;
|
||||||
|
const UDP = 2;
|
||||||
|
|
||||||
|
|
||||||
|
public string $domain;
|
||||||
|
|
||||||
|
|
||||||
|
public string $path;
|
||||||
|
|
||||||
|
|
||||||
|
public string $scheme;
|
||||||
|
|
||||||
|
|
||||||
|
public string $method;
|
||||||
|
|
||||||
|
|
||||||
|
public string $proxy_host;
|
||||||
|
|
||||||
|
|
||||||
|
public string $proxy_port;
|
||||||
|
|
||||||
|
|
||||||
|
public int $type = self::HTTP;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
+4
-5
@@ -68,7 +68,7 @@ class Gii
|
|||||||
$this->input = $input;
|
$this->input = $input;
|
||||||
$this->db = $db;
|
$this->db = $db;
|
||||||
|
|
||||||
$make = $this->input->getArgument('action');
|
$make = $this->input->getOption('make');
|
||||||
if (empty($make)) {
|
if (empty($make)) {
|
||||||
throw new Exception('构建类型不能为空~');
|
throw new Exception('构建类型不能为空~');
|
||||||
}
|
}
|
||||||
@@ -119,10 +119,8 @@ class Gii
|
|||||||
*/
|
*/
|
||||||
private function makeByDatabases($make, InputInterface $input): array
|
private function makeByDatabases($make, InputInterface $input): array
|
||||||
{
|
{
|
||||||
$redis = Kiri::getDi()->get(Redis::class);
|
if ($input->hasOption('name')) {
|
||||||
if ($input->hasArgument('name')) {
|
$this->tableName = $input->getOption('name');
|
||||||
$this->tableName = $input->getArgument('name');
|
|
||||||
$redis->del('column:' . $this->tableName);
|
|
||||||
}
|
}
|
||||||
return match ($make) {
|
return match ($make) {
|
||||||
'controller' => $this->getTable(1, 0),
|
'controller' => $this->getTable(1, 0),
|
||||||
@@ -334,6 +332,7 @@ class Gii
|
|||||||
private function getClassName($tableName): string
|
private function getClassName($tableName): string
|
||||||
{
|
{
|
||||||
$res = [];
|
$res = [];
|
||||||
|
$tableName = str_replace($this->db->tablePrefix,'', $tableName);
|
||||||
foreach (explode('_', $tableName) as $n => $val) {
|
foreach (explode('_', $tableName) as $n => $val) {
|
||||||
$res[] = ucfirst($val);
|
$res[] = ucfirst($val);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -32,9 +32,9 @@ class GiiCommand extends Command
|
|||||||
protected function configure()
|
protected function configure()
|
||||||
{
|
{
|
||||||
$this->setName('sw:gii')
|
$this->setName('sw:gii')
|
||||||
->addArgument('action', InputArgument::REQUIRED)
|
->addOption('make','m', InputArgument::OPTIONAL)
|
||||||
->addArgument('name', InputArgument::OPTIONAL)
|
->addOption('name','t', InputArgument::OPTIONAL)
|
||||||
->addArgument('databases', InputArgument::OPTIONAL)
|
->addOption('databases','d', InputArgument::OPTIONAL)
|
||||||
->setDescription('./snowflake sw:gii make=model|controller|task|interceptor|limits|middleware name=xxxx');
|
->setDescription('./snowflake sw:gii make=model|controller|task|interceptor|limits|middleware name=xxxx');
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -52,12 +52,12 @@ class GiiCommand extends Command
|
|||||||
$gii = Kiri::app()->get('gii');
|
$gii = Kiri::app()->get('gii');
|
||||||
|
|
||||||
$connections = Kiri::app()->get('db');
|
$connections = Kiri::app()->get('db');
|
||||||
if (($db = $input->getArgument('databases')) != null) {
|
if (($db = $input->getOption('databases')) != null) {
|
||||||
$gii->run($connections->get($db), $input);
|
$gii->run($connections->get($db), $input);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
$action = $input->getArgument('action');
|
$action = $input->getOption('make');
|
||||||
if (!in_array($action, ['model', 'controller'])) {
|
if (!in_array($action, ['model', 'controller'])) {
|
||||||
$gii->run(null, $input);
|
$gii->run(null, $input);
|
||||||
return 1;
|
return 1;
|
||||||
|
|||||||
@@ -47,9 +47,6 @@ class GiiController extends GiiBase
|
|||||||
$namespace = rtrim($path['namespace'], '\\');
|
$namespace = rtrim($path['namespace'], '\\');
|
||||||
$model_namespace = rtrim($modelPath['namespace'], '\\');
|
$model_namespace = rtrim($modelPath['namespace'], '\\');
|
||||||
|
|
||||||
$prefix = str_replace('_', '', $this->db->tablePrefix);
|
|
||||||
$managerName = str_replace(ucfirst($prefix), '', $managerName);
|
|
||||||
|
|
||||||
$class = '';
|
$class = '';
|
||||||
$controller = str_replace('\\\\', '\\', "$namespace\\{$managerName}Controller");
|
$controller = str_replace('\\\\', '\\', "$namespace\\{$managerName}Controller");
|
||||||
|
|
||||||
@@ -68,9 +65,9 @@ namespace {$namespace};
|
|||||||
} else {
|
} else {
|
||||||
$import = "use Kiri;
|
$import = "use Kiri;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Annotation\Target;
|
use Kiri\Annotation\Target;
|
||||||
use Annotation\Route\Middleware;
|
use Kiri\Annotation\Route\Middleware;
|
||||||
use Annotation\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 Http\Context\Request;
|
||||||
|
|||||||
@@ -51,8 +51,8 @@ interface ' . ucfirst($name) . 'RpcInterface
|
|||||||
namespace Rpc\Producers;
|
namespace Rpc\Producers;
|
||||||
|
|
||||||
|
|
||||||
use Annotation\Target;
|
use Kiri\Annotation\Target;
|
||||||
use Annotation\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,7 +86,7 @@ class ' . ucfirst($name) . 'RpcService extends JsonRpcConsumers implements ' . u
|
|||||||
namespace Rpc\Consumers;
|
namespace Rpc\Consumers;
|
||||||
|
|
||||||
|
|
||||||
use Annotation\Target;
|
use Kiri\Annotation\Target;
|
||||||
use Kiri\Rpc\Annotation\JsonRpc;
|
use Kiri\Rpc\Annotation\JsonRpc;
|
||||||
use Http\Handler\Controller;
|
use Http\Handler\Controller;
|
||||||
use Rpc\\' . ucfirst($name) . 'RpcInterface;
|
use Rpc\\' . ucfirst($name) . 'RpcInterface;
|
||||||
|
|||||||
+11
-11
@@ -51,9 +51,6 @@ class GiiModel extends GiiBase
|
|||||||
|
|
||||||
$namespace = rtrim($modelPath['namespace'], '\\');
|
$namespace = rtrim($modelPath['namespace'], '\\');
|
||||||
|
|
||||||
$prefix = str_replace('_', '', $this->db->tablePrefix);
|
|
||||||
$managerName = str_replace(ucfirst($prefix), '', $managerName);
|
|
||||||
|
|
||||||
if (file_exists($modelPath['path'] . '/' . $managerName . '.php')) {
|
if (file_exists($modelPath['path'] . '/' . $managerName . '.php')) {
|
||||||
try {
|
try {
|
||||||
$className = str_replace('\\\\', '\\', "{$modelPath['namespace']}\\{$managerName}");
|
$className = str_replace('\\\\', '\\', "{$modelPath['namespace']}\\{$managerName}");
|
||||||
@@ -87,7 +84,7 @@ namespace ' . $namespace . ';
|
|||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Annotation\Target;
|
use Kiri\Annotation\Target;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
use Database\Connection;
|
use Database\Connection;
|
||||||
use Database\Annotation\Get;
|
use Database\Annotation\Get;
|
||||||
@@ -263,7 +260,7 @@ use Database\Model;
|
|||||||
$field = '\'' . current($val)['Field'] . '\'';
|
$field = '\'' . current($val)['Field'] . '\'';
|
||||||
}
|
}
|
||||||
$_field_one .= '
|
$_field_one .= '
|
||||||
[' . $field . ', \'' . $key . '\'],';
|
[' . $field . ', \'' . $key . '\'],';
|
||||||
}
|
}
|
||||||
foreach ($data as $key => $val) {
|
foreach ($data as $key => $val) {
|
||||||
$length = $this->getLength($val);
|
$length = $this->getLength($val);
|
||||||
@@ -279,8 +276,11 @@ use Database\Model;
|
|||||||
/**
|
/**
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
protected array $rules = [' . $_field_one . '
|
public function rules(): array
|
||||||
];
|
{
|
||||||
|
return [' . $_field_one . '
|
||||||
|
];
|
||||||
|
}
|
||||||
';
|
';
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -311,10 +311,10 @@ use Database\Model;
|
|||||||
}
|
}
|
||||||
if (count($_val) == 1) {
|
if (count($_val) == 1) {
|
||||||
$_tmp = '
|
$_tmp = '
|
||||||
[\'' . $_val[0][3] . '\', ' . ($_val[0][1] == 'enum' ? '\'enum\' => [' . $key .']' : $key) . ']';
|
[\'' . $_val[0][3] . '\', ' . ($_val[0][1] == 'enum' ? '\'enum\' => [' . $key .']' : $key) . ']';
|
||||||
} else {
|
} else {
|
||||||
$_tmp = '
|
$_tmp = '
|
||||||
[[\'' . implode('\', \'', array_column($_val, 3)) . '\'], ' . $key . ']';
|
[[\'' . implode('\', \'', array_column($_val, 3)) . '\'], ' . $key . ']';
|
||||||
}
|
}
|
||||||
$string[] = $_tmp;
|
$string[] = $_tmp;
|
||||||
}
|
}
|
||||||
@@ -338,7 +338,7 @@ use Database\Model;
|
|||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
return '
|
return '
|
||||||
[[\'' . implode('\', \'', $data) . '\'], \'unique\'],';
|
[[\'' . implode('\', \'', $data) . '\'], \'unique\'],';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -358,7 +358,7 @@ use Database\Model;
|
|||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
return '
|
return '
|
||||||
[[\'' . implode('\', \'', $data) . '\'], \'required\'],';
|
[[\'' . implode('\', \'', $data) . '\'], \'required\'],';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -36,9 +36,9 @@ class GiiRpcClient extends GiiBase
|
|||||||
|
|
||||||
namespace App\Client\Rpc;
|
namespace App\Client\Rpc;
|
||||||
|
|
||||||
use Annotation\Rpc\Consumer;
|
use Kiri\Annotation\Rpc\Consumer;
|
||||||
use Annotation\Rpc\RpcClient;
|
use Kiri\Annotation\Rpc\RpcClient;
|
||||||
use Annotation\Target;
|
use Kiri\Annotation\Target;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Rpc\Client;
|
use Rpc\Client;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
|
|||||||
@@ -33,8 +33,8 @@ class GiiRpcService extends GiiBase
|
|||||||
|
|
||||||
namespace App\Rpc;
|
namespace App\Rpc;
|
||||||
|
|
||||||
use Annotation\Route\RpcProducer;
|
use Kiri\Annotation\Route\RpcProducer;
|
||||||
use Annotation\Target;
|
use Kiri\Annotation\Target;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Http\Controller;
|
use Http\Controller;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
|
|||||||
@@ -0,0 +1,14 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Kiri\Websocket;
|
||||||
|
|
||||||
|
class FdCollector
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
public function set($fd)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,92 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Kiri\Websocket;
|
||||||
|
|
||||||
|
use Kiri\Kiri;
|
||||||
|
use Swoole\{Coroutine\Http\Server as AliasServer, WebSocket\Server};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
class Sender implements WebSocketInterface
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var AliasServer|Server
|
||||||
|
*/
|
||||||
|
private AliasServer|Server $server;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
$this->server = Kiri::getDi()->get(WebSocketInterface::class);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @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);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,165 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Kiri\Websocket;
|
||||||
|
|
||||||
|
use Exception;
|
||||||
|
use Http\Handler\DataGrip;
|
||||||
|
use Http\Handler\Router;
|
||||||
|
use Kiri\Abstracts\AbstractServer;
|
||||||
|
use Kiri\Annotation\Inject;
|
||||||
|
use Psr\Container\ContainerExceptionInterface;
|
||||||
|
use Psr\Container\NotFoundExceptionInterface;
|
||||||
|
use Server\Contract\OnCloseInterface;
|
||||||
|
use Server\Contract\OnHandshakeInterface;
|
||||||
|
use Server\Contract\OnMessageInterface;
|
||||||
|
use Server\Contract\OnOpenInterface;
|
||||||
|
use Server\SwooleServerInterface;
|
||||||
|
use Swoole\Http\Request;
|
||||||
|
use Swoole\Http\Response;
|
||||||
|
use Swoole\WebSocket\Frame;
|
||||||
|
use Swoole\WebSocket\Server as WebSocketServer;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* websocket server
|
||||||
|
*/
|
||||||
|
class Server extends AbstractServer
|
||||||
|
{
|
||||||
|
|
||||||
|
public Router $router;
|
||||||
|
|
||||||
|
|
||||||
|
const SHA1_KEY = '258EAFA5-E914-47DA-95CA-C5AB0DC85B11';
|
||||||
|
|
||||||
|
|
||||||
|
public mixed $callback = null;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var WebSocketInterface
|
||||||
|
*/
|
||||||
|
#[Inject(WebSocketInterface::class)]
|
||||||
|
public WebSocketInterface $server;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws ContainerExceptionInterface
|
||||||
|
* @throws NotFoundExceptionInterface
|
||||||
|
*/
|
||||||
|
public function init()
|
||||||
|
{
|
||||||
|
$this->router = $this->container->get(DataGrip::class)->get('ws');
|
||||||
|
$handler = $this->router->find('/', 'GET');
|
||||||
|
if (is_int($handler) || is_null($handler)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
$this->callback = $handler->callback[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param \Swoole\Server $server
|
||||||
|
* @param int $fd
|
||||||
|
*/
|
||||||
|
public function onClose(\Swoole\Server $server, int $fd): void
|
||||||
|
{
|
||||||
|
$clientInfo = $server->getClientInfo($fd);
|
||||||
|
if (!isset($clientInfo['websocket_status'])) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if ($this->callback instanceof OnCloseInterface) {
|
||||||
|
$this->callback->onClose($server, $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);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Request $request
|
||||||
|
* @param Response $response
|
||||||
|
*/
|
||||||
|
public function onHandshake(Request $request, Response $response): void
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
$this->setWebSocketProtocol($request, $response);
|
||||||
|
if ($this->callback instanceof OnHandshakeInterface) {
|
||||||
|
$this->callback->onHandshake($request, $response);
|
||||||
|
} else {
|
||||||
|
$response->setStatusCode(101, 'connection success.');
|
||||||
|
$response->end();
|
||||||
|
}
|
||||||
|
// 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) {
|
||||||
|
$response->status(4000 + $throwable->getCode(), $throwable->getMessage());
|
||||||
|
$response->end();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private function deferOpen($request)
|
||||||
|
{
|
||||||
|
if ($this->callback instanceof OnOpenInterface) {
|
||||||
|
$this->callback->onOpen($request);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $server
|
||||||
|
* @param Frame $frame
|
||||||
|
*/
|
||||||
|
public function onMessage($server, Frame $frame): void
|
||||||
|
{
|
||||||
|
if ($this->callback instanceof OnMessageInterface) {
|
||||||
|
$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;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -49,3 +49,42 @@
|
|||||||
// after($process);
|
// after($process);
|
||||||
//});
|
//});
|
||||||
|
|
||||||
|
|
||||||
|
var_dump(json_encode([
|
||||||
|
"Datacenter" => "dc1",
|
||||||
|
"Node" => "iz8vbi3edjyskl7kpuwudqz",
|
||||||
|
"SkipNodeUpdate" => FALSE,
|
||||||
|
"Service" => [
|
||||||
|
"ID" => "redis1",
|
||||||
|
"Service" => "FriendRpcService",
|
||||||
|
"Address" => "172.26.221.211",
|
||||||
|
"TaggedAddresses" => [
|
||||||
|
"lan" => [
|
||||||
|
"address" => "127.0.0.1",
|
||||||
|
"port" => 9627,
|
||||||
|
],
|
||||||
|
"wan" => [
|
||||||
|
"address" => "172.26.221.211",
|
||||||
|
"port" => 9627,
|
||||||
|
],
|
||||||
|
],
|
||||||
|
"Meta" => [
|
||||||
|
"redis_version" => "4.0",
|
||||||
|
],
|
||||||
|
"Port" => 9627,
|
||||||
|
],
|
||||||
|
"Check" => [
|
||||||
|
"Node" => "iz8vbi3edjyskl7kpuwudqz",
|
||||||
|
"CheckId" => "service:redis1",
|
||||||
|
"Name" => "Redis health check",
|
||||||
|
"Notes" => "Script based health check",
|
||||||
|
"Status" => "passing",
|
||||||
|
"ServiceID" => "redis1",
|
||||||
|
"Definition" => [
|
||||||
|
"Http" => "http://172.26.221.211:9627",
|
||||||
|
"Interval" => "5s",
|
||||||
|
"Timeout" => "1s",
|
||||||
|
"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