aboutsummaryrefslogtreecommitdiffstats
path: root/includes/ObjectCache.php
blob: ce511ff37b107d5529ea6e7037a7312fe4d6a8d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
<?php
# $Id$
#
# 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

# 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

class /* abstract */ BagOStuff {
	var $debugmode;
	
	function BagOStuff() {
		set_debug( false );
	}
	
	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;
	}
	
	/* *** 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) {
		if( $this->get($key) == false ) {
			$this->set($key, $value, $exptime);
			return true;
		}
	}
	
	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) {
		$value = intval($value);
		if($value < 0) $value = 0;
		if( ($n = $this->get($key)) !== false ) {
			$this->set($key, $n+$value); // exptime?
			return $n+$value;
		} else {
			return false;
		}
	}
	
	function decr($key, $value=1) {
		$value = intval($value);
		if($value < 0) $value = 0;
		if( ($n = $this->get($key)) !== false ) {
			$m = $n - $value;
			if($m < 0) $m = 0;
			$this->set($key, $m); // exptime?
			return $m;
		} else {
			return false;
		}
	}
	
	function _debug($text) {
		if($this->debugmode)
			wfDebug("BagOStuff debug: $text\n");
	}
}


/* Functional versions! */
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)
);
*/
class /* abstract */ SqlBagOStuff extends BagOStuff {
	var $table;
	function SqlBagOStuff($tablename = "objectcache") {
		$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;
		}
		if($row=$this->_fetchobject($res)) {
			$this->_debug("get: retrieved data; exp time is " . $row->exptime);
			return unserialize($row->value);
		} else {
			$this->_debug("get: no matching rows");
		}
		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(
			"INSERT INTO $0 (keyname,value,exptime) VALUES('$1','$2','$exp')",
			$key, serialize($value));
		return true; /* ? */
	}
	
	function delete($key,$time=0) {
		$this->_query(
			"DELETE FROM $0 WHERE keyname='$1'", $key );
		return true; /* ? */
	}
	
	function _query($sql) {
		$reps = func_get_args();
		$reps[0] = $this->table;
		// ewwww
		for($i=0;$i<count($reps);$i++) {
			$sql = str_replace(
				"$" . $i,
				$this->_strencode($reps[$i]),
				$sql);
		}
		$res = $this->_doquery($sql);
		if($res == false) {
			$this->_debug("query failed: " . $this->_dberror($res));
		}
		return $res;
	}
	
	function _strencode($str) {
		/* Protect strings in SQL */
		return str_replace( "'", "''", $str );
	}
	
	function _doquery($sql) {
		die( "abstract function SqlBagOStuff::_doquery() must be defined" );
	}
	
	function _fetchrow($res) {
		die( "abstract function SqlBagOStuff::_fetchrow() must be defined" );
	}
	
	function _freeresult($result) {
		/* stub */
		return false;
	}
	
	function _dberror($result) {
		/* stub */
		return "unknown error";
	}
	
	function _maxdatetime() {
		die( "abstract function SqlBagOStuff::_maxdatetime() must be defined" );
	}
	
	function _fromunixtime() {
		die( "abstract function SqlBagOStuff::_fromunixtime() must be defined" );
	}
	
	function expireall() {
		/* Remove any items that have expired */
		$now=$this->_fromunixtime(time());
		$this->_query( "DELETE FROM $0 WHERE exptime<'$now'" );
	}
	
	function deleteall() {
		/* Clear *all* items from cache table */
		$this->_query( "DELETE FROM $0" );
	}
}

class MediaWikiBagOStuff extends SqlBagOStuff {
	function _doquery($sql) {
		return wfQuery($sql, DB_READ, "MediaWikiBagOStuff:_doquery");
	}
	function _fetchobject($result) {
		return wfFetchObject($result);
	}
	function _freeresult($result) {
		return wfFreeResult($result);
	}
	function _dberror($result) {
		return wfLastError();
	}
	function _maxdatetime() {
		return "9999-12-31 12:59:59";
	}
	function _fromunixtime($ts) {
		return gmdate( "Y-m-d H:i:s", $ts );
	}
	function _strencode($s) {
		return wfStrEncode($s);
	}
}

?>