4 * Abstract action class with scaffolding for caching HTML and other values
7 * Before using any of the caching functionality, call startCache.
8 * After the last call to either getCachedValue or addCachedHTML, call saveCache.
10 * To get a cached value or compute it, use getCachedValue like this:
11 * $this->getCachedValue( $callback );
13 * To add HTML that should be cached, use addCachedHTML like this:
14 * $this->addCachedHTML( $callback );
16 * The callback function is only called when needed, so do all your expensive
17 * computations here. This function should returns the HTML to be cached.
18 * It should not add anything to the PageOutput object!
22 * @file CachedAction.php
25 * @licence GNU GPL v2 or later
26 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
28 abstract class CachedAction
extends FormlessAction
implements ICacheHelper
{
31 * CacheHelper object to which we forward the non-SpecialPage specific caching work.
32 * Initialized in startCache.
37 protected $cacheHelper;
40 * If the cache is enabled or not.
45 protected $cacheEnabled = true;
48 * Sets if the cache should be enabled or not.
51 * @param boolean $cacheEnabled
53 public function setCacheEnabled( $cacheEnabled ) {
54 $this->cacheHelper
->setCacheEnabled( $cacheEnabled );
58 * Initializes the caching.
59 * Should be called before the first time anything is added via addCachedHTML.
63 * @param integer|null $cacheExpiry Sets the cache expiry, either ttl in seconds or unix timestamp.
64 * @param boolean|null $cacheEnabled Sets if the cache should be enabled or not.
66 public function startCache( $cacheExpiry = null, $cacheEnabled = null ) {
67 $this->cacheHelper
= new CacheHelper();
69 $this->cacheHelper
->setCacheEnabled( $this->cacheEnabled
);
70 $this->cacheHelper
->setOnInitializedHandler( array( $this, 'onCacheInitialized' ) );
72 $keyArgs = $this->getCacheKey();
74 if ( array_key_exists( 'action', $keyArgs ) && $keyArgs['action'] === 'purge' ) {
75 unset( $keyArgs['action'] );
78 $this->cacheHelper
->setCacheKey( $keyArgs );
80 if ( $this->getRequest()->getText( 'action' ) === 'purge' ) {
81 $this->cacheHelper
->rebuildOnDemand();
84 $this->cacheHelper
->startCache( $cacheExpiry, $cacheEnabled );
88 * Get a cached value if available or compute it if not and then cache it if possible.
89 * The provided $computeFunction is only called when the computation needs to happen
90 * and should return a result value. $args are arguments that will be passed to the
91 * compute function when called.
95 * @param {function} $computeFunction
96 * @param array|mixed $args
97 * @param string|null $key
101 public function getCachedValue( $computeFunction, $args = array(), $key = null ) {
102 return $this->cacheHelper
->getCachedValue( $computeFunction, $args, $key );
106 * Add some HTML to be cached.
107 * This is done by providing a callback function that should
108 * return the HTML to be added. It will only be called if the
109 * item is not in the cache yet or when the cache has been invalidated.
113 * @param {function} $computeFunction
115 * @param string|null $key
117 public function addCachedHTML( $computeFunction, $args = array(), $key = null ) {
118 $this->getOutput()->addHTML( $this->cacheHelper
->getCachedValue( $computeFunction, $args, $key ) );
122 * Saves the HTML to the cache in case it got recomputed.
123 * Should be called after the last time anything is added via addCachedHTML.
127 public function saveCache() {
128 $this->cacheHelper
->saveCache();
132 * Sets the time to live for the cache, in seconds or a unix timestamp indicating the point of expiry.
136 * @param integer $cacheExpiry
138 public function setExpiry( $cacheExpiry ) {
139 $this->cacheHelper
->setExpiry( $cacheExpiry );
143 * Returns the variables used to constructed the cache key in an array.
149 protected function getCacheKey() {
151 get_class( $this->page
),
153 $this->getLanguage()->getCode()
158 * Gets called after the cache got initialized.
162 * @param boolean $hasCached
164 public function onCacheInitialized( $hasCached ) {
166 $this->getOutput()->setSubtitle( $this->cacheHelper
->getCachedNotice( $this->getContext() ) );