| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 | <?php/** * This file is part of webman. * * Licensed under The MIT License * For full copyright and license information, please see the MIT-LICENSE.txt * Redistributions of files must retain the above copyright notice. * * @author    walkor<walkor@workerman.net> * @copyright walkor<walkor@workerman.net> * @link      http://www.workerman.net/ * @license   http://www.opensource.org/licenses/mit-license.php MIT License */namespace process;use Workerman\Timer;use Workerman\Worker;/** * Class FileMonitor * @package process */class Monitor{    /**     * @var array     */    protected $_paths = [];    /**     * @var array     */    protected $_extensions = [];    /**     * FileMonitor constructor.     * @param $monitor_dir     * @param $monitor_extensions     * @param $memory_limit     */    public function __construct($monitor_dir, $monitor_extensions, $memory_limit = null)    {        $this->_paths = (array)$monitor_dir;        $this->_extensions = $monitor_extensions;        if (!Worker::getAllWorkers()) {            return;        }        $disable_functions = explode(',', ini_get('disable_functions'));        if (in_array('exec', $disable_functions, true)) {            echo "\nMonitor file change turned off because exec() has been disabled by disable_functions setting in " . PHP_CONFIG_FILE_PATH . "/php.ini\n";        } else {            if (!Worker::$daemonize) {                Timer::add(1, function () {                    $this->checkAllFilesChange();                });            }        }        $memory_limit = $this->getMemoryLimit($memory_limit);        if ($memory_limit && DIRECTORY_SEPARATOR === '/') {            Timer::add(60, [$this, 'checkMemory'], [$memory_limit]);        }    }    /**     * @param $monitor_dir     */    public function checkFilesChange($monitor_dir)    {        static $last_mtime, $too_many_files_check;        if (!$last_mtime) {            $last_mtime = time();        }        clearstatcache();        if (!is_dir($monitor_dir)) {            if (!is_file($monitor_dir)) {                return;            }            $iterator = [new \SplFileInfo($monitor_dir)];        } else {            // recursive traversal directory            $dir_iterator = new \RecursiveDirectoryIterator($monitor_dir, \FilesystemIterator::SKIP_DOTS | \FilesystemIterator::FOLLOW_SYMLINKS);            $iterator = new \RecursiveIteratorIterator($dir_iterator);        }        $count = 0;        foreach ($iterator as $file) {            $count ++;            /** var SplFileInfo $file */            if (is_dir($file)) {                continue;            }            // check mtime            if ($last_mtime < $file->getMTime() && in_array($file->getExtension(), $this->_extensions, true)) {                $var = 0;                exec(PHP_BINARY . " -l " . $file, $out, $var);                if ($var) {                    $last_mtime = $file->getMTime();                    continue;                }                $last_mtime = $file->getMTime();                echo $file . " update and reload\n";                // send SIGUSR1 signal to master process for reload                if (DIRECTORY_SEPARATOR === '/') {                    posix_kill(posix_getppid(), SIGUSR1);                } else {                    return true;                }                break;            }        }        if (!$too_many_files_check && $count > 1000) {            echo "Monitor: There are too many files ($count files) in $monitor_dir which makes file monitoring very slow\n";            $too_many_files_check = 1;        }    }    /**     * @return bool     */    public function checkAllFilesChange()    {        foreach ($this->_paths as $path) {            if ($this->checkFilesChange($path)) {                return true;            }        }        return false;    }    /**     * @param $memory_limit     * @return void     */    public function checkMemory($memory_limit)    {        $ppid = posix_getppid();        $children_file = "/proc/$ppid/task/$ppid/children";        if (!is_file($children_file) || !($children = file_get_contents($children_file))) {            return;        }        foreach (explode(' ', $children) as $pid) {            $pid = (int)$pid;            $status_file = "/proc/$pid/status";            if (!is_file($status_file) || !($status = file_get_contents($status_file))) {                continue;            }            $mem = 0;            if (preg_match('/VmRSS\s*?:\s*?(\d+?)\s*?kB/', $status, $match)) {                $mem = $match[1];            }            $mem = (int)($mem / 1024);            if ($mem >= $memory_limit) {                posix_kill($pid, SIGINT);            }        }    }    /**     * Get memory limit     * @return float     */    protected function getMemoryLimit($memory_limit)    {        if ($memory_limit === 0) {            return 0;        }        $use_php_ini = false;        if (!$memory_limit) {            $memory_limit = ini_get('memory_limit');            $use_php_ini = true;        }        if ($memory_limit == -1) {            return 0;        }        $unit = $memory_limit[strlen($memory_limit) - 1];        if ($unit == 'G') {            $memory_limit = 1024 * (int)$memory_limit;        } else if ($unit == 'M') {            $memory_limit = (int)$memory_limit;        } else if ($unit == 'K') {            $memory_limit = (int)($memory_limit / 1024);        } else {            $memory_limit = (int)($memory_limit / (1024 * 1024));        }        if ($memory_limit < 30) {            $memory_limit = 30;        }        if ($use_php_ini) {            $memory_limit = (int)(0.8 * $memory_limit);        }        return $memory_limit;    }}
 |