* Fix regression in authentication hook auto-creation on login
[mediawiki.git] / includes / BagOStuff.php
blob6edef87a7793ceb75c1374a7e26f04bc2d28035c
1 <?php
3 # Copyright (C) 2003-2004 Brion Vibber <brion@pobox.com>
4 # http://www.mediawiki.org/
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with this program; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 # http://www.gnu.org/copyleft/gpl.html
20 /**
22 * @package MediaWiki
25 /**
26 * Simple generic object store
28 * interface is intended to be more or less compatible with
29 * the PHP memcached client.
31 * backends for local hash array and SQL table included:
32 * $bag = new HashBagOStuff();
33 * $bag = new MysqlBagOStuff($tablename); # connect to db first
35 * @package MediaWiki
37 class BagOStuff {
38 var $debugmode;
40 function BagOStuff() {
41 $this->set_debug( false );
44 function set_debug($bool) {
45 $this->debugmode = $bool;
48 /* *** THE GUTS OF THE OPERATION *** */
49 /* Override these with functional things in subclasses */
51 function get($key) {
52 /* stub */
53 return false;
56 function set($key, $value, $exptime=0) {
57 /* stub */
58 return false;
61 function delete($key, $time=0) {
62 /* stub */
63 return false;
66 function lock($key, $timeout = 0) {
67 /* stub */
68 return true;
71 function unlock($key) {
72 /* stub */
73 return true;
76 /* *** Emulated functions *** */
77 /* Better performance can likely be got with custom written versions */
78 function get_multi($keys) {
79 $out = array();
80 foreach($keys as $key)
81 $out[$key] = $this->get($key);
82 return $out;
85 function set_multi($hash, $exptime=0) {
86 foreach($hash as $key => $value)
87 $this->set($key, $value, $exptime);
90 function add($key, $value, $exptime=0) {
91 if( $this->get($key) == false ) {
92 $this->set($key, $value, $exptime);
93 return true;
97 function add_multi($hash, $exptime=0) {
98 foreach($hash as $key => $value)
99 $this->add($key, $value, $exptime);
102 function delete_multi($keys, $time=0) {
103 foreach($keys as $key)
104 $this->delete($key, $time);
107 function replace($key, $value, $exptime=0) {
108 if( $this->get($key) !== false )
109 $this->set($key, $value, $exptime);
112 function incr($key, $value=1) {
113 if ( !$this->lock($key) ) {
114 return false;
116 $value = intval($value);
117 if($value < 0) $value = 0;
119 $n = false;
120 if( ($n = $this->get($key)) !== false ) {
121 $n += $value;
122 $this->set($key, $n); // exptime?
124 $this->unlock($key);
125 return $n;
128 function decr($key, $value=1) {
129 if ( !$this->lock($key) ) {
130 return false;
132 $value = intval($value);
133 if($value < 0) $value = 0;
135 $m = false;
136 if( ($n = $this->get($key)) !== false ) {
137 $m = $n - $value;
138 if($m < 0) $m = 0;
139 $this->set($key, $m); // exptime?
141 $this->unlock($key);
142 return $m;
145 function _debug($text) {
146 if($this->debugmode)
147 wfDebug("BagOStuff debug: $text\n");
151 * Convert an optionally relative time to an absolute time
153 static function convertExpiry( $exptime ) {
154 if(($exptime != 0) && ($exptime < 3600*24*30)) {
155 return time() + $exptime;
156 } else {
157 return $exptime;
164 * Functional versions!
165 * @todo document
166 * @package MediaWiki
168 class HashBagOStuff extends BagOStuff {
170 This is a test of the interface, mainly. It stores
171 things in an associative array, which is not going to
172 persist between program runs.
174 var $bag;
176 function HashBagOStuff() {
177 $this->bag = array();
180 function _expire($key) {
181 $et = $this->bag[$key][1];
182 if(($et == 0) || ($et > time()))
183 return false;
184 $this->delete($key);
185 return true;
188 function get($key) {
189 if(!$this->bag[$key])
190 return false;
191 if($this->_expire($key))
192 return false;
193 return $this->bag[$key][0];
196 function set($key,$value,$exptime=0) {
197 $this->bag[$key] = array( $value, BagOStuff::convertExpiry( $exptime ) );
200 function delete($key,$time=0) {
201 if(!$this->bag[$key])
202 return false;
203 unset($this->bag[$key]);
204 return true;
209 CREATE TABLE objectcache (
210 keyname char(255) binary not null default '',
211 value mediumblob,
212 exptime datetime,
213 unique key (keyname),
214 key (exptime)
219 * @todo document
220 * @abstract
221 * @package MediaWiki
223 abstract class SqlBagOStuff extends BagOStuff {
224 var $table;
225 var $lastexpireall = 0;
227 function SqlBagOStuff($tablename = 'objectcache') {
228 $this->table = $tablename;
231 function get($key) {
232 /* expire old entries if any */
233 $this->garbageCollect();
235 $res = $this->_query(
236 "SELECT value,exptime FROM $0 WHERE keyname='$1'", $key);
237 if(!$res) {
238 $this->_debug("get: ** error: " . $this->_dberror($res) . " **");
239 return false;
241 if($row=$this->_fetchobject($res)) {
242 $this->_debug("get: retrieved data; exp time is " . $row->exptime);
243 return $this->_unserialize($this->_blobdecode($row->value));
244 } else {
245 $this->_debug('get: no matching rows');
247 return false;
250 function set($key,$value,$exptime=0) {
251 $exptime = intval($exptime);
252 if($exptime < 0) $exptime = 0;
253 if($exptime == 0) {
254 $exp = $this->_maxdatetime();
255 } else {
256 if($exptime < 3600*24*30)
257 $exptime += time();
258 $exp = $this->_fromunixtime($exptime);
260 $this->delete( $key );
261 $this->_doinsert($this->getTableName(), array(
262 'keyname' => $key,
263 'value' => $this->_blobencode($this->_serialize($value)),
264 'exptime' => $exp
266 return true; /* ? */
269 function delete($key,$time=0) {
270 $this->_query(
271 "DELETE FROM $0 WHERE keyname='$1'", $key );
272 return true; /* ? */
275 function getTableName() {
276 return $this->table;
279 function _query($sql) {
280 $reps = func_get_args();
281 $reps[0] = $this->getTableName();
282 // ewwww
283 for($i=0;$i<count($reps);$i++) {
284 $sql = str_replace(
285 '$' . $i,
286 $i > 0 ? $this->_strencode($reps[$i]) : $reps[$i],
287 $sql);
289 $res = $this->_doquery($sql);
290 if($res == false) {
291 $this->_debug('query failed: ' . $this->_dberror($res));
293 return $res;
296 function _strencode($str) {
297 /* Protect strings in SQL */
298 return str_replace( "'", "''", $str );
300 function _blobencode($str) {
301 return $str;
303 function _blobdecode($str) {
304 return $str;
307 abstract function _doinsert($table, $vals);
308 abstract function _doquery($sql);
310 function _freeresult($result) {
311 /* stub */
312 return false;
315 function _dberror($result) {
316 /* stub */
317 return 'unknown error';
320 abstract function _maxdatetime();
321 abstract function _fromunixtime($ts);
323 function garbageCollect() {
324 /* Ignore 99% of requests */
325 if ( !mt_rand( 0, 100 ) ) {
326 $nowtime = time();
327 /* Avoid repeating the delete within a few seconds */
328 if ( $nowtime > ($this->lastexpireall + 1) ) {
329 $this->lastexpireall = $nowtime;
330 $this->expireall();
335 function expireall() {
336 /* Remove any items that have expired */
337 $now = $this->_fromunixtime( time() );
338 $this->_query( "DELETE FROM $0 WHERE exptime < '$now'" );
341 function deleteall() {
342 /* Clear *all* items from cache table */
343 $this->_query( "DELETE FROM $0" );
347 * Serialize an object and, if possible, compress the representation.
348 * On typical message and page data, this can provide a 3X decrease
349 * in storage requirements.
351 * @param mixed $data
352 * @return string
354 function _serialize( &$data ) {
355 $serial = serialize( $data );
356 if( function_exists( 'gzdeflate' ) ) {
357 return gzdeflate( $serial );
358 } else {
359 return $serial;
364 * Unserialize and, if necessary, decompress an object.
365 * @param string $serial
366 * @return mixed
368 function _unserialize( $serial ) {
369 if( function_exists( 'gzinflate' ) ) {
370 $decomp = @gzinflate( $serial );
371 if( false !== $decomp ) {
372 $serial = $decomp;
375 $ret = unserialize( $serial );
376 return $ret;
381 * @todo document
382 * @package MediaWiki
384 class MediaWikiBagOStuff extends SqlBagOStuff {
385 var $tableInitialised = false;
387 function _doquery($sql) {
388 $dbw =& wfGetDB( DB_MASTER );
389 return $dbw->query($sql, 'MediaWikiBagOStuff::_doquery');
391 function _doinsert($t, $v) {
392 $dbw =& wfGetDB( DB_MASTER );
393 return $dbw->insert($t, $v, 'MediaWikiBagOStuff::_doinsert',
394 array( 'IGNORE' ) );
396 function _fetchobject($result) {
397 $dbw =& wfGetDB( DB_MASTER );
398 return $dbw->fetchObject($result);
400 function _freeresult($result) {
401 $dbw =& wfGetDB( DB_MASTER );
402 return $dbw->freeResult($result);
404 function _dberror($result) {
405 $dbw =& wfGetDB( DB_MASTER );
406 return $dbw->lastError();
408 function _maxdatetime() {
409 $dbw =& wfGetDB(DB_MASTER);
410 return $dbw->timestamp('9999-12-31 12:59:59');
412 function _fromunixtime($ts) {
413 $dbw =& wfGetDB(DB_MASTER);
414 return $dbw->timestamp($ts);
416 function _strencode($s) {
417 $dbw =& wfGetDB( DB_MASTER );
418 return $dbw->strencode($s);
420 function _blobencode($s) {
421 $dbw =& wfGetDB( DB_MASTER );
422 return $dbw->encodeBlob($s);
424 function _blobdecode($s) {
425 $dbw =& wfGetDB( DB_MASTER );
426 return $dbw->decodeBlob($s);
428 function getTableName() {
429 if ( !$this->tableInitialised ) {
430 $dbw =& wfGetDB( DB_MASTER );
431 /* This is actually a hack, we should be able
432 to use Language classes here... or not */
433 if (!$dbw)
434 throw new MWException("Could not connect to database");
435 $this->table = $dbw->tableName( $this->table );
436 $this->tableInitialised = true;
438 return $this->table;
443 * This is a wrapper for Turck MMCache's shared memory functions.
445 * You can store objects with mmcache_put() and mmcache_get(), but Turck seems
446 * to use a weird custom serializer that randomly segfaults. So we wrap calls
447 * with serialize()/unserialize().
449 * The thing I noticed about the Turck serialized data was that unlike ordinary
450 * serialize(), it contained the names of methods, and judging by the amount of
451 * binary data, perhaps even the bytecode of the methods themselves. It may be
452 * that Turck's serializer is faster, so a possible future extension would be
453 * to use it for arrays but not for objects.
455 * @package MediaWiki
457 class TurckBagOStuff extends BagOStuff {
458 function get($key) {
459 $val = mmcache_get( $key );
460 if ( is_string( $val ) ) {
461 $val = unserialize( $val );
463 return $val;
466 function set($key, $value, $exptime=0) {
467 mmcache_put( $key, serialize( $value ), $exptime );
468 return true;
471 function delete($key, $time=0) {
472 mmcache_rm( $key );
473 return true;
476 function lock($key, $waitTimeout = 0 ) {
477 mmcache_lock( $key );
478 return true;
481 function unlock($key) {
482 mmcache_unlock( $key );
483 return true;
488 * This is a wrapper for APC's shared memory functions
490 * @package MediaWiki
493 class APCBagOStuff extends BagOStuff {
494 function get($key) {
495 $val = apc_fetch($key);
496 if ( is_string( $val ) ) {
497 $val = unserialize( $val );
499 return $val;
502 function set($key, $value, $exptime=0) {
503 apc_store($key, serialize($value), $exptime);
504 return true;
507 function delete($key, $time=0) {
508 apc_delete($key);
509 return true;
515 * This is a wrapper for eAccelerator's shared memory functions.
517 * This is basically identical to the Turck MMCache version,
518 * mostly because eAccelerator is based on Turck MMCache.
520 * @package MediaWiki
522 class eAccelBagOStuff extends BagOStuff {
523 function get($key) {
524 $val = eaccelerator_get( $key );
525 if ( is_string( $val ) ) {
526 $val = unserialize( $val );
528 return $val;
531 function set($key, $value, $exptime=0) {
532 eaccelerator_put( $key, serialize( $value ), $exptime );
533 return true;
536 function delete($key, $time=0) {
537 eaccelerator_rm( $key );
538 return true;
541 function lock($key, $waitTimeout = 0 ) {
542 eaccelerator_lock( $key );
543 return true;
546 function unlock($key) {
547 eaccelerator_unlock( $key );
548 return true;
552 class DBABagOStuff extends BagOStuff {
553 var $mHandler, $mFile, $mReader, $mWriter, $mDisabled;
555 function __construct( $handler = 'db3', $dir = false ) {
556 if ( $dir === false ) {
557 global $wgTmpDirectory;
558 $dir = $wgTmpDirectory;
560 $this->mFile = "$dir/mw-cache-" . wfWikiID();
561 $this->mFile .= '.db';
562 $this->mHandler = $handler;
566 * Encode value and expiry for storage
568 function encode( $value, $expiry ) {
569 # Convert to absolute time
570 $expiry = BagOStuff::convertExpiry( $expiry );
571 return sprintf( '%010u', intval( $expiry ) ) . ' ' . serialize( $value );
575 * @return list containing value first and expiry second
577 function decode( $blob ) {
578 if ( !is_string( $blob ) ) {
579 return array( null, 0 );
580 } else {
581 return array(
582 unserialize( substr( $blob, 11 ) ),
583 intval( substr( $blob, 0, 10 ) )
588 function getReader() {
589 if ( file_exists( $this->mFile ) ) {
590 $handle = dba_open( $this->mFile, 'rl', $this->mHandler );
591 } else {
592 $handle = $this->getWriter();
594 if ( !$handle ) {
595 wfDebug( "Unable to open DBA cache file {$this->mFile}\n" );
597 return $handle;
600 function getWriter() {
601 $handle = dba_open( $this->mFile, 'cl', $this->mHandler );
602 if ( !$handle ) {
603 wfDebug( "Unable to open DBA cache file {$this->mFile}\n" );
605 return $handle;
608 function get( $key ) {
609 wfProfileIn( __METHOD__ );
610 wfDebug( __METHOD__."($key)\n" );
611 $handle = $this->getReader();
612 if ( !$handle ) {
613 return null;
615 $val = dba_fetch( $key, $handle );
616 list( $val, $expiry ) = $this->decode( $val );
617 # Must close ASAP because locks are held
618 dba_close( $handle );
620 if ( !is_null( $val ) && $expiry && $expiry < time() ) {
621 # Key is expired, delete it
622 $handle = $this->getWriter();
623 dba_delete( $key, $handle );
624 dba_close( $handle );
625 wfDebug( __METHOD__.": $key expired\n" );
626 $val = null;
628 wfProfileOut( __METHOD__ );
629 return $val;
632 function set( $key, $value, $exptime=0 ) {
633 wfProfileIn( __METHOD__ );
634 wfDebug( __METHOD__."($key)\n" );
635 $blob = $this->encode( $value, $exptime );
636 $handle = $this->getWriter();
637 if ( !$handle ) {
638 return false;
640 $ret = dba_replace( $key, $blob, $handle );
641 dba_close( $handle );
642 wfProfileOut( __METHOD__ );
643 return $ret;
646 function delete( $key, $time = 0 ) {
647 wfProfileIn( __METHOD__ );
648 $handle = $this->getWriter();
649 if ( !$handle ) {
650 return false;
652 $ret = dba_delete( $key, $handle );
653 dba_close( $handle );
654 wfProfileOut( __METHOD__ );
655 return $ret;
658 function add( $key, $value, $exptime = 0 ) {
659 wfProfileIn( __METHOD__ );
660 $blob = $this->encode( $value, $exptime );
661 $handle = $this->getWriter();
662 if ( !$handle ) {
663 return false;
665 $ret = dba_insert( $key, $blob, $handle );
666 # Insert failed, check to see if it failed due to an expired key
667 if ( !$ret ) {
668 list( $value, $expiry ) = $this->decode( dba_fetch( $key, $handle ) );
669 if ( $expiry < time() ) {
670 # Yes expired, delete and try again
671 dba_delete( $key, $handle );
672 $ret = dba_insert( $key, $blob, $handle );
673 # This time if it failed then it will be handled by the caller like any other race
677 dba_close( $handle );
678 wfProfileOut( __METHOD__ );
679 return $ret;