3 * Data storage in the file system.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 * Base class for data storage in the file system.
29 abstract class FileCacheBase
{
31 protected $mType = 'object';
32 protected $mExt = 'cache';
38 /* @todo configurable? */
39 const MISS_FACTOR
= 15; // log 1 every MISS_FACTOR cache misses
40 const MISS_TTL_SEC
= 3600; // how many seconds ago is "recent"
42 protected function __construct() {
45 $this->mUseGzip
= (bool)$wgUseGzip;
49 * Get the base file cache directory
52 final protected function baseCacheDirectory() {
53 global $wgFileCacheDirectory;
55 return $wgFileCacheDirectory;
59 * Get the base cache directory (not specific to this file)
62 abstract protected function cacheDirectory();
65 * Get the path to the cache file
68 protected function cachePath() {
69 if ( $this->mFilePath
!== null ) {
70 return $this->mFilePath
;
73 $dir = $this->cacheDirectory();
74 # Build directories (methods include the trailing "/")
75 $subDirs = $this->typeSubdirectory() . $this->hashSubdirectory();
76 # Avoid extension confusion
77 $key = str_replace( '.', '%2E', urlencode( $this->mKey
) );
78 # Build the full file path
79 $this->mFilePath
= "{$dir}/{$subDirs}{$key}.{$this->mExt}";
80 if ( $this->useGzip() ) {
81 $this->mFilePath
.= '.gz';
84 return $this->mFilePath
;
88 * Check if the cache file exists
91 public function isCached() {
92 if ( $this->mCached
=== null ) {
93 $this->mCached
= file_exists( $this->cachePath() );
96 return $this->mCached
;
100 * Get the last-modified timestamp of the cache file
101 * @return string|bool TS_MW timestamp
103 public function cacheTimestamp() {
104 $timestamp = filemtime( $this->cachePath() );
106 return ( $timestamp !== false )
107 ?
wfTimestamp( TS_MW
, $timestamp )
112 * Check if up to date cache file exists
113 * @param string $timestamp MW_TS timestamp
117 public function isCacheGood( $timestamp = '' ) {
118 global $wgCacheEpoch;
120 if ( !$this->isCached() ) {
124 $cachetime = $this->cacheTimestamp();
125 $good = ( $timestamp <= $cachetime && $wgCacheEpoch <= $cachetime );
126 wfDebug( __METHOD__
.
127 ": cachetime $cachetime, touched '{$timestamp}' epoch {$wgCacheEpoch}, good $good\n" );
133 * Check if the cache is gzipped
136 protected function useGzip() {
137 return $this->mUseGzip
;
141 * Get the uncompressed text from the cache
144 public function fetchText() {
145 if ( $this->useGzip() ) {
146 $fh = gzopen( $this->cachePath(), 'rb' );
148 return stream_get_contents( $fh );
150 return file_get_contents( $this->cachePath() );
155 * Save and compress text to the cache
156 * @param string $text
157 * @return string|false Compressed text
159 public function saveText( $text ) {
160 if ( $this->useGzip() ) {
161 $text = gzencode( $text );
164 $this->checkCacheDirs(); // build parent dir
165 if ( !file_put_contents( $this->cachePath(), $text, LOCK_EX
) ) {
166 wfDebug( __METHOD__
. "() failed saving " . $this->cachePath() . "\n" );
167 $this->mCached
= null;
172 $this->mCached
= true;
178 * Clear the cache for this page
181 public function clearCache() {
182 MediaWiki\
suppressWarnings();
183 unlink( $this->cachePath() );
184 MediaWiki\restoreWarnings
();
185 $this->mCached
= false;
189 * Create parent directors of $this->cachePath()
192 protected function checkCacheDirs() {
193 wfMkdirParents( dirname( $this->cachePath() ), null, __METHOD__
);
197 * Get the cache type subdirectory (with trailing slash)
198 * An extending class could use that method to alter the type -> directory
199 * mapping. @see HTMLFileCache::typeSubdirectory() for an example.
203 protected function typeSubdirectory() {
204 return $this->mType
. '/';
208 * Return relative multi-level hash subdirectory (with trailing slash)
209 * or the empty string if not $wgFileCacheDepth
212 protected function hashSubdirectory() {
213 global $wgFileCacheDepth;
216 if ( $wgFileCacheDepth > 0 ) {
217 $hash = md5( $this->mKey
);
218 for ( $i = 1; $i <= $wgFileCacheDepth; $i++
) {
219 $subdir .= substr( $hash, 0, $i ) . '/';
227 * Roughly increments the cache misses in the last hour by unique visitors
228 * @param WebRequest $request
231 public function incrMissesRecent( WebRequest
$request ) {
232 if ( mt_rand( 0, self
::MISS_FACTOR
- 1 ) == 0 ) {
233 $cache = ObjectCache
::getLocalClusterInstance();
234 # Get a large IP range that should include the user even if that
235 # person's IP address changes
236 $ip = $request->getIP();
237 if ( !IP
::isValid( $ip ) ) {
240 $ip = IP
::isIPv6( $ip )
241 ? IP
::sanitizeRange( "$ip/32" )
242 : IP
::sanitizeRange( "$ip/16" );
244 # Bail out if a request already came from this range...
245 $key = wfMemcKey( get_class( $this ), 'attempt', $this->mType
, $this->mKey
, $ip );
246 if ( $cache->get( $key ) ) {
247 return; // possibly the same user
249 $cache->set( $key, 1, self
::MISS_TTL_SEC
);
251 # Increment the number of cache misses...
252 $key = $this->cacheMissKey();
253 if ( $cache->get( $key ) === false ) {
254 $cache->set( $key, 1, self
::MISS_TTL_SEC
);
256 $cache->incr( $key );
262 * Roughly gets the cache misses in the last hour by unique visitors
265 public function getMissesRecent() {
266 $cache = ObjectCache
::getLocalClusterInstance();
268 return self
::MISS_FACTOR
* $cache->get( $this->cacheMissKey() );
274 protected function cacheMissKey() {
275 return wfMemcKey( get_class( $this ), 'misses', $this->mType
, $this->mKey
);