MediaWiki REL1_31
LinkCache.php
Go to the documentation of this file.
1<?php
28
34class LinkCache {
36 private $mGoodLinks;
38 private $mBadLinks;
40 private $wanCache;
41
43 private $mForUpdate = false;
44
47
52 const MAX_SIZE = 10000;
53
54 public function __construct( TitleFormatter $titleFormatter, WANObjectCache $cache ) {
55 $this->mGoodLinks = new HashBagOStuff( [ 'maxKeys' => self::MAX_SIZE ] );
56 $this->mBadLinks = new HashBagOStuff( [ 'maxKeys' => self::MAX_SIZE ] );
57 $this->wanCache = $cache;
58 $this->titleFormatter = $titleFormatter;
59 }
60
67 public static function singleton() {
68 return MediaWikiServices::getInstance()->getLinkCache();
69 }
70
81 public function forUpdate( $update = null ) {
82 return wfSetVar( $this->mForUpdate, $update );
83 }
84
89 public function getGoodLinkID( $title ) {
90 $info = $this->mGoodLinks->get( $title );
91 if ( !$info ) {
92 return 0;
93 }
94 return $info['id'];
95 }
96
104 public function getGoodLinkFieldObj( LinkTarget $target, $field ) {
105 $dbkey = $this->titleFormatter->getPrefixedDBkey( $target );
106 $info = $this->mGoodLinks->get( $dbkey );
107 if ( !$info ) {
108 return null;
109 }
110 return $info[$field];
111 }
112
117 public function isBadLink( $title ) {
118 // Use get() to ensure it records as used for LRU.
119 return $this->mBadLinks->get( $title ) !== false;
120 }
121
133 public function addGoodLinkObj( $id, LinkTarget $target, $len = -1, $redir = null,
134 $revision = 0, $model = null, $lang = null
135 ) {
136 $dbkey = $this->titleFormatter->getPrefixedDBkey( $target );
137 $this->mGoodLinks->set( $dbkey, [
138 'id' => (int)$id,
139 'length' => (int)$len,
140 'redirect' => (int)$redir,
141 'revision' => (int)$revision,
142 'model' => $model ? (string)$model : null,
143 'lang' => $lang ? (string)$lang : null,
144 ] );
145 }
146
154 public function addGoodLinkObjFromRow( LinkTarget $target, $row ) {
155 $dbkey = $this->titleFormatter->getPrefixedDBkey( $target );
156 $this->mGoodLinks->set( $dbkey, [
157 'id' => intval( $row->page_id ),
158 'length' => intval( $row->page_len ),
159 'redirect' => intval( $row->page_is_redirect ),
160 'revision' => intval( $row->page_latest ),
161 'model' => !empty( $row->page_content_model ) ? strval( $row->page_content_model ) : null,
162 'lang' => !empty( $row->page_lang ) ? strval( $row->page_lang ) : null,
163 ] );
164 }
165
169 public function addBadLinkObj( LinkTarget $target ) {
170 $dbkey = $this->titleFormatter->getPrefixedDBkey( $target );
171 if ( !$this->isBadLink( $dbkey ) ) {
172 $this->mBadLinks->set( $dbkey, 1 );
173 }
174 }
175
179 public function clearBadLink( $title ) {
180 $this->mBadLinks->delete( $title );
181 }
182
186 public function clearLink( LinkTarget $target ) {
187 $dbkey = $this->titleFormatter->getPrefixedDBkey( $target );
188 $this->mBadLinks->delete( $dbkey );
189 $this->mGoodLinks->delete( $dbkey );
190 }
191
199 public function addLink( $title ) {
200 $nt = Title::newFromDBkey( $title );
201 if ( !$nt ) {
202 return 0;
203 }
204 return $this->addLinkObj( $nt );
205 }
206
213 public static function getSelectFields() {
215
216 $fields = [ 'page_id', 'page_len', 'page_is_redirect', 'page_latest' ];
218 $fields[] = 'page_content_model';
219 }
220 if ( $wgPageLanguageUseDB ) {
221 $fields[] = 'page_lang';
222 }
223
224 return $fields;
225 }
226
233 public function addLinkObj( LinkTarget $nt ) {
234 $key = $this->titleFormatter->getPrefixedDBkey( $nt );
235 if ( $this->isBadLink( $key ) || $nt->isExternal()
236 || $nt->inNamespace( NS_SPECIAL )
237 ) {
238 return 0;
239 }
240 $id = $this->getGoodLinkID( $key );
241 if ( $id != 0 ) {
242 return $id;
243 }
244
245 if ( $key === '' ) {
246 return 0;
247 }
248
249 // Cache template/file pages as they are less often viewed but heavily used
250 if ( $this->mForUpdate ) {
251 $row = $this->fetchPageRow( wfGetDB( DB_MASTER ), $nt );
252 } elseif ( $this->isCacheable( $nt ) ) {
253 // These pages are often transcluded heavily, so cache them
254 $cache = $this->wanCache;
255 $row = $cache->getWithSetCallback(
256 $cache->makeKey( 'page', $nt->getNamespace(), sha1( $nt->getDBkey() ) ),
257 $cache::TTL_DAY,
258 function ( $curValue, &$ttl, array &$setOpts ) use ( $cache, $nt ) {
260 $setOpts += Database::getCacheSetOptions( $dbr );
261
262 $row = $this->fetchPageRow( $dbr, $nt );
263 $mtime = $row ? wfTimestamp( TS_UNIX, $row->page_touched ) : false;
264 $ttl = $cache->adaptiveTTL( $mtime, $ttl );
265
266 return $row;
267 }
268 );
269 } else {
270 $row = $this->fetchPageRow( wfGetDB( DB_REPLICA ), $nt );
271 }
272
273 if ( $row ) {
274 $this->addGoodLinkObjFromRow( $nt, $row );
275 $id = intval( $row->page_id );
276 } else {
277 $this->addBadLinkObj( $nt );
278 $id = 0;
279 }
280
281 return $id;
282 }
283
291 if ( $this->isCacheable( $t ) ) {
292 return [ $cache->makeKey( 'page', $t->getNamespace(), sha1( $t->getDBkey() ) ) ];
293 }
294
295 return [];
296 }
297
298 private function isCacheable( LinkTarget $title ) {
299 return ( $title->inNamespace( NS_TEMPLATE ) || $title->inNamespace( NS_FILE ) );
300 }
301
302 private function fetchPageRow( IDatabase $db, LinkTarget $nt ) {
303 $fields = self::getSelectFields();
304 if ( $this->isCacheable( $nt ) ) {
305 $fields[] = 'page_touched';
306 }
307
308 return $db->selectRow(
309 'page',
310 $fields,
311 [ 'page_namespace' => $nt->getNamespace(), 'page_title' => $nt->getDBkey() ],
312 __METHOD__
313 );
314 }
315
322 public function invalidateTitle( LinkTarget $title ) {
323 if ( $this->isCacheable( $title ) ) {
324 $cache = ObjectCache::getMainWANInstance();
325 $cache->delete(
326 $cache->makeKey( 'page', $title->getNamespace(), sha1( $title->getDBkey() ) )
327 );
328 }
329 }
330
334 public function clear() {
335 $this->mGoodLinks->clear();
336 $this->mBadLinks->clear();
337 }
338}
bool $wgPageLanguageUseDB
Enable page language feature Allows setting page language in database.
$wgContentHandlerUseDB
Set to false to disable use of the database fields introduced by the ContentHandler facility.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfSetVar(&$dest, $source, $force=false)
Sets dest to source and returns the original value of dest If source is NULL, it just returns the val...
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Simple store for keeping values in an associative array for the current process.
Cache for article titles (prefixed DB keys) and ids linked from one source.
Definition LinkCache.php:34
fetchPageRow(IDatabase $db, LinkTarget $nt)
HashBagOStuff $mGoodLinks
Definition LinkCache.php:36
addLinkObj(LinkTarget $nt)
Add a title to the link cache, return the page_id or zero if non-existent.
TitleFormatter $titleFormatter
Definition LinkCache.php:46
__construct(TitleFormatter $titleFormatter, WANObjectCache $cache)
Definition LinkCache.php:54
clear()
Clears cache.
addLink( $title)
Add a title to the link cache, return the page_id or zero if non-existent.
addGoodLinkObj( $id, LinkTarget $target, $len=-1, $redir=null, $revision=0, $model=null, $lang=null)
Add a link for the title to the link cache.
getMutableCacheKeys(WANObjectCache $cache, TitleValue $t)
getGoodLinkID( $title)
Definition LinkCache.php:89
getGoodLinkFieldObj(LinkTarget $target, $field)
Get a field of a title object from cache.
forUpdate( $update=null)
General accessor to get/set whether the master DB should be used.
Definition LinkCache.php:81
invalidateTitle(LinkTarget $title)
Purge the link cache for a title.
clearBadLink( $title)
HashBagOStuff $mBadLinks
Definition LinkCache.php:38
bool $mForUpdate
Definition LinkCache.php:43
isCacheable(LinkTarget $title)
addGoodLinkObjFromRow(LinkTarget $target, $row)
Same as above with better interface.
WANObjectCache $wanCache
Definition LinkCache.php:40
static singleton()
Get an instance of this class.
Definition LinkCache.php:67
addBadLinkObj(LinkTarget $target)
const MAX_SIZE
How many Titles to store.
Definition LinkCache.php:52
static getSelectFields()
Fields that LinkCache needs to select.
clearLink(LinkTarget $target)
isBadLink( $title)
MediaWikiServices is the service locator for the application scope of MediaWiki.
Represents a page (or page fragment) title within MediaWiki.
Multi-datacenter aware caching interface.
Relational database abstraction object.
Definition Database.php:48
when a variable name is used in a function
Definition design.txt:94
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
Definition hooks.txt:181
const NS_FILE
Definition Defines.php:80
const NS_TEMPLATE
Definition Defines.php:84
const NS_SPECIAL
Definition Defines.php:63
A title formatter service for MediaWiki.
Basic database interface for live and lazy-loaded relation database handles.
Definition IDatabase.php:38
selectRow( $table, $vars, $conds, $fname=__METHOD__, $options=[], $join_conds=[])
Single row SELECT wrapper.
$cache
Definition mcc.php:33
const DB_REPLICA
Definition defines.php:25
const DB_MASTER
Definition defines.php:29
if(!isset( $args[0])) $lang