12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace crmeb\command;
- use app\services\system\crontab\SystemCrontabServices;
- use think\console\Command;
- use think\console\Input;
- use think\console\input\Argument;
- use think\console\input\Option;
- use think\console\Output;
- use Workerman\Worker;
- class Timer extends Command
- {
- /**
- * @var int
- */
- protected $timer;
- /**
- * @var int|float
- */
- protected $interval = 1;
- protected function configure()
- {
- // 指令配置
- $this->setName('timer')
- ->addArgument('status', Argument::REQUIRED, 'start/stop/reload/status/connections')
- ->addOption('d', null, Option::VALUE_NONE, 'daemon(守护进程)方式启动')
- ->addOption('i', null, Option::VALUE_OPTIONAL, '多长时间执行一次,可以精确到0.001')
- ->setDescription('start/stop/restart 定时任务');
- }
- protected function init(Input $input, Output $output)
- {
- global $argv;
- if ($input->hasOption('i'))
- $this->interval = floatval($input->getOption('i'));
- $argv[1] = $input->getArgument('status') ?: 'start';
- if ($input->hasOption('d')) {
- $argv[2] = '-d';
- } else {
- unset($argv[2]);
- }
- }
- protected function execute(Input $input, Output $output)
- {
- $this->init($input, $output);
- Worker::$pidFile = app()->getRootPath().'runtime/timer.pid';
- $task = new Worker();
- date_default_timezone_set('PRC');
- $task->count = 1;
- $task->onWorkerStart = function () {
- app()->make(SystemCrontabServices::class)->crontabCommandRun();
- };
- $task->runAll();
- }
- }
|