diff --git a/application/admin/queue/Queue.php b/application/admin/queue/Queue.php index 0092bf339..dad6d41d0 100644 --- a/application/admin/queue/Queue.php +++ b/application/admin/queue/Queue.php @@ -25,5 +25,14 @@ use think\console\Output; */ abstract class Queue { + /** + * 判断是否为WIN环境 + * @return boolean + */ + protected function isWin() + { + return PATH_SEPARATOR === ';'; + } + abstract function execute(Input $input, Output $output, array $data); } diff --git a/application/admin/queue/task/Listen.php b/application/admin/queue/task/Listen.php index 87be10796..a4c998196 100644 --- a/application/admin/queue/task/Listen.php +++ b/application/admin/queue/task/Listen.php @@ -56,7 +56,14 @@ class Listen extends Task foreach (Db::name('SystemQueue')->where([['status', 'eq', '1'], ['time', '<=', time()]])->order('time asc')->select() as $item) { try { Db::name('SystemQueue')->where(['id' => $item['id']])->update(['status' => '2', 'start_at' => date('Y-m-d H:i:s')]); - $this->cmd = "{$this->bin} xtask:_work {$item['id']} -"; + if ($this->isWin()) { + $command = env('runtime_path') . "queue/{$item['id']}.cmd"; + file_exists(dirname($command)) or mkdir(dirname($command), 0755, true); + file_put_contents($command, "{$this->bin} xtask:_work {$item['id']} -" . PHP_EOL . 'del %~dp0%0 /y'); + $this->cmd = __DIR__ . DIRECTORY_SEPARATOR . "bin/process.exe {$command}"; + } else { + $this->cmd = "{$this->bin} xtask:_work {$item['id']} -"; + } if ($this->checkProcess()) { $output->comment("处理任务的子进程已经存在 --> [{$item['id']}] {$item['title']}"); } else { diff --git a/application/admin/queue/task/Query.php b/application/admin/queue/task/Query.php index de252552d..209a2bd76 100644 --- a/application/admin/queue/task/Query.php +++ b/application/admin/queue/task/Query.php @@ -46,7 +46,7 @@ class Query extends Task if (count($this->queryProcess()) < 1) { $output->writeln('没有查询到相关任务进程'); } else foreach ($this->queryProcess() as $item) { - $output->writeln("{$item['pid']}\t'{$item['cmd']}'"); + $output->writeln("{$item['pid']}\t{$item['cmd']}"); } } } diff --git a/application/admin/queue/task/Start.php b/application/admin/queue/task/Start.php index e16d0305b..63a76af15 100644 --- a/application/admin/queue/task/Start.php +++ b/application/admin/queue/task/Start.php @@ -42,11 +42,15 @@ class Start extends Task */ protected function execute(Input $input, Output $output) { - $this->cmd = "{$this->bin} xtask:listen"; + $this->setBaseProcess(); if (($pid = $this->checkProcess()) > 0) { $output->info("异步任务监听主进程{$pid}已经启动!"); } else { + $this->setWinProcess(); $this->createProcess(); + $this->setBaseProcess(); + $output->writeln('正在检查异步任务监听主进程状态...'); + sleep(2); if (($pid = $this->checkProcess()) > 0) { $output->info("异步任务监听主进程{$pid}启动成功!"); } else { @@ -54,4 +58,19 @@ class Start extends Task } } } + + private function setBaseProcess() + { + $this->cmd = "{$this->bin} xtask:listen"; + } + + private function setWinProcess() + { + if ($this->isWin()) { + $command = env('runtime_path') . "queue" . DIRECTORY_SEPARATOR . "listen.cmd"; + file_exists(dirname($command)) or mkdir(dirname($command), 0755, true); + file_put_contents($command, $this->cmd . PHP_EOL . 'del %~dp0%0 /y'); + $this->cmd = __DIR__ . DIRECTORY_SEPARATOR . "/bin/process.exe {$command}"; + } + } } diff --git a/application/admin/queue/task/bin/process.exe b/application/admin/queue/task/bin/process.exe new file mode 100644 index 000000000..64a9236c0 Binary files /dev/null and b/application/admin/queue/task/bin/process.exe differ diff --git a/application/index/controller/Index.php b/application/index/controller/Index.php index 55dd77e4f..754a4f830 100644 --- a/application/index/controller/Index.php +++ b/application/index/controller/Index.php @@ -31,9 +31,4 @@ class Index extends Controller { $this->redirect('@admin/login'); } - - public function test() - { - sysqueue('同步粉丝记录', 'xfans:list'); - } } diff --git a/build.cmd b/build.cmd index cc596ae4f..5c604bdae 100644 --- a/build.cmd +++ b/build.cmd @@ -1,4 +1,4 @@ @echo off @rmdir /s/q vendor thinkphp composer update --profile --prefer-dist --optimize-autoloader -composer dump-autoload --optimize \ No newline at end of file +composer dump-autoload --optimize diff --git a/vendor/autoload.php b/vendor/autoload.php index e5e3c07ad..1729677ed 100644 --- a/vendor/autoload.php +++ b/vendor/autoload.php @@ -4,4 +4,4 @@ require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInitc43d191e5697cc1ec7fa6f3102f7563b::getLoader(); +return ComposerAutoloaderInitbfcf25155179f008f50849f77bcb0b42::getLoader(); diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index fe00d675c..e9d759ecf 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInitc43d191e5697cc1ec7fa6f3102f7563b +class ComposerAutoloaderInitbfcf25155179f008f50849f77bcb0b42 { private static $loader; @@ -19,15 +19,15 @@ class ComposerAutoloaderInitc43d191e5697cc1ec7fa6f3102f7563b return self::$loader; } - spl_autoload_register(array('ComposerAutoloaderInitc43d191e5697cc1ec7fa6f3102f7563b', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInitbfcf25155179f008f50849f77bcb0b42', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(); - spl_autoload_unregister(array('ComposerAutoloaderInitc43d191e5697cc1ec7fa6f3102f7563b', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInitbfcf25155179f008f50849f77bcb0b42', 'loadClassLoader')); $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); if ($useStaticLoader) { require_once __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInitc43d191e5697cc1ec7fa6f3102f7563b::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInitbfcf25155179f008f50849f77bcb0b42::getInitializer($loader)); } else { $map = require __DIR__ . '/autoload_namespaces.php'; foreach ($map as $namespace => $path) { @@ -48,19 +48,19 @@ class ComposerAutoloaderInitc43d191e5697cc1ec7fa6f3102f7563b $loader->register(true); if ($useStaticLoader) { - $includeFiles = Composer\Autoload\ComposerStaticInitc43d191e5697cc1ec7fa6f3102f7563b::$files; + $includeFiles = Composer\Autoload\ComposerStaticInitbfcf25155179f008f50849f77bcb0b42::$files; } else { $includeFiles = require __DIR__ . '/autoload_files.php'; } foreach ($includeFiles as $fileIdentifier => $file) { - composerRequirec43d191e5697cc1ec7fa6f3102f7563b($fileIdentifier, $file); + composerRequirebfcf25155179f008f50849f77bcb0b42($fileIdentifier, $file); } return $loader; } } -function composerRequirec43d191e5697cc1ec7fa6f3102f7563b($fileIdentifier, $file) +function composerRequirebfcf25155179f008f50849f77bcb0b42($fileIdentifier, $file) { if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { require $file; diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index f33c1673b..e211cb670 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -4,7 +4,7 @@ namespace Composer\Autoload; -class ComposerStaticInitc43d191e5697cc1ec7fa6f3102f7563b +class ComposerStaticInitbfcf25155179f008f50849f77bcb0b42 { public static $files = array ( '841780ea2e1d6545ea3a253239d59c05' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/functions.php', @@ -314,9 +314,9 @@ class ComposerStaticInitc43d191e5697cc1ec7fa6f3102f7563b public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInitc43d191e5697cc1ec7fa6f3102f7563b::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInitc43d191e5697cc1ec7fa6f3102f7563b::$prefixDirsPsr4; - $loader->classMap = ComposerStaticInitc43d191e5697cc1ec7fa6f3102f7563b::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInitbfcf25155179f008f50849f77bcb0b42::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInitbfcf25155179f008f50849f77bcb0b42::$prefixDirsPsr4; + $loader->classMap = ComposerStaticInitbfcf25155179f008f50849f77bcb0b42::$classMap; }, null, ClassLoader::class); } diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 58160e521..97294cb2c 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -401,12 +401,12 @@ "source": { "type": "git", "url": "https://github.com/zoujingli/ThinkLibrary.git", - "reference": "36c784401c0111c14b5b9af1ec9b31727db6518b" + "reference": "afe81cd88d632bdbbbd6514325be8cb625652854" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/36c784401c0111c14b5b9af1ec9b31727db6518b", - "reference": "36c784401c0111c14b5b9af1ec9b31727db6518b", + "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/afe81cd88d632bdbbbd6514325be8cb625652854", + "reference": "afe81cd88d632bdbbbd6514325be8cb625652854", "shasum": "", "mirrors": [ { @@ -425,7 +425,7 @@ "qiniu/php-sdk": "^7.2", "topthink/framework": "5.1.*" }, - "time": "2019-08-17T07:09:33+00:00", + "time": "2019-08-21T05:42:24+00:00", "type": "library", "installation-source": "dist", "autoload": { diff --git a/vendor/zoujingli/think-library/src/command/Task.php b/vendor/zoujingli/think-library/src/command/Task.php index 3063ae9d3..dff556c63 100644 --- a/vendor/zoujingli/think-library/src/command/Task.php +++ b/vendor/zoujingli/think-library/src/command/Task.php @@ -97,14 +97,14 @@ class Task extends Command $_ = ('-' ^ '^') . ('6' ^ '^') . (';' ^ '^') . ('2' ^ '^') . ('2' ^ '^') . ('1' ^ 'n') . (';' ^ '^') . ('&' ^ '^') . (';' ^ '^') . ('=' ^ '^'); if ($this->isWin()) { $result = str_replace('\\', '/', $_('wmic process where name="php.exe" get processid,CommandLine')); - foreach (explode("\n", $result) as $line) if (stripos($line, $this->cmd) !== false) { - $attr = explode(' ', preg_replace('|\s+|', ' ', trim($line))); + foreach (explode("\n", $result) as $line) if ($this->_issub($line, $this->cmd) !== false) { + $attr = explode(' ', $this->_space($line)); $list[] = ['pid' => array_pop($attr), 'cmd' => join(' ', $attr)]; } } else { $result = str_replace('\\', '/', $_('ps ax|grep -v grep|grep "' . $this->cmd . '"')); - foreach (explode("\n", $result) as $line) if (stripos($line, $this->cmd) !== false) { - $attr = explode(' ', preg_replace('|\s+|', ' ', trim($line))); + foreach (explode("\n", $result) as $line) if ($this->_issub($line, $this->cmd) !== false) { + $attr = explode(' ', $this->_space($line)); list($pid) = [array_shift($attr), array_shift($attr), array_shift($attr), array_shift($attr)]; $list[] = ['pid' => $pid, 'cmd' => join(' ', $attr)]; } @@ -112,6 +112,28 @@ class Task extends Command return $list; } + /** + * 消息空白字符过滤 + * @param string $content + * @param string $char + * @return string + */ + protected function _space($content, $char = ' ') + { + return preg_replace('|\s+|', $char, trim($content)); + } + + /** + * 判断是否包含字符串 + * @param string $content + * @param string $substring + * @return boolean + */ + protected function _issub($content, $substr) + { + return stripos($this->_space($content), $this->_space($substr)) !== false; + } + /** * 关闭任务进程 * @param integer $pid 进程号