改名
This commit is contained in:
@@ -30,6 +30,9 @@ class FileChangeCustomProcess extends Command
|
|||||||
public int $int = -1;
|
public int $int = -1;
|
||||||
|
|
||||||
|
|
||||||
|
protected mixed $source;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@@ -60,10 +63,17 @@ class FileChangeCustomProcess extends Command
|
|||||||
$driver = Kiri::getDi()->get(Inotify::class, [$this->dirs, $this]);
|
$driver = Kiri::getDi()->get(Inotify::class, [$this->dirs, $this]);
|
||||||
}
|
}
|
||||||
$make = Barrier::make();
|
$make = Barrier::make();
|
||||||
|
go(function () {
|
||||||
|
$this->trigger_reload();
|
||||||
|
});
|
||||||
go(function () {
|
go(function () {
|
||||||
$sign = Coroutine::waitSignal(SIGTERM, -1);
|
$sign = Coroutine::waitSignal(SIGTERM, -1);
|
||||||
if ($sign) {
|
if ($sign) {
|
||||||
proc_open("php " . APP_PATH . "kiri.php sw:server stop", [], $pipes);
|
if ($this->source) {
|
||||||
|
proc_close($this->source);
|
||||||
|
}
|
||||||
|
$this->source = proc_open("php " . APP_PATH . "kiri.php sw:server stop", [], $pipes);
|
||||||
|
proc_close($this->source);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
go(function () use ($driver) {
|
go(function () use ($driver) {
|
||||||
@@ -97,7 +107,9 @@ class FileChangeCustomProcess extends Command
|
|||||||
public function trigger_reload()
|
public function trigger_reload()
|
||||||
{
|
{
|
||||||
Kiri::getDi()->get(Logger::class)->warning('change reload');
|
Kiri::getDi()->get(Logger::class)->warning('change reload');
|
||||||
|
if ($this->source) {
|
||||||
proc_open("php " . APP_PATH . "kiri.php sw:server restart", [], $pipes);
|
proc_close($this->source);
|
||||||
|
}
|
||||||
|
$this->source = proc_open("php " . APP_PATH . "kiri.php sw:server restart", [], $pipes);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -30,8 +30,6 @@ class Inotify
|
|||||||
*/
|
*/
|
||||||
public function start()
|
public function start()
|
||||||
{
|
{
|
||||||
$this->process->trigger_reload();
|
|
||||||
|
|
||||||
$this->inotify = inotify_init();
|
$this->inotify = inotify_init();
|
||||||
$this->events = IN_MODIFY | IN_DELETE | IN_CREATE | IN_MOVE;
|
$this->events = IN_MODIFY | IN_DELETE | IN_CREATE | IN_MOVE;
|
||||||
foreach ($this->dirs as $dir) {
|
foreach ($this->dirs as $dir) {
|
||||||
|
|||||||
Reference in New Issue
Block a user