CatchCronTask.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?php
  2. declare(strict_types=1);
  3. // +----------------------------------------------------------------------
  4. // | CatchAdmin [Just Like ~ ]
  5. // +----------------------------------------------------------------------
  6. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  7. // +----------------------------------------------------------------------
  8. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  9. // +----------------------------------------------------------------------
  10. // | Author: JaguarJack [ njphper@gmail.com ]
  11. // +----------------------------------------------------------------------
  12. namespace catcher\base;
  13. use catchAdmin\monitor\model\CrontabLog;
  14. abstract class CatchCronTask
  15. {
  16. protected $exceptionHappenTimes = 0;
  17. protected $exitTimes = 1;
  18. protected $crontab;
  19. /**
  20. * @time 2020年07月29日
  21. * @return mixed
  22. */
  23. public abstract function deal();
  24. /**
  25. * @time 2020年07月29日
  26. * @param \Throwable $e
  27. * @return mixed
  28. */
  29. public abstract function dealWithException(\Throwable $e);
  30. /**
  31. * 执行
  32. *
  33. * @time 2020年07月23日
  34. * @return void|bool
  35. */
  36. public function run()
  37. {
  38. $startAt = round(microtime(true) * 1000);
  39. try {
  40. if ($this->deal() === false) {
  41. return false;
  42. }
  43. $this->recordLog($startAt);
  44. return true;
  45. } catch (\Throwable $e) {
  46. $this->dealWithException($e);
  47. echo sprintf('[%s]: ', date('Y-m-d H:i:s')) . 'File:' . $e->getFile() . ', Lines: '. $e->getLine() .'行,Exception Message: ' . $e->getMessage() . PHP_EOL;
  48. // 输出堆栈信息
  49. echo sprintf('[%s]: ', date('Y-m-d H:i:s')) . $e->getTraceAsString() . PHP_EOL;
  50. // 日志记录
  51. $this->recordLog($startAt, 'File:' . $e->getFile() . ', Lines: '. $e->getLine() .'行,Exception Message: ' . $e->getMessage());
  52. $this->exceptionHappenTimes += 1;
  53. }
  54. }
  55. /**
  56. * 退出
  57. *
  58. * @time 2020年07月29日
  59. * @return bool
  60. */
  61. public function shouldExit()
  62. {
  63. // var_dump($this->exceptionHappenTimes);
  64. return $this->exceptionHappenTimes > $this->exitTimes;
  65. }
  66. /**
  67. * 设置 crontab
  68. *
  69. * @time 2020年09月15日
  70. * @param array $crontab
  71. * @return $this
  72. */
  73. public function setCrontab(array $crontab)
  74. {
  75. $this->crontab = $crontab;
  76. return $this;
  77. }
  78. protected function recordLog($startAt, $message = '')
  79. {
  80. $endAt = round(microtime(true) * 1000);
  81. CrontabLog::insert([
  82. 'crontab_id' => $this->crontab['id'],
  83. 'used_time' => $endAt - $startAt,
  84. 'error_message' => $message,
  85. 'status' => $message ? CrontabLog::FAILED : CrontabLog::SUCCESS,
  86. 'created_at' => time(),
  87. 'updated_at' => time(),
  88. ]);
  89. }
  90. }