JobsBase.php 3.1 KB

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