3 * Job queue task description 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
25 * Job queue task description interface
30 interface IJobSpecification
{
32 * @return string Job type
34 public function getType();
39 public function getParams();
42 * @return int|null UNIX timestamp to delay running this job until, otherwise null
44 public function getReleaseTimestamp();
47 * @return bool Whether only one of each identical set of jobs should be run
49 public function ignoreDuplicates();
52 * Subclasses may need to override this to make duplication detection work.
53 * The resulting map conveys everything that makes the job unique. This is
54 * only checked if ignoreDuplicates() returns true, meaning that duplicate
55 * jobs are supposed to be ignored.
57 * @return array Map of key/values
59 public function getDeduplicationInfo();
62 * @return Title Descriptive title (this can simply be informative)
64 public function getTitle();
68 * Job queue task description base code
72 * $job = new JobSpecification(
74 * array( 'lives' => 1, 'usleep' => 100, 'pi' => 3.141569 ),
75 * array( 'removeDuplicates' => 1 ),
76 * Title::makeTitle( NS_SPECIAL, 'nullity' )
78 * JobQueueGroup::singleton()->push( $job )
84 class JobSpecification
implements IJobSpecification
{
88 /** @var array Array of job parameters or false if none */
94 /** @var bool Expensive jobs may set this to true */
95 protected $ignoreDuplicates;
99 * @param array $params Map of key/values
100 * @param array $opts Map of key/values
101 * @param Title $title Optional descriptive title
103 public function __construct(
104 $type, array $params, array $opts = array(), Title
$title = null
106 $this->validateParams( $params );
109 $this->params
= $params;
110 $this->title
= $title ?
: Title
::newMainPage();
111 $this->ignoreDuplicates
= !empty( $opts['removeDuplicates'] );
115 * @param array $params
117 protected function validateParams( array $params ) {
118 foreach ( $params as $p => $v ) {
119 if ( is_array( $v ) ) {
120 $this->validateParams( $v );
121 } elseif ( !is_scalar( $v ) && $v !== null ) {
122 throw new UnexpectedValueException( "Job parameter $p is not JSON serializable." );
130 public function getType() {
137 public function getTitle() {
144 public function getParams() {
145 return $this->params
;
149 * @return int|null UNIX timestamp to delay running this job until, otherwise null
151 public function getReleaseTimestamp() {
152 return isset( $this->params
['jobReleaseTimestamp'] )
153 ?
wfTimestampOrNull( TS_UNIX
, $this->params
['jobReleaseTimestamp'] )
158 * @return bool Whether only one of each identical set of jobs should be run
160 public function ignoreDuplicates() {
161 return $this->ignoreDuplicates
;
165 * Subclasses may need to override this to make duplication detection work.
166 * The resulting map conveys everything that makes the job unique. This is
167 * only checked if ignoreDuplicates() returns true, meaning that duplicate
168 * jobs are supposed to be ignored.
170 * @return array Map of key/values
172 public function getDeduplicationInfo() {
174 'type' => $this->getType(),
175 'namespace' => $this->getTitle()->getNamespace(),
176 'title' => $this->getTitle()->getDBkey(),
177 'params' => $this->getParams()
179 if ( is_array( $info['params'] ) ) {
180 // Identical jobs with different "root" jobs should count as duplicates
181 unset( $info['params']['rootJobSignature'] );
182 unset( $info['params']['rootJobTimestamp'] );
183 // Likewise for jobs with different delay times
184 unset( $info['params']['jobReleaseTimestamp'] );