Removing leecruft. No, you sure as hell couldn't defer it.
[lhc/web/wiklou.git] / includes / ParserCache.php
1 <?php
2 /**
3 *
4 * @package MediaWiki
5 * @subpackage Cache
6 */
7
8 /**
9 *
10 * @package MediaWiki
11 */
12 class ParserCache {
13 /**
14 * Get an instance of this object
15 */
16 function &singleton() {
17 static $instance;
18 if ( !isset( $instance ) ) {
19 global $parserMemc;
20 $instance = new ParserCache( $parserMemc );
21 }
22 return $instance;
23 }
24
25 /**
26 * Setup a cache pathway with a given back-end storage mechanism.
27 * May be a memcached client or a BagOStuff derivative.
28 *
29 * @param object $memCached
30 */
31 function ParserCache( &$memCached ) {
32 $this->mMemc =& $memCached;
33 }
34
35 function getKey( &$article, &$user ) {
36 global $wgDBname, $action;
37 $hash = $user->getPageRenderingHash();
38 if( !$article->mTitle->userCanEdit() ) {
39 // section edit links are suppressed even if the user has them on
40 $edit = '!edit=0';
41 } else {
42 $edit = '';
43 }
44 $pageid = intval( $article->getID() );
45 $renderkey = (int)($action == 'render');
46 $key = "$wgDBname:pcache:idhash:$pageid-$renderkey!$hash$edit";
47 return $key;
48 }
49
50 function getETag( &$article, &$user ) {
51 return 'W/"' . $this->getKey($article, $user) . "--" . $article->mTouched. '"';
52 }
53
54 function get( &$article, &$user ) {
55 global $wgCacheEpoch;
56 $fname = 'ParserCache::get';
57 wfProfileIn( $fname );
58
59 $hash = $user->getPageRenderingHash();
60 $pageid = intval( $article->getID() );
61 $key = $this->getKey( $article, $user );
62
63 wfDebug( "Trying parser cache $key\n" );
64 $value = $this->mMemc->get( $key );
65 if ( is_object( $value ) ) {
66 wfDebug( "Found.\n" );
67 # Delete if article has changed since the cache was made
68 $canCache = $article->checkTouched();
69 $cacheTime = $value->getCacheTime();
70 $touched = $article->mTouched;
71 if ( !$canCache || $value->expired( $touched ) ) {
72 if ( !$canCache ) {
73 wfIncrStats( "pcache_miss_invalid" );
74 wfDebug( "Invalid cached redirect, touched $touched, epoch $wgCacheEpoch, cached $cacheTime\n" );
75 } else {
76 wfIncrStats( "pcache_miss_expired" );
77 wfDebug( "Key expired, touched $touched, epoch $wgCacheEpoch, cached $cacheTime\n" );
78 }
79 $this->mMemc->delete( $key );
80 $value = false;
81
82 } else {
83 wfIncrStats( "pcache_hit" );
84 }
85 } else {
86 wfDebug( "Parser cache miss.\n" );
87 wfIncrStats( "pcache_miss_absent" );
88 $value = false;
89 }
90
91 wfProfileOut( $fname );
92 return $value;
93 }
94
95 function save( $parserOutput, &$article, &$user ){
96 global $wgParserCacheExpireTime;
97 $key = $this->getKey( $article, $user );
98 $now = wfTimestampNow();
99 $parserOutput->setCacheTime( $now );
100 $parserOutput->mText .= "\n<!-- Saved in parser cache with key $key and timestamp $now -->\n";
101 wfDebug( "Saved in parser cache with key $key and timestamp $now\n" );
102
103 if( $parserOutput->containsOldMagic() ){
104 $expire = 3600; # 1 hour
105 } else {
106 $expire = $wgParserCacheExpireTime;
107 }
108 $this->mMemc->set( $key, $parserOutput, $expire );
109 }
110 }
111
112
113 ?>