123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace crmeb\utils;
- use think\swoole\Manager;
- use Swoole\Timer;
- use think\facade\Log;
- /**
- * Cron定时执行
- * Class Cron
- * @package crmeb\utils
- */
- class Cron
- {
- /**
- * @var Manager
- */
- protected $manager;
- /**
- * @var int
- */
- protected $workerId = 0;
- /**
- * @var
- */
- protected $timer;
- /**
- * @var bool
- */
- protected $debug = false;
- /**
- * Cron constructor.
- * @param Manager $manager
- */
- public function __construct(Manager $manager)
- {
- $this->manager = $manager;
- $this->debug = env('APP_DEBUG', false);
- }
- /**
- * @param int $workerId
- * @return Cron
- */
- public function setWorkerId(int $workerId)
- {
- $this->workerId = $workerId;
- return $this;
- }
- /**
- * 沙盒运行
- * @param callable $callable
- */
- protected function runInSandbox(callable $callable)
- {
- $this->manager->runWithBarrier([$this->manager, 'runInSandbox'], function () use ($callable) {
- try {
- $callable();
- } catch (\Throwable $e) {
- $this->debug && Log::error($e->getMessage());
- }
- });
- }
- /**
- * 添加启动定时任务
- * @param int $ms
- * @param callable $callable
- * @return mixed|null
- */
- public function tick(int $ms, callable $callable)
- {
- if ($this->workerId === $this->manager->getWorkerId()) {
- return Timer::tick($ms, function () use ($callable) {
- $this->runInSandbox($callable);
- });
- } else {
- return null;
- }
- }
- /**
- * 每天的某时某分运行一次
- * minuteTick('12:15',fun()) 例如: 12:15 会在当天的中午12点15分钟运行一次
- * @param string $time
- * @param callable $callable
- * @return mixed|null
- */
- public function minuteTick(string $time, callable $callable)
- {
- return $this->tick(1000 * 60, function () use ($callable, $time) {
- $nowTime = date('H:i');
- if ($nowTime === $time) {
- $callable();
- }
- });
- }
- /**
- * 一次执行
- * @param int $ms
- * @param callable $callable
- */
- public function after(int $ms, callable $callable)
- {
- // if ($this->workerId === $this->manager->getWorkerId()) {
- Timer::after($ms, function () use ($callable) {
- $this->runInSandbox($callable);
- });
- // }
- }
- /**
- * 清除定时任务
- * @param int $timer
- */
- public function clear(int $timer)
- {
- Timer::clear($timer);
- }
- /**
- * 清除所有定时任务
- */
- public function clearAll()
- {
- Timer::clearAll();
- }
- }
|