Per Nikerabbit, follow-up to r77972: use a string instead of boolean for readability
[mediawiki.git] / includes / job / JobQueue.php
blob60b35cae8cd942bb185989139fd99457a3607837
1 <?php
2 /**
3 * Job queue base code
5 * @file
6 * @defgroup JobQueue JobQueue
7 */
9 if ( !defined( 'MEDIAWIKI' ) ) {
10 die( "This file is part of MediaWiki, it is not a valid entry point\n" );
13 /**
14 * Class to both describe a background job and handle jobs.
16 * @ingroup JobQueue
18 abstract class Job {
19 var $command,
20 $title,
21 $params,
22 $id,
23 $removeDuplicates,
24 $error;
26 /*-------------------------------------------------------------------------
27 * Abstract functions
28 *------------------------------------------------------------------------*/
30 /**
31 * Run the job
32 * @return boolean success
34 abstract function run();
36 /*-------------------------------------------------------------------------
37 * Static functions
38 *------------------------------------------------------------------------*/
40 /**
41 * Pop a job of a certain type. This tries less hard than pop() to
42 * actually find a job; it may be adversely affected by concurrent job
43 * runners.
45 static function pop_type( $type ) {
46 wfProfilein( __METHOD__ );
48 $dbw = wfGetDB( DB_MASTER );
50 $row = $dbw->selectRow(
51 'job',
52 '*',
53 array( 'job_cmd' => $type ),
54 __METHOD__,
55 array( 'LIMIT' => 1 )
58 if ( $row === false ) {
59 wfProfileOut( __METHOD__ );
60 return false;
63 /* Ensure we "own" this row */
64 $dbw->delete( 'job', array( 'job_id' => $row->job_id ), __METHOD__ );
65 $affected = $dbw->affectedRows();
67 if ( $affected == 0 ) {
68 wfProfileOut( __METHOD__ );
69 return false;
72 $namespace = $row->job_namespace;
73 $dbkey = $row->job_title;
74 $title = Title::makeTitleSafe( $namespace, $dbkey );
75 $job = Job::factory( $row->job_cmd, $title, Job::extractBlob( $row->job_params ),
76 $row->job_id );
78 $dbw->delete( 'job', $job->insertFields(), __METHOD__ );
79 $dbw->commit();
81 wfProfileOut( __METHOD__ );
82 return $job;
85 /**
86 * Pop a job off the front of the queue
88 * @param $offset Integer: Number of jobs to skip
89 * @return Job or false if there's no jobs
91 static function pop( $offset = 0 ) {
92 wfProfileIn( __METHOD__ );
94 $dbr = wfGetDB( DB_SLAVE );
96 /* Get a job from the slave, start with an offset,
97 scan full set afterwards, avoid hitting purged rows
99 NB: If random fetch previously was used, offset
100 will always be ahead of few entries
103 $row = $dbr->selectRow( 'job', '*', "job_id >= ${offset}", __METHOD__,
104 array( 'ORDER BY' => 'job_id', 'LIMIT' => 1 ) );
106 // Refetching without offset is needed as some of job IDs could have had delayed commits
107 // and have lower IDs than jobs already executed, blame concurrency :)
109 if ( $row === false ) {
110 if ( $offset != 0 ) {
111 $row = $dbr->selectRow( 'job', '*', '', __METHOD__,
112 array( 'ORDER BY' => 'job_id', 'LIMIT' => 1 ) );
115 if ( $row === false ) {
116 wfProfileOut( __METHOD__ );
117 return false;
121 // Try to delete it from the master
122 $dbw = wfGetDB( DB_MASTER );
123 $dbw->delete( 'job', array( 'job_id' => $row->job_id ), __METHOD__ );
124 $affected = $dbw->affectedRows();
125 $dbw->commit();
127 if ( !$affected ) {
128 // Failed, someone else beat us to it
129 // Try getting a random row
130 $row = $dbw->selectRow( 'job', array( 'MIN(job_id) as minjob',
131 'MAX(job_id) as maxjob' ), '1=1', __METHOD__ );
132 if ( $row === false || is_null( $row->minjob ) || is_null( $row->maxjob ) ) {
133 // No jobs to get
134 wfProfileOut( __METHOD__ );
135 return false;
137 // Get the random row
138 $row = $dbw->selectRow( 'job', '*',
139 'job_id >= ' . mt_rand( $row->minjob, $row->maxjob ), __METHOD__ );
140 if ( $row === false ) {
141 // Random job gone before we got the chance to select it
142 // Give up
143 wfProfileOut( __METHOD__ );
144 return false;
146 // Delete the random row
147 $dbw->delete( 'job', array( 'job_id' => $row->job_id ), __METHOD__ );
148 $affected = $dbw->affectedRows();
149 $dbw->commit();
151 if ( !$affected ) {
152 // Random job gone before we exclusively deleted it
153 // Give up
154 wfProfileOut( __METHOD__ );
155 return false;
159 // If execution got to here, there's a row in $row that has been deleted from the database
160 // by this thread. Hence the concurrent pop was successful.
161 $namespace = $row->job_namespace;
162 $dbkey = $row->job_title;
163 $title = Title::makeTitleSafe( $namespace, $dbkey );
164 $job = Job::factory( $row->job_cmd, $title, Job::extractBlob( $row->job_params ), $row->job_id );
166 // Remove any duplicates it may have later in the queue
167 // Deadlock prone section
168 $dbw->begin();
169 $dbw->delete( 'job', $job->insertFields(), __METHOD__ );
170 $dbw->commit();
172 wfProfileOut( __METHOD__ );
173 return $job;
177 * Create the appropriate object to handle a specific job
179 * @param $command String: Job command
180 * @param $title Title: Associated title
181 * @param $params Array: Job parameters
182 * @param $id Int: Job identifier
183 * @return Job
185 static function factory( $command, $title, $params = false, $id = 0 ) {
186 global $wgJobClasses;
187 if( isset( $wgJobClasses[$command] ) ) {
188 $class = $wgJobClasses[$command];
189 return new $class( $title, $params, $id );
191 throw new MWException( "Invalid job command `{$command}`" );
194 static function makeBlob( $params ) {
195 if ( $params !== false ) {
196 return serialize( $params );
197 } else {
198 return '';
202 static function extractBlob( $blob ) {
203 if ( (string)$blob !== '' ) {
204 return unserialize( $blob );
205 } else {
206 return false;
211 * Batch-insert a group of jobs into the queue.
212 * This will be wrapped in a transaction with a forced commit.
214 * This may add duplicate at insert time, but they will be
215 * removed later on, when the first one is popped.
217 * @param $jobs array of Job objects
219 static function batchInsert( $jobs ) {
220 if( !count( $jobs ) ) {
221 return;
223 $dbw = wfGetDB( DB_MASTER );
224 $rows = array();
225 foreach( $jobs as $job ) {
226 $rows[] = $job->insertFields();
227 if ( count( $rows ) >= 50 ) {
228 # Do a small transaction to avoid slave lag
229 $dbw->begin();
230 $dbw->insert( 'job', $rows, __METHOD__, 'IGNORE' );
231 $dbw->commit();
232 $rows = array();
235 if ( $rows ) {
236 $dbw->begin();
237 $dbw->insert( 'job', $rows, __METHOD__, 'IGNORE' );
238 $dbw->commit();
242 /*-------------------------------------------------------------------------
243 * Non-static functions
244 *------------------------------------------------------------------------*/
246 function __construct( $command, $title, $params = false, $id = 0 ) {
247 $this->command = $command;
248 $this->title = $title;
249 $this->params = $params;
250 $this->id = $id;
252 // A bit of premature generalisation
253 // Oh well, the whole class is premature generalisation really
254 $this->removeDuplicates = true;
258 * Insert a single job into the queue.
259 * @return bool true on success
261 function insert() {
262 $fields = $this->insertFields();
264 $dbw = wfGetDB( DB_MASTER );
266 if ( $this->removeDuplicates ) {
267 $res = $dbw->select( 'job', array( '1' ), $fields, __METHOD__ );
268 if ( $dbw->numRows( $res ) ) {
269 return;
272 return $dbw->insert( 'job', $fields, __METHOD__ );
275 protected function insertFields() {
276 $dbw = wfGetDB( DB_MASTER );
277 return array(
278 'job_id' => $dbw->nextSequenceValue( 'job_job_id_seq' ),
279 'job_cmd' => $this->command,
280 'job_namespace' => $this->title->getNamespace(),
281 'job_title' => $this->title->getDBkey(),
282 'job_params' => Job::makeBlob( $this->params )
286 function toString() {
287 $paramString = '';
288 if ( $this->params ) {
289 foreach ( $this->params as $key => $value ) {
290 if ( $paramString != '' ) {
291 $paramString .= ' ';
293 $paramString .= "$key=$value";
297 if ( is_object( $this->title ) ) {
298 $s = "{$this->command} " . $this->title->getPrefixedDBkey();
299 if ( $paramString !== '' ) {
300 $s .= ' ' . $paramString;
302 return $s;
303 } else {
304 return "{$this->command} $paramString";
308 protected function setLastError( $error ) {
309 $this->error = $error;
312 function getLastError() {
313 return $this->error;