Compare commits

..

31 Commits

Author SHA1 Message Date
as2252258 154d9d74d6 1 2021-12-17 04:43:20 +08:00
as2252258 2c61abff01 1 2021-12-17 04:41:00 +08:00
as2252258 b4ce762cf3 1 2021-12-17 04:26:54 +08:00
as2252258 4b3c2234af 1 2021-12-17 04:24:40 +08:00
as2252258 7ee78a9642 1 2021-12-17 04:24:01 +08:00
as2252258 f9838f781d 1 2021-12-17 04:23:12 +08:00
as2252258 848416af4f 1 2021-12-17 04:22:13 +08:00
as2252258 0216e761be 1 2021-12-17 04:17:53 +08:00
as2252258 acf6631c5c 1 2021-12-17 04:15:59 +08:00
as2252258 64e4307a57 1 2021-12-12 06:37:52 +08:00
as2252258 ab672127e6 1 2021-12-12 02:46:30 +08:00
as2252258 6e5b545a1e 1 2021-12-12 02:45:39 +08:00
as2252258 8229395e6d 1 2021-12-12 02:41:31 +08:00
as2252258 d5d2b04321 1 2021-12-11 17:56:35 +08:00
as2252258 ce9c184c83 1 2021-12-11 17:40:16 +08:00
as2252258 620de34559 1 2021-12-11 17:38:53 +08:00
as2252258 b01c71ea5e 1 2021-12-11 17:38:15 +08:00
as2252258 90e1f7eb29 1 2021-12-11 17:35:44 +08:00
as2252258 f3ad09ef66 1 2021-12-11 17:34:05 +08:00
as2252258 dfccb8816c 1 2021-12-11 17:32:28 +08:00
as2252258 1670ff3fef 1 2021-12-11 05:33:46 +08:00
as2252258 8870a7ca27 1 2021-12-11 05:33:00 +08:00
as2252258 ebb7ac9673 改名 2021-12-09 17:01:18 +08:00
as2252258 5aad8d2001 改名 2021-12-08 11:45:19 +08:00
as2252258 80713788c9 改名 2021-12-08 11:39:57 +08:00
as2252258 9f36acbbca 改名 2021-12-08 11:32:32 +08:00
as2252258 044d213a69 改名 2021-12-07 16:44:12 +08:00
as2252258 e5fe525f82 改名 2021-12-07 16:02:07 +08:00
as2252258 39e4e52908 改名 2021-12-07 16:00:52 +08:00
as2252258 f62014ff34 改名 2021-12-07 15:59:13 +08:00
as2252258 7935e6a6a3 改名 2021-12-07 15:53:56 +08:00
16 changed files with 1577 additions and 1505 deletions
+843 -817
View File
File diff suppressed because it is too large Load Diff
+12
View File
@@ -13,6 +13,7 @@ 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\EventProvider;
use Kiri\Kiri; use Kiri\Kiri;
use Psr\Container\ContainerInterface; use Psr\Container\ContainerInterface;
@@ -20,6 +21,7 @@ use Psr\Container\ContainerInterface;
* Class Component * Class Component
* @package Kiri\Kiri\Base * @package Kiri\Kiri\Base
* @property ContainerInterface|Container $container * @property ContainerInterface|Container $container
* @property EventProvider $eventProvider
*/ */
class Component implements Configure class Component implements Configure
{ {
@@ -46,6 +48,16 @@ class Component implements Configure
} }
/**
* @return EventProvider
* @throws \ReflectionException
*/
public function getEventProvider(): EventProvider
{
return Kiri::getDi()->get(EventProvider::class);
}
/** /**
* @return Container * @return Container
*/ */
+5 -8
View File
@@ -2,11 +2,13 @@
namespace Kiri\Abstracts; namespace Kiri\Abstracts;
use Kiri\Kiri;
use Note\Inject; use Note\Inject;
use Exception; use Exception;
use Kiri\Events\EventProvider; use Kiri\Events\EventProvider;
use Kiri\Exception\ConfigException; use Kiri\Exception\ConfigException;
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']);
} }
-6
View File
@@ -28,12 +28,6 @@ use Server\Events\OnWorkerExit;
class Redis extends Component class Redis extends Component
{ {
/**
* @var EventProvider
*/
#[Inject(EventProvider::class)]
public EventProvider $eventProvider;
const REDIS_OPTION_HOST = 'host'; const REDIS_OPTION_HOST = 'host';
const REDIS_OPTION_PORT = 'port'; const REDIS_OPTION_PORT = 'port';
+25 -6
View File
@@ -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;
} }
@@ -165,11 +180,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;
} }
+5 -5
View File
@@ -66,11 +66,11 @@ class Json
{ {
$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;
+253 -239
View File
@@ -11,279 +11,293 @@ class NoteManager
{ {
private static array $_classTarget = []; private static array $_classTarget = [];
private static array $_classMethodNote = []; private static array $_classMethodNote = [];
private static array $_classMethod = []; private static array $_classMethod = [];
private static array $_classPropertyNote = []; private static array $_classPropertyNote = [];
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::$_classMethodNote = [];
static::$_classTarget[$className] = []; static::$_classMethod = [];
} static::$_classPropertyNote = [];
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 setTargetNote(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 getTargetNote(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 setMethodNote(ReflectionClass $class)
*/ {
public static function hasMethod(string $class, string $method): bool $className = $class->getName();
{ static::$_classMethodNote[$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::$_classMethodNote[$className][$ReflectionMethod->getName()] = [];
foreach ($ReflectionMethod->getAttributes() as $attribute) {
if (!class_exists($attribute->getName())) {
continue;
}
$instance = $attribute->newInstance();
static::$_classMethodNote[$className][$ReflectionMethod->getName()][] = $instance;
self::setMappingMethod($attribute, $className, $ReflectionMethod->getName(), $instance);
}
}
}
/** /**
* @param 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 getMethodNote(ReflectionClass $class): array
{ {
NoteManager::setPropertyNote($reflect); return static::$_classMethodNote[$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::setPropertyNote($reflect);
foreach ($class->getProperties(ReflectionProperty::IS_PRIVATE | ReflectionProperty::IS_PUBLIC | NoteManager::setTargetNote($reflect);
ReflectionProperty::IS_PROTECTED) as $ReflectionMethod) { NoteManager::setMethodNote($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 setPropertyNote(ReflectionClass $class)
*/ {
public static function getAttributeTrees(string $attribute, string $class = null): array $className = $class->getName();
{ static::$_classProperty[$className] = static::$_classPropertyNote[$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::$_classPropertyNote[$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 getPropertyByNote(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 getPropertyByNote(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 getPropertyNote(ReflectionClass $class): array
{
return static::$_classPropertyNote[$class->getName()] ?? [];
}
} }
-5
View File
@@ -29,11 +29,6 @@ class Logger extends Component
private array $logs = []; private array $logs = [];
/** @var EventProvider */
#[Inject(EventProvider::class)]
public EventProvider $eventProvider;
/** /**
* inject logger * inject logger
* *
+163 -160
View File
@@ -14,6 +14,7 @@ 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;
@@ -24,209 +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');
} }
/** /**
* @throws ConfigException * @throws ConfigException
* @throws \ReflectionException * @throws \ReflectionException
* @throws Exception * @throws Exception
*/ */
protected function initCore() protected function initCore()
{ {
$this->dirs = Config::get('inotify', [APP_PATH . 'app']); set_error_handler([$this, 'errorHandler']);
if (!extension_loaded('inotify')) { $this->dirs = Config::get('inotify', [APP_PATH . 'app']);
$this->driver = Kiri::getDi()->make(Scaner::class, [$this->dirs, $this]); if (!extension_loaded('inotify')) {
} else { $this->driver = Kiri::getDi()->make(Scaner::class, [$this->dirs, $this]);
$this->driver = Kiri::getDi()->make(Inotify::class, [$this->dirs, $this]); } else {
} $this->driver = Kiri::getDi()->make(Inotify::class, [$this->dirs, $this]);
$this->clearOtherService(); }
$this->setProcessName(); $this->clearOtherService();
} $this->setProcessName();
}
/** /**
* @throws ConfigException * @throws ConfigException
*/ */
public function setProcessName() public function setProcessName()
{ {
swoole_async_set(['enable_coroutine' => false]); swoole_async_set(['enable_coroutine' => FALSE]);
set_error_handler([$this, 'errorHandler']); if (Kiri::getPlatform()->isLinux()) {
if (Kiri::getPlatform()->isLinux()) { swoole_set_process_name('[' . Config::get('id', 'sw service.') . '].sw:wather');
swoole_set_process_name('[' . Config::get('id', 'sw service.') . '].sw:wather'); }
} }
}
/** /**
* @throws Exception * @throws Exception
*/ */
public function clearOtherService() public function clearOtherService()
{ {
if (file_exists(storage('.manager.pid'))) { if (file_exists(storage('.manager.pid'))) {
$pid = (int)file_get_contents(storage('.manager.pid')); $pid = (int)file_get_contents(storage('.manager.pid'));
if ($pid > 0 && Process::kill($pid, 0)) { if ($pid > 0 && Process::kill($pid, 0)) {
Process::kill($pid, 15) && Process::wait(true); Process::kill($pid, 15) && Process::wait(TRUE);
} }
} }
file_put_contents(storage('.manager.pid'), getmypid()); file_put_contents(storage('.manager.pid'), getmypid());
} }
/** /**
* @throws Exception * @throws Exception
*/ */
public function errorHandler() public function errorHandler()
{ {
$error = func_get_args(); $error = func_get_args();
$path = ['file' => $error[2], 'line' => $error[3]]; $path = ['file' => $error[2], 'line' => $error[3]];
if ($error[0] === 0) { if ($error[0] === 0) {
$error[0] = 500; $error[0] = 500;
} }
$data = Json::to(500, $error[1], $path); $data = Json::to(500, $error[1], $path);
$this->logger->error($data, 'error'); $this->logger->error($data, 'error');
} }
/** /**
* @param InputInterface $input * @param InputInterface $input
* @param OutputInterface $output * @param OutputInterface $output
* @return int * @return int
* @throws ConfigException * @throws ConfigException
* @throws Exception * @throws Exception
*/ */
public function execute(InputInterface $input, OutputInterface $output): int public function execute(InputInterface $input, OutputInterface $output): int
{ {
$this->initCore(); $this->initCore();
$this->trigger_reload(); $this->trigger_reload();
Timer::tick(1000, fn() => $this->healthCheck());
Timer::tick(1000, fn() => $this->healthCheck()); Process::signal(SIGTERM, [$this, 'onSignal']);
Process::signal(SIGKILL, [$this, 'onSignal']);
Process::signal(SIGTERM, [$this, 'onSignal']); $this->driver->start();
Process::signal(SIGKILL, [$this, 'onSignal']); return 0;
}
$this->driver->start();
return 0;
}
/** /**
* @throws Exception * @throws Exception
*/ */
public function healthCheck() public function healthCheck()
{ {
$pid = (int)file_get_contents(storage('.swoole.pid')); $pid = (int)file_get_contents(storage('.swoole.pid'));
if (empty($pid)) { if ($this->int == 1) {
$this->logger->warning('service is shutdown you need reload.'); return;
$this->trigger_reload(); }
} else if (!Process::kill($pid, 0)) { if (empty($pid)) {
$this->logger->warning('service is shutdown you need reload.'); $this->logger->warning('service is shutdown you need reload.');
$this->trigger_reload(); $this->trigger_reload();
} } else if (!Process::kill($pid, 0)) {
} $this->logger->warning('service is shutdown you need reload.');
$this->trigger_reload();
}
}
/** /**
* @param $data * @param $data
* @throws Exception * @throws Exception
*/ */
public function onSignal($data) public function onSignal($data)
{ {
if (!$data) { if (!$data) {
return; return;
} }
Timer::clearAll(); Timer::clearAll();
$this->driver->clear(); $this->driver->clear();
$this->stopServer(); $this->stopServer();
$this->stopManager(); $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);
} }
} }
/** /**
* @throws Exception * @throws Exception
*/ */
protected function stopServer() protected function stopServer()
{ {
$pid = file_get_contents(storage('.swoole.pid')); $pid = file_get_contents(storage('.swoole.pid'));
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() 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);
} }
} }
/** /**
* 重启 * 重启
* *
* @throws Exception * @throws Exception
*/ */
public function trigger_reload() public function trigger_reload()
{ {
if ($this->int == 1) { if ($this->int == 1) {
return; return;
} }
$this->int = 1; $this->int = 1;
$this->logger->warning('change reload'); $this->logger->warning('change reload');
$this->stopServer(); $this->stopServer();
$this->stopManager(); $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", "restart"]);
}); });
$this->process->start(); $this->process->start();
$this->int = -1; $this->int = -1;
} }
} }
+132 -121
View File
@@ -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->getMessage(), '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
View File
@@ -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 -3
View File
@@ -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('构建类型不能为空~');
} }
@@ -120,8 +120,8 @@ class Gii
private function makeByDatabases($make, InputInterface $input): array private function makeByDatabases($make, InputInterface $input): array
{ {
$redis = Kiri::getDi()->get(Redis::class); $redis = Kiri::getDi()->get(Redis::class);
if ($input->hasArgument('name')) { if ($input->hasOption('name')) {
$this->tableName = $input->getArgument('name'); $this->tableName = $input->getOption('name');
$redis->del('column:' . $this->tableName); $redis->del('column:' . $this->tableName);
} }
return match ($make) { return match ($make) {
@@ -334,6 +334,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);
} }
+5 -5
View File
@@ -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;
-3
View File
@@ -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");
+10 -10
View File
@@ -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}");
@@ -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\'],';
} }
/** /**
+1
View File
@@ -17,6 +17,7 @@ abstract class Attribute implements INote
* @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.