JobsQueue.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 开源项目:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github开源项目:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\admin\queue;
  15. use app\admin\service\QueueService;
  16. use think\console\Output;
  17. /**
  18. * 基础指令公共类
  19. * Class JobsQueue
  20. * @package app\admin
  21. */
  22. class JobsQueue
  23. {
  24. /**
  25. * 待处理
  26. */
  27. const STATUS_PEND = 1;
  28. /**
  29. * 处理中
  30. */
  31. const STATUS_PROC = 2;
  32. /**
  33. * 处理完成
  34. */
  35. const STATUS_COMP = 3;
  36. /**
  37. * 处理失败
  38. */
  39. const STATUS_FAIL = 4;
  40. /**
  41. * 任务ID
  42. * @var integer
  43. */
  44. protected $id;
  45. /**
  46. * 任务数据
  47. * @var array
  48. */
  49. protected $data;
  50. /**
  51. * 任务名称
  52. * @var string
  53. */
  54. protected $title;
  55. /**
  56. * 任务状态
  57. * @var integer
  58. */
  59. protected $status;
  60. /**
  61. * @var Output
  62. */
  63. protected $output;
  64. /**
  65. * 任务状态描述
  66. * @var string
  67. */
  68. protected $statusDesc = '';
  69. /**
  70. * 启动任务处理
  71. * @param \think\queue\Job $job 当前任务对象
  72. * @param array $data 任务执行对象
  73. * @throws \think\Exception
  74. * @throws \think\exception\PDOException
  75. */
  76. public function fire(\think\queue\Job $job, $data = [])
  77. {
  78. $this->data = $data;
  79. $this->output = new Output();
  80. $this->id = isset($data['_job_id_']) ? $data['_job_id_'] : '';
  81. $this->title = isset($data['_job_title_']) ? $data['_job_title_'] : '';
  82. $this->output->newLine();
  83. $this->output->writeln(" system task {$this->id} execution start");
  84. $this->output->writeln('---------------------------------------------');
  85. QueueService::status($this->id, self::STATUS_PROC, $this->statusDesc);
  86. if ($this->execute()) {
  87. $this->output->writeln('---------------------------------------------');
  88. $this->output->info(" successful");
  89. $this->status = self::STATUS_COMP;
  90. } else {
  91. $this->output->writeln('---------------------------------------------');
  92. $this->output->error(" failure");
  93. $this->status = self::STATUS_FAIL;
  94. }
  95. $job->delete();
  96. QueueService::status($this->id, $this->status, $this->statusDesc);
  97. $this->output->writeln('---------------------------------------------');
  98. $this->output->newLine();
  99. }
  100. /**
  101. * 执行任务
  102. * @return boolean
  103. */
  104. protected function execute()
  105. {
  106. return true;
  107. }
  108. }