Add missing >
[lhc/web/wiklou.git] / includes / cache / FileCacheBase.php
1 <?php
2 /**
3 * Contain the FileCacheBase class
4 * @file
5 * @ingroup Cache
6 */
7 abstract class FileCacheBase {
8 protected $mKey;
9 protected $mType = 'object';
10 protected $mExt = 'cache';
11 protected $mFilePath;
12 protected $mUseGzip;
13 /* lazy loaded */
14 protected $mCached;
15
16 /* @TODO: configurable? */
17 const MISS_FACTOR = 15; // log 1 every MISS_FACTOR cache misses
18 const MISS_TTL_SEC = 3600; // how many seconds ago is "recent"
19
20 protected function __construct() {
21 global $wgUseGzip;
22
23 $this->mUseGzip = (bool)$wgUseGzip;
24 }
25
26 /**
27 * Get the base file cache directory
28 * @return string
29 */
30 final protected function baseCacheDirectory() {
31 global $wgFileCacheDirectory;
32 return $wgFileCacheDirectory;
33 }
34
35 /**
36 * Get the base cache directory (not specific to this file)
37 * @return string
38 */
39 abstract protected function cacheDirectory();
40
41 /**
42 * Get the path to the cache file
43 * @return string
44 */
45 protected function cachePath() {
46 if ( $this->mFilePath !== null ) {
47 return $this->mFilePath;
48 }
49
50 $dir = $this->cacheDirectory();
51 # Build directories (methods include the trailing "/")
52 $subDirs = $this->typeSubdirectory() . $this->hashSubdirectory();
53 # Avoid extension confusion
54 $key = str_replace( '.', '%2E', urlencode( $this->mKey ) );
55 # Build the full file path
56 $this->mFilePath = "{$dir}/{$subDirs}{$key}.{$this->mExt}";
57 if ( $this->useGzip() ) {
58 $this->mFilePath .= '.gz';
59 }
60
61 return $this->mFilePath;
62 }
63
64 /**
65 * Check if the cache file exists
66 * @return bool
67 */
68 public function isCached() {
69 if ( $this->mCached === null ) {
70 $this->mCached = file_exists( $this->cachePath() );
71 }
72 return $this->mCached;
73 }
74
75 /**
76 * Get the last-modified timestamp of the cache file
77 * @return string|bool TS_MW timestamp
78 */
79 public function cacheTimestamp() {
80 $timestamp = filemtime( $this->cachePath() );
81 return ( $timestamp !== false )
82 ? wfTimestamp( TS_MW, $timestamp )
83 : false;
84 }
85
86 /**
87 * Check if up to date cache file exists
88 * @param $timestamp string MW_TS timestamp
89 *
90 * @return bool
91 */
92 public function isCacheGood( $timestamp = '' ) {
93 global $wgCacheEpoch;
94
95 if ( !$this->isCached() ) {
96 return false;
97 }
98
99 $cachetime = $this->cacheTimestamp();
100 $good = ( $timestamp <= $cachetime && $wgCacheEpoch <= $cachetime );
101 wfDebug( __METHOD__ . ": cachetime $cachetime, touched '{$timestamp}' epoch {$wgCacheEpoch}, good $good\n" );
102
103 return $good;
104 }
105
106 /**
107 * Check if the cache is gzipped
108 * @return bool
109 */
110 protected function useGzip() {
111 return $this->mUseGzip;
112 }
113
114 /**
115 * Get the uncompressed text from the cache
116 * @return string
117 */
118 public function fetchText() {
119 if( $this->useGzip() ) {
120 $fh = gzopen( $this->cachePath(), 'rb' );
121 return stream_get_contents( $fh );
122 } else {
123 return file_get_contents( $this->cachePath() );
124 }
125 }
126
127 /**
128 * Save and compress text to the cache
129 * @return string compressed text
130 */
131 public function saveText( $text ) {
132 global $wgUseFileCache;
133
134 if ( !$wgUseFileCache ) {
135 return false;
136 }
137
138 if ( $this->useGzip() ) {
139 $text = gzencode( $text );
140 }
141
142 $this->checkCacheDirs(); // build parent dir
143 if ( !file_put_contents( $this->cachePath(), $text, LOCK_EX ) ) {
144 wfDebug( __METHOD__ . "() failed saving ". $this->cachePath() . "\n");
145 $this->mCached = null;
146 return false;
147 }
148
149 $this->mCached = true;
150 return $text;
151 }
152
153 /**
154 * Clear the cache for this page
155 * @return void
156 */
157 public function clearCache() {
158 wfSuppressWarnings();
159 unlink( $this->cachePath() );
160 wfRestoreWarnings();
161 $this->mCached = false;
162 }
163
164 /**
165 * Create parent directors of $this->cachePath()
166 * @return void
167 */
168 protected function checkCacheDirs() {
169 wfMkdirParents( dirname( $this->cachePath() ), null, __METHOD__ );
170 }
171
172 /**
173 * Get the cache type subdirectory (with trailing slash)
174 * An extending class could use that method to alter the type -> directory
175 * mapping. @see HTMLFileCache::typeSubdirectory() for an example.
176 *
177 * @return string
178 */
179 protected function typeSubdirectory() {
180 return $this->mType . '/';
181 }
182
183 /**
184 * Return relative multi-level hash subdirectory (with trailing slash)
185 * or the empty string if not $wgFileCacheDepth
186 * @return string
187 */
188 protected function hashSubdirectory() {
189 global $wgFileCacheDepth;
190
191 $subdir = '';
192 if ( $wgFileCacheDepth > 0 ) {
193 $hash = md5( $this->mKey );
194 for ( $i = 1; $i <= $wgFileCacheDepth; $i++ ) {
195 $subdir .= substr( $hash, 0, $i ) . '/';
196 }
197 }
198
199 return $subdir;
200 }
201
202 /**
203 * Roughly increments the cache misses in the last hour by unique visitors
204 * @param $request WebRequest
205 * @return void
206 */
207 public function incrMissesRecent( WebRequest $request ) {
208 global $wgMemc;
209 if ( mt_rand( 0, self::MISS_FACTOR - 1 ) == 0 ) {
210 # Get a large IP range that should include the user even if that
211 # person's IP address changes
212 $ip = $request->getIP();
213 if ( !IP::isValid( $ip ) ) {
214 return;
215 }
216 $ip = IP::isIPv6( $ip )
217 ? IP::sanitizeRange( "$ip/32" )
218 : IP::sanitizeRange( "$ip/16" );
219
220 # Bail out if a request already came from this range...
221 $key = wfMemcKey( get_class( $this ), 'attempt', $this->mType, $this->mKey, $ip );
222 if ( $wgMemc->get( $key ) ) {
223 return; // possibly the same user
224 }
225 $wgMemc->set( $key, 1, self::MISS_TTL_SEC );
226
227 # Increment the number of cache misses...
228 $key = $this->cacheMissKey();
229 if ( $wgMemc->get( $key ) === false ) {
230 $wgMemc->set( $key, 1, self::MISS_TTL_SEC );
231 } else {
232 $wgMemc->incr( $key );
233 }
234 }
235 }
236
237 /**
238 * Roughly gets the cache misses in the last hour by unique visitors
239 * @return int
240 */
241 public function getMissesRecent() {
242 global $wgMemc;
243 return self::MISS_FACTOR * $wgMemc->get( $this->cacheMissKey() );
244 }
245
246 /**
247 * @return string
248 */
249 protected function cacheMissKey() {
250 return wfMemcKey( get_class( $this ), 'misses', $this->mType, $this->mKey );
251 }
252 }