[bug 37746] string ids for content model and format.
[lhc/web/wiklou.git] / includes / cache / LinkCache.php
1 <?php
2 /**
3 * Page existence cache.
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 Cache
22 */
23
24 /**
25 * Cache for article titles (prefixed DB keys) and ids linked from one source
26 *
27 * @ingroup Cache
28 */
29 class LinkCache {
30 // Increment $mClassVer whenever old serialized versions of this class
31 // becomes incompatible with the new version.
32 private $mClassVer = 4;
33
34 private $mGoodLinks = array();
35 private $mGoodLinkFields = array();
36 private $mBadLinks = array();
37 private $mForUpdate = false;
38
39 /**
40 * Get an instance of this class
41 *
42 * @return LinkCache
43 */
44 static function &singleton() {
45 static $instance;
46 if ( !isset( $instance ) ) {
47 $instance = new LinkCache;
48 }
49 return $instance;
50 }
51
52 /**
53 * General accessor to get/set whether SELECT FOR UPDATE should be used
54 *
55 * @return bool
56 */
57 public function forUpdate( $update = null ) {
58 return wfSetVar( $this->mForUpdate, $update );
59 }
60
61 /**
62 * @param $title
63 * @return array|int
64 */
65 public function getGoodLinkID( $title ) {
66 if ( array_key_exists( $title, $this->mGoodLinks ) ) {
67 return $this->mGoodLinks[$title];
68 } else {
69 return 0;
70 }
71 }
72
73 /**
74 * Get a field of a title object from cache.
75 * If this link is not good, it will return NULL.
76 * @param $title Title
77 * @param $field String: ('length','redirect','revision','model')
78 * @return mixed
79 */
80 public function getGoodLinkFieldObj( $title, $field ) {
81 $dbkey = $title->getPrefixedDbKey();
82 if ( array_key_exists( $dbkey, $this->mGoodLinkFields ) ) {
83 return $this->mGoodLinkFields[$dbkey][$field];
84 } else {
85 return null;
86 }
87 }
88
89 /**
90 * @param $title
91 * @return bool
92 */
93 public function isBadLink( $title ) {
94 return array_key_exists( $title, $this->mBadLinks );
95 }
96
97 /**
98 * Add a link for the title to the link cache
99 *
100 * @param $id Integer: page's ID
101 * @param $title Title object
102 * @param $len Integer: text's length
103 * @param $redir Integer: whether the page is a redirect
104 * @param $revision Integer: latest revision's ID
105 * @param $model Integer: latest revision's content model ID
106 */
107 public function addGoodLinkObj( $id, $title, $len = -1, $redir = null, $revision = false, $model = false ) {
108 $dbkey = $title->getPrefixedDbKey();
109 $this->mGoodLinks[$dbkey] = intval( $id );
110 $this->mGoodLinkFields[$dbkey] = array(
111 'length' => intval( $len ),
112 'redirect' => intval( $redir ),
113 'revision' => intval( $revision ),
114 'model' => intval( $model ) );
115 }
116
117 /**
118 * Same as above with better interface.
119 * @since 1.19
120 * @param $title Title
121 * @param $row object which has the fields page_id, page_is_redirect,
122 * page_latest and page_content_model
123 */
124 public function addGoodLinkObjFromRow( $title, $row ) {
125 $dbkey = $title->getPrefixedDbKey();
126 $this->mGoodLinks[$dbkey] = intval( $row->page_id );
127 $this->mGoodLinkFields[$dbkey] = array(
128 'length' => intval( $row->page_len ),
129 'redirect' => intval( $row->page_is_redirect ),
130 'revision' => intval( $row->page_latest ),
131 'model' => !empty( $row->page_content_model ) ? strval( $row->page_content_model ) : null,
132 );
133 }
134
135 /**
136 * @param $title Title
137 */
138 public function addBadLinkObj( $title ) {
139 $dbkey = $title->getPrefixedDbKey();
140 if ( !$this->isBadLink( $dbkey ) ) {
141 $this->mBadLinks[$dbkey] = 1;
142 }
143 }
144
145 public function clearBadLink( $title ) {
146 unset( $this->mBadLinks[$title] );
147 }
148
149 /**
150 * @param $title Title
151 */
152 public function clearLink( $title ) {
153 $dbkey = $title->getPrefixedDbKey();
154 unset( $this->mBadLinks[$dbkey] );
155 unset( $this->mGoodLinks[$dbkey] );
156 unset( $this->mGoodLinkFields[$dbkey] );
157 }
158
159 public function getGoodLinks() { return $this->mGoodLinks; }
160 public function getBadLinks() { return array_keys( $this->mBadLinks ); }
161
162 /**
163 * Add a title to the link cache, return the page_id or zero if non-existent
164 *
165 * @param $title String: title to add
166 * @return Integer
167 */
168 public function addLink( $title ) {
169 $nt = Title::newFromDBkey( $title );
170 if( $nt ) {
171 return $this->addLinkObj( $nt );
172 } else {
173 return 0;
174 }
175 }
176
177 /**
178 * Add a title to the link cache, return the page_id or zero if non-existent
179 *
180 * @param $nt Title object to add
181 * @return Integer
182 */
183 public function addLinkObj( $nt ) {
184 global $wgAntiLockFlags, $wgContentHandlerUseDB;
185
186 wfProfileIn( __METHOD__ );
187
188 $key = $nt->getPrefixedDBkey();
189 if ( $this->isBadLink( $key ) || $nt->isExternal() ) {
190 wfProfileOut( __METHOD__ );
191 return 0;
192 }
193 $id = $this->getGoodLinkID( $key );
194 if ( $id != 0 ) {
195 wfProfileOut( __METHOD__ );
196 return $id;
197 }
198
199 if ( $key === '' ) {
200 wfProfileOut( __METHOD__ );
201 return 0;
202 }
203
204 # Some fields heavily used for linking...
205 if ( $this->mForUpdate ) {
206 $db = wfGetDB( DB_MASTER );
207 if ( !( $wgAntiLockFlags & ALF_NO_LINK_LOCK ) ) {
208 $options = array( 'FOR UPDATE' );
209 } else {
210 $options = array();
211 }
212 } else {
213 $db = wfGetDB( DB_SLAVE );
214 $options = array();
215 }
216
217 $f = array( 'page_id', 'page_len', 'page_is_redirect', 'page_latest' );
218 if ( $wgContentHandlerUseDB ) $f[] = 'page_content_model';
219
220 $s = $db->selectRow( 'page', $f,
221 array( 'page_namespace' => $nt->getNamespace(), 'page_title' => $nt->getDBkey() ),
222 __METHOD__, $options );
223 # Set fields...
224 if ( $s !== false ) {
225 $this->addGoodLinkObjFromRow( $nt, $s );
226 $id = intval( $s->page_id );
227 } else {
228 $this->addBadLinkObj( $nt );
229 $id = 0;
230 }
231
232 wfProfileOut( __METHOD__ );
233 return $id;
234 }
235
236 /**
237 * Clears cache
238 */
239 public function clear() {
240 $this->mGoodLinks = array();
241 $this->mGoodLinkFields = array();
242 $this->mBadLinks = array();
243 }
244 }