MediaWiki REL1_31
JobSpecification.php
Go to the documentation of this file.
1<?php
33 public function getType();
34
38 public function getParams();
39
43 public function getReleaseTimestamp();
44
48 public function ignoreDuplicates();
49
58 public function getDeduplicationInfo();
59
65 public function getRootJobParams();
66
72 public function hasRootJobParams();
73
78 public function isRootJob();
79
83 public function getTitle();
84}
85
105 protected $type;
106
108 protected $params;
109
111 protected $title;
112
114 protected $opts;
115
122 public function __construct(
123 $type, array $params, array $opts = [], Title $title = null
124 ) {
125 $this->validateParams( $params );
126 $this->validateParams( $opts );
127
128 $this->type = $type;
129 $this->params = $params;
130 $this->title = $title ?: Title::makeTitle( NS_SPECIAL, 'Badtitle/' . static::class );
131 $this->opts = $opts;
132 }
133
137 protected function validateParams( array $params ) {
138 foreach ( $params as $p => $v ) {
139 if ( is_array( $v ) ) {
140 $this->validateParams( $v );
141 } elseif ( !is_scalar( $v ) && $v !== null ) {
142 throw new UnexpectedValueException( "Job parameter $p is not JSON serializable." );
143 }
144 }
145 }
146
147 public function getType() {
148 return $this->type;
149 }
150
151 public function getTitle() {
152 return $this->title;
153 }
154
155 public function getParams() {
156 return $this->params;
157 }
158
159 public function getReleaseTimestamp() {
160 return isset( $this->params['jobReleaseTimestamp'] )
161 ? wfTimestampOrNull( TS_UNIX, $this->params['jobReleaseTimestamp'] )
162 : null;
163 }
164
165 public function ignoreDuplicates() {
166 return !empty( $this->opts['removeDuplicates'] );
167 }
168
169 public function getDeduplicationInfo() {
170 $info = [
171 'type' => $this->getType(),
172 'namespace' => $this->getTitle()->getNamespace(),
173 'title' => $this->getTitle()->getDBkey(),
174 'params' => $this->getParams()
175 ];
176 if ( is_array( $info['params'] ) ) {
177 // Identical jobs with different "root" jobs should count as duplicates
178 unset( $info['params']['rootJobSignature'] );
179 unset( $info['params']['rootJobTimestamp'] );
180 // Likewise for jobs with different delay times
181 unset( $info['params']['jobReleaseTimestamp'] );
182 }
183
184 return $info;
185 }
186
187 public function getRootJobParams() {
188 return [
189 'rootJobSignature' => isset( $this->params['rootJobSignature'] )
190 ? $this->params['rootJobSignature']
191 : null,
192 'rootJobTimestamp' => isset( $this->params['rootJobTimestamp'] )
193 ? $this->params['rootJobTimestamp']
194 : null
195 ];
196 }
197
198 public function hasRootJobParams() {
199 return isset( $this->params['rootJobSignature'] )
200 && isset( $this->params['rootJobTimestamp'] );
201 }
202
203 public function isRootJob() {
204 return $this->hasRootJobParams() && !empty( $this->params['rootJobIsSelf'] );
205 }
206
211 public function toSerializableArray() {
212 return [
213 'type' => $this->type,
214 'params' => $this->params,
215 'opts' => $this->opts,
216 'title' => [
217 'ns' => $this->title->getNamespace(),
218 'key' => $this->title->getDBkey()
219 ]
220 ];
221 }
222
228 public static function newFromArray( array $map ) {
229 $title = Title::makeTitle( $map['title']['ns'], $map['title']['key'] );
230
231 return new self( $map['type'], $map['params'], $map['opts'], $title );
232 }
233}
wfTimestampOrNull( $outputtype=TS_UNIX, $ts=null)
Return a formatted timestamp, or null if input is null.
Job queue task description base code.
array $params
Array of job parameters or false if none.
__construct( $type, array $params, array $opts=[], Title $title=null)
validateParams(array $params)
static newFromArray(array $map)
getDeduplicationInfo()
Subclasses may need to override this to make duplication detection work.
Represents a title within MediaWiki.
Definition Title.php:39
const NS_SPECIAL
Definition Defines.php:63
Job queue task description interface.
getDeduplicationInfo()
Subclasses may need to override this to make duplication detection work.
This document describes the state of Postgres support in and is fairly well maintained The main code is very well while extensions are very hit and miss it is probably the most supported database after MySQL Much of the work in making MediaWiki database agnostic came about through the work of creating Postgres but without copying over all the usage comments General notes on the but these can almost always be programmed around *Although Postgres has a true BOOLEAN type
Definition postgres.txt:30