截流自动化的商城平台
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

CrontabServer.php 9.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\server\system;
  20. use Cron\CronExpression;
  21. use think\Console;
  22. use think\Db;
  23. use think\Exception;
  24. use think\facade\Cache;
  25. use think\facade\Config;
  26. use think\facade\Debug;
  27. use Workerman\Lib\Timer;
  28. use Workerman\Worker;
  29. use app\common\model\system\DevCrontab;
  30. class CrontabServer
  31. {
  32. public $run_status = false;//运行状态
  33. public $cron_lists = []; //任务列表
  34. public $system; //1-wondows;2-unix;
  35. /**
  36. * 初始化
  37. * CrontabServer constructor.
  38. */
  39. public function __construct()
  40. {
  41. if (Cache::get('crontab_run_status')) {
  42. $this->run_status = true;
  43. }
  44. $this->cron_lists = DevCrontab::where(['status' => 1])->select()->toArray();
  45. if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
  46. $this->system = 1;
  47. } else {
  48. $this->system = 2;
  49. }
  50. }
  51. /**
  52. * 运行定时任务
  53. * @return string
  54. * @throws Exception
  55. * @throws \think\db\exception\DataNotFoundException
  56. * @throws \think\db\exception\ModelNotFoundException
  57. * @throws \think\exception\DbException
  58. * @throws \think\exception\PDOException
  59. */
  60. public function execute()
  61. {
  62. if (empty($this->cron_lists)) {
  63. return '当前无需要执行的定时任务或守护进程';
  64. }
  65. DevCrontab::where(['status' => 1])->update(['error' => '']);
  66. if ($this->system == 1) {
  67. self::windows($this->cron_lists);
  68. } else {
  69. self::unix($this->cron_lists);
  70. }
  71. }
  72. /**
  73. * unix系统
  74. * @param $cron_lists
  75. */
  76. private function unix($cron_lists)
  77. {
  78. $task = new Worker();
  79. $task->count = count($cron_lists);//根据列表任务分配线程
  80. $task->onWorkerStart = function ($task) use ($cron_lists) {
  81. $task_id = $task->id;
  82. //创建定时器
  83. $timer_id = Timer::add(1, function () use (&$timer_id, $task_id, $cron_lists) {
  84. try {
  85. self::setStatus();
  86. Db::close();
  87. $time = time();
  88. $cron = $cron_lists[$task_id];
  89. if ($cron['type'] == 1) {
  90. if (CronExpression::isValidExpression($cron['expression']) === false) {
  91. throw new \Exception("规则设置错误"); //定时任务运行规则错误,不执行
  92. }
  93. $cron_expression = CronExpression::factory($cron['expression']);
  94. $last_time = Db::name('dev_crontab')->where(['id' => $cron['id']])->value('last_time');
  95. $next_time = $cron_expression->getNextRunDate(date('Y-m-d H:i:s', $last_time))->getTimestamp();
  96. if ($next_time >= time()) {
  97. sleep(1);
  98. return true;
  99. }
  100. }
  101. //执行定时任务
  102. Debug::remark('begin');
  103. $parameter = explode(' ', $cron['parameter']);
  104. if (is_array($parameter) && !empty($parameter)) {
  105. Console::call($cron['command'], $parameter);
  106. } else {
  107. Console::call($cron['command']);
  108. }
  109. Debug::remark('end');
  110. echo "系统任务名称为:{$cron['name']}:" . "\n";
  111. } catch (\Exception $e) {
  112. //运行错误,关闭定时任务
  113. echo "系统任务名称为:{$cron['name']}:" . $e->getMessage();
  114. Db::name('dev_crontab')
  115. ->where(['id' => $cron['id']])
  116. ->update(['error' => $e->getMessage(), 'status' => 3]);
  117. Timer::del($timer_id);
  118. } catch (Exception $e) {
  119. echo "系统任务名称为:{$cron['name']}:" . $e->getMessage();
  120. Db::name('dev_crontab')
  121. ->where(['id' => $cron['id']])
  122. ->update(['error' => $e->getMessage(), 'status' => 3]);
  123. Timer::del($timer_id);
  124. }
  125. $range_time = Debug::getRangeTime('begin', 'end');
  126. $max_time = max($cron['max_time'], $range_time);
  127. Db::name('dev_crontab')
  128. ->where(['id' => $cron['id']])
  129. ->update(['last_time' => $time, 'time' => $range_time, 'max_time' => $max_time]);
  130. });
  131. };
  132. Worker::runAll();
  133. }
  134. /**
  135. * windows系统下
  136. * @param $cron_lists
  137. */
  138. private function windows($cron_lists)
  139. {
  140. $task = new Worker();
  141. $task->count = 1;
  142. $task->onWorkerStart = function ($task) use ($cron_lists) {
  143. //创建定时器
  144. $timer_id = Timer::add(1, function () use ($cron_lists) {
  145. self::setStatus();
  146. foreach ($cron_lists as $k => $v) {
  147. $cron = $v;
  148. try {
  149. $time = time();
  150. if ($cron['type'] == 1) {
  151. if (CronExpression::isValidExpression($cron['expression']) === false) {
  152. throw new \Exception("规则设置错误"); //定时任务运行规则错误,不执行
  153. }
  154. $cron_expression = CronExpression::factory($cron['expression']);
  155. $last_time = Db::name('dev_crontab')->where(['id' => $cron['id']])->value('last_time');
  156. $next_time = $cron_expression->getNextRunDate(date('Y-m-d H:i:s', $last_time))->getTimestamp();
  157. if ($next_time >= time()) {
  158. usleep(100000);
  159. continue;
  160. }
  161. }
  162. //执行定时任务
  163. Debug::remark('begin');
  164. $parameter = explode(' ', $cron['parameter']);
  165. if (is_array($parameter) && !empty($parameter)) {
  166. Console::call($cron['command'], $parameter);
  167. } else {
  168. Console::call($cron['command']);
  169. }
  170. Debug::remark('end');
  171. echo "系统任务名称为:{$cron['name']}:" . "\n";
  172. } catch (\Exception $e) {
  173. //运行错误,关闭定时任务
  174. echo "系统任务名称为:{$cron['name']}:" . $e->getMessage();
  175. Db::name('dev_crontab')
  176. ->where(['id' => $cron['id']])
  177. ->update(['error' => $e->getMessage(), 'status' => 3]);
  178. } catch (Exception $e) {
  179. echo "系统任务名称为:{$cron['name']}:" . $e->getMessage();
  180. Db::name('dev_crontab')
  181. ->where(['id' => $cron['id']])
  182. ->update(['error' => $e->getMessage(), 'status' => 3]);
  183. }
  184. $range_time = Debug::getRangeTime('begin', 'end');
  185. $max_time = max($cron['max_time'], $range_time);
  186. Db::name('dev_crontab')
  187. ->where(['id' => $cron['id']])
  188. ->update(['last_time' => $time, 'time' => $range_time, 'max_time' => $max_time]);
  189. }
  190. });
  191. };
  192. Worker::runAll();
  193. }
  194. /**
  195. * 设置状态
  196. * @return mixed
  197. */
  198. private function setStatus()
  199. {
  200. return Cache::set('crontab_run_status', 1, 60);
  201. }
  202. /**
  203. * 更新定时任务状态
  204. * @throws Exception
  205. * @throws \think\exception\PDOException
  206. */
  207. public function updateStatus()
  208. {
  209. if ($this->run_status === false) {
  210. $this->cron_lists = Db::name('dev_crontab')
  211. ->where(['status' => 1])
  212. ->update(['status' => 2]);
  213. }
  214. }
  215. /**
  216. * 启动
  217. * @param bool $stop
  218. */
  219. public function run($stop = true)
  220. {
  221. $php_path = real_path();
  222. $this->setStatus();
  223. if ($stop) {
  224. if ($this->system == 1) {
  225. pclose(popen("start taskkill /f /im php.exe /t", 'r'));
  226. } else {
  227. pclose(popen($php_path . ' ../think crontab stop --d', 'r'));
  228. }
  229. } else {
  230. if ($this->system == 1) {
  231. pclose(popen("start taskkill /f /im php.exe /t", 'r'));
  232. sleep(2);
  233. pclose(popen("start " . $php_path . " ../think crontab restart --d", 'r'));
  234. } else {
  235. pclose(popen($php_path . ' ../think crontab restart --d', 'r'));
  236. }
  237. }
  238. }
  239. }