Merge pull request #15773 from civicrm/5.20
[civicrm-core.git] / CRM / Queue / Task.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
f299f7db 6 | Copyright CiviCRM LLC (c) 2004-2020 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
b44e3f84 29 * A task is an item that can be enqueued and later executed
6a488035
TO
30 */
31class CRM_Queue_Task {
32
389bcebf 33 /**
fe482240 34 * Task was performed successfully.
389bcebf 35 */
4523a2f5 36 const TASK_SUCCESS = 1;
6a488035 37
389bcebf 38 /**
fe482240 39 * Task failed and should not be retried.
389bcebf 40 */
4523a2f5 41 const TASK_FAIL = 2;
6a488035
TO
42
43 /**
44 * @var mixed, serializable
45 */
4523a2f5 46 public $callback;
6a488035
TO
47
48 /**
49 * @var array, serializable
50 */
4523a2f5 51 public $arguments;
6a488035
TO
52
53 /**
54 * @var string, NULL-able
55 */
4523a2f5 56 public $title;
6a488035
TO
57
58 /**
4523a2f5
TO
59 * @param mixed $callback
60 * Serializable, a callable PHP item; must accept at least one argument
61 * (CRM_Queue_TaskContext).
62 * @param array $arguments
63 * Serializable, extra arguments to pass to the callback (in order).
64 * @param string $title
65 * A printable string which describes this task.
6a488035 66 */
4523a2f5
TO
67 public function __construct($callback, $arguments, $title = NULL) {
68 $this->callback = $callback;
6a488035 69 $this->arguments = $arguments;
4523a2f5 70 $this->title = $title;
6a488035
TO
71 }
72
73 /**
fe482240 74 * Perform the task.
6a488035 75 *
4523a2f5
TO
76 * @param array $taskCtx
77 * Array with keys:
78 * - log: object 'Log'
6a488035 79 *
c490a46a 80 * @throws Exception
6a488035
TO
81 * @return bool, TRUE if task completes successfully
82 */
4523a2f5 83 public function run($taskCtx) {
6a488035
TO
84 $args = $this->arguments;
85 array_unshift($args, $taskCtx);
86
87 if (is_callable($this->callback)) {
88 $result = call_user_func_array($this->callback, $args);
89 return $result;
90 }
91 else {
92 throw new Exception('Failed to call callback: ' . print_r($this->callback));
93 }
94 }
96025800 95
6a488035 96}