swoole 开发中监听目录文件变化, 自动重启项目

在使用swoole的项目中, 在开发时, 会经常改动代码并查看效果, 由于swoole项目是常驻内存的, 代码改动后并不会影响已经在运行中并加载过该代码的程序, 所以需要重启项目. 为了在改动代码之后可以自动重启项目, 写了如下脚本(需要inotify拓展)

// watcher.php
// 我这里用的laravoole开发laravel项目,所以只需要reload,并不需要把master进程也重启
cb = $cb;
        foreach ($ignore as $item) {
            $this->ignored[] = $dir . $item;
        }
        $this->watch($dir);
    }

    protected function watch($directory)
    {
        //创建一个inotify句柄
        $fd = inotify_init();

        //监听文件,仅监听修改操作,如果想要监听所有事件可以使用IN_ALL_EVENTS
        inotify_add_watch($fd, __DIR__, IN_MODIFY);
        foreach ($this->getAllDirs($directory) as $dir) {
            inotify_add_watch($fd, $dir, IN_MODIFY);
        }
        echo 'watch start' . PHP_EOL;
        //加入到swoole的事件循环中
        swoole_event_add($fd, function ($fd) {
            $events = inotify_read($fd);
            if ($events) {
                $this->modified = true;
            }
        });

       每 2 秒检测一下modified变量是否为真
        swoole_timer_tick(2000, function () {
            if ($this->modified) {
                ($this->cb)();
                $this->modified = false;
            }
        });
    }

   // 使用迭代器遍历目录
    protected function getAllDirs($base)
    {
        $files = scandir($base);
        foreach ($files as $file) {
            if ($file == '.' || $file == '..') continue;
            $filename = $base . DIRECTORY_SEPARATOR . $file;
            if (in_array($filename, $this->ignored)) continue;
            if (is_dir($filename)) {
                yield $filename;
                yield from $this->getAllDirs($filename);
            }
        }

    }
}

你可能感兴趣的:(swoole 开发中监听目录文件变化, 自动重启项目)