123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- <?php
- // +----------------------------------------------------------------------
- // | likeshop开源商城系统
- // +----------------------------------------------------------------------
- // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
- // | gitee下载:https://gitee.com/likeshop_gitee
- // | github下载:https://github.com/likeshop-github
- // | 访问官网:https://www.likeshop.cn
- // | 访问社区:https://home.likeshop.cn
- // | 访问手册:http://doc.likeshop.cn
- // | 微信公众号:likeshop技术社区
- // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
- // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
- // | 禁止对系统程序代码以任何目的,任何形式的再发布
- // | likeshop团队版权所有并拥有最终解释权
- // +----------------------------------------------------------------------
- // | author: likeshop.cn.team
- // +----------------------------------------------------------------------
-
-
- namespace app\common\server\system;
-
- use Cron\CronExpression;
- use think\Console;
- use think\Db;
- use think\Exception;
- use think\facade\Cache;
- use think\facade\Config;
- use think\facade\Debug;
- use Workerman\Lib\Timer;
- use Workerman\Worker;
- use app\common\model\system\DevCrontab;
-
- class CrontabServer
- {
-
- public $run_status = false;//运行状态
- public $cron_lists = []; //任务列表
- public $system; //1-wondows;2-unix;
-
- /**
- * 初始化
- * CrontabServer constructor.
- */
- public function __construct()
- {
- if (Cache::get('crontab_run_status')) {
- $this->run_status = true;
- }
- $this->cron_lists = DevCrontab::where(['status' => 1])->select()->toArray();
-
- if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
- $this->system = 1;
- } else {
- $this->system = 2;
- }
- }
-
- /**
- * 运行定时任务
- * @return string
- * @throws Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function execute()
- {
- if (empty($this->cron_lists)) {
- return '当前无需要执行的定时任务或守护进程';
- }
-
- DevCrontab::where(['status' => 1])->update(['error' => '']);
-
- if ($this->system == 1) {
- self::windows($this->cron_lists);
- } else {
- self::unix($this->cron_lists);
- }
- }
-
-
- /**
- * unix系统
- * @param $cron_lists
- */
- private function unix($cron_lists)
- {
- $task = new Worker();
- $task->count = count($cron_lists);//根据列表任务分配线程
- $task->onWorkerStart = function ($task) use ($cron_lists) {
- $task_id = $task->id;
- //创建定时器
- $timer_id = Timer::add(1, function () use (&$timer_id, $task_id, $cron_lists) {
- try {
- self::setStatus();
- Db::close();
- $time = time();
- $cron = $cron_lists[$task_id];
- if ($cron['type'] == 1) {
- if (CronExpression::isValidExpression($cron['expression']) === false) {
- throw new \Exception("规则设置错误"); //定时任务运行规则错误,不执行
- }
- $cron_expression = CronExpression::factory($cron['expression']);
- $last_time = Db::name('dev_crontab')->where(['id' => $cron['id']])->value('last_time');
- $next_time = $cron_expression->getNextRunDate(date('Y-m-d H:i:s', $last_time))->getTimestamp();
- if ($next_time >= time()) {
- sleep(1);
- return true;
- }
- }
- //执行定时任务
- Debug::remark('begin');
- $parameter = explode(' ', $cron['parameter']);
- if (is_array($parameter) && !empty($parameter)) {
- Console::call($cron['command'], $parameter);
- } else {
- Console::call($cron['command']);
- }
- Debug::remark('end');
-
- echo "系统任务名称为:{$cron['name']}:" . "\n";
-
- } catch (\Exception $e) {
- //运行错误,关闭定时任务
- echo "系统任务名称为:{$cron['name']}:" . $e->getMessage();
- Db::name('dev_crontab')
- ->where(['id' => $cron['id']])
- ->update(['error' => $e->getMessage(), 'status' => 3]);
- Timer::del($timer_id);
- } catch (Exception $e) {
- echo "系统任务名称为:{$cron['name']}:" . $e->getMessage();
- Db::name('dev_crontab')
- ->where(['id' => $cron['id']])
- ->update(['error' => $e->getMessage(), 'status' => 3]);
- Timer::del($timer_id);
- }
-
- $range_time = Debug::getRangeTime('begin', 'end');
- $max_time = max($cron['max_time'], $range_time);
- Db::name('dev_crontab')
- ->where(['id' => $cron['id']])
- ->update(['last_time' => $time, 'time' => $range_time, 'max_time' => $max_time]);
- });
- };
-
- Worker::runAll();
- }
-
- /**
- * windows系统下
- * @param $cron_lists
- */
- private function windows($cron_lists)
- {
- $task = new Worker();
- $task->count = 1;
- $task->onWorkerStart = function ($task) use ($cron_lists) {
- //创建定时器
- $timer_id = Timer::add(1, function () use ($cron_lists) {
- self::setStatus();
- foreach ($cron_lists as $k => $v) {
- $cron = $v;
- try {
- $time = time();
- if ($cron['type'] == 1) {
- if (CronExpression::isValidExpression($cron['expression']) === false) {
- throw new \Exception("规则设置错误"); //定时任务运行规则错误,不执行
- }
- $cron_expression = CronExpression::factory($cron['expression']);
-
- $last_time = Db::name('dev_crontab')->where(['id' => $cron['id']])->value('last_time');
- $next_time = $cron_expression->getNextRunDate(date('Y-m-d H:i:s', $last_time))->getTimestamp();
- if ($next_time >= time()) {
- usleep(100000);
- continue;
- }
- }
- //执行定时任务
- Debug::remark('begin');
- $parameter = explode(' ', $cron['parameter']);
- if (is_array($parameter) && !empty($parameter)) {
- Console::call($cron['command'], $parameter);
- } else {
- Console::call($cron['command']);
- }
- Debug::remark('end');
-
- echo "系统任务名称为:{$cron['name']}:" . "\n";
-
- } catch (\Exception $e) {
- //运行错误,关闭定时任务
- echo "系统任务名称为:{$cron['name']}:" . $e->getMessage();
- Db::name('dev_crontab')
- ->where(['id' => $cron['id']])
- ->update(['error' => $e->getMessage(), 'status' => 3]);
- } catch (Exception $e) {
- echo "系统任务名称为:{$cron['name']}:" . $e->getMessage();
- Db::name('dev_crontab')
- ->where(['id' => $cron['id']])
- ->update(['error' => $e->getMessage(), 'status' => 3]);
- }
-
- $range_time = Debug::getRangeTime('begin', 'end');
- $max_time = max($cron['max_time'], $range_time);
- Db::name('dev_crontab')
- ->where(['id' => $cron['id']])
- ->update(['last_time' => $time, 'time' => $range_time, 'max_time' => $max_time]);
- }
- });
- };
-
- Worker::runAll();
- }
-
-
- /**
- * 设置状态
- * @return mixed
- */
- private function setStatus()
- {
- return Cache::set('crontab_run_status', 1, 60);
- }
-
-
- /**
- * 更新定时任务状态
- * @throws Exception
- * @throws \think\exception\PDOException
- */
- public function updateStatus()
- {
- if ($this->run_status === false) {
- $this->cron_lists = Db::name('dev_crontab')
- ->where(['status' => 1])
- ->update(['status' => 2]);
- }
- }
-
-
- /**
- * 启动
- * @param bool $stop
- */
- public function run($stop = true)
- {
- $php_path = real_path();
- $this->setStatus();
- if ($stop) {
- if ($this->system == 1) {
- pclose(popen("start taskkill /f /im php.exe /t", 'r'));
- } else {
- pclose(popen($php_path . ' ../think crontab stop --d', 'r'));
- }
- } else {
- if ($this->system == 1) {
- pclose(popen("start taskkill /f /im php.exe /t", 'r'));
- sleep(2);
- pclose(popen("start " . $php_path . " ../think crontab restart --d", 'r'));
- } else {
- pclose(popen($php_path . ' ../think crontab restart --d', 'r'));
- }
- }
- }
- }
|