Remove unused 'XMPGetInfo' and 'XMPGetResults' hooks
[lhc/web/wiklou.git] / includes / jobqueue / jobs / RefreshLinksJob.php
1 <?php
2 /**
3 * Job to update link tables for pages
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 * @ingroup JobQueue
22 */
23
24 /**
25 * Job to update link tables for pages
26 *
27 * This job comes in a few variants:
28 * - a) Recursive jobs to update links for backlink pages for a given title.
29 * These jobs have (recursive:true,table:<table>) set.
30 * - b) Jobs to update links for a set of pages (the job title is ignored).
31 * These jobs have (pages:(<page ID>:(<namespace>,<title>),...) set.
32 * - c) Jobs to update links for a single page (the job title)
33 * These jobs need no extra fields set.
34 *
35 * @ingroup JobQueue
36 */
37 class RefreshLinksJob extends Job {
38 const PARSE_THRESHOLD_SEC = 1.0;
39
40 function __construct( $title, $params = '' ) {
41 parent::__construct( 'refreshLinks', $title, $params );
42 // A separate type is used just for cascade-protected backlinks
43 if ( !empty( $this->params['prioritize'] ) ) {
44 $this->command .= 'Prioritized';
45 }
46 // Base backlink update jobs and per-title update jobs can be de-duplicated.
47 // If template A changes twice before any jobs run, a clean queue will have:
48 // (A base, A base)
49 // The second job is ignored by the queue on insertion.
50 // Suppose, many pages use template A, and that template itself uses template B.
51 // An edit to both will first create two base jobs. A clean FIFO queue will have:
52 // (A base, B base)
53 // When these jobs run, the queue will have per-title and remnant partition jobs:
54 // (titleX,titleY,titleZ,...,A remnant,titleM,titleN,titleO,...,B remnant)
55 // Some these jobs will be the same, and will automatically be ignored by
56 // the queue upon insertion. Some title jobs will run before the duplicate is
57 // inserted, so the work will still be done twice in those cases. More titles
58 // can be de-duplicated as the remnant jobs continue to be broken down. This
59 // works best when $wgUpdateRowsPerJob, and either the pages have few backlinks
60 // and/or the backlink sets for pages A and B are almost identical.
61 $this->removeDuplicates = !isset( $params['range'] )
62 && ( !isset( $params['pages'] ) || count( $params['pages'] ) == 1 );
63 }
64
65 function run() {
66 global $wgUpdateRowsPerJob;
67
68 // Job to update all (or a range of) backlink pages for a page
69 if ( !empty( $this->params['recursive'] ) ) {
70 // Carry over information for de-duplication
71 $extraParams = $this->getRootJobParams();
72 // Avoid slave lag when fetching templates.
73 // When the outermost job is run, we know that the caller that enqueued it must have
74 // committed the relevant changes to the DB by now. At that point, record the master
75 // position and pass it along as the job recursively breaks into smaller range jobs.
76 // Hopefully, when leaf jobs are popped, the slaves will have reached that position.
77 if ( isset( $this->params['masterPos'] ) ) {
78 $extraParams['masterPos'] = $this->params['masterPos'];
79 } elseif ( wfGetLB()->getServerCount() > 1 ) {
80 $extraParams['masterPos'] = wfGetLB()->getMasterPos();
81 } else {
82 $extraParams['masterPos'] = false;
83 }
84 // Convert this into no more than $wgUpdateRowsPerJob RefreshLinks per-title
85 // jobs and possibly a recursive RefreshLinks job for the rest of the backlinks
86 $jobs = BacklinkJobUtils::partitionBacklinkJob(
87 $this,
88 $wgUpdateRowsPerJob,
89 1, // job-per-title
90 array( 'params' => $extraParams )
91 );
92 JobQueueGroup::singleton()->push( $jobs );
93 // Job to update link tables for a set of titles
94 } elseif ( isset( $this->params['pages'] ) ) {
95 foreach ( $this->params['pages'] as $pageId => $nsAndKey ) {
96 list( $ns, $dbKey ) = $nsAndKey;
97 $this->runForTitle( Title::makeTitleSafe( $ns, $dbKey ) );
98 }
99 // Job to update link tables for a given title
100 } else {
101 $this->runForTitle( $this->title );
102 }
103
104 return true;
105 }
106
107 /**
108 * @param Title $title
109 * @return bool
110 */
111 protected function runForTitle( Title $title = null ) {
112 $linkCache = LinkCache::singleton();
113 $linkCache->clear();
114
115 if ( is_null( $title ) ) {
116 $this->setLastError( "refreshLinks: Invalid title" );
117 return false;
118 }
119
120 // Wait for the DB of the current/next slave DB handle to catch up to the master.
121 // This way, we get the correct page_latest for templates or files that just changed
122 // milliseconds ago, having triggered this job to begin with.
123 if ( isset( $this->params['masterPos'] ) && $this->params['masterPos'] !== false ) {
124 wfGetLB()->waitFor( $this->params['masterPos'] );
125 }
126
127 $page = WikiPage::factory( $title );
128
129 // Fetch the current revision...
130 $revision = Revision::newFromTitle( $title, false, Revision::READ_NORMAL );
131 if ( !$revision ) {
132 $this->setLastError( "refreshLinks: Article not found {$title->getPrefixedDBkey()}" );
133 return false; // XXX: what if it was just deleted?
134 }
135 $content = $revision->getContent( Revision::RAW );
136 if ( !$content ) {
137 // If there is no content, pretend the content is empty
138 $content = $revision->getContentHandler()->makeEmptyContent();
139 }
140
141 $parserOutput = false;
142 $parserOptions = $page->makeParserOptions( 'canonical' );
143 // If page_touched changed after this root job (with a good slave lag skew factor),
144 // then it is likely that any views of the pages already resulted in re-parses which
145 // are now in cache. This can be reused to avoid expensive parsing in some cases.
146 if ( isset( $this->params['rootJobTimestamp'] ) ) {
147 $skewedTimestamp = wfTimestamp( TS_UNIX, $this->params['rootJobTimestamp'] ) + 5;
148 if ( $page->getLinksTimestamp() > wfTimestamp( TS_MW, $skewedTimestamp ) ) {
149 // Something already updated the backlinks since this job was made
150 return true;
151 }
152 if ( $page->getTouched() > wfTimestamp( TS_MW, $skewedTimestamp ) ) {
153 $parserOutput = ParserCache::singleton()->getDirty( $page, $parserOptions );
154 if ( $parserOutput && $parserOutput->getCacheTime() <= $skewedTimestamp ) {
155 $parserOutput = false; // too stale
156 }
157 }
158 }
159 // Fetch the current revision and parse it if necessary...
160 if ( $parserOutput == false ) {
161 $start = microtime( true );
162 // Revision ID must be passed to the parser output to get revision variables correct
163 $parserOutput = $content->getParserOutput(
164 $title, $revision->getId(), $parserOptions, false );
165 $ellapsed = microtime( true ) - $start;
166 // If it took a long time to render, then save this back to the cache to avoid
167 // wasted CPU by other apaches or job runners. We don't want to always save to
168 // cache as this can cause high cache I/O and LRU churn when a template changes.
169 if ( $ellapsed >= self::PARSE_THRESHOLD_SEC
170 && $page->isParserCacheUsed( $parserOptions, $revision->getId() )
171 && $parserOutput->isCacheable()
172 ) {
173 $ctime = wfTimestamp( TS_MW, (int)$start ); // cache time
174 ParserCache::singleton()->save(
175 $parserOutput, $page, $parserOptions, $ctime, $revision->getId()
176 );
177 }
178 }
179
180 $updates = $content->getSecondaryDataUpdates( $title, null, false, $parserOutput );
181 DataUpdate::runUpdates( $updates );
182
183 InfoAction::invalidateCache( $title );
184
185 return true;
186 }
187
188 public function getDeduplicationInfo() {
189 $info = parent::getDeduplicationInfo();
190 if ( is_array( $info['params'] ) ) {
191 // Don't let highly unique "masterPos" values ruin duplicate detection
192 unset( $info['params']['masterPos'] );
193 // For per-pages jobs, the job title is that of the template that changed
194 // (or similar), so remove that since it ruins duplicate detection
195 if ( isset( $info['pages'] ) ) {
196 unset( $info['namespace'] );
197 unset( $info['title'] );
198 }
199 }
200
201 return $info;
202 }
203
204 public function workItemCount() {
205 return isset( $this->params['pages'] ) ? count( $this->params['pages'] ) : 1;
206 }
207 }