2004-05-09 05:12:55 +00:00
|
|
|
<?php
|
2004-06-10 13:03:37 +00:00
|
|
|
# $Id$
|
|
|
|
|
#
|
2004-05-09 05:12:55 +00:00
|
|
|
# Copyright (C) 2003-2004 Brion Vibber <brion@pobox.com>
|
|
|
|
|
# http://www.mediawiki.org/
|
|
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License along
|
|
|
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
# http://www.gnu.org/copyleft/gpl.html
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
*
|
2004-09-03 23:00:01 +00:00
|
|
|
* @package MediaWiki
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Simple generic object store
|
|
|
|
|
*
|
|
|
|
|
* interface is intended to be more or less compatible with
|
|
|
|
|
* the PHP memcached client.
|
|
|
|
|
*
|
|
|
|
|
* backends for local hash array and SQL table included:
|
|
|
|
|
* $bag = new HashBagOStuff();
|
|
|
|
|
* $bag = new MysqlBagOStuff($tablename); # connect to db first
|
|
|
|
|
*
|
2004-09-03 23:00:01 +00:00
|
|
|
* @package MediaWiki
|
2004-09-02 23:28:24 +00:00
|
|
|
* @abstract
|
|
|
|
|
*/
|
|
|
|
|
class BagOStuff {
|
2004-05-09 05:12:55 +00:00
|
|
|
var $debugmode;
|
|
|
|
|
|
|
|
|
|
function BagOStuff() {
|
2004-08-21 13:59:48 +00:00
|
|
|
$this->set_debug( false );
|
2004-05-09 05:12:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function set_debug($bool) {
|
|
|
|
|
$this->debugmode = $bool;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* *** THE GUTS OF THE OPERATION *** */
|
|
|
|
|
/* Override these with functional things in subclasses */
|
|
|
|
|
|
|
|
|
|
function get($key) {
|
|
|
|
|
/* stub */
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function set($key, $value, $exptime=0) {
|
|
|
|
|
/* stub */
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function delete($key, $time=0) {
|
|
|
|
|
/* stub */
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2004-08-21 13:59:48 +00:00
|
|
|
function lock($key, $timeout = 0) {
|
|
|
|
|
/* stub */
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function unlock($key) {
|
|
|
|
|
/* stub */
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2004-05-09 05:12:55 +00:00
|
|
|
/* *** Emulated functions *** */
|
|
|
|
|
/* Better performance can likely be got with custom written versions */
|
|
|
|
|
function get_multi($keys) {
|
|
|
|
|
$out = array();
|
|
|
|
|
foreach($keys as $key)
|
|
|
|
|
$out[$key] = $this->get($key);
|
|
|
|
|
return $out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function set_multi($hash, $exptime=0) {
|
|
|
|
|
foreach($hash as $key => $value)
|
|
|
|
|
$this->set($key, $value, $exptime);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function add($key, $value, $exptime=0) {
|
2004-06-11 14:40:52 +00:00
|
|
|
if( $this->get($key) == false ) {
|
2004-05-09 05:12:55 +00:00
|
|
|
$this->set($key, $value, $exptime);
|
2004-06-11 14:40:52 +00:00
|
|
|
return true;
|
|
|
|
|
}
|
2004-05-09 05:12:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function add_multi($hash, $exptime=0) {
|
|
|
|
|
foreach($hash as $key => $value)
|
|
|
|
|
$this->add($key, $value, $exptime);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function delete_multi($keys, $time=0) {
|
|
|
|
|
foreach($keys as $key)
|
|
|
|
|
$this->delete($key, $time);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function replace($key, $value, $exptime=0) {
|
|
|
|
|
if( $this->get($key) !== false )
|
|
|
|
|
$this->set($key, $value, $exptime);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function incr($key, $value=1) {
|
2004-08-21 13:59:48 +00:00
|
|
|
if ( !$this->lock($key) ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2004-05-09 05:12:55 +00:00
|
|
|
$value = intval($value);
|
|
|
|
|
if($value < 0) $value = 0;
|
2004-08-21 13:59:48 +00:00
|
|
|
|
|
|
|
|
$n = false;
|
2004-05-09 05:12:55 +00:00
|
|
|
if( ($n = $this->get($key)) !== false ) {
|
2004-08-21 13:59:48 +00:00
|
|
|
$n += $value;
|
|
|
|
|
$this->set($key, $n); // exptime?
|
2004-05-09 05:12:55 +00:00
|
|
|
}
|
2004-08-21 13:59:48 +00:00
|
|
|
$this->unlock($key);
|
|
|
|
|
return $n;
|
2004-05-09 05:12:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function decr($key, $value=1) {
|
2004-08-21 13:59:48 +00:00
|
|
|
if ( !$this->lock($key) ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2004-05-09 05:12:55 +00:00
|
|
|
$value = intval($value);
|
|
|
|
|
if($value < 0) $value = 0;
|
2004-08-21 13:59:48 +00:00
|
|
|
|
|
|
|
|
$m = false;
|
2004-05-09 05:12:55 +00:00
|
|
|
if( ($n = $this->get($key)) !== false ) {
|
|
|
|
|
$m = $n - $value;
|
|
|
|
|
if($m < 0) $m = 0;
|
|
|
|
|
$this->set($key, $m); // exptime?
|
|
|
|
|
}
|
2004-08-21 13:59:48 +00:00
|
|
|
$this->unlock($key);
|
|
|
|
|
return $m;
|
2004-05-09 05:12:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _debug($text) {
|
|
|
|
|
if($this->debugmode)
|
2004-06-10 13:03:37 +00:00
|
|
|
wfDebug("BagOStuff debug: $text\n");
|
2004-05-09 05:12:55 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* Functional versions!
|
|
|
|
|
* @todo document
|
2004-09-03 23:00:01 +00:00
|
|
|
* @package MediaWiki
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2004-05-09 05:12:55 +00:00
|
|
|
class HashBagOStuff extends BagOStuff {
|
|
|
|
|
/*
|
|
|
|
|
This is a test of the interface, mainly. It stores
|
|
|
|
|
things in an associative array, which is not going to
|
|
|
|
|
persist between program runs.
|
|
|
|
|
*/
|
|
|
|
|
var $bag;
|
|
|
|
|
|
|
|
|
|
function HashBagOStuff() {
|
|
|
|
|
$this->bag = array();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _expire($key) {
|
|
|
|
|
$et = $this->bag[$key][1];
|
|
|
|
|
if(($et == 0) || ($et > time()))
|
|
|
|
|
return false;
|
|
|
|
|
$this->delete($key);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function get($key) {
|
|
|
|
|
if(!$this->bag[$key])
|
|
|
|
|
return false;
|
|
|
|
|
if($this->_expire($key))
|
|
|
|
|
return false;
|
|
|
|
|
return $this->bag[$key][0];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function set($key,$value,$exptime=0) {
|
|
|
|
|
if(($exptime != 0) && ($exptime < 3600*24*30))
|
|
|
|
|
$exptime = time() + $exptime;
|
|
|
|
|
$this->bag[$key] = array( $value, $exptime );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function delete($key,$time=0) {
|
|
|
|
|
if(!$this->bag[$key])
|
|
|
|
|
return false;
|
|
|
|
|
unset($this->bag[$key]);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
CREATE TABLE objectcache (
|
|
|
|
|
keyname char(255) binary not null default '',
|
|
|
|
|
value mediumblob,
|
|
|
|
|
exptime datetime,
|
|
|
|
|
unique key (keyname),
|
|
|
|
|
key (exptime)
|
|
|
|
|
);
|
|
|
|
|
*/
|
2004-09-02 23:28:24 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @todo document
|
|
|
|
|
* @abstract
|
2004-09-03 23:00:01 +00:00
|
|
|
* @package MediaWiki
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
|
|
|
|
class SqlBagOStuff extends BagOStuff {
|
2004-05-09 05:12:55 +00:00
|
|
|
var $table;
|
2004-08-27 13:40:27 +00:00
|
|
|
|
2004-08-22 17:24:50 +00:00
|
|
|
function SqlBagOStuff($tablename = 'objectcache') {
|
2004-05-09 05:12:55 +00:00
|
|
|
$this->table = $tablename;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function get($key) {
|
|
|
|
|
/* expire old entries if any */
|
|
|
|
|
$this->expireall();
|
|
|
|
|
|
|
|
|
|
$res = $this->_query(
|
|
|
|
|
"SELECT value,exptime FROM $0 WHERE keyname='$1'", $key);
|
|
|
|
|
if(!$res) {
|
|
|
|
|
$this->_debug("get: ** error: " . $this->_dberror($res) . " **");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2004-06-11 14:40:52 +00:00
|
|
|
if($row=$this->_fetchobject($res)) {
|
|
|
|
|
$this->_debug("get: retrieved data; exp time is " . $row->exptime);
|
|
|
|
|
return unserialize($row->value);
|
2004-05-09 05:12:55 +00:00
|
|
|
} else {
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->_debug('get: no matching rows');
|
2004-05-09 05:12:55 +00:00
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function set($key,$value,$exptime=0) {
|
|
|
|
|
$exptime = intval($exptime);
|
|
|
|
|
if($exptime < 0) $exptime = 0;
|
|
|
|
|
if($exptime == 0) {
|
|
|
|
|
$exp = $this->_maxdatetime();
|
|
|
|
|
} else {
|
|
|
|
|
if($exptime < 3600*24*30)
|
|
|
|
|
$exptime += time();
|
|
|
|
|
$exp = $this->_fromunixtime($exptime);
|
|
|
|
|
}
|
|
|
|
|
$this->delete( $key );
|
|
|
|
|
$this->_query(
|
2004-06-10 13:03:37 +00:00
|
|
|
"INSERT INTO $0 (keyname,value,exptime) VALUES('$1','$2','$exp')",
|
2004-06-12 03:17:39 +00:00
|
|
|
$key, serialize($value));
|
2004-05-09 05:12:55 +00:00
|
|
|
return true; /* ? */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function delete($key,$time=0) {
|
|
|
|
|
$this->_query(
|
|
|
|
|
"DELETE FROM $0 WHERE keyname='$1'", $key );
|
|
|
|
|
return true; /* ? */
|
|
|
|
|
}
|
|
|
|
|
|
2004-08-27 13:40:27 +00:00
|
|
|
function getTableName() {
|
|
|
|
|
return $this->table;
|
|
|
|
|
}
|
|
|
|
|
|
2004-05-09 05:12:55 +00:00
|
|
|
function _query($sql) {
|
|
|
|
|
$reps = func_get_args();
|
2004-08-27 13:40:27 +00:00
|
|
|
$reps[0] = $this->getTableName();
|
2004-05-09 05:12:55 +00:00
|
|
|
// ewwww
|
|
|
|
|
for($i=0;$i<count($reps);$i++) {
|
|
|
|
|
$sql = str_replace(
|
2004-08-22 17:24:50 +00:00
|
|
|
'$' . $i,
|
2004-05-09 05:12:55 +00:00
|
|
|
$this->_strencode($reps[$i]),
|
|
|
|
|
$sql);
|
|
|
|
|
}
|
|
|
|
|
$res = $this->_doquery($sql);
|
2004-06-11 14:40:52 +00:00
|
|
|
if($res == false) {
|
2004-08-22 17:24:50 +00:00
|
|
|
$this->_debug('query failed: ' . $this->_dberror($res));
|
2004-05-09 05:12:55 +00:00
|
|
|
}
|
|
|
|
|
return $res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _strencode($str) {
|
|
|
|
|
/* Protect strings in SQL */
|
|
|
|
|
return str_replace( "'", "''", $str );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _doquery($sql) {
|
2004-08-22 17:24:50 +00:00
|
|
|
die( 'abstract function SqlBagOStuff::_doquery() must be defined' );
|
2004-05-09 05:12:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _fetchrow($res) {
|
2004-08-22 17:24:50 +00:00
|
|
|
die( 'abstract function SqlBagOStuff::_fetchrow() must be defined' );
|
2004-05-09 05:12:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _freeresult($result) {
|
|
|
|
|
/* stub */
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _dberror($result) {
|
|
|
|
|
/* stub */
|
2004-08-22 17:24:50 +00:00
|
|
|
return 'unknown error';
|
2004-05-09 05:12:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _maxdatetime() {
|
2004-08-22 17:24:50 +00:00
|
|
|
die( 'abstract function SqlBagOStuff::_maxdatetime() must be defined' );
|
2004-05-09 05:12:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function _fromunixtime() {
|
2004-08-22 17:24:50 +00:00
|
|
|
die( 'abstract function SqlBagOStuff::_fromunixtime() must be defined' );
|
2004-05-09 05:12:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function expireall() {
|
|
|
|
|
/* Remove any items that have expired */
|
2004-06-11 14:40:52 +00:00
|
|
|
$now=$this->_fromunixtime(time());
|
|
|
|
|
$this->_query( "DELETE FROM $0 WHERE exptime<'$now'" );
|
2004-05-09 05:12:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function deleteall() {
|
|
|
|
|
/* Clear *all* items from cache table */
|
|
|
|
|
$this->_query( "DELETE FROM $0" );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* @todo document
|
2004-09-03 23:00:01 +00:00
|
|
|
* @package MediaWiki
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2004-06-10 13:03:37 +00:00
|
|
|
class MediaWikiBagOStuff extends SqlBagOStuff {
|
2004-08-27 13:40:27 +00:00
|
|
|
var $tableInitialised = false;
|
|
|
|
|
|
2004-05-09 05:12:55 +00:00
|
|
|
function _doquery($sql) {
|
2004-07-18 08:48:43 +00:00
|
|
|
$dbw =& wfGetDB( DB_MASTER );
|
2004-08-22 17:24:50 +00:00
|
|
|
return $dbw->query($sql, 'MediaWikiBagOStuff:_doquery');
|
2004-05-09 05:12:55 +00:00
|
|
|
}
|
2004-06-11 14:40:52 +00:00
|
|
|
function _fetchobject($result) {
|
2004-07-18 08:48:43 +00:00
|
|
|
$dbw =& wfGetDB( DB_MASTER );
|
2004-07-10 03:09:26 +00:00
|
|
|
return $dbw->fetchObject($result);
|
2004-05-09 05:12:55 +00:00
|
|
|
}
|
|
|
|
|
function _freeresult($result) {
|
2004-07-18 08:48:43 +00:00
|
|
|
$dbw =& wfGetDB( DB_MASTER );
|
2004-07-10 03:09:26 +00:00
|
|
|
return $dbw->freeResult($result);
|
2004-05-09 05:12:55 +00:00
|
|
|
}
|
|
|
|
|
function _dberror($result) {
|
2004-07-18 08:48:43 +00:00
|
|
|
$dbw =& wfGetDB( DB_MASTER );
|
2004-07-10 03:09:26 +00:00
|
|
|
return $dbw->lastError();
|
2004-05-09 05:12:55 +00:00
|
|
|
}
|
|
|
|
|
function _maxdatetime() {
|
2004-08-22 17:24:50 +00:00
|
|
|
return '9999-12-31 12:59:59';
|
2004-05-09 05:12:55 +00:00
|
|
|
}
|
|
|
|
|
function _fromunixtime($ts) {
|
2004-08-22 17:24:50 +00:00
|
|
|
return gmdate( 'Y-m-d H:i:s', $ts );
|
2004-05-09 05:12:55 +00:00
|
|
|
}
|
|
|
|
|
function _strencode($s) {
|
2004-07-18 08:48:43 +00:00
|
|
|
$dbw =& wfGetDB( DB_MASTER );
|
2004-07-10 03:09:26 +00:00
|
|
|
return $dbw->strencode($s);
|
2004-05-09 05:12:55 +00:00
|
|
|
}
|
2004-08-27 13:40:27 +00:00
|
|
|
function getTableName() {
|
|
|
|
|
if ( !$this->tableInitialised ) {
|
|
|
|
|
$dbw =& wfGetDB( DB_MASTER );
|
|
|
|
|
$this->table = $dbw->tableName( $this->table );
|
|
|
|
|
$this->tableInitialised = true;
|
|
|
|
|
}
|
|
|
|
|
return $this->table;
|
|
|
|
|
}
|
2004-05-09 05:12:55 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
2004-10-23 10:21:23 +00:00
|
|
|
* This is a wrapper for Turck MMCache's shared memory functions.
|
|
|
|
|
*
|
|
|
|
|
* You can store objects with mmcache_put() and mmcache_get(), but Turck seems
|
|
|
|
|
* to use a weird custom serializer that randomly segfaults. So we wrap calls
|
|
|
|
|
* with serialize()/unserialize().
|
|
|
|
|
*
|
|
|
|
|
* The thing I noticed about the Turck serialized data was that unlike ordinary
|
|
|
|
|
* serialize(), it contained the names of methods, and judging by the amount of
|
|
|
|
|
* binary data, perhaps even the bytecode of the methods themselves. It may be
|
|
|
|
|
* that Turck's serializer is faster, so a possible future extension would be
|
|
|
|
|
* to use it for arrays but not for objects.
|
|
|
|
|
*
|
2004-09-03 23:00:01 +00:00
|
|
|
* @package MediaWiki
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2004-08-21 13:59:48 +00:00
|
|
|
class TurckBagOStuff extends BagOStuff {
|
|
|
|
|
function get($key) {
|
2004-10-23 10:21:23 +00:00
|
|
|
$val = mmcache_get( $key );
|
|
|
|
|
if ( is_string( $val ) ) {
|
|
|
|
|
$val = unserialize( $val );
|
|
|
|
|
}
|
|
|
|
|
return $val;
|
2004-08-21 13:59:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function set($key, $value, $exptime=0) {
|
2004-10-23 10:21:23 +00:00
|
|
|
mmcache_put( $key, serialize( $value ), $exptime );
|
2004-08-21 13:59:48 +00:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function delete($key, $time=0) {
|
|
|
|
|
mmcache_rm( $key );
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function lock($key, $waitTimeout = 0 ) {
|
|
|
|
|
mmcache_lock( $key );
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function unlock($key) {
|
|
|
|
|
mmcache_unlock( $key );
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-05-09 05:12:55 +00:00
|
|
|
?>
|