3 * Cache for article titles (prefixed DB keys) and ids linked from one source
8 // Increment $mClassVer whenever old serialized versions of this class
9 // becomes incompatible with the new version.
10 /* private */ var $mClassVer = 4;
12 /* private */ var $mGoodLinks, $mBadLinks;
13 /* private */ var $mForUpdate;
16 * Get an instance of this class
18 static function &singleton() {
20 if ( !isset( $instance ) ) {
21 $instance = new LinkCache
;
26 function __construct() {
27 $this->mForUpdate
= false;
28 $this->mGoodLinks
= array();
29 $this->mGoodLinkFields
= array();
30 $this->mBadLinks
= array();
34 * General accessor to get/set whether SELECT FOR UPDATE should be used
36 public function forUpdate( $update = NULL ) {
37 return wfSetVar( $this->mForUpdate
, $update );
40 public function getGoodLinkID( $title ) {
41 if ( array_key_exists( $title, $this->mGoodLinks
) ) {
42 return $this->mGoodLinks
[$title];
49 * Get a field of a title object from cache.
50 * If this link is not good, it will return NULL.
52 * @param string $field ('length','redirect')
55 public function getGoodLinkFieldObj( $title, $field ) {
56 $dbkey = $title->getPrefixedDbKey();
57 if ( array_key_exists( $dbkey, $this->mGoodLinkFields
) ) {
58 return $this->mGoodLinkFields
[$dbkey][$field];
64 public function isBadLink( $title ) {
65 return array_key_exists( $title, $this->mBadLinks
);
69 * Add a link for the title to the link cache
75 public function addGoodLinkObj( $id, $title, $len = -1, $redir = NULL ) {
76 $dbkey = $title->getPrefixedDbKey();
77 $this->mGoodLinks
[$dbkey] = $id;
78 $this->mGoodLinkFields
[$dbkey] = array( 'length' => $len, 'redirect' => $redir );
81 public function addBadLinkObj( $title ) {
82 $dbkey = $title->getPrefixedDbKey();
83 if ( !$this->isBadLink( $dbkey ) ) {
84 $this->mBadLinks
[$dbkey] = 1;
88 public function clearBadLink( $title ) {
89 unset( $this->mBadLinks
[$title] );
92 public function clearLink( $title ) {
93 $dbkey = $title->getPrefixedDbKey();
94 if( isset($this->mBadLinks
[$dbkey]) ) {
95 unset($this->mBadLinks
[$dbkey]);
97 if( isset($this->mGoodLinks
[$dbkey]) ) {
98 unset($this->mGoodLinks
[$dbkey]);
100 if( isset($this->mGoodLinkFields
[$dbkey]) ) {
101 unset($this->mGoodLinkFields
[$dbkey]);
105 public function getGoodLinks() { return $this->mGoodLinks
; }
106 public function getBadLinks() { return array_keys( $this->mBadLinks
); }
109 * Add a title to the link cache, return the page_id or zero if non-existent
110 * @param $title String: title to add
111 * @param $len int, page size
112 * @param $redir bool, is redirect?
115 public function addLink( $title, $len = -1, $redir = NULL ) {
116 $nt = Title
::newFromDBkey( $title );
118 return $this->addLinkObj( $nt, $len, $redir );
125 * Add a title to the link cache, return the page_id or zero if non-existent
126 * @param $nt Title to add.
127 * @param $len int, page size
128 * @param $redir bool, is redirect?
131 public function addLinkObj( &$nt, $len = -1, $redirect = NULL ) {
132 global $wgAntiLockFlags, $wgProfiler;
133 wfProfileIn( __METHOD__
);
135 $key = $nt->getPrefixedDBkey();
136 if ( $this->isBadLink( $key ) ) {
137 wfProfileOut( __METHOD__
);
140 $id = $this->getGoodLinkID( $key );
142 wfProfileOut( __METHOD__
);
147 wfProfileOut( __METHOD__
);
151 # Some fields heavily used for linking...
152 if ( $this->mForUpdate
) {
153 $db = wfGetDB( DB_MASTER
);
154 if ( !( $wgAntiLockFlags & ALF_NO_LINK_LOCK
) ) {
155 $options = array( 'FOR UPDATE' );
160 $db = wfGetDB( DB_SLAVE
);
164 $s = $db->selectRow( 'page',
165 array( 'page_id', 'page_len', 'page_is_redirect' ),
166 array( 'page_namespace' => $nt->getNamespace(), 'page_title' => $nt->getDBkey() ),
167 __METHOD__
, $options );
169 if ( $s !== false ) {
172 $redirect = $s->page_is_redirect
;
179 $this->addBadLinkObj( $nt );
181 $this->addGoodLinkObj( $id, $nt, $len, $redirect );
183 wfProfileOut( __METHOD__
);
190 public function clear() {
191 $this->mGoodLinks
= array();
192 $this->mGoodLinkFields
= array();
193 $this->mBadLinks
= array();