* fixed ipblocks.ipb_by_text field, removed default blank not null (fixed install...
[mediawiki.git] / includes / objectcache / SqlBagOStuff.php
blob77374c75e26c809781e050889112aa0f23f82d50
1 <?php
3 /**
4 * Class to store objects in the database
6 * @ingroup Cache
7 */
8 class SqlBagOStuff extends BagOStuff {
10 /**
11 * @var LoadBalancer
13 var $lb;
15 /**
16 * @var DatabaseBase
18 var $db;
19 var $serverInfo;
20 var $lastExpireAll = 0;
21 var $purgePeriod = 100;
22 var $shards = 1;
23 var $tableName = 'objectcache';
25 /**
26 * Constructor. Parameters are:
27 * - server: A server info structure in the format required by each
28 * element in $wgDBServers.
30 * - purgePeriod: The average number of object cache requests in between
31 * garbage collection operations, where expired entries
32 * are removed from the database. Or in other words, the
33 * reciprocal of the probability of purging on any given
34 * request. If this is set to zero, purging will never be
35 * done.
37 * - tableName: The table name to use, default is "objectcache".
39 * - shards: The number of tables to use for data storage. If this is
40 * more than 1, table names will be formed in the style
41 * objectcacheNNN where NNN is the shard index, between 0 and
42 * shards-1. The number of digits will be the minimum number
43 * required to hold the largest shard index. Data will be
44 * distributed across all tables by key hash. This is for
45 * MySQL bugs 61735 and 61736.
47 * @param $params array
49 public function __construct( $params ) {
50 if ( isset( $params['server'] ) ) {
51 $this->serverInfo = $params['server'];
52 $this->serverInfo['load'] = 1;
54 if ( isset( $params['purgePeriod'] ) ) {
55 $this->purgePeriod = intval( $params['purgePeriod'] );
57 if ( isset( $params['tableName'] ) ) {
58 $this->tableName = $params['tableName'];
60 if ( isset( $params['shards'] ) ) {
61 $this->shards = intval( $params['shards'] );
65 /**
66 * @return DatabaseBase
68 protected function getDB() {
69 if ( !isset( $this->db ) ) {
70 # If server connection info was given, use that
71 if ( $this->serverInfo ) {
72 $this->lb = new LoadBalancer( array(
73 'servers' => array( $this->serverInfo ) ) );
74 $this->db = $this->lb->getConnection( DB_MASTER );
75 $this->db->clearFlag( DBO_TRX );
76 } else {
77 # We must keep a separate connection to MySQL in order to avoid deadlocks
78 # However, SQLite has an opposite behaviour.
79 # @todo Investigate behaviour for other databases
80 if ( wfGetDB( DB_MASTER )->getType() == 'sqlite' ) {
81 $this->db = wfGetDB( DB_MASTER );
82 } else {
83 $this->lb = wfGetLBFactory()->newMainLB();
84 $this->db = $this->lb->getConnection( DB_MASTER );
85 $this->db->clearFlag( DBO_TRX );
90 return $this->db;
93 /**
94 * Get the table name for a given key
96 protected function getTableByKey( $key ) {
97 if ( $this->shards > 1 ) {
98 $hash = hexdec( substr( md5( $key ), 0, 8 ) ) & 0x7fffffff;
99 return $this->getTableByShard( $hash % $this->shards );
100 } else {
101 return $this->tableName;
106 * Get the table name for a given shard index
108 protected function getTableByShard( $index ) {
109 if ( $this->shards > 1 ) {
110 $decimals = strlen( $this->shards - 1 );
111 return $this->tableName .
112 sprintf( "%0{$decimals}d", $index );
113 } else {
114 return $this->tableName;
118 public function get( $key ) {
119 # expire old entries if any
120 $this->garbageCollect();
121 $db = $this->getDB();
122 $tableName = $this->getTableByKey( $key );
123 $row = $db->selectRow( $tableName, array( 'value', 'exptime' ),
124 array( 'keyname' => $key ), __METHOD__ );
126 if ( !$row ) {
127 $this->debug( 'get: no matching rows' );
128 return false;
131 $this->debug( "get: retrieved data; expiry time is " . $row->exptime );
133 if ( $this->isExpired( $row->exptime ) ) {
134 $this->debug( "get: key has expired, deleting" );
135 try {
136 $db->begin();
137 # Put the expiry time in the WHERE condition to avoid deleting a
138 # newly-inserted value
139 $db->delete( $tableName,
140 array(
141 'keyname' => $key,
142 'exptime' => $row->exptime
143 ), __METHOD__ );
144 $db->commit();
145 } catch ( DBQueryError $e ) {
146 $this->handleWriteError( $e );
149 return false;
152 return $this->unserialize( $db->decodeBlob( $row->value ) );
155 public function set( $key, $value, $exptime = 0 ) {
156 $db = $this->getDB();
157 $exptime = intval( $exptime );
159 if ( $exptime < 0 ) {
160 $exptime = 0;
163 if ( $exptime == 0 ) {
164 $encExpiry = $this->getMaxDateTime();
165 } else {
166 if ( $exptime < 3.16e8 ) { # ~10 years
167 $exptime += time();
170 $encExpiry = $db->timestamp( $exptime );
172 try {
173 $db->begin();
174 // (bug 24425) use a replace if the db supports it instead of
175 // delete/insert to avoid clashes with conflicting keynames
176 $db->replace(
177 $this->getTableByKey( $key ),
178 array( 'keyname' ),
179 array(
180 'keyname' => $key,
181 'value' => $db->encodeBlob( $this->serialize( $value ) ),
182 'exptime' => $encExpiry
183 ), __METHOD__ );
184 $db->commit();
185 } catch ( DBQueryError $e ) {
186 $this->handleWriteError( $e );
188 return false;
191 return true;
194 public function delete( $key, $time = 0 ) {
195 $db = $this->getDB();
197 try {
198 $db->begin();
199 $db->delete(
200 $this->getTableByKey( $key ),
201 array( 'keyname' => $key ),
202 __METHOD__ );
203 $db->commit();
204 } catch ( DBQueryError $e ) {
205 $this->handleWriteError( $e );
207 return false;
210 return true;
213 public function incr( $key, $step = 1 ) {
214 $db = $this->getDB();
215 $tableName = $this->getTableByKey( $key );
216 $step = intval( $step );
218 try {
219 $db->begin();
220 $row = $db->selectRow(
221 $tableName,
222 array( 'value', 'exptime' ),
223 array( 'keyname' => $key ),
224 __METHOD__,
225 array( 'FOR UPDATE' ) );
226 if ( $row === false ) {
227 // Missing
228 $db->commit();
230 return null;
232 $db->delete( $tableName, array( 'keyname' => $key ), __METHOD__ );
233 if ( $this->isExpired( $row->exptime ) ) {
234 // Expired, do not reinsert
235 $db->commit();
237 return null;
240 $oldValue = intval( $this->unserialize( $db->decodeBlob( $row->value ) ) );
241 $newValue = $oldValue + $step;
242 $db->insert( $tableName,
243 array(
244 'keyname' => $key,
245 'value' => $db->encodeBlob( $this->serialize( $newValue ) ),
246 'exptime' => $row->exptime
247 ), __METHOD__, 'IGNORE' );
249 if ( $db->affectedRows() == 0 ) {
250 // Race condition. See bug 28611
251 $newValue = null;
253 $db->commit();
254 } catch ( DBQueryError $e ) {
255 $this->handleWriteError( $e );
257 return null;
260 return $newValue;
263 public function keys() {
264 $db = $this->getDB();
265 $result = array();
267 for ( $i = 0; $i < $this->shards; $i++ ) {
268 $res = $db->select( $this->getTableByShard( $i ),
269 array( 'keyname' ), false, __METHOD__ );
270 foreach ( $res as $row ) {
271 $result[] = $row->keyname;
275 return $result;
278 protected function isExpired( $exptime ) {
279 return $exptime != $this->getMaxDateTime() && wfTimestamp( TS_UNIX, $exptime ) < time();
282 protected function getMaxDateTime() {
283 if ( time() > 0x7fffffff ) {
284 return $this->getDB()->timestamp( 1 << 62 );
285 } else {
286 return $this->getDB()->timestamp( 0x7fffffff );
290 protected function garbageCollect() {
291 if ( !$this->purgePeriod ) {
292 // Disabled
293 return;
295 // Only purge on one in every $this->purgePeriod requests.
296 if ( $this->purgePeriod !== 1 && mt_rand( 0, $this->purgePeriod - 1 ) ) {
297 return;
299 $now = time();
300 // Avoid repeating the delete within a few seconds
301 if ( $now > ( $this->lastExpireAll + 1 ) ) {
302 $this->lastExpireAll = $now;
303 $this->expireAll();
307 public function expireAll() {
308 $this->deleteObjectsExpiringBefore( wfTimestampNow() );
312 * Delete objects from the database which expire before a certain date.
314 public function deleteObjectsExpiringBefore( $timestamp ) {
315 $db = $this->getDB();
316 $dbTimestamp = $db->timestamp( $timestamp );
318 try {
319 for ( $i = 0; $i < $this->shards; $i++ ) {
320 $db->begin();
321 $db->delete(
322 $this->getTableByShard( $i ),
323 array( 'exptime < ' . $db->addQuotes( $dbTimestamp ) ),
324 __METHOD__ );
325 $db->commit();
327 } catch ( DBQueryError $e ) {
328 $this->handleWriteError( $e );
330 return true;
333 public function deleteAll() {
334 $db = $this->getDB();
336 try {
337 for ( $i = 0; $i < $this->shards; $i++ ) {
338 $db->begin();
339 $db->delete( $this->getTableByShard( $i ), '*', __METHOD__ );
340 $db->commit();
342 } catch ( DBQueryError $e ) {
343 $this->handleWriteError( $e );
348 * Serialize an object and, if possible, compress the representation.
349 * On typical message and page data, this can provide a 3X decrease
350 * in storage requirements.
352 * @param $data mixed
353 * @return string
355 protected function serialize( &$data ) {
356 $serial = serialize( $data );
358 if ( function_exists( 'gzdeflate' ) ) {
359 return gzdeflate( $serial );
360 } else {
361 return $serial;
366 * Unserialize and, if necessary, decompress an object.
367 * @param $serial string
368 * @return mixed
370 protected function unserialize( $serial ) {
371 if ( function_exists( 'gzinflate' ) ) {
372 wfSuppressWarnings();
373 $decomp = gzinflate( $serial );
374 wfRestoreWarnings();
376 if ( false !== $decomp ) {
377 $serial = $decomp;
381 $ret = unserialize( $serial );
383 return $ret;
387 * Handle a DBQueryError which occurred during a write operation.
388 * Ignore errors which are due to a read-only database, rethrow others.
390 protected function handleWriteError( $exception ) {
391 $db = $this->getDB();
393 if ( !$db->wasReadOnlyError() ) {
394 throw $exception;
397 try {
398 $db->rollback();
399 } catch ( DBQueryError $e ) {
402 wfDebug( __METHOD__ . ": ignoring query error\n" );
403 $db->ignoreErrors( false );
407 * Create shard tables. For use from eval.php.
409 public function createTables() {
410 $db = $this->getDB();
411 if ( $db->getType() !== 'mysql'
412 || version_compare( $db->getServerVersion(), '4.1.0', '<' ) )
414 throw new MWException( __METHOD__ . ' is not supported on this DB server' );
417 for ( $i = 0; $i < $this->shards; $i++ ) {
418 $db->begin();
419 $db->query(
420 'CREATE TABLE ' . $db->tableName( $this->getTableByShard( $i ) ) .
421 ' LIKE ' . $db->tableName( 'objectcache' ),
422 __METHOD__ );
423 $db->commit();
429 * Backwards compatibility alias
431 class MediaWikiBagOStuff extends SqlBagOStuff { }