Merge "Fixing dump tests for non-wikitext in NS_MAIN."
[lhc/web/wiklou.git] / includes / job / JobQueueGroup.php
1 <?php
2 /**
3 * Job queue base code.
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @author Aaron Schulz
22 */
23
24 /**
25 * Class to handle enqueueing of background jobs
26 *
27 * @ingroup JobQueue
28 * @since 1.20
29 */
30 class JobQueueGroup {
31 /** @var Array */
32 protected static $instances = array();
33
34 protected $wiki; // string; wiki ID
35
36 const TYPE_DEFAULT = 1; // integer; job not in $wgJobTypesExcludedFromDefaultQueue
37 const TYPE_ANY = 2; // integer; any job
38
39 /**
40 * @param $wiki string Wiki ID
41 */
42 protected function __construct( $wiki ) {
43 $this->wiki = $wiki;
44 }
45
46 /**
47 * @param $wiki string Wiki ID
48 * @return JobQueueGroup
49 */
50 public static function singleton( $wiki = false ) {
51 $wiki = ( $wiki === false ) ? wfWikiID() : $wiki;
52 if ( !isset( self::$instances[$wiki] ) ) {
53 self::$instances[$wiki] = new self( $wiki );
54 }
55 return self::$instances[$wiki];
56 }
57
58 /**
59 * @param $type string
60 * @return JobQueue Job queue object for a given queue type
61 */
62 public function get( $type ) {
63 global $wgJobTypeConf;
64
65 $conf = false;
66 if ( isset( $wgJobTypeConf[$type] ) ) {
67 $conf = $wgJobTypeConf[$type];
68 } else {
69 $conf = $wgJobTypeConf['default'];
70 }
71
72 return JobQueue::factory( array(
73 'class' => $conf['class'],
74 'wiki' => $this->wiki,
75 'type' => $type,
76 ) );
77 }
78
79 /**
80 * Insert jobs into the respective queues of with the belong
81 *
82 * @param $jobs Job|array A single Job or a list of Jobs
83 * @return bool
84 */
85 public function push( $jobs ) {
86 $jobs = (array)$jobs;
87
88 $jobsByType = array(); // (job type => list of jobs)
89 foreach ( $jobs as $job ) {
90 $jobsByType[$job->getType()][] = $job;
91 }
92
93 $ok = true;
94 foreach ( $jobsByType as $type => $jobs ) {
95 if ( !$this->get( $type )->batchPush( $jobs ) ) {
96 $ok = false;
97 }
98 }
99
100 return $ok;
101 }
102
103 /**
104 * Pop a job off one of the job queues
105 *
106 * @param $type integer JobQueueGroup::TYPE_* constant
107 * @return Job|bool Returns false on failure
108 */
109 public function pop( $type = self::TYPE_DEFAULT ) {
110 $types = ( $type == self::TYPE_DEFAULT )
111 ? $this->getDefaultQueueTypes()
112 : $this->getQueueTypes();
113 shuffle( $types ); // avoid starvation
114
115 foreach ( $types as $type ) { // for each queue...
116 $job = $this->get( $type )->pop();
117 if ( $job ) {
118 return $job; // found
119 }
120 }
121
122 return false; // no jobs found
123 }
124
125 /**
126 * Acknowledge that a job was completed
127 *
128 * @param $job Job
129 * @return bool
130 */
131 public function ack( Job $job ) {
132 return $this->get( $job->getType() )->ack( $job );
133 }
134
135 /**
136 * Get the list of queue types
137 *
138 * @return array List of strings
139 */
140 public function getQueueTypes() {
141 global $wgJobClasses;
142
143 return array_keys( $wgJobClasses );
144 }
145
146 /**
147 * Get the list of default queue types
148 *
149 * @return array List of strings
150 */
151 public function getDefaultQueueTypes() {
152 global $wgJobTypesExcludedFromDefaultQueue;
153
154 return array_diff( $this->getQueueTypes(), $wgJobTypesExcludedFromDefaultQueue );
155 }
156 }