mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 05:52:43 +08:00
53 lines
1.7 KiB
PHP
53 lines
1.7 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: http://demo.thinkadmin.top
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\admin\queue\task;
|
||
|
||
use library\command\Task;
|
||
use think\console\Input;
|
||
use think\console\Output;
|
||
|
||
/**
|
||
* 查询正在执行中的进程PID信息
|
||
* Class Query
|
||
* @package app\admin\queue\task
|
||
*/
|
||
class Query extends Task
|
||
{
|
||
/**
|
||
* 指令属性配置
|
||
*/
|
||
protected function configure()
|
||
{
|
||
$this->setName('xtask:query')->setDescription('[控制]查询正在执行的所有任务进程');
|
||
}
|
||
|
||
/**
|
||
* 执行相关进程查询
|
||
* @param Input $input
|
||
* @param Output $output
|
||
* @return int|void|null
|
||
*/
|
||
protected function execute(Input $input, Output $output)
|
||
{
|
||
$this->cmd = "{$this->bin} xtask:";
|
||
if (count($this->queryProcess()) < 1) {
|
||
$output->writeln('没有查询到相关任务进程');
|
||
} else foreach ($this->queryProcess() as $item) {
|
||
$output->writeln("{$item['pid']}\t{$item['cmd']}");
|
||
}
|
||
}
|
||
}
|