Remove dismiss from deletion log. This simply doesn't make sense to me, nor does...
[lhc/web/wiklou.git] / includes / ParserCache.php
index 53f7212..1489fcf 100644 (file)
@@ -1,29 +1,36 @@
 <?php
 /**
  *
- * @package MediaWiki
- * @subpackage Cache
- */
-
-/**
- *
- * @package MediaWiki
+ * @addtogroup Cache
+ * @todo document
  */
 class ParserCache {
+       /**
+        * Get an instance of this object
+        */
+       public static function &singleton() {
+               static $instance;
+               if ( !isset( $instance ) ) {
+                       global $parserMemc;
+                       $instance = new ParserCache( $parserMemc );
+               }
+               return $instance;
+       }
+
        /**
         * Setup a cache pathway with a given back-end storage mechanism.
         * May be a memcached client or a BagOStuff derivative.
         *
         * @param object $memCached
         */
-       function ParserCache( &$memCached ) {
+       function __construct( &$memCached ) {
                $this->mMemc =& $memCached;
        }
 
        function getKey( &$article, &$user ) {
-               global $wgDBname, $action;
+               global $action;
                $hash = $user->getPageRenderingHash();
-               if( !$article->mTitle->userCanEdit() ) {
+               if( !$article->mTitle->quickUserCan( 'edit' ) ) {
                        // section edit links are suppressed even if the user has them on
                        $edit = '!edit=0';
                } else {
@@ -31,7 +38,7 @@ class ParserCache {
                }
                $pageid = intval( $article->getID() );
                $renderkey = (int)($action == 'render');
-               $key = "$wgDBname:pcache:idhash:$pageid-$renderkey!$hash$edit";
+               $key = wfMemcKey( 'pcache', 'idhash', "$pageid-$renderkey!$hash$edit" );
                return $key;
        }
 
@@ -44,8 +51,6 @@ class ParserCache {
                $fname = 'ParserCache::get';
                wfProfileIn( $fname );
 
-               $hash = $user->getPageRenderingHash();
-               $pageid = intval( $article->getID() );
                $key = $this->getKey( $article, $user );
 
                wfDebug( "Trying parser cache $key\n" );
@@ -66,8 +71,10 @@ class ParserCache {
                                }
                                $this->mMemc->delete( $key );
                                $value = false;
-
                        } else {
+                               if ( isset( $value->mTimestamp ) ) {
+                                       $article->mTimestamp = $value->mTimestamp;
+                               }
                                wfIncrStats( "pcache_hit" );
                        }
                } else {
@@ -81,20 +88,32 @@ class ParserCache {
        }
 
        function save( $parserOutput, &$article, &$user ){
+               global $wgParserCacheExpireTime;
                $key = $this->getKey( $article, $user );
-               $now = wfTimestampNow();
-               $parserOutput->setCacheTime( $now );
-               $parserOutput->mText .= "\n<!-- Saved in parser cache with key $key and timestamp $now -->\n";
-               wfDebug( "Saved in parser cache with key $key and timestamp $now\n" );
 
-               if( $parserOutput->containsOldMagic() ){
-                       $expire = 3600; # 1 hour
+               if( $parserOutput->getCacheTime() != -1 ) {
+
+                       $now = wfTimestampNow();
+                       $parserOutput->setCacheTime( $now );
+
+                       // Save the timestamp so that we don't have to load the revision row on view
+                       $parserOutput->mTimestamp = $article->getTimestamp();
+
+                       $parserOutput->mText .= "\n<!-- Saved in parser cache with key $key and timestamp $now -->\n";
+                       wfDebug( "Saved in parser cache with key $key and timestamp $now\n" );
+
+                       if( $parserOutput->containsOldMagic() ){
+                               $expire = 3600; # 1 hour
+                       } else {
+                               $expire = $wgParserCacheExpireTime;
+                       }
+                       $this->mMemc->set( $key, $parserOutput, $expire );
+
                } else {
-                       $expire = 86400; # 1 day
+                       wfDebug( "Parser output was marked as uncacheable and has not been saved.\n" );
                }
-               $this->mMemc->set( $key, $parserOutput, $expire );
        }
-}
 
+}
 
 ?>