Compare commits
34 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6a30fdfa8d | |||
| 367e1cd122 | |||
| 667d311d73 | |||
| 375f396467 | |||
| 7b1cc1bd7b | |||
| 1ae1d78ddf | |||
| 00212d133d | |||
| 7fbe9fbf44 | |||
| de1aff9efd | |||
| cef09a11ef | |||
| 7122018a2a | |||
| f8763953c5 | |||
| 22560d77d6 | |||
| 483c898f51 | |||
| 1fa651c587 | |||
| f7ca56a9b0 | |||
| 4fa5c23c10 | |||
| f46af653f2 | |||
| 5e02a79bf0 | |||
| 08dc3e262b | |||
| 8c5e52940f | |||
| 4dbcacdd1f | |||
| 97cd1a0ebf | |||
| 7165a67294 | |||
| 4bc7451424 | |||
| d7d0f685dc | |||
| 8ee7d30d6a | |||
| 224009e7e6 | |||
| b4551ae2fd | |||
| 5ca94925e3 | |||
| 0afa8fc400 | |||
| 842220e4de | |||
| c9726e5778 | |||
| f867f4be9e |
@@ -2,39 +2,30 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
|
||||||
namespace Kiri;
|
|
||||||
|
|
||||||
error_reporting(0);
|
error_reporting(0);
|
||||||
|
|
||||||
|
|
||||||
use Note\Note;
|
|
||||||
use Database\Collection;
|
use Database\Collection;
|
||||||
use Database\ModelInterface;
|
use Database\ModelInterface;
|
||||||
use Exception;
|
|
||||||
use JetBrains\PhpStorm\Pure;
|
use JetBrains\PhpStorm\Pure;
|
||||||
use Kiri\Abstracts\Config;
|
use Kiri\Abstracts\Config;
|
||||||
|
use Kiri\Annotation\Annotation;
|
||||||
|
use Kiri\Application;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
use Kiri\Di\Container;
|
use Kiri\Di\Container;
|
||||||
|
use Kiri\Environmental;
|
||||||
|
use Kiri\Server\Tasker\AsyncTaskExecute;
|
||||||
use Psr\Container\ContainerInterface;
|
use Psr\Container\ContainerInterface;
|
||||||
use ReflectionException;
|
|
||||||
use Server\ServerManager;
|
|
||||||
use Server\Tasker\AsyncTaskExecute;
|
|
||||||
use Swoole\Coroutine;
|
use Swoole\Coroutine;
|
||||||
use Swoole\Process;
|
use Swoole\Process;
|
||||||
use Swoole\WebSocket\Server;
|
use Swoole\WebSocket\Server;
|
||||||
|
|
||||||
|
|
||||||
defined('DB_ERROR_BUSY') or define('DB_ERROR_BUSY', 'The database is busy. Please try again later.');
|
defined('DB_ERROR_BUSY') or define('DB_ERROR_BUSY', 'The database is busy. Please try again later.');
|
||||||
defined('SELECT_IS_NULL') or define('SELECT_IS_NULL', 'Query data does not exist, please check the relevant conditions.');
|
defined('SELECT_IS_NULL') or define('SELECT_IS_NULL', 'Query data does not exist, please check the relevant conditions.');
|
||||||
defined('PARAMS_IS_NULL') or define('PARAMS_IS_NULL', 'Required items cannot be empty, please add.');
|
defined('PARAMS_IS_NULL') or define('PARAMS_IS_NULL', 'Required items cannot be empty, please add.');
|
||||||
defined('CONTROLLER_PATH') or define('CONTROLLER_PATH', APP_PATH . 'app/Controllers/');
|
defined('CONTROLLER_PATH') or define('CONTROLLER_PATH', realpath(APP_PATH . 'controllers/'));
|
||||||
defined('CRONTAB_PATH') or define('CRONTAB_PATH', APP_PATH . 'app/Crontab/');
|
defined('MODEL_PATH') or define('MODEL_PATH', realpath(APP_PATH . 'models/'));
|
||||||
defined('CLIENT_PATH') or define('CLIENT_PATH', APP_PATH . 'app/Client/');
|
defined('COMPONENT_PATH') or define('COMPONENT_PATH', realpath(APP_PATH . 'components/'));
|
||||||
defined('TASK_PATH') or define('TASK_PATH', APP_PATH . 'app/Async/');
|
|
||||||
defined('LISTENER_PATH') or define('LISTENER_PATH', APP_PATH . 'app/Listener/');
|
|
||||||
defined('KAFKA_PATH') or define('KAFKA_PATH', APP_PATH . 'app/Kafka/');
|
|
||||||
defined('RPC_CLIENT_PATH') or define('RPC_CLIENT_PATH', APP_PATH . 'app/Client/Rpc/');
|
|
||||||
defined('MODEL_PATH') or define('MODEL_PATH', APP_PATH . 'app/Model/');
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -73,6 +64,15 @@ class Kiri
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return Container
|
||||||
|
*/
|
||||||
|
public static function getContainer(): Container
|
||||||
|
{
|
||||||
|
return static::$container;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $alias
|
* @param $alias
|
||||||
* @param array $array
|
* @param array $array
|
||||||
@@ -159,12 +159,12 @@ class Kiri
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return Note
|
* @return Annotation
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public static function getNote(): Note
|
public static function getAnnotation(): Annotation
|
||||||
{
|
{
|
||||||
return static::app()->getNote();
|
return static::app()->getAnnotation();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -199,6 +199,7 @@ class Kiri
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
@@ -12,12 +12,12 @@ function version($oldVersion, $newVersion): bool
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if ($endShift < $shift) {
|
if ($endShift < $shift) {
|
||||||
return true;
|
return TRUE;
|
||||||
} else {
|
} else {
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
var_dump(version('1.4.4', '1.4.3'));
|
var_dump(version('1.4.4', '1.4.3'));
|
||||||
|
|||||||
+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,26 +21,25 @@
|
|||||||
"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\\Gateway\\": "kiri-gateway/",
|
||||||
|
"Kiri\\Websocket\\": "kiri-websocket-server/",
|
||||||
"Gii\\": "kiri-gii/",
|
"Gii\\": "kiri-gii/",
|
||||||
"Note\\": "kiri-note/"
|
"Kiri\\Annotation\\": "kiri-annotation/",
|
||||||
|
"Kiri\\Task\\": "kiri-task/"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
|
"Kiri.php",
|
||||||
"error.php",
|
"error.php",
|
||||||
"function.php"
|
"function.php"
|
||||||
]
|
]
|
||||||
|
|||||||
+37
-13
@@ -3,9 +3,10 @@
|
|||||||
defined('APP_PATH') or define('APP_PATH', realpath(__DIR__ . '/../../'));
|
defined('APP_PATH') or define('APP_PATH', realpath(__DIR__ . '/../../'));
|
||||||
|
|
||||||
|
|
||||||
use Http\Handler\Router;
|
|
||||||
use JetBrains\PhpStorm\Pure;
|
use JetBrains\PhpStorm\Pure;
|
||||||
use Kiri\Abstracts\Config;
|
use Kiri\Abstracts\Config;
|
||||||
|
use Kiri\Annotation\Annotation;
|
||||||
|
use Kiri\Annotation\Route\Route;
|
||||||
use Kiri\Application;
|
use Kiri\Application;
|
||||||
use Kiri\Core\ArrayAccess;
|
use Kiri\Core\ArrayAccess;
|
||||||
use Kiri\Di\NoteManager;
|
use Kiri\Di\NoteManager;
|
||||||
@@ -13,9 +14,7 @@ use Kiri\Error\Logger;
|
|||||||
use Kiri\Events\EventDispatch;
|
use Kiri\Events\EventDispatch;
|
||||||
use Kiri\Events\EventProvider;
|
use Kiri\Events\EventProvider;
|
||||||
use Kiri\Exception\ConfigException;
|
use Kiri\Exception\ConfigException;
|
||||||
use Kiri\Kiri;
|
use Kiri\Message\Handler\Router;
|
||||||
use Note\Note;
|
|
||||||
use Note\Route\Route;
|
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
use Swoole\Process;
|
use Swoole\Process;
|
||||||
use Swoole\WebSocket\Server;
|
use Swoole\WebSocket\Server;
|
||||||
@@ -192,16 +191,16 @@ if (!function_exists('workerName')) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (!function_exists('note')) {
|
if (!function_exists('Annotation')) {
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return Note
|
* @return Annotation
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
function annotation(): Note
|
function annotation(): Annotation
|
||||||
{
|
{
|
||||||
return Kiri::getNote();
|
return Kiri::getAnnotation();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -220,7 +219,7 @@ if (!function_exists('scan_directory')) {
|
|||||||
*/
|
*/
|
||||||
function scan_directory($dir, $namespace, array $exclude = [])
|
function scan_directory($dir, $namespace, array $exclude = [])
|
||||||
{
|
{
|
||||||
$annotation = Kiri::app()->getNote();
|
$annotation = Kiri::app()->getAnnotation();
|
||||||
$annotation->read($dir, $namespace, $exclude);
|
$annotation->read($dir, $namespace, $exclude);
|
||||||
|
|
||||||
injectRuntime($dir, $exclude);
|
injectRuntime($dir, $exclude);
|
||||||
@@ -256,12 +255,12 @@ if (!function_exists('injectRuntime')) {
|
|||||||
*/
|
*/
|
||||||
function injectRuntime(string $path, array $exclude = [])
|
function injectRuntime(string $path, array $exclude = [])
|
||||||
{
|
{
|
||||||
$fileLists = Kiri::getNote()->runtime($path, $exclude);
|
$fileLists = Kiri::getAnnotation()->runtime($path, $exclude);
|
||||||
$di = Kiri::getDi();
|
$di = Kiri::getDi();
|
||||||
|
|
||||||
$router = [];
|
$router = [];
|
||||||
foreach ($fileLists as $class) {
|
foreach ($fileLists as $class) {
|
||||||
foreach (NoteManager::getTargetNote($class) as $value) {
|
foreach (NoteManager::getTargetAnnotation($class) as $value) {
|
||||||
if (!method_exists($value, 'execute')) {
|
if (!method_exists($value, 'execute')) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@@ -849,9 +848,9 @@ if (!function_exists('storage')) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (empty($fileName)) {
|
if (empty($fileName)) {
|
||||||
return $basePath . '/' . $path . '/';
|
return $basePath . '/' . $path;
|
||||||
}
|
}
|
||||||
$fileName = $basePath . '/' . $path . '/' . $fileName;
|
$fileName = $basePath . '/' . $path . $fileName;
|
||||||
if (!file_exists($fileName)) {
|
if (!file_exists($fileName)) {
|
||||||
touch($fileName);
|
touch($fileName);
|
||||||
}
|
}
|
||||||
@@ -1232,3 +1231,28 @@ if (!function_exists('success')) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (!function_exists('error_trigger_format')) {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Throwable|Error $throwable
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
function error_trigger_format(\Throwable|\Error $throwable): string
|
||||||
|
{
|
||||||
|
$message = 'Throwable: ' . $throwable->getMessage() . "\r\n" . '
|
||||||
|
' . $throwable->getFile() . " at line" . $throwable->getLine();
|
||||||
|
|
||||||
|
$message .= 'trance' . "\r\n";
|
||||||
|
foreach ($throwable->getTrace() as $value) {
|
||||||
|
if (!isset($value['file'])) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
$message .= $value['file'] . '->' . $value['line'] . '(' . $value['class'] . '::' . $value['function'] . ')';
|
||||||
|
}
|
||||||
|
return $message;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
use DirectoryIterator;
|
use DirectoryIterator;
|
||||||
@@ -10,10 +10,10 @@ use ReflectionException;
|
|||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Note
|
* Class Annotation
|
||||||
* @package Note
|
* @package Annotation
|
||||||
*/
|
*/
|
||||||
class Note extends Component
|
class Annotation extends Component
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
@@ -10,7 +10,7 @@ defined('ASPECT_ERROR') or define('ASPECT_ERROR', 'Aspect annotation must implem
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Aspect
|
* Class Aspect
|
||||||
* @package Note
|
* @package Annotation
|
||||||
*/
|
*/
|
||||||
#[\Attribute(\Attribute::TARGET_METHOD)] class Aspect extends Attribute
|
#[\Attribute(\Attribute::TARGET_METHOD)] class Aspect extends Attribute
|
||||||
{
|
{
|
||||||
@@ -1,14 +1,14 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Attribute
|
* Class Attribute
|
||||||
* @package Note
|
* @package Annotation
|
||||||
*/
|
*/
|
||||||
abstract class Attribute implements INote
|
abstract class Attribute implements IAnnotation
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
@@ -1,17 +1,17 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Events\EventProvider;
|
use Kiri\Events\EventProvider;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Event
|
* Class Event
|
||||||
* @package Note
|
* @package Annotation
|
||||||
*/
|
*/
|
||||||
#[\Attribute(\Attribute::TARGET_METHOD)] class Event extends Attribute
|
#[\Attribute(\Attribute::TARGET_METHOD)] class Event extends Attribute
|
||||||
{
|
{
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
interface INote
|
interface IAnnotation
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -1,18 +1,18 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Core\Str;
|
use Kiri\Core\Str;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
use ReflectionException;
|
use ReflectionException;
|
||||||
use ReflectionProperty;
|
use ReflectionProperty;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Inject
|
* Class Inject
|
||||||
* @package Note
|
* @package Annotation
|
||||||
*/
|
*/
|
||||||
#[\Attribute(\Attribute::TARGET_PROPERTY)] class Inject extends Attribute
|
#[\Attribute(\Attribute::TARGET_PROPERTY)] class Inject extends Attribute
|
||||||
{
|
{
|
||||||
@@ -70,7 +70,6 @@ use ReflectionProperty;
|
|||||||
* @param $class
|
* @param $class
|
||||||
* @param $method
|
* @param $method
|
||||||
* @return ReflectionProperty|bool
|
* @return ReflectionProperty|bool
|
||||||
* @throws ReflectionException
|
|
||||||
*/
|
*/
|
||||||
private function getProperty($class, $method): ReflectionProperty|bool
|
private function getProperty($class, $method): ReflectionProperty|bool
|
||||||
{
|
{
|
||||||
@@ -1,13 +1,13 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
use DirectoryIterator;
|
use DirectoryIterator;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
use ReflectionClass;
|
use ReflectionClass;
|
||||||
use ReflectionException;
|
use ReflectionException;
|
||||||
use Throwable;
|
use Throwable;
|
||||||
@@ -15,21 +15,15 @@ use Throwable;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Loader
|
* Class Loader
|
||||||
* @package Note
|
* @package Annotation
|
||||||
*/
|
*/
|
||||||
class Loader extends Component
|
class Loader extends Component
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
private array $_classes = [];
|
|
||||||
|
|
||||||
|
|
||||||
private array $_directory = [];
|
private array $_directory = [];
|
||||||
|
|
||||||
|
|
||||||
private array $_property = [];
|
|
||||||
|
|
||||||
|
|
||||||
private array $_methods = [];
|
private array $_methods = [];
|
||||||
|
|
||||||
|
|
||||||
@@ -43,17 +37,6 @@ class Loader extends Component
|
|||||||
$this->_scanDir(new DirectoryIterator($path), $namespace);
|
$this->_scanDir(new DirectoryIterator($path), $namespace);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param string $class
|
|
||||||
* @param string $property
|
|
||||||
* @return \ReflectionProperty|array|null
|
|
||||||
* @throws ReflectionException
|
|
||||||
*/
|
|
||||||
public function getProperty(string $class, string $property = ''): \ReflectionProperty|array|null
|
|
||||||
{
|
|
||||||
return Kiri::getDi()->getClassReflectionProperty($class, $property);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $class
|
* @param string $class
|
||||||
@@ -147,7 +130,6 @@ class Loader extends Component
|
|||||||
* @param DirectoryIterator $path
|
* @param DirectoryIterator $path
|
||||||
* @param string $namespace
|
* @param string $namespace
|
||||||
* @return ReflectionClass|null
|
* @return ReflectionClass|null
|
||||||
* @throws ReflectionException
|
|
||||||
*/
|
*/
|
||||||
private function getReflect(DirectoryIterator $path, string $namespace): ?ReflectionClass
|
private function getReflect(DirectoryIterator $path, string $namespace): ?ReflectionClass
|
||||||
{
|
{
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Note;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
#[\Attribute(\Attribute::TARGET_CLASS)] class Mapping extends Attribute
|
#[\Attribute(\Attribute::TARGET_CLASS)] class Mapping extends Attribute
|
||||||
{
|
{
|
||||||
@@ -1,14 +1,14 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note\Route;
|
namespace Kiri\Annotation\Route;
|
||||||
|
|
||||||
|
|
||||||
use Note\Attribute;
|
use Kiri\Annotation\Attribute;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Document
|
* Class Document
|
||||||
* @package Note\Route
|
* @package Annotation\Route
|
||||||
*/
|
*/
|
||||||
#[\Attribute(\Attribute::TARGET_METHOD)] class Document extends Attribute
|
#[\Attribute(\Attribute::TARGET_METHOD)] class Document extends Attribute
|
||||||
{
|
{
|
||||||
@@ -1,16 +1,16 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note\Route;
|
namespace Kiri\Annotation\Route;
|
||||||
|
|
||||||
|
|
||||||
use Note\Attribute;
|
use Kiri\Annotation\Attribute;
|
||||||
use Http\Handler\Abstracts\MiddlewareManager;
|
use Kiri\Message\Handler\Abstracts\MiddlewareManager;
|
||||||
use Psr\Http\Server\MiddlewareInterface;
|
use Psr\Http\Server\MiddlewareInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Middleware
|
* Class Middleware
|
||||||
* @package Note\Route
|
* @package Annotation\Route
|
||||||
*/
|
*/
|
||||||
#[\Attribute(\Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)] class Middleware extends Attribute
|
#[\Attribute(\Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)] class Middleware extends Attribute
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note\Route;
|
namespace Kiri\Annotation\Route;
|
||||||
|
|
||||||
|
|
||||||
use Note\Attribute;
|
use Kiri\Annotation\Attribute;
|
||||||
use Http\Handler\Router;
|
use Kiri\Message\Handler\Router;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
#[\Attribute(\Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)] class Route extends Attribute
|
#[\Attribute(\Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)] class Route extends Attribute
|
||||||
{
|
{
|
||||||
@@ -1,14 +1,14 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note\Route;
|
namespace Kiri\Annotation\Route;
|
||||||
|
|
||||||
|
|
||||||
use Note\Attribute;
|
use Kiri\Annotation\Attribute;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Socket
|
* Class Socket
|
||||||
* @package Note
|
* @package Annotation
|
||||||
*/
|
*/
|
||||||
#[\Attribute(\Attribute::TARGET_METHOD)] class Socket extends Attribute
|
#[\Attribute(\Attribute::TARGET_METHOD)] class Socket extends Attribute
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Target
|
* Class Target
|
||||||
* @package Note
|
* @package Annotation
|
||||||
*/
|
*/
|
||||||
#[\Attribute(\Attribute::TARGET_CLASS)] class Target extends Attribute
|
#[\Attribute(\Attribute::TARGET_CLASS)] class Target extends Attribute
|
||||||
{
|
{
|
||||||
@@ -1,17 +1,17 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Note;
|
namespace Kiri\Annotation;
|
||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
use Server\Tasker\AsyncTaskExecute;
|
use Kiri\Server\Tasker\AsyncTaskExecute;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Task
|
* Class Task
|
||||||
* @package Note
|
* @package Annotation
|
||||||
* Task任务
|
* Task任务
|
||||||
*/
|
*/
|
||||||
#[\Attribute(\Attribute::TARGET_CLASS)] class Task extends Attribute
|
#[\Attribute(\Attribute::TARGET_CLASS)] class Task extends Attribute
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Kiri\Abstracts;
|
||||||
|
|
||||||
|
abstract class AbstractServer extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
public string $name = 'http';
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -10,31 +10,23 @@ declare(strict_types=1);
|
|||||||
namespace Kiri\Abstracts;
|
namespace Kiri\Abstracts;
|
||||||
|
|
||||||
|
|
||||||
use Note\Note as SNote;
|
|
||||||
use Database\Connection;
|
use Database\Connection;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Http\Handler\Router;
|
use Kiri\Message\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 Kiri\Server\{Contract\OnTaskInterface, Server, ServerManager, Tasker\AsyncTaskExecute};
|
||||||
use Server\Contract\OnTaskInterface;
|
|
||||||
use Server\Tasker\AsyncTaskExecute;
|
|
||||||
use Swoole\Table;
|
use Swoole\Table;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class BaseApplication
|
* Class BaseApplication
|
||||||
* @package Kiri\Kiri\Base
|
* @package Kiri\Base
|
||||||
*/
|
*/
|
||||||
abstract class BaseApplication extends Component
|
abstract class BaseApplication extends Component
|
||||||
{
|
{
|
||||||
@@ -392,12 +384,12 @@ abstract class BaseApplication extends Component
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return SNote
|
* @return SAnnotation
|
||||||
* @throws
|
* @throws
|
||||||
*/
|
*/
|
||||||
public function getNote(): SNote
|
public function getAnnotation(): SAnnotation
|
||||||
{
|
{
|
||||||
return $this->get('note');
|
return $this->get('Annotation');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -411,7 +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],
|
||||||
'note' => ['class' => SNote::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],
|
||||||
|
|||||||
@@ -13,24 +13,24 @@ namespace Kiri\Abstracts;
|
|||||||
use Exception;
|
use Exception;
|
||||||
use JetBrains\PhpStorm\Pure;
|
use JetBrains\PhpStorm\Pure;
|
||||||
use Kiri\Di\Container;
|
use Kiri\Di\Container;
|
||||||
|
use Kiri\Events\EventDispatch;
|
||||||
use Kiri\Events\EventProvider;
|
use Kiri\Events\EventProvider;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
use Note\Inject;
|
|
||||||
use Psr\Container\ContainerExceptionInterface;
|
use Psr\Container\ContainerExceptionInterface;
|
||||||
use Psr\Container\ContainerInterface;
|
use Psr\Container\ContainerInterface;
|
||||||
use Psr\Container\NotFoundExceptionInterface;
|
use Psr\Container\NotFoundExceptionInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Component
|
* Class Component
|
||||||
* @package Kiri\Kiri\Base
|
* @package Kiri\Base
|
||||||
* @property ContainerInterface|Container $container
|
* @property ContainerInterface|Container $container
|
||||||
* @property EventProvider $eventProvider
|
* @property EventProvider $eventProvider
|
||||||
|
* @property EventDispatch $eventDispatch
|
||||||
*/
|
*/
|
||||||
class Component implements Configure
|
class Component implements Configure
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* BaseAbstract constructor.
|
* BaseAbstract constructor.
|
||||||
*
|
*
|
||||||
@@ -65,6 +65,14 @@ class Component implements Configure
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return EventDispatch
|
||||||
|
*/
|
||||||
|
protected function getEventDispatch(): EventDispatch
|
||||||
|
{
|
||||||
|
return Kiri::getDi()->get(EventDispatch::class);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
@@ -73,7 +81,6 @@ class Component implements Configure
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
@@ -124,13 +131,14 @@ class Component implements Configure
|
|||||||
public function addError($message, string $model = 'app'): bool
|
public function addError($message, string $model = 'app'): bool
|
||||||
{
|
{
|
||||||
if ($message instanceof \Throwable) {
|
if ($message instanceof \Throwable) {
|
||||||
$this->error(jTraceEx($message));
|
$this->error($message = jTraceEx($message));
|
||||||
} else {
|
} else {
|
||||||
if (!is_string($message)) {
|
if (!is_string($message)) {
|
||||||
$message = json_encode($message, JSON_UNESCAPED_UNICODE);
|
$message = json_encode($message, JSON_UNESCAPED_UNICODE);
|
||||||
}
|
}
|
||||||
$this->error($message);
|
$this->error($message);
|
||||||
}
|
}
|
||||||
|
Kiri::app()->getLogger()->fail($message, $model);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -139,7 +147,7 @@ class Component implements Configure
|
|||||||
* @return Logger
|
* @return Logger
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
private function logger(): Logger
|
protected function logger(): Logger
|
||||||
{
|
{
|
||||||
return Kiri::getDi()->get(Logger::class);
|
return Kiri::getDi()->get(Logger::class);
|
||||||
}
|
}
|
||||||
@@ -156,8 +164,6 @@ class Component implements Configure
|
|||||||
if (!is_string($message)) {
|
if (!is_string($message)) {
|
||||||
$message = print_r($message, true);
|
$message = print_r($message, true);
|
||||||
}
|
}
|
||||||
// $message = "\033[35m" . $message . "\033[0m";
|
|
||||||
|
|
||||||
$context = [];
|
$context = [];
|
||||||
if (!empty($method)) $context['method'] = $method;
|
if (!empty($method)) $context['method'] = $method;
|
||||||
if (!empty($file)) $context['file'] = $file;
|
if (!empty($file)) $context['file'] = $file;
|
||||||
@@ -177,8 +183,6 @@ class Component implements Configure
|
|||||||
if (!is_string($message)) {
|
if (!is_string($message)) {
|
||||||
$message = print_r($message, true);
|
$message = print_r($message, true);
|
||||||
}
|
}
|
||||||
// $message = "\033[34m" . $message . "\033[0m";
|
|
||||||
|
|
||||||
$context = [];
|
$context = [];
|
||||||
if (!empty($method)) $context['method'] = $method;
|
if (!empty($method)) $context['method'] = $method;
|
||||||
if (!empty($file)) $context['file'] = $file;
|
if (!empty($file)) $context['file'] = $file;
|
||||||
@@ -198,9 +202,6 @@ class Component implements Configure
|
|||||||
if (!is_string($message)) {
|
if (!is_string($message)) {
|
||||||
$message = print_r($message, true);
|
$message = print_r($message, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
// $message = "\033[36m" . $message . "\033[0m";
|
|
||||||
|
|
||||||
$context = [];
|
$context = [];
|
||||||
if (!empty($method)) $context['method'] = $method;
|
if (!empty($method)) $context['method'] = $method;
|
||||||
if (!empty($file)) $context['file'] = $file;
|
if (!empty($file)) $context['file'] = $file;
|
||||||
@@ -221,8 +222,6 @@ class Component implements Configure
|
|||||||
$message = print_r($message, true);
|
$message = print_r($message, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
// $message = "\033[33m" . $message . "\033[0m";
|
|
||||||
|
|
||||||
$context = [];
|
$context = [];
|
||||||
if (!empty($method)) $context['method'] = $method;
|
if (!empty($method)) $context['method'] = $method;
|
||||||
if (!empty($file)) $context['file'] = $file;
|
if (!empty($file)) $context['file'] = $file;
|
||||||
@@ -252,8 +251,6 @@ class Component implements Configure
|
|||||||
}
|
}
|
||||||
$context = $method;
|
$context = $method;
|
||||||
}
|
}
|
||||||
// $message = "\033[41;37m" . $message . "\033[0m";
|
|
||||||
|
|
||||||
if (!empty($method)) $context['method'] = $method;
|
if (!empty($method)) $context['method'] = $method;
|
||||||
if (!empty($file)) $context['file'] = $file;
|
if (!empty($file)) $context['file'] = $file;
|
||||||
|
|
||||||
|
|||||||
@@ -9,14 +9,12 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace Kiri\Abstracts;
|
namespace Kiri\Abstracts;
|
||||||
|
|
||||||
use Exception;
|
|
||||||
use Kiri\Exception\ConfigException;
|
use Kiri\Exception\ConfigException;
|
||||||
use Kiri\Kiri;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Config
|
* Class Config
|
||||||
* @package Kiri\Kiri\Base
|
* @package Kiri\Base
|
||||||
*/
|
*/
|
||||||
class Config extends Component
|
class Config extends Component
|
||||||
{
|
{
|
||||||
@@ -95,7 +93,19 @@ class Config extends Component
|
|||||||
*/
|
*/
|
||||||
public static function set($key, $value): mixed
|
public static function set($key, $value): mixed
|
||||||
{
|
{
|
||||||
return static::setData($key, $value);
|
$explode = explode('.', $key);
|
||||||
|
$parent = &static::$data;
|
||||||
|
foreach ($explode as $item) {
|
||||||
|
if (!isset($parent[$item])) {
|
||||||
|
$parent[$item] = [];
|
||||||
|
}
|
||||||
|
$parent = &$parent[$item];
|
||||||
|
}
|
||||||
|
$parent = $value;
|
||||||
|
|
||||||
|
unset($parent);
|
||||||
|
|
||||||
|
return static::$data;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ namespace Kiri\Abstracts;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Interface Configure
|
* Interface Configure
|
||||||
* @package Kiri\Kiri\Base
|
* @package Kiri\Base
|
||||||
*/
|
*/
|
||||||
interface Configure
|
interface Configure
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -6,10 +6,10 @@ use DirectoryIterator;
|
|||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Events\EventProvider;
|
use Kiri\Events\EventProvider;
|
||||||
use Kiri\Exception\ConfigException;
|
use Kiri\Exception\ConfigException;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
use Kiri\Server\Events\OnWorkerStop;
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
use ReflectionException;
|
use ReflectionException;
|
||||||
use Server\Events\OnWorkerStop;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -222,7 +222,7 @@ class Logger implements LoggerInterface
|
|||||||
private function _string($message, $context): string
|
private function _string($message, $context): string
|
||||||
{
|
{
|
||||||
if (!empty($context)) {
|
if (!empty($context)) {
|
||||||
return $message . ' ' . PHP_EOL . print_r($context, TRUE) . PHP_EOL;
|
return $message . ' ' . PHP_EOL . print_r($context, true) . PHP_EOL;
|
||||||
}
|
}
|
||||||
return $message . PHP_EOL;
|
return $message . PHP_EOL;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,14 +4,11 @@
|
|||||||
namespace Kiri\Abstracts;
|
namespace Kiri\Abstracts;
|
||||||
|
|
||||||
|
|
||||||
use Note\Note as SNote;
|
use Kiri\Annotation\Annotation as SAnnotation;
|
||||||
use Database\Connection;
|
use Database\Connection;
|
||||||
use Database\DatabasesProviders;
|
use Database\DatabasesProviders;
|
||||||
use Http\Handler\Client\Client;
|
use Kiri\Message\Handler\Router;
|
||||||
use Http\Handler\Client\Curl;
|
use Kiri\Server\Server;
|
||||||
use Http\Handler\Router;
|
|
||||||
use Server\Server;
|
|
||||||
use Kiri\Crontab\Producer;
|
|
||||||
use Kiri\Async;
|
use Kiri\Async;
|
||||||
use Kiri\Error\Logger;
|
use Kiri\Error\Logger;
|
||||||
use Kiri\Jwt\JWTAuth;
|
use Kiri\Jwt\JWTAuth;
|
||||||
@@ -25,11 +22,9 @@ use Kiri\Jwt\JWTAuth;
|
|||||||
* @property Async $async
|
* @property Async $async
|
||||||
* @property Logger $logger
|
* @property Logger $logger
|
||||||
* @property JWTAuth $jwt
|
* @property JWTAuth $jwt
|
||||||
* @property SNote $annotation
|
* @property SAnnotation $annotation
|
||||||
* @property BaseGoto $goto
|
* @property BaseGoto $goto
|
||||||
* @property Client $client
|
|
||||||
* @property Connection $databases
|
* @property Connection $databases
|
||||||
* @property Curl $curl
|
|
||||||
*/
|
*/
|
||||||
trait TraitApplication
|
trait TraitApplication
|
||||||
{
|
{
|
||||||
|
|||||||
+23
-18
@@ -13,24 +13,23 @@ namespace Kiri;
|
|||||||
use Closure;
|
use Closure;
|
||||||
use Database\DatabasesProviders;
|
use Database\DatabasesProviders;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\BaseApplication;
|
use Kiri;
|
||||||
use Kiri\Abstracts\Config;
|
use Kiri\Abstracts\{BaseApplication, Config, Kernel};
|
||||||
use Kiri\Abstracts\Kernel;
|
|
||||||
use Kiri\Crontab\CrontabProviders;
|
use Kiri\Crontab\CrontabProviders;
|
||||||
use Kiri\Events\OnAfterCommandExecute;
|
use Kiri\Events\{OnAfterCommandExecute, OnBeforeCommandExecute};
|
||||||
use Kiri\Events\OnBeforeCommandExecute;
|
|
||||||
use Kiri\Exception\NotFindClassException;
|
|
||||||
use Kiri\FileListen\HotReload;
|
use Kiri\FileListen\HotReload;
|
||||||
|
use Kiri\Server\ServerProviders;
|
||||||
use ReflectionException;
|
use ReflectionException;
|
||||||
use Server\ServerProviders;
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
use Swoole\Process;
|
use Swoole\Process;
|
||||||
use Swoole\Timer;
|
use Swoole\Timer;
|
||||||
use Symfony\Component\Console\Application as ConsoleApplication;
|
use Symfony\Component\Console\{Application as ConsoleApplication,
|
||||||
use Symfony\Component\Console\Command\Command;
|
Command\Command,
|
||||||
use Symfony\Component\Console\Input\ArgvInput;
|
Input\ArgvInput,
|
||||||
use Symfony\Component\Console\Input\InputInterface;
|
Output\ConsoleOutput,
|
||||||
use Symfony\Component\Console\Output\ConsoleOutput;
|
Output\OutputInterface
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Init
|
* Class Init
|
||||||
@@ -192,7 +191,8 @@ class Application extends BaseApplication
|
|||||||
*/
|
*/
|
||||||
public function execute(array $argv): void
|
public function execute(array $argv): void
|
||||||
{
|
{
|
||||||
/** @var InputInterface $input */
|
ini_set('swoole.enable_preemptive_scheduler', 'On');
|
||||||
|
ini_set('swoole.enable_library', 'On');
|
||||||
[$input, $output] = $this->argument($argv);
|
[$input, $output] = $this->argument($argv);
|
||||||
try {
|
try {
|
||||||
$console = di(ConsoleApplication::class);
|
$console = di(ConsoleApplication::class);
|
||||||
@@ -212,7 +212,6 @@ class Application extends BaseApplication
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $argv
|
* @param $argv
|
||||||
* @return array
|
* @return array
|
||||||
@@ -223,7 +222,6 @@ class Application extends BaseApplication
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws ReflectionException
|
* @throws ReflectionException
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
@@ -232,16 +230,23 @@ class Application extends BaseApplication
|
|||||||
{
|
{
|
||||||
fire(new OnBeforeCommandExecute());
|
fire(new OnBeforeCommandExecute());
|
||||||
if (!($class instanceof HotReload)) {
|
if (!($class instanceof HotReload)) {
|
||||||
scan_directory(directory('app'), 'App');
|
$config = Config::get('scanner', []);
|
||||||
|
if (!empty($config)) {
|
||||||
|
foreach ($config as $key => $value) {
|
||||||
|
scan_directory($value, $key);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
scan_directory(MODEL_PATH, 'app\Model');
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->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
|
||||||
|
|||||||
@@ -6,9 +6,9 @@ namespace Kiri;
|
|||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
use Server\ServerManager;
|
use Kiri\Server\ServerManager;
|
||||||
use Server\Tasker\AsyncTaskExecute;
|
use Kiri\Server\Tasker\AsyncTaskExecute;
|
||||||
|
use Kiri;
|
||||||
/**
|
/**
|
||||||
* Class Async
|
* Class Async
|
||||||
* @package Kiri
|
* @package Kiri
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ namespace Kiri\Cache\Base;
|
|||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\Logger;
|
use Kiri\Abstracts\Logger;
|
||||||
use Kiri\Exception\RedisConnectException;
|
use Kiri\Exception\RedisConnectException;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
use Kiri\Pool\StopHeartbeatCheck;
|
use Kiri\Pool\StopHeartbeatCheck;
|
||||||
use RedisException;
|
use RedisException;
|
||||||
use Swoole\Timer;
|
use Swoole\Timer;
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ use Swoole\Coroutine\System;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class File
|
* Class File
|
||||||
* @package Kiri\Kiri\Cache
|
* @package Kiri\Cache
|
||||||
*/
|
*/
|
||||||
class File extends Component implements ICache
|
class File extends Component implements ICache
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ namespace Kiri\Cache;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Interface ICache
|
* Interface ICache
|
||||||
* @package Kiri\Kiri\Cache
|
* @package Kiri\Cache
|
||||||
*/
|
*/
|
||||||
interface ICache
|
interface ICache
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -15,15 +15,15 @@ use Kiri\Abstracts\Config;
|
|||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
use Kiri\Events\EventProvider;
|
use Kiri\Events\EventProvider;
|
||||||
use Kiri\Exception\ConfigException;
|
use Kiri\Exception\ConfigException;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
use Kiri\Pool\Redis as PoolRedis;
|
use Kiri\Pool\Redis as PoolRedis;
|
||||||
use Note\Inject;
|
use Kiri\Annotation\Inject;
|
||||||
use Server\Events\OnWorkerExit;
|
use Kiri\Server\Events\OnWorkerExit;
|
||||||
use Swoole\Timer;
|
use Swoole\Timer;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Redis
|
* Class Redis
|
||||||
* @package Kiri\Kiri\Cache
|
* @package Kiri\Cache
|
||||||
* @mixin \Redis
|
* @mixin \Redis
|
||||||
*/
|
*/
|
||||||
class Redis extends Component
|
class Redis extends Component
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ namespace Kiri;
|
|||||||
|
|
||||||
use Kiri\Abstracts\BaseContext;
|
use Kiri\Abstracts\BaseContext;
|
||||||
use Swoole\Coroutine;
|
use Swoole\Coroutine;
|
||||||
|
use Kiri;
|
||||||
/**
|
/**
|
||||||
* Class Context
|
* Class Context
|
||||||
* @package Yoc\http
|
* @package Yoc\http
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ namespace Kiri\Core;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class DateFormat
|
* Class DateFormat
|
||||||
* @package Kiri\Kiri\Core
|
* @package Kiri\Core
|
||||||
*/
|
*/
|
||||||
class DateFormat
|
class DateFormat
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ use Exception;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Help
|
* Class Help
|
||||||
* @package Kiri\Kiri\Core
|
* @package Kiri\Core
|
||||||
*/
|
*/
|
||||||
class Help
|
class Help
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ use Throwable;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class JSON
|
* Class JSON
|
||||||
* @package Kiri\Kiri\Core
|
* @package Kiri\Core
|
||||||
*/
|
*/
|
||||||
class Json
|
class Json
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ namespace Kiri\Core;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Reader
|
* Class Reader
|
||||||
* @package Kiri\Kiri\Core
|
* @package Kiri\Core
|
||||||
*/
|
*/
|
||||||
class Reader
|
class Reader
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ use Exception;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Str
|
* Class Str
|
||||||
* @package Kiri\Kiri\Core
|
* @package Kiri\Core
|
||||||
*/
|
*/
|
||||||
class Str
|
class Str
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ use Exception;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Xml
|
* Class Xml
|
||||||
* @package Kiri\Kiri\Core
|
* @package Kiri\Core
|
||||||
*/
|
*/
|
||||||
class Xml
|
class Xml
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -9,19 +9,18 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace Kiri\Di;
|
namespace Kiri\Di;
|
||||||
|
|
||||||
use Kiri\Abstracts\Component;
|
|
||||||
use Note\Inject;
|
|
||||||
use Closure;
|
use Closure;
|
||||||
use Exception;
|
use Exception;
|
||||||
|
use Kiri;
|
||||||
use Kiri\Abstracts\Logger;
|
use Kiri\Abstracts\Logger;
|
||||||
use Kiri\Kiri;
|
use Kiri\Annotation\Inject;
|
||||||
|
use Psr\Container\ContainerInterface;
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
use ReflectionClass;
|
use ReflectionClass;
|
||||||
use ReflectionException;
|
use ReflectionException;
|
||||||
use ReflectionFunction;
|
use ReflectionFunction;
|
||||||
use ReflectionMethod;
|
use ReflectionMethod;
|
||||||
use ReflectionProperty;
|
use ReflectionProperty;
|
||||||
use Psr\Container\ContainerInterface;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Container
|
* Class Container
|
||||||
@@ -69,21 +68,25 @@ class Container implements ContainerInterface
|
|||||||
*/
|
*/
|
||||||
public function get(string $id): mixed
|
public function get(string $id): mixed
|
||||||
{
|
{
|
||||||
|
if ($id == ContainerInterface::class) {
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
return $this->make($id, [], []);
|
return $this->make($id, [], []);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $class
|
* @param $class
|
||||||
* @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
|
||||||
{
|
{
|
||||||
|
if ($class == ContainerInterface::class) {
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
if ($this->isInterface($class)) {
|
if ($this->isInterface($class)) {
|
||||||
$class = $this->_interfaces[$class];
|
$class = $this->_interfaces[$class];
|
||||||
}
|
}
|
||||||
@@ -94,7 +97,6 @@ class Container implements ContainerInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $interface
|
* @param string $interface
|
||||||
* @param string $class
|
* @param string $class
|
||||||
@@ -199,7 +201,7 @@ class Container 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);
|
||||||
}
|
}
|
||||||
@@ -214,7 +216,7 @@ class Container implements ContainerInterface
|
|||||||
*/
|
*/
|
||||||
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] ?? [];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
namespace Kiri\Di;
|
namespace Kiri\Di;
|
||||||
|
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -12,9 +12,9 @@ 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 = [];
|
||||||
|
|
||||||
@@ -25,9 +25,9 @@ class NoteManager
|
|||||||
public static function clear()
|
public static function clear()
|
||||||
{
|
{
|
||||||
static::$_classTarget = [];
|
static::$_classTarget = [];
|
||||||
static::$_classMethodNote = [];
|
static::$_classMethodAnnotation = [];
|
||||||
static::$_classMethod = [];
|
static::$_classMethod = [];
|
||||||
static::$_classPropertyNote = [];
|
static::$_classPropertyAnnotation = [];
|
||||||
static::$_classProperty = [];
|
static::$_classProperty = [];
|
||||||
static::$_mapping = [];
|
static::$_mapping = [];
|
||||||
}
|
}
|
||||||
@@ -36,7 +36,7 @@ class NoteManager
|
|||||||
/**
|
/**
|
||||||
* @param ReflectionClass $class
|
* @param ReflectionClass $class
|
||||||
*/
|
*/
|
||||||
public static function setTargetNote(ReflectionClass $class)
|
public static function setTargetAnnotation(ReflectionClass $class)
|
||||||
{
|
{
|
||||||
$className = $class->getName();
|
$className = $class->getName();
|
||||||
if (!isset(static::$_classTarget[$className])) {
|
if (!isset(static::$_classTarget[$className])) {
|
||||||
@@ -111,7 +111,7 @@ class NoteManager
|
|||||||
* @param mixed $class
|
* @param mixed $class
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
public static function getTargetNote(mixed $class): array
|
public static function getTargetAnnotation(mixed $class): array
|
||||||
{
|
{
|
||||||
if (!is_string($class)) {
|
if (!is_string($class)) {
|
||||||
$class = $class::class;
|
$class = $class::class;
|
||||||
@@ -123,20 +123,20 @@ class NoteManager
|
|||||||
/**
|
/**
|
||||||
* @param ReflectionClass $class
|
* @param ReflectionClass $class
|
||||||
*/
|
*/
|
||||||
public static function setMethodNote(ReflectionClass $class)
|
public static function setMethodAnnotation(ReflectionClass $class)
|
||||||
{
|
{
|
||||||
$className = $class->getName();
|
$className = $class->getName();
|
||||||
static::$_classMethodNote[$className] = static::$_classMethod[$className] = [];
|
static::$_classMethodAnnotation[$className] = static::$_classMethod[$className] = [];
|
||||||
foreach ($class->getMethods() as $ReflectionMethod) {
|
foreach ($class->getMethods() as $ReflectionMethod) {
|
||||||
static::$_classMethod[$className][$ReflectionMethod->getName()] = $ReflectionMethod;
|
static::$_classMethod[$className][$ReflectionMethod->getName()] = $ReflectionMethod;
|
||||||
static::$_classMethodNote[$className][$ReflectionMethod->getName()] = [];
|
static::$_classMethodAnnotation[$className][$ReflectionMethod->getName()] = [];
|
||||||
foreach ($ReflectionMethod->getAttributes() as $attribute) {
|
foreach ($ReflectionMethod->getAttributes() as $attribute) {
|
||||||
if (!class_exists($attribute->getName())) {
|
if (!class_exists($attribute->getName())) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
$instance = $attribute->newInstance();
|
$instance = $attribute->newInstance();
|
||||||
|
|
||||||
static::$_classMethodNote[$className][$ReflectionMethod->getName()][] = $instance;
|
static::$_classMethodAnnotation[$className][$ReflectionMethod->getName()][] = $instance;
|
||||||
|
|
||||||
self::setMappingMethod($attribute, $className, $ReflectionMethod->getName(), $instance);
|
self::setMappingMethod($attribute, $className, $ReflectionMethod->getName(), $instance);
|
||||||
}
|
}
|
||||||
@@ -159,9 +159,9 @@ class NoteManager
|
|||||||
* @param ReflectionClass $class
|
* @param ReflectionClass $class
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
#[Pure] public static function getMethodNote(ReflectionClass $class): array
|
#[Pure] public static function getMethodAnnotation(ReflectionClass $class): array
|
||||||
{
|
{
|
||||||
return static::$_classMethodNote[$class->getName()] ?? [];
|
return static::$_classMethodAnnotation[$class->getName()] ?? [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -171,9 +171,9 @@ class NoteManager
|
|||||||
*/
|
*/
|
||||||
public static function resolveTarget(ReflectionClass $reflect): ?\ReflectionMethod
|
public static function resolveTarget(ReflectionClass $reflect): ?\ReflectionMethod
|
||||||
{
|
{
|
||||||
NoteManager::setPropertyNote($reflect);
|
NoteManager::setPropertyAnnotation($reflect);
|
||||||
NoteManager::setTargetNote($reflect);
|
NoteManager::setTargetAnnotation($reflect);
|
||||||
NoteManager::setMethodNote($reflect);
|
NoteManager::setMethodAnnotation($reflect);
|
||||||
|
|
||||||
return $reflect->getConstructor();
|
return $reflect->getConstructor();
|
||||||
}
|
}
|
||||||
@@ -182,10 +182,10 @@ class NoteManager
|
|||||||
/**
|
/**
|
||||||
* @param ReflectionClass $class
|
* @param ReflectionClass $class
|
||||||
*/
|
*/
|
||||||
public static function setPropertyNote(ReflectionClass $class)
|
public static function setPropertyAnnotation(ReflectionClass $class)
|
||||||
{
|
{
|
||||||
$className = $class->getName();
|
$className = $class->getName();
|
||||||
static::$_classProperty[$className] = static::$_classPropertyNote[$className] = [];
|
static::$_classProperty[$className] = static::$_classPropertyAnnotation[$className] = [];
|
||||||
foreach ($class->getProperties(ReflectionProperty::IS_PRIVATE | ReflectionProperty::IS_PUBLIC |
|
foreach ($class->getProperties(ReflectionProperty::IS_PRIVATE | ReflectionProperty::IS_PUBLIC |
|
||||||
ReflectionProperty::IS_PROTECTED) as $ReflectionMethod) {
|
ReflectionProperty::IS_PROTECTED) as $ReflectionMethod) {
|
||||||
static::$_classProperty[$className][$ReflectionMethod->getName()] = $ReflectionMethod;
|
static::$_classProperty[$className][$ReflectionMethod->getName()] = $ReflectionMethod;
|
||||||
@@ -196,7 +196,7 @@ class NoteManager
|
|||||||
|
|
||||||
$instance = $attribute->newInstance();
|
$instance = $attribute->newInstance();
|
||||||
|
|
||||||
static::$_classPropertyNote[$className][$ReflectionMethod->getName()] = $instance;
|
static::$_classPropertyAnnotation[$className][$ReflectionMethod->getName()] = $instance;
|
||||||
|
|
||||||
self::setMappingProperty($attribute, $className, $ReflectionMethod->getName(), $instance);
|
self::setMappingProperty($attribute, $className, $ReflectionMethod->getName(), $instance);
|
||||||
}
|
}
|
||||||
@@ -250,7 +250,7 @@ class NoteManager
|
|||||||
* @param string $method
|
* @param string $method
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public static function getPropertyByNote(string $attribute, string $class, string $method): mixed
|
public static function getPropertyByAnnotation(string $attribute, string $class, string $method): mixed
|
||||||
{
|
{
|
||||||
$class = self::getAttributeTrees($attribute, $class);
|
$class = self::getAttributeTrees($attribute, $class);
|
||||||
if (empty($class) || !isset($class['property'])) {
|
if (empty($class) || !isset($class['property'])) {
|
||||||
@@ -294,9 +294,9 @@ class NoteManager
|
|||||||
* @param ReflectionClass $class
|
* @param ReflectionClass $class
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
#[Pure] public static function getPropertyNote(ReflectionClass $class): array
|
#[Pure] public static function getPropertyAnnotation(ReflectionClass $class): array
|
||||||
{
|
{
|
||||||
return static::$_classPropertyNote[$class->getName()] ?? [];
|
return static::$_classPropertyAnnotation[$class->getName()] ?? [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ namespace Kiri;
|
|||||||
|
|
||||||
|
|
||||||
use JetBrains\PhpStorm\Pure;
|
use JetBrains\PhpStorm\Pure;
|
||||||
|
use Kiri;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Environmental
|
* Class Environmental
|
||||||
|
|||||||
@@ -10,17 +10,17 @@ declare(strict_types=1);
|
|||||||
namespace Kiri\Error;
|
namespace Kiri\Error;
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Http\Handler\Formatter\IFormatter;
|
use Kiri\Message\Handler\Formatter\IFormatter;
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
use Kiri\Events\EventDispatch;
|
use Kiri\Events\EventDispatch;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
use Http\Events\OnAfterRequest;
|
use Kiri\Message\Events\OnAfterRequest;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class ErrorHandler
|
* Class ErrorHandler
|
||||||
*
|
*
|
||||||
* @package Kiri\Kiri\Base
|
* @package Kiri\Base
|
||||||
* @property-read $asError
|
* @property-read $asError
|
||||||
*/
|
*/
|
||||||
class ErrorHandler extends Component implements ErrorInterface
|
class ErrorHandler extends Component implements ErrorInterface
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ namespace Kiri\Error;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Interface ErrorInterface
|
* Interface ErrorInterface
|
||||||
* @package Kiri\Kiri\Error
|
* @package Kiri\Error
|
||||||
*/
|
*/
|
||||||
interface ErrorInterface
|
interface ErrorInterface
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -9,17 +9,17 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace Kiri\Error;
|
namespace Kiri\Error;
|
||||||
|
|
||||||
use Note\Inject;
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
use Kiri\Annotation\Inject;
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
use Throwable;
|
use Throwable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Logger
|
* Class Logger
|
||||||
* @package Kiri\Kiri\Error
|
* @package Kiri\Error
|
||||||
* @mixin \Kiri\Abstracts\Logger
|
* @mixin \Kiri\Abstracts\Logger
|
||||||
*/
|
*/
|
||||||
class Logger extends Component
|
class Logger extends Component
|
||||||
@@ -46,9 +46,21 @@ class Logger extends Component
|
|||||||
*/
|
*/
|
||||||
public function getLastError(string $application = 'app'): string
|
public function getLastError(string $application = 'app'): string
|
||||||
{
|
{
|
||||||
return 'Unknown error.';
|
return $this->logs[$application] ?? 'Unknown error.';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $message
|
||||||
|
* @param $method
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function fail($message, $method)
|
||||||
|
{
|
||||||
|
$this->logs[$method] = $message;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $messages
|
* @param string $messages
|
||||||
* @param string $method
|
* @param string $method
|
||||||
|
|||||||
@@ -5,10 +5,10 @@ namespace Kiri\Error;
|
|||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Http\Aspect\OnAspectInterface;
|
use Kiri\Message\Aspect\OnAspectInterface;
|
||||||
use Http\Aspect\OnJoinPointInterface;
|
use Kiri\Message\Aspect\OnJoinPointInterface;
|
||||||
use Http\Constrict\RequestInterface;
|
use Kiri\Message\Constrict\RequestInterface;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -7,8 +7,10 @@ namespace Kiri\Error;
|
|||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
use Kiri\Exception\ComponentException;
|
use Kiri\Exception\ComponentException;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
use Server\Abstracts\BaseProcess;
|
use Kiri\Server\Abstracts\BaseProcess;
|
||||||
|
use Kiri\Server\Broadcast\OnBroadcastInterface;
|
||||||
|
use Psr\Log\LoggerInterface;
|
||||||
use Swoole\Coroutine;
|
use Swoole\Coroutine;
|
||||||
use Swoole\Process;
|
use Swoole\Process;
|
||||||
|
|
||||||
@@ -34,6 +36,17 @@ class LoggerProcess extends BaseProcess
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param OnBroadcastInterface $message
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function onBroadcast(OnBroadcastInterface $message): void
|
||||||
|
{
|
||||||
|
$logger = Kiri::getDi()->get(LoggerInterface::class);
|
||||||
|
$logger->debug($message->data . '::' . static::class);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Process $process
|
* @param Process $process
|
||||||
* @throws ComponentException
|
* @throws ComponentException
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ namespace Kiri;
|
|||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
|
use Kiri;
|
||||||
/**
|
/**
|
||||||
* Class Event
|
* Class Event
|
||||||
* @package Kiri
|
* @package Kiri
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ use Throwable;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class ComponentException
|
* Class ComponentException
|
||||||
* @package Kiri\Kiri\Exception
|
* @package Kiri\Exception
|
||||||
*/
|
*/
|
||||||
class ComponentException extends \Exception
|
class ComponentException extends \Exception
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ use Throwable;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class NotFindClassException
|
* Class NotFindClassException
|
||||||
* @package Kiri\Kiri\Exception
|
* @package Kiri\Exception
|
||||||
*/
|
*/
|
||||||
class NotFindClassException extends \Exception
|
class NotFindClassException extends \Exception
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ use Throwable;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class NotFindClassException
|
* Class NotFindClassException
|
||||||
* @package Kiri\Kiri\Exception
|
* @package Kiri\Exception
|
||||||
*/
|
*/
|
||||||
class NotFindPropertyException extends \Exception
|
class NotFindPropertyException extends \Exception
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,18 +3,17 @@
|
|||||||
namespace Kiri\FileListen;
|
namespace Kiri\FileListen;
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
|
use Kiri;
|
||||||
use Kiri\Abstracts\Config;
|
use Kiri\Abstracts\Config;
|
||||||
|
use Kiri\Annotation\Inject;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
use Kiri\Error\Logger;
|
use Kiri\Error\Logger;
|
||||||
use Kiri\Exception\ConfigException;
|
use Kiri\Exception\ConfigException;
|
||||||
use Kiri\Kiri;
|
|
||||||
use Note\Inject;
|
|
||||||
use Swoole\Coroutine;
|
use Swoole\Coroutine;
|
||||||
use Swoole\Process;
|
use Swoole\Process;
|
||||||
use Swoole\Timer;
|
use Swoole\Timer;
|
||||||
use Symfony\Component\Console\Command\Command;
|
use Symfony\Component\Console\Command\Command;
|
||||||
use Symfony\Component\Console\Input\InputInterface;
|
use Symfony\Component\Console\Input\InputInterface;
|
||||||
use Symfony\Component\Console\Input\InputOption;
|
|
||||||
use Symfony\Component\Console\Output\OutputInterface;
|
use Symfony\Component\Console\Output\OutputInterface;
|
||||||
|
|
||||||
|
|
||||||
@@ -61,7 +60,6 @@ class HotReload extends Command
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws ConfigException
|
* @throws ConfigException
|
||||||
* @throws \ReflectionException
|
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
protected function initCore()
|
protected function initCore()
|
||||||
@@ -176,7 +174,6 @@ class HotReload extends Command
|
|||||||
Timer::clearAll();
|
Timer::clearAll();
|
||||||
$this->driver->clear();
|
$this->driver->clear();
|
||||||
$this->stopServer();
|
$this->stopServer();
|
||||||
$this->stopManager();
|
|
||||||
while ($ret = Process::wait(TRUE)) {
|
while ($ret = Process::wait(TRUE)) {
|
||||||
echo "PID={$ret['pid']}\n";
|
echo "PID={$ret['pid']}\n";
|
||||||
sleep(1);
|
sleep(1);
|
||||||
@@ -193,14 +190,6 @@ class HotReload extends Command
|
|||||||
if (!empty($pid) && Process::kill($pid, 0)) {
|
if (!empty($pid) && Process::kill($pid, 0)) {
|
||||||
Process::kill($pid, SIGTERM);
|
Process::kill($pid, SIGTERM);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
protected function stopManager()
|
|
||||||
{
|
|
||||||
if ($this->process && Process::kill($this->process->pid, 0)) {
|
if ($this->process && Process::kill($this->process->pid, 0)) {
|
||||||
Process::kill($this->process->pid) && Process::wait(TRUE);
|
Process::kill($this->process->pid) && Process::wait(TRUE);
|
||||||
}
|
}
|
||||||
@@ -212,23 +201,25 @@ class HotReload extends Command
|
|||||||
*
|
*
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function trigger_reload()
|
public function trigger_reload(string $path = '')
|
||||||
{
|
{
|
||||||
|
$this->logger->warning('change reload');
|
||||||
|
if (!empty($path) && str_starts_with($path, CONTROLLER_PATH)) {
|
||||||
|
$pid = file_get_contents(storage('.swoole.pid'));
|
||||||
|
if (!empty($pid) && Process::kill($pid, 0)) {
|
||||||
|
Process::kill($pid, SIGUSR1);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
if ($this->int == 1) {
|
if ($this->int == 1) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$this->int = 1;
|
$this->int = 1;
|
||||||
$this->logger->warning('change reload');
|
|
||||||
|
|
||||||
$this->stopServer();
|
$this->stopServer();
|
||||||
$this->stopManager();
|
|
||||||
|
|
||||||
$this->process = new Process(function (Process $process) {
|
$this->process = new Process(function (Process $process) {
|
||||||
$process->exec(PHP_BINARY, [APP_PATH . "kiri.php", "sw:server", "restart"]);
|
$process->exec(PHP_BINARY, [APP_PATH . "kiri.php", "sw:server", "start"]);
|
||||||
});
|
});
|
||||||
|
|
||||||
$this->process->start();
|
$this->process->start();
|
||||||
$this->int = -1;
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -86,7 +86,7 @@ class Inotify
|
|||||||
}
|
}
|
||||||
//非重启类型
|
//非重启类型
|
||||||
if (str_ends_with($ev['name'], '.php')) {
|
if (str_ends_with($ev['name'], '.php')) {
|
||||||
Timer::after(3000, fn() => $this->reload());
|
Timer::after(3000, fn() => $this->reload($ev['name']));
|
||||||
$this->isReloading = TRUE;
|
$this->isReloading = TRUE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -95,9 +95,9 @@ class Inotify
|
|||||||
/**
|
/**
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function reload()
|
public function reload($path)
|
||||||
{
|
{
|
||||||
$this->process->trigger_reload();
|
$this->process->trigger_reload($path);
|
||||||
$this->clearWatch();
|
$this->clearWatch();
|
||||||
foreach ($this->dirs as $root) {
|
foreach ($this->dirs as $root) {
|
||||||
$this->watch($root);
|
$this->watch($root);
|
||||||
@@ -113,11 +113,7 @@ class Inotify
|
|||||||
public function clearWatch()
|
public function clearWatch()
|
||||||
{
|
{
|
||||||
foreach ($this->watchFiles as $wd) {
|
foreach ($this->watchFiles as $wd) {
|
||||||
try {
|
|
||||||
@inotify_rm_watch($this->inotify, $wd);
|
@inotify_rm_watch($this->inotify, $wd);
|
||||||
} catch (\Throwable $exception) {
|
|
||||||
// logger()->addError($exception->getMessage(), 'throwable');
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
$this->watchFiles = [];
|
$this->watchFiles = [];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -106,15 +106,18 @@ class Scaner
|
|||||||
/**
|
/**
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function timerReload()
|
public function timerReload($path)
|
||||||
{
|
{
|
||||||
$this->isReloading = TRUE;
|
$this->isReloading = TRUE;
|
||||||
$this->process->trigger_reload();
|
|
||||||
|
|
||||||
$this->process->int = -1;
|
if (str_contains($path, CONTROLLER_PATH))
|
||||||
|
|
||||||
|
$this->process->trigger_reload($path);
|
||||||
|
|
||||||
$this->loadDirs();
|
$this->loadDirs();
|
||||||
|
|
||||||
|
$this->process->int = -1;
|
||||||
|
|
||||||
$this->isReloading = FALSE;
|
$this->isReloading = FALSE;
|
||||||
$this->process->isReloadingOut = FALSE;
|
$this->process->isReloadingOut = FALSE;
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ use Exception;
|
|||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
use Kiri\Abstracts\Config;
|
use Kiri\Abstracts\Config;
|
||||||
use Kiri\Context;
|
use Kiri\Context;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
use Swoole\Error;
|
use Swoole\Error;
|
||||||
use Throwable;
|
use Throwable;
|
||||||
|
|
||||||
|
|||||||
@@ -10,11 +10,11 @@ use Exception;
|
|||||||
use Kiri\Abstracts\Component;
|
use Kiri\Abstracts\Component;
|
||||||
use Kiri\Context;
|
use Kiri\Context;
|
||||||
use Kiri\Exception\ConfigException;
|
use Kiri\Exception\ConfigException;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class RedisClient
|
* Class RedisClient
|
||||||
* @package Kiri\Kiri\Pool
|
* @package Kiri\Pool
|
||||||
*/
|
*/
|
||||||
class Redis extends Component
|
class Redis extends Component
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ use Kiri\Abstracts\Input;
|
|||||||
use Symfony\Component\Console\Command\Command;
|
use Symfony\Component\Console\Command\Command;
|
||||||
use Symfony\Component\Console\Input\InputInterface;
|
use Symfony\Component\Console\Input\InputInterface;
|
||||||
use Symfony\Component\Console\Output\OutputInterface;
|
use Symfony\Component\Console\Output\OutputInterface;
|
||||||
|
use Kiri;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Runtime
|
* Class Runtime
|
||||||
@@ -44,7 +44,7 @@ class Runtime extends Command
|
|||||||
public function execute(InputInterface $input, OutputInterface $output): int
|
public function execute(InputInterface $input, OutputInterface $output): int
|
||||||
{
|
{
|
||||||
// TODO: Implement onHandler() method.
|
// TODO: Implement onHandler() method.
|
||||||
$annotation = Kiri::app()->getNote();
|
$annotation = Kiri::app()->getAnnotation();
|
||||||
|
|
||||||
$runtime = storage(static::CACHE_NAME);
|
$runtime = storage(static::CACHE_NAME);
|
||||||
$config = storage(static::CONFIG_NAME);
|
$config = storage(static::CONFIG_NAME);
|
||||||
|
|||||||
+1
-1
@@ -13,7 +13,7 @@ use Database\Connection;
|
|||||||
use Database\Db;
|
use Database\Db;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Cache\Redis;
|
use Kiri\Cache\Redis;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
use Symfony\Component\Console\Input\InputInterface;
|
use Symfony\Component\Console\Input\InputInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ namespace Gii;
|
|||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\Config;
|
use Kiri\Abstracts\Config;
|
||||||
use Kiri\Exception\ConfigException;
|
use Kiri\Exception\ConfigException;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
use Symfony\Component\Console\Command\Command;
|
use Symfony\Component\Console\Command\Command;
|
||||||
use Symfony\Component\Console\Input\InputArgument;
|
use Symfony\Component\Console\Input\InputArgument;
|
||||||
use Symfony\Component\Console\Input\InputInterface;
|
use Symfony\Component\Console\Input\InputInterface;
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ namespace Gii;
|
|||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use ReflectionException;
|
use ReflectionException;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class GiiController
|
* Class GiiController
|
||||||
@@ -65,14 +65,14 @@ namespace {$namespace};
|
|||||||
} else {
|
} else {
|
||||||
$import = "use Kiri;
|
$import = "use Kiri;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Note\Target;
|
use Kiri\Annotation\Target;
|
||||||
use Note\Route\Middleware;
|
use Kiri\Annotation\Route\Middleware;
|
||||||
use Note\Route\Route;
|
use Kiri\Annotation\Route\Route;
|
||||||
use Kiri\Core\Str;
|
use Kiri\Core\Str;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
use Http\Context\Request;
|
use Kiri\Message\Context\Request;
|
||||||
use Http\Context\Response;
|
use Kiri\Message\Context\Response;
|
||||||
use Http\Controller;
|
use Kiri\Message\Controller;
|
||||||
use JetBrains\PhpStorm\ArrayShape;
|
use JetBrains\PhpStorm\ArrayShape;
|
||||||
use {$model_namespace}\\{$managerName};
|
use {$model_namespace}\\{$managerName};
|
||||||
";
|
";
|
||||||
|
|||||||
@@ -51,8 +51,8 @@ interface ' . ucfirst($name) . 'RpcInterface
|
|||||||
namespace Rpc\Producers;
|
namespace Rpc\Producers;
|
||||||
|
|
||||||
|
|
||||||
use Note\Target;
|
use Kiri\Annotation\Target;
|
||||||
use Note\Mapping;
|
use Kiri\Annotation\Mapping;
|
||||||
use Rpc\\' . ucfirst($name) . 'RpcInterface;
|
use Rpc\\' . ucfirst($name) . 'RpcInterface;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Rpc\JsonRpcConsumers;
|
use Kiri\Rpc\JsonRpcConsumers;
|
||||||
@@ -86,9 +86,9 @@ class ' . ucfirst($name) . 'RpcService extends JsonRpcConsumers implements ' . u
|
|||||||
namespace Rpc\Consumers;
|
namespace Rpc\Consumers;
|
||||||
|
|
||||||
|
|
||||||
use Note\Target;
|
use Kiri\Annotation\Target;
|
||||||
use Kiri\Rpc\Note\JsonRpc;
|
use Kiri\Rpc\Annotation\JsonRpc;
|
||||||
use Http\Handler\Controller;
|
use Kiri\Message\Handler\Controller;
|
||||||
use Rpc\\' . ucfirst($name) . 'RpcInterface;
|
use Rpc\\' . ucfirst($name) . 'RpcInterface;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ namespace Gii;
|
|||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class GiiMiddleware
|
* Class GiiMiddleware
|
||||||
@@ -34,7 +34,7 @@ namespace App\Middleware;
|
|||||||
|
|
||||||
use Closure;
|
use Closure;
|
||||||
use Psr\Http\Server\MiddlewareInterface;
|
use Psr\Http\Server\MiddlewareInterface;
|
||||||
use Server\Constrict\RequestInterface;
|
use Kiri\Server\Constrict\RequestInterface;
|
||||||
|
|
||||||
';
|
';
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ use Database\Db;
|
|||||||
use Database\Model;
|
use Database\Model;
|
||||||
use Exception;
|
use Exception;
|
||||||
use ReflectionException;
|
use ReflectionException;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class GiiModel
|
* Class GiiModel
|
||||||
@@ -66,11 +66,11 @@ namespace ' . $namespace . ';
|
|||||||
$html .= $imports . PHP_EOL;
|
$html .= $imports . PHP_EOL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!str_contains($imports, 'Database\Note\Set')) {
|
if (!str_contains($imports, 'Database\Annotation\Set')) {
|
||||||
$html .= 'use Database\Note\Set;' . PHP_EOL;
|
$html .= 'use Database\Annotation\Set;' . PHP_EOL;
|
||||||
}
|
}
|
||||||
if (!str_contains($imports, 'Database\Note\Get')) {
|
if (!str_contains($imports, 'Database\Annotation\Get')) {
|
||||||
$html .= 'use Database\Note\Get;' . PHP_EOL;
|
$html .= 'use Database\Annotation\Get;' . PHP_EOL;
|
||||||
}
|
}
|
||||||
} catch (\Throwable $e) {
|
} catch (\Throwable $e) {
|
||||||
logger()->addError($e, 'throwable');
|
logger()->addError($e, 'throwable');
|
||||||
@@ -84,11 +84,11 @@ namespace ' . $namespace . ';
|
|||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Note\Target;
|
use Kiri\Annotation\Target;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
use Database\Connection;
|
use Database\Connection;
|
||||||
use Database\Note\Get;
|
use Database\Annotation\Get;
|
||||||
use Database\Note\Set;
|
use Database\Annotation\Set;
|
||||||
use Database\Relation;
|
use Database\Relation;
|
||||||
use Database\Model;
|
use Database\Model;
|
||||||
' . PHP_EOL;
|
' . PHP_EOL;
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ namespace Gii;
|
|||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\Providers;
|
use Kiri\Abstracts\Providers;
|
||||||
use Kiri\Application;
|
use Kiri\Application;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class DatabasesProviders
|
* Class DatabasesProviders
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ namespace Gii;
|
|||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class GiiRpcClient
|
* Class GiiRpcClient
|
||||||
@@ -36,13 +36,13 @@ class GiiRpcClient extends GiiBase
|
|||||||
|
|
||||||
namespace App\Client\Rpc;
|
namespace App\Client\Rpc;
|
||||||
|
|
||||||
use Note\Rpc\Consumer;
|
use Kiri\Annotation\Rpc\Consumer;
|
||||||
use Note\Rpc\RpcClient;
|
use Kiri\Annotation\Rpc\RpcClient;
|
||||||
use Note\Target;
|
use Kiri\Annotation\Target;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Rpc\Client;
|
use Rpc\Client;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
';
|
';
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ namespace Gii;
|
|||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class GiiRpcClient
|
* Class GiiRpcClient
|
||||||
@@ -33,10 +33,10 @@ class GiiRpcService extends GiiBase
|
|||||||
|
|
||||||
namespace App\Rpc;
|
namespace App\Rpc;
|
||||||
|
|
||||||
use Note\Route\RpcProducer;
|
use Kiri\Annotation\Route\RpcProducer;
|
||||||
use Note\Target;
|
use Kiri\Annotation\Target;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Http\Controller;
|
use Kiri\Message\Controller;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
|
|
||||||
';
|
';
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ declare(strict_types=1);
|
|||||||
namespace Gii;
|
namespace Gii;
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Kiri;
|
use Kiri;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class GiiModel
|
* Class GiiModel
|
||||||
@@ -31,7 +31,7 @@ class GiiTask extends GiiBase
|
|||||||
|
|
||||||
namespace App\Async;
|
namespace App\Async;
|
||||||
|
|
||||||
use Server\Contract\OnTaskInterface;
|
use Kiri\Server\Contract\OnTaskInterface;
|
||||||
|
|
||||||
';
|
';
|
||||||
|
|
||||||
|
|||||||
@@ -2,20 +2,91 @@
|
|||||||
|
|
||||||
namespace Kiri\Websocket;
|
namespace Kiri\Websocket;
|
||||||
|
|
||||||
class Sender
|
use Kiri;
|
||||||
|
use Swoole\{Coroutine\Http\Server as AliasServer, WebSocket\Server};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
class Sender implements WebSocketInterface
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
public function push($fd, $data)
|
/**
|
||||||
|
* @var AliasServer|Server
|
||||||
|
*/
|
||||||
|
private AliasServer|Server $server;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public function __construct()
|
||||||
{
|
{
|
||||||
|
$this->server = Kiri::getDi()->get(WebSocketInterface::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function close($fd)
|
/**
|
||||||
|
* @param int $fd
|
||||||
|
* @param mixed $data
|
||||||
|
* @param int $opcode
|
||||||
|
* @param int $flags
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function push(int $fd, string $data, int $opcode = WEBSOCKET_OPCODE_TEXT, int $flags = SWOOLE_WEBSOCKET_FLAG_FIN): bool
|
||||||
{
|
{
|
||||||
|
if ($this->isEstablished($fd)) {
|
||||||
|
return $this->server->push($fd, $data, $opcode, $flags);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $fd
|
||||||
|
* @param $reactor_id
|
||||||
|
* @return array|null
|
||||||
|
*/
|
||||||
|
public function connection_info($fd, $reactor_id = null): ?array
|
||||||
|
{
|
||||||
|
return $this->server->getClientInfo($fd, $reactor_id);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $fd
|
||||||
|
* @param int $code
|
||||||
|
* @param string $reason
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function disconnect(int $fd, int $code = SWOOLE_WEBSOCKET_CLOSE_NORMAL, string $reason = ''): bool
|
||||||
|
{
|
||||||
|
if ($this->isEstablished($fd)) {
|
||||||
|
return $this->server->disconnect($fd, $code, $reason);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $fd
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function isEstablished(int $fd): bool
|
||||||
|
{
|
||||||
|
return $this->exist($fd) && $this->server->isEstablished($fd);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $fd
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function exist(int $fd): bool
|
||||||
|
{
|
||||||
|
return $this->server->exist($fd);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,49 +2,54 @@
|
|||||||
|
|
||||||
namespace Kiri\Websocket;
|
namespace Kiri\Websocket;
|
||||||
|
|
||||||
use Http\Handler\DataGrip;
|
use Exception;
|
||||||
use Http\Handler\Router;
|
use Kiri\Message\Handler\DataGrip;
|
||||||
use Kiri\Abstracts\Component;
|
use Kiri\Message\Handler\Router;
|
||||||
use Kiri\Server\Contract\OnOpenInterface;
|
use Kiri\Abstracts\AbstractServer;
|
||||||
|
use Kiri\Annotation\Inject;
|
||||||
use Psr\Container\ContainerExceptionInterface;
|
use Psr\Container\ContainerExceptionInterface;
|
||||||
use Psr\Container\NotFoundExceptionInterface;
|
use Psr\Container\NotFoundExceptionInterface;
|
||||||
use ReflectionException;
|
use Kiri\Server\Contract\OnCloseInterface;
|
||||||
use Server\Contract\OnCloseInterface;
|
use Kiri\Server\Contract\OnHandshakeInterface;
|
||||||
use Server\Contract\OnHandshakeInterface;
|
use Kiri\Server\Contract\OnMessageInterface;
|
||||||
use Server\Contract\OnMessageInterface;
|
use Kiri\Server\Contract\OnOpenInterface;
|
||||||
|
use Kiri\Server\SwooleServerInterface;
|
||||||
use Swoole\Http\Request;
|
use Swoole\Http\Request;
|
||||||
use Swoole\Http\Response;
|
use Swoole\Http\Response;
|
||||||
use Swoole\WebSocket\CloseFrame;
|
|
||||||
use Swoole\WebSocket\Frame;
|
use Swoole\WebSocket\Frame;
|
||||||
|
use Swoole\WebSocket\Server as WebSocketServer;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* websocket server
|
||||||
*/
|
*/
|
||||||
class Server extends Component implements OnHandshakeInterface, OnMessageInterface, OnCloseInterface
|
class Server extends AbstractServer
|
||||||
{
|
{
|
||||||
|
|
||||||
public Router $router;
|
public Router $router;
|
||||||
|
|
||||||
|
|
||||||
public string $serverName = 'ws';
|
const SHA1_KEY = '258EAFA5-E914-47DA-95CA-C5AB0DC85B11';
|
||||||
|
|
||||||
|
|
||||||
public mixed $callback = null;
|
public mixed $callback = null;
|
||||||
|
|
||||||
|
|
||||||
public mixed $server;
|
/**
|
||||||
|
* @var WebSocketInterface
|
||||||
|
*/
|
||||||
|
#[Inject(WebSocketInterface::class)]
|
||||||
|
public WebSocketInterface $server;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws ContainerExceptionInterface
|
* @throws ContainerExceptionInterface
|
||||||
* @throws NotFoundExceptionInterface
|
* @throws NotFoundExceptionInterface
|
||||||
* @throws ReflectionException
|
|
||||||
*/
|
*/
|
||||||
public function init()
|
public function init()
|
||||||
{
|
{
|
||||||
$this->router = $this->container->get(DataGrip::class)->get($this->serverName);
|
$this->router = $this->container->get(DataGrip::class)->get('ws');
|
||||||
$handler = $this->router->find('/', 'GET');
|
$handler = $this->router->find('/', 'GET');
|
||||||
if (is_int($handler) || is_null($handler)) {
|
if (is_int($handler) || is_null($handler)) {
|
||||||
return;
|
return;
|
||||||
@@ -59,8 +64,41 @@ class Server extends Component implements OnHandshakeInterface, OnMessageInterfa
|
|||||||
*/
|
*/
|
||||||
public function onClose(\Swoole\Server $server, int $fd): void
|
public function onClose(\Swoole\Server $server, int $fd): void
|
||||||
{
|
{
|
||||||
|
$clientInfo = $server->getClientInfo($fd);
|
||||||
|
if (!isset($clientInfo['websocket_status'])) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
if ($this->callback instanceof OnCloseInterface) {
|
if ($this->callback instanceof OnCloseInterface) {
|
||||||
$this->callback->onClose($server, $fd);
|
$this->callback->onClose($fd);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Request $request
|
||||||
|
* @param Response $response
|
||||||
|
* @return void
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
protected function setWebSocketProtocol(Request $request, Response $response)
|
||||||
|
{
|
||||||
|
$secWebSocketKey = $request->header['sec-websocket-key'];
|
||||||
|
$patten = '#^[+/0-9A-Za-z]{21}[AQgw]==$#';
|
||||||
|
if (preg_match($patten, $secWebSocketKey) === 0 || strlen(base64_decode($secWebSocketKey)) !== 16) {
|
||||||
|
throw new Exception('protocol error.', 500);
|
||||||
|
}
|
||||||
|
$key = base64_encode(sha1($request->header['sec-websocket-key'] . self::SHA1_KEY, true));
|
||||||
|
$headers = [
|
||||||
|
'Upgrade' => 'websocket',
|
||||||
|
'Connection' => 'Upgrade',
|
||||||
|
'Sec-Websocket-Accept' => $key,
|
||||||
|
'Sec-Websocket-Version' => '13',
|
||||||
|
];
|
||||||
|
if (isset($request->header['sec-websocket-protocol'])) {
|
||||||
|
$headers['Sec-Websocket-Protocol'] = $request->header['sec-websocket-protocol'];
|
||||||
|
}
|
||||||
|
foreach ($headers as $key => $val) {
|
||||||
|
$response->header($key, $val);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -72,49 +110,56 @@ class Server extends Component implements OnHandshakeInterface, OnMessageInterfa
|
|||||||
public function onHandshake(Request $request, Response $response): void
|
public function onHandshake(Request $request, Response $response): void
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
if (!$this->callback instanceof OnHandshakeInterface) {
|
$this->setWebSocketProtocol($request, $response);
|
||||||
throw new \Exception('Page not found.');
|
if ($this->callback instanceof OnHandshakeInterface) {
|
||||||
}
|
|
||||||
$this->callback->onHandshake($request, $response);
|
$this->callback->onHandshake($request, $response);
|
||||||
|
} else {
|
||||||
$this->afterHandshake($request);
|
$response->setStatusCode(101, 'connection success.');
|
||||||
if ($this->server instanceof \Swoole\Coroutine\Http\Server) {
|
$response->end();
|
||||||
while (true) {
|
|
||||||
$data = $response->recv();
|
|
||||||
if ($data === '' || $data === false || $data instanceof CloseFrame) {
|
|
||||||
$this->onClose($this->server, $response->fd);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
$this->onMessage($this->server, $data);
|
|
||||||
}
|
}
|
||||||
|
// if ($this->server instanceof \Swoole\Coroutine\Http\Server) {
|
||||||
|
// $response->upgrade();
|
||||||
|
// $this->deferOpen($request);
|
||||||
|
// while (true) {
|
||||||
|
// $receive = $response->recv();
|
||||||
|
// if ($receive === '' || $receive instanceof CloseFrame) {
|
||||||
|
// $response->close();
|
||||||
|
// if ($this->callback instanceof OnCloseInterface) {
|
||||||
|
// $this->callback->onClose($this->server, $response->fd);
|
||||||
|
// }
|
||||||
|
// break;
|
||||||
|
// }
|
||||||
|
// $this->callback->onMessage($this->server, $receive);
|
||||||
|
// }
|
||||||
|
// } else {
|
||||||
|
// $this->deferOpen($request);
|
||||||
|
// }
|
||||||
|
if ($response->isWritable()) {
|
||||||
|
$this->deferOpen($request);
|
||||||
}
|
}
|
||||||
} catch (\Throwable $throwable) {
|
} catch (\Throwable $throwable) {
|
||||||
$response->status(500, $throwable->getMessage());
|
$response->status(4000 + $throwable->getCode(), $throwable->getMessage());
|
||||||
$response->end();
|
$response->end();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
private function deferOpen($request)
|
||||||
* @param $request
|
|
||||||
*/
|
|
||||||
public function afterHandshake($request)
|
|
||||||
{
|
{
|
||||||
if (!($this->callback instanceof OnOpenInterface)) {
|
if ($this->callback instanceof OnOpenInterface) {
|
||||||
return;
|
$this->callback->onOpen($request);
|
||||||
}
|
}
|
||||||
$this->callback->onOpen($this->server, $request);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param \Swoole\Server $server
|
* @param $server
|
||||||
* @param Frame $frame
|
* @param Frame $frame
|
||||||
*/
|
*/
|
||||||
public function onMessage(\Swoole\Server $server, Frame $frame): void
|
public function onMessage($server, Frame $frame): void
|
||||||
{
|
{
|
||||||
if ($this->callback instanceof OnMessageInterface) {
|
if ($this->callback instanceof OnMessageInterface) {
|
||||||
$this->callback->onMessage($server, $frame);
|
$this->callback->onMessage($frame);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,47 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Kiri\Websocket;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @mixin \Swoole\WebSocket\Server
|
||||||
|
* @mixin \Swoole\Coroutine\Http\Server
|
||||||
|
*/
|
||||||
|
interface WebSocketInterface
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $fd
|
||||||
|
* @param mixed $data
|
||||||
|
* @param int $opcode
|
||||||
|
* @param int $flags
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function push(int $fd, string $data, int $opcode = WEBSOCKET_OPCODE_TEXT, int $flags = SWOOLE_WEBSOCKET_FLAG_FIN): bool;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $fd
|
||||||
|
* @param int $code
|
||||||
|
* @param string $reason
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
public function disconnect(int $fd, int $code = SWOOLE_WEBSOCKET_CLOSE_NORMAL, string $reason = ''): bool;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $fd
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function isEstablished(int $fd): bool;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param int $fd
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function exist(int $fd): bool;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
var_dump(json_encode([
|
var_dump(json_encode([
|
||||||
"Datacenter" => "dc1",
|
"Datacenter" => "dc1",
|
||||||
"Node" => "iz8vbi3edjyskl7kpuwudqz",
|
"Node" => "iz8vbi3edjyskl7kpuwudqz",
|
||||||
"SkipNodeUpdate" => false,
|
"SkipNodeUpdate" => FALSE,
|
||||||
"Service" => [
|
"Service" => [
|
||||||
"ID" => "redis1",
|
"ID" => "redis1",
|
||||||
"Service" => "FriendRpcService",
|
"Service" => "FriendRpcService",
|
||||||
@@ -61,17 +61,17 @@ var_dump(json_encode([
|
|||||||
"TaggedAddresses" => [
|
"TaggedAddresses" => [
|
||||||
"lan" => [
|
"lan" => [
|
||||||
"address" => "127.0.0.1",
|
"address" => "127.0.0.1",
|
||||||
"port" => 9627
|
"port" => 9627,
|
||||||
],
|
],
|
||||||
"wan" => [
|
"wan" => [
|
||||||
"address" => "172.26.221.211",
|
"address" => "172.26.221.211",
|
||||||
"port" => 9627
|
"port" => 9627,
|
||||||
]
|
],
|
||||||
],
|
],
|
||||||
"Meta" => [
|
"Meta" => [
|
||||||
"redis_version" => "4.0"
|
"redis_version" => "4.0",
|
||||||
],
|
],
|
||||||
"Port" => 9627
|
"Port" => 9627,
|
||||||
],
|
],
|
||||||
"Check" => [
|
"Check" => [
|
||||||
"Node" => "iz8vbi3edjyskl7kpuwudqz",
|
"Node" => "iz8vbi3edjyskl7kpuwudqz",
|
||||||
@@ -84,7 +84,7 @@ var_dump(json_encode([
|
|||||||
"Http" => "http://172.26.221.211:9627",
|
"Http" => "http://172.26.221.211:9627",
|
||||||
"Interval" => "5s",
|
"Interval" => "5s",
|
||||||
"Timeout" => "1s",
|
"Timeout" => "1s",
|
||||||
"DeregisterCriticalServiceAfter" => "30s"
|
"DeregisterCriticalServiceAfter" => "30s",
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
]));
|
]));
|
||||||
|
|||||||
@@ -27,11 +27,21 @@ namespace Ar;
|
|||||||
use Swoole\Coroutine\Http\Client;
|
use Swoole\Coroutine\Http\Client;
|
||||||
use function Swoole\Coroutine\run;
|
use function Swoole\Coroutine\run;
|
||||||
|
|
||||||
run(function () {
|
//run(function () {
|
||||||
|
//
|
||||||
|
// $client = new Client('47.92.194.207',8500);
|
||||||
|
// $client->get('/v1/agent/services?filter=Service == FriendRpcService');
|
||||||
|
// $client->close();
|
||||||
|
// var_dump($client->getBody());
|
||||||
|
//
|
||||||
|
//});
|
||||||
|
|
||||||
$client = new Client('47.92.194.207',8500);
|
function order(int $userId): string
|
||||||
$client->get('/v1/agent/services?filter=Service == FriendRpcService');
|
{
|
||||||
$client->close();
|
$explode = current(explode(' ', str_replace('0.', '', round((float)microtime(),6))));
|
||||||
var_dump($client->getBody());
|
|
||||||
|
|
||||||
});
|
return 'N'.sprintf('%09d', $userId) . '.' . date('YmdHis') . '.' . str_pad($explode,6,0);
|
||||||
|
}
|
||||||
|
var_dump(
|
||||||
|
order(1)
|
||||||
|
);
|
||||||
Reference in New Issue
Block a user