3 * Job queue task base code.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @defgroup JobQueue JobQueue
25 * Class to both describe a background job and handle jobs.
26 * The queue aspects of this class are now deprecated.
27 * Using the class to push jobs onto queues is deprecated (use JobSpecification).
31 abstract class Job
implements IJobSpecification
{
35 /** @var array|bool Array of job parameters or false if none */
38 /** @var array Additional queue metadata */
39 public $metadata = array();
44 /** @var bool Expensive jobs may set this to true */
45 protected $removeDuplicates;
47 /** @var string Text for error that occurred last */
52 * @return bool Success
54 abstract public function run();
57 * Create the appropriate object to handle a specific job
59 * @param string $command Job command
60 * @param Title $title Associated title
61 * @param array|bool $params Job parameters
65 public static function factory( $command, Title
$title, $params = false ) {
67 if ( isset( $wgJobClasses[$command] ) ) {
68 $class = $wgJobClasses[$command];
70 return new $class( $title, $params );
72 throw new MWException( "Invalid job command `{$command}`" );
76 * @param string $command
78 * @param array|bool $params Can not be === true
80 public function __construct( $command, $title, $params = false ) {
81 $this->command
= $command;
82 $this->title
= $title;
83 $this->params
= $params;
85 // expensive jobs may set this to true
86 $this->removeDuplicates
= false;
90 * Batch-insert a group of jobs into the queue.
91 * This will be wrapped in a transaction with a forced commit.
93 * This may add duplicate at insert time, but they will be
94 * removed later on, when the first one is popped.
96 * @param Job[] $jobs Array of Job objects
98 * @deprecated since 1.21
100 public static function batchInsert( $jobs ) {
101 wfDeprecated( __METHOD__
, '1.21' );
102 JobQueueGroup
::singleton()->push( $jobs );
109 public function getType() {
110 return $this->command
;
116 public function getTitle() {
123 public function getParams() {
124 return $this->params
;
128 * @return int|null UNIX timestamp to delay running this job until, otherwise null
131 public function getReleaseTimestamp() {
132 return isset( $this->params
['jobReleaseTimestamp'] )
133 ?
wfTimestampOrNull( TS_UNIX
, $this->params
['jobReleaseTimestamp'] )
138 * Whether the queue should reject insertion of this job if a duplicate exists
140 * This can be used to avoid duplicated effort or combined with delayed jobs to
141 * coalesce updates into larger batches. Claimed jobs are never treated as
142 * duplicates of new jobs, and some queues may allow a few duplicates due to
143 * network partitions and fail-over. Thus, additional locking is needed to
144 * enforce mutual exclusion if this is really needed.
148 public function ignoreDuplicates() {
149 return $this->removeDuplicates
;
153 * @return bool Whether this job can be retried on failure by job runners
156 public function allowRetries() {
161 * @return int Number of actually "work items" handled in this job
162 * @see $wgJobBackoffThrottling
165 public function workItemCount() {
170 * Subclasses may need to override this to make duplication detection work.
171 * The resulting map conveys everything that makes the job unique. This is
172 * only checked if ignoreDuplicates() returns true, meaning that duplicate
173 * jobs are supposed to be ignored.
175 * @return array Map of key/values
178 public function getDeduplicationInfo() {
180 'type' => $this->getType(),
181 'namespace' => $this->getTitle()->getNamespace(),
182 'title' => $this->getTitle()->getDBkey(),
183 'params' => $this->getParams()
185 if ( is_array( $info['params'] ) ) {
186 // Identical jobs with different "root" jobs should count as duplicates
187 unset( $info['params']['rootJobSignature'] );
188 unset( $info['params']['rootJobTimestamp'] );
189 // Likewise for jobs with different delay times
190 unset( $info['params']['jobReleaseTimestamp'] );
197 * @see JobQueue::deduplicateRootJob()
198 * @param string $key A key that identifies the task
199 * @return array Map of:
200 * - rootJobSignature : hash (e.g. SHA1) that identifies the task
201 * - rootJobTimestamp : TS_MW timestamp of this instance of the task
204 public static function newRootJobParams( $key ) {
206 'rootJobSignature' => sha1( $key ),
207 'rootJobTimestamp' => wfTimestampNow()
212 * @see JobQueue::deduplicateRootJob()
216 public function getRootJobParams() {
218 'rootJobSignature' => isset( $this->params
['rootJobSignature'] )
219 ?
$this->params
['rootJobSignature']
221 'rootJobTimestamp' => isset( $this->params
['rootJobTimestamp'] )
222 ?
$this->params
['rootJobTimestamp']
228 * @see JobQueue::deduplicateRootJob()
232 public function hasRootJobParams() {
233 return isset( $this->params
['rootJobSignature'] )
234 && isset( $this->params
['rootJobTimestamp'] );
238 * Insert a single job into the queue.
239 * @return bool True on success
240 * @deprecated since 1.21
242 public function insert() {
243 JobQueueGroup
::singleton()->push( $this );
250 public function toString() {
251 $truncFunc = function ( $value ) {
252 $value = (string)$value;
253 if ( mb_strlen( $value ) > 1024 ) {
254 $value = "string(" . mb_strlen( $value ) . ")";
260 if ( $this->params
) {
261 foreach ( $this->params
as $key => $value ) {
262 if ( $paramString != '' ) {
265 if ( is_array( $value ) ) {
266 $filteredValue = array();
267 foreach ( $value as $k => $v ) {
268 if ( is_scalar( $v ) ) {
269 $filteredValue[$k] = $truncFunc( $v );
271 $filteredValue = null;
275 if ( $filteredValue && count( $filteredValue ) < 10 ) {
276 $value = FormatJson
::encode( $filteredValue );
278 $value = "array(" . count( $value ) . ")";
280 } elseif ( is_object( $value ) && !method_exists( $value, '__toString' ) ) {
281 $value = "object(" . get_class( $value ) . ")";
284 $paramString .= "$key={$truncFunc( $value )}";
289 foreach ( $this->metadata
as $key => $value ) {
290 if ( is_scalar( $value ) && mb_strlen( $value ) < 1024 ) {
291 $metaString .= ( $metaString ?
",$key=$value" : "$key=$value" );
296 if ( is_object( $this->title
) ) {
297 $s .= " {$this->title->getPrefixedDBkey()}";
299 if ( $paramString != '' ) {
300 $s .= " $paramString";
302 if ( $metaString != '' ) {
303 $s .= " ($metaString)";
309 protected function setLastError( $error ) {
310 $this->error
= $error;
313 public function getLastError() {