Revert r88008 (add size difference to Special:Contributions) and its large group...
[lhc/web/wiklou.git] / includes / objectcache / BagOStuff.php
1 <?php
2 /**
3 * Classes to cache objects in PHP accelerators, SQL database or DBA files
4 *
5 * Copyright © 2003-2004 Brion Vibber <brion@pobox.com>
6 * http://www.mediawiki.org/
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
22 *
23 * @file
24 * @ingroup Cache
25 */
26
27 /**
28 * @defgroup Cache Cache
29 */
30
31 /**
32 * interface is intended to be more or less compatible with
33 * the PHP memcached client.
34 *
35 * backends for local hash array and SQL table included:
36 * <code>
37 * $bag = new HashBagOStuff();
38 * $bag = new SqlBagOStuff(); # connect to db first
39 * </code>
40 *
41 * @ingroup Cache
42 */
43 abstract class BagOStuff {
44 private $debugMode = false;
45
46 /**
47 * @param $bool bool
48 */
49 public function setDebug( $bool ) {
50 $this->debugMode = $bool;
51 }
52
53 /* *** THE GUTS OF THE OPERATION *** */
54 /* Override these with functional things in subclasses */
55
56 /**
57 * Get an item with the given key. Returns false if it does not exist.
58 * @param $key string
59 *
60 * @return bool|Object
61 */
62 abstract public function get( $key );
63
64 /**
65 * Set an item.
66 * @param $key string
67 * @param $value mixed
68 * @param $exptime int Either an interval in seconds or a unix timestamp for expiry
69 */
70 abstract public function set( $key, $value, $exptime = 0 );
71
72 /**
73 * Delete an item.
74 * @param $key string
75 * @param $time int Amount of time to delay the operation (mostly memcached-specific)
76 */
77 abstract public function delete( $key, $time = 0 );
78
79 public function lock( $key, $timeout = 0 ) {
80 /* stub */
81 return true;
82 }
83
84 public function unlock( $key ) {
85 /* stub */
86 return true;
87 }
88
89 public function keys() {
90 /* stub */
91 return array();
92 }
93
94 /* *** Emulated functions *** */
95
96 public function add( $key, $value, $exptime = 0 ) {
97 if ( !$this->get( $key ) ) {
98 $this->set( $key, $value, $exptime );
99
100 return true;
101 }
102 }
103
104 public function replace( $key, $value, $exptime = 0 ) {
105 if ( $this->get( $key ) !== false ) {
106 $this->set( $key, $value, $exptime );
107 }
108 }
109
110 /**
111 * @param $key String: Key to increase
112 * @param $value Integer: Value to add to $key (Default 1)
113 * @return null if lock is not possible else $key value increased by $value
114 */
115 public function incr( $key, $value = 1 ) {
116 if ( !$this->lock( $key ) ) {
117 return null;
118 }
119
120 $value = intval( $value );
121
122 if ( ( $n = $this->get( $key ) ) !== false ) {
123 $n += $value;
124 $this->set( $key, $n ); // exptime?
125 }
126 $this->unlock( $key );
127
128 return $n;
129 }
130
131 public function decr( $key, $value = 1 ) {
132 return $this->incr( $key, - $value );
133 }
134
135 public function debug( $text ) {
136 if ( $this->debugMode ) {
137 $class = get_class( $this );
138 wfDebug( "$class debug: $text\n" );
139 }
140 }
141
142 /**
143 * Convert an optionally relative time to an absolute time
144 */
145 protected function convertExpiry( $exptime ) {
146 if ( ( $exptime != 0 ) && ( $exptime < 86400 * 3650 /* 10 years */ ) ) {
147 return time() + $exptime;
148 } else {
149 return $exptime;
150 }
151 }
152 }
153
154