mediawiki.special.preferences: Support Back/Forward navigation
[lhc/web/wiklou.git] / includes / job / JobQueue.php
1 <?php
2 /**
3 * Job queue base code
4 *
5 * @file
6 * @defgroup JobQueue JobQueue
7 */
8
9 if ( !defined( 'MEDIAWIKI' ) ) {
10 die( "This file is part of MediaWiki, it is not a valid entry point\n" );
11 }
12
13 /**
14 * Class to both describe a background job and handle jobs.
15 *
16 * @ingroup JobQueue
17 */
18 abstract class Job {
19
20 /**
21 * @var Title
22 */
23 var $title;
24
25 var $command,
26 $params,
27 $id,
28 $removeDuplicates,
29 $error;
30
31 /*-------------------------------------------------------------------------
32 * Abstract functions
33 *------------------------------------------------------------------------*/
34
35 /**
36 * Run the job
37 * @return boolean success
38 */
39 abstract function run();
40
41 /*-------------------------------------------------------------------------
42 * Static functions
43 *------------------------------------------------------------------------*/
44
45 /**
46 * Pop a job of a certain type. This tries less hard than pop() to
47 * actually find a job; it may be adversely affected by concurrent job
48 * runners.
49 *
50 * @param $type string
51 *
52 * @return Job
53 */
54 static function pop_type( $type ) {
55 wfProfilein( __METHOD__ );
56
57 $dbw = wfGetDB( DB_MASTER );
58
59 $dbw->begin( __METHOD__ );
60
61 $row = $dbw->selectRow(
62 'job',
63 '*',
64 array( 'job_cmd' => $type ),
65 __METHOD__,
66 array( 'LIMIT' => 1, 'FOR UPDATE' )
67 );
68
69 if ( $row === false ) {
70 $dbw->commit( __METHOD__ );
71 wfProfileOut( __METHOD__ );
72 return false;
73 }
74
75 /* Ensure we "own" this row */
76 $dbw->delete( 'job', array( 'job_id' => $row->job_id ), __METHOD__ );
77 $affected = $dbw->affectedRows();
78 $dbw->commit( __METHOD__ );
79
80 if ( $affected == 0 ) {
81 wfProfileOut( __METHOD__ );
82 return false;
83 }
84
85 wfIncrStats( 'job-pop' );
86 $namespace = $row->job_namespace;
87 $dbkey = $row->job_title;
88 $title = Title::makeTitleSafe( $namespace, $dbkey );
89 $job = Job::factory( $row->job_cmd, $title, Job::extractBlob( $row->job_params ),
90 $row->job_id );
91
92 $job->removeDuplicates();
93
94 wfProfileOut( __METHOD__ );
95 return $job;
96 }
97
98 /**
99 * Pop a job off the front of the queue
100 *
101 * @param $offset Integer: Number of jobs to skip
102 * @return Job or false if there's no jobs
103 */
104 static function pop( $offset = 0 ) {
105 global $wgJobTypesExcludedFromDefaultQueue;
106 wfProfileIn( __METHOD__ );
107
108 $dbr = wfGetDB( DB_SLAVE );
109
110 /* Get a job from the slave, start with an offset,
111 scan full set afterwards, avoid hitting purged rows
112
113 NB: If random fetch previously was used, offset
114 will always be ahead of few entries
115 */
116 $conditions = array();
117 if ( count( $wgJobTypesExcludedFromDefaultQueue ) != 0 ) {
118 foreach ( $wgJobTypesExcludedFromDefaultQueue as $cmdType ) {
119 $conditions[] = "job_cmd != " . $dbr->addQuotes( $cmdType );
120 }
121 }
122 $offset = intval( $offset );
123 $options = array( 'ORDER BY' => 'job_id', 'USE INDEX' => 'PRIMARY' );
124
125 $row = $dbr->selectRow( 'job', '*',
126 array_merge( $conditions, array( "job_id >= $offset" ) ),
127 __METHOD__,
128 $options
129 );
130
131 // Refetching without offset is needed as some of job IDs could have had delayed commits
132 // and have lower IDs than jobs already executed, blame concurrency :)
133 //
134 if ( $row === false ) {
135 if ( $offset != 0 ) {
136 $row = $dbr->selectRow( 'job', '*', $conditions, __METHOD__, $options );
137 }
138
139 if ( $row === false ) {
140 wfProfileOut( __METHOD__ );
141 return false;
142 }
143 }
144
145 // Try to delete it from the master
146 $dbw = wfGetDB( DB_MASTER );
147 $dbw->delete( 'job', array( 'job_id' => $row->job_id ), __METHOD__ );
148 $affected = $dbw->affectedRows();
149 $dbw->commit( __METHOD__ );
150
151 if ( !$affected ) {
152 // Failed, someone else beat us to it
153 // Try getting a random row
154 $row = $dbw->selectRow( 'job', array( 'MIN(job_id) as minjob',
155 'MAX(job_id) as maxjob' ), '1=1', __METHOD__ );
156 if ( $row === false || is_null( $row->minjob ) || is_null( $row->maxjob ) ) {
157 // No jobs to get
158 wfProfileOut( __METHOD__ );
159 return false;
160 }
161 // Get the random row
162 $row = $dbw->selectRow( 'job', '*',
163 'job_id >= ' . mt_rand( $row->minjob, $row->maxjob ), __METHOD__ );
164 if ( $row === false ) {
165 // Random job gone before we got the chance to select it
166 // Give up
167 wfProfileOut( __METHOD__ );
168 return false;
169 }
170 // Delete the random row
171 $dbw->delete( 'job', array( 'job_id' => $row->job_id ), __METHOD__ );
172 $affected = $dbw->affectedRows();
173 $dbw->commit( __METHOD__ );
174
175 if ( !$affected ) {
176 // Random job gone before we exclusively deleted it
177 // Give up
178 wfProfileOut( __METHOD__ );
179 return false;
180 }
181 }
182
183 // If execution got to here, there's a row in $row that has been deleted from the database
184 // by this thread. Hence the concurrent pop was successful.
185 wfIncrStats( 'job-pop' );
186 $namespace = $row->job_namespace;
187 $dbkey = $row->job_title;
188 $title = Title::makeTitleSafe( $namespace, $dbkey );
189 $job = Job::factory( $row->job_cmd, $title, Job::extractBlob( $row->job_params ), $row->job_id );
190
191 // Remove any duplicates it may have later in the queue
192 $job->removeDuplicates();
193
194 wfProfileOut( __METHOD__ );
195 return $job;
196 }
197
198 /**
199 * Create the appropriate object to handle a specific job
200 *
201 * @param $command String: Job command
202 * @param $title Title: Associated title
203 * @param $params Array: Job parameters
204 * @param $id Int: Job identifier
205 * @return Job
206 */
207 static function factory( $command, $title, $params = false, $id = 0 ) {
208 global $wgJobClasses;
209 if( isset( $wgJobClasses[$command] ) ) {
210 $class = $wgJobClasses[$command];
211 return new $class( $title, $params, $id );
212 }
213 throw new MWException( "Invalid job command `{$command}`" );
214 }
215
216 /**
217 * @param $params
218 * @return string
219 */
220 static function makeBlob( $params ) {
221 if ( $params !== false ) {
222 return serialize( $params );
223 } else {
224 return '';
225 }
226 }
227
228 /**
229 * @param $blob
230 * @return bool|mixed
231 */
232 static function extractBlob( $blob ) {
233 if ( (string)$blob !== '' ) {
234 return unserialize( $blob );
235 } else {
236 return false;
237 }
238 }
239
240 /**
241 * Batch-insert a group of jobs into the queue.
242 * This will be wrapped in a transaction with a forced commit.
243 *
244 * This may add duplicate at insert time, but they will be
245 * removed later on, when the first one is popped.
246 *
247 * @param $jobs array of Job objects
248 */
249 static function batchInsert( $jobs ) {
250 if ( !count( $jobs ) ) {
251 return;
252 }
253 $dbw = wfGetDB( DB_MASTER );
254 $rows = array();
255
256 /**
257 * @var $job Job
258 */
259 foreach ( $jobs as $job ) {
260 $rows[] = $job->insertFields();
261 if ( count( $rows ) >= 50 ) {
262 # Do a small transaction to avoid slave lag
263 $dbw->begin( __METHOD__ );
264 $dbw->insert( 'job', $rows, __METHOD__, 'IGNORE' );
265 $dbw->commit( __METHOD__ );
266 $rows = array();
267 }
268 }
269 if ( $rows ) { // last chunk
270 $dbw->begin( __METHOD__ );
271 $dbw->insert( 'job', $rows, __METHOD__, 'IGNORE' );
272 $dbw->commit( __METHOD__ );
273 }
274 wfIncrStats( 'job-insert', count( $jobs ) );
275 }
276
277 /**
278 * Insert a group of jobs into the queue.
279 *
280 * Same as batchInsert() but does not commit and can thus
281 * be rolled-back as part of a larger transaction. However,
282 * large batches of jobs can cause slave lag.
283 *
284 * @param $jobs array of Job objects
285 */
286 static function safeBatchInsert( $jobs ) {
287 if ( !count( $jobs ) ) {
288 return;
289 }
290 $dbw = wfGetDB( DB_MASTER );
291 $rows = array();
292 foreach ( $jobs as $job ) {
293 $rows[] = $job->insertFields();
294 if ( count( $rows ) >= 500 ) {
295 $dbw->insert( 'job', $rows, __METHOD__, 'IGNORE' );
296 $rows = array();
297 }
298 }
299 if ( $rows ) { // last chunk
300 $dbw->insert( 'job', $rows, __METHOD__, 'IGNORE' );
301 }
302 wfIncrStats( 'job-insert', count( $jobs ) );
303 }
304
305 /*-------------------------------------------------------------------------
306 * Non-static functions
307 *------------------------------------------------------------------------*/
308
309 /**
310 * @param $command
311 * @param $title
312 * @param $params array
313 * @param int $id
314 */
315 function __construct( $command, $title, $params = false, $id = 0 ) {
316 $this->command = $command;
317 $this->title = $title;
318 $this->params = $params;
319 $this->id = $id;
320
321 // A bit of premature generalisation
322 // Oh well, the whole class is premature generalisation really
323 $this->removeDuplicates = true;
324 }
325
326 /**
327 * Insert a single job into the queue.
328 * @return bool true on success
329 */
330 function insert() {
331 $fields = $this->insertFields();
332
333 $dbw = wfGetDB( DB_MASTER );
334
335 if ( $this->removeDuplicates ) {
336 $res = $dbw->select( 'job', array( '1' ), $fields, __METHOD__ );
337 if ( $dbw->numRows( $res ) ) {
338 return true;
339 }
340 }
341 wfIncrStats( 'job-insert' );
342 return $dbw->insert( 'job', $fields, __METHOD__ );
343 }
344
345 /**
346 * @return array
347 */
348 protected function insertFields() {
349 $dbw = wfGetDB( DB_MASTER );
350 return array(
351 'job_id' => $dbw->nextSequenceValue( 'job_job_id_seq' ),
352 'job_cmd' => $this->command,
353 'job_namespace' => $this->title->getNamespace(),
354 'job_title' => $this->title->getDBkey(),
355 'job_timestamp' => $dbw->timestamp(),
356 'job_params' => Job::makeBlob( $this->params )
357 );
358 }
359
360 /**
361 * Remove jobs in the job queue which are duplicates of this job.
362 * This is deadlock-prone and so starts its own transaction.
363 */
364 function removeDuplicates() {
365 if ( !$this->removeDuplicates ) {
366 return;
367 }
368
369 $fields = $this->insertFields();
370 unset( $fields['job_id'] );
371 $dbw = wfGetDB( DB_MASTER );
372 $dbw->begin( __METHOD__ );
373 $dbw->delete( 'job', $fields, __METHOD__ );
374 $affected = $dbw->affectedRows();
375 $dbw->commit( __METHOD__ );
376 if ( $affected ) {
377 wfIncrStats( 'job-dup-delete', $affected );
378 }
379 }
380
381 /**
382 * @return string
383 */
384 function toString() {
385 $paramString = '';
386 if ( $this->params ) {
387 foreach ( $this->params as $key => $value ) {
388 if ( $paramString != '' ) {
389 $paramString .= ' ';
390 }
391 $paramString .= "$key=$value";
392 }
393 }
394
395 if ( is_object( $this->title ) ) {
396 $s = "{$this->command} " . $this->title->getPrefixedDBkey();
397 if ( $paramString !== '' ) {
398 $s .= ' ' . $paramString;
399 }
400 return $s;
401 } else {
402 return "{$this->command} $paramString";
403 }
404 }
405
406 protected function setLastError( $error ) {
407 $this->error = $error;
408 }
409
410 function getLastError() {
411 return $this->error;
412 }
413 }