xref: /dokuwiki/inc/cache.php (revision a8795974051a91137b01ff88dbf5586a647b24ce)
14b5f4f4eSchris<?php
24b5f4f4eSchris/**
34b5f4f4eSchris * Generic class to handle caching
44b5f4f4eSchris *
54b5f4f4eSchris * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
64b5f4f4eSchris * @author     Chris Smith <chris@jalakai.co.uk>
74b5f4f4eSchris */
84b5f4f4eSchris
9fa8adffeSAndreas Gohrif(!defined('DOKU_INC')) die('meh.');
104b5f4f4eSchris
11cefd14cbSGerrit Uitslag/**
12cefd14cbSGerrit Uitslag * Generic handling of caching
13cefd14cbSGerrit Uitslag */
144b5f4f4eSchrisclass cache {
15c59b3e00SGerrit Uitslag    public $key = '';          // primary identifier for this item
16c59b3e00SGerrit Uitslag    public $ext = '';          // file ext for cache data, secondary identifier for this item
17c59b3e00SGerrit Uitslag    public $cache = '';        // cache file name
18c59b3e00SGerrit Uitslag    public $depends = array(); // array containing cache dependency information,
190abe1d3eSchris    //   used by _useCache to determine cache validity
204b5f4f4eSchris
214b5f4f4eSchris    var $_event = '';       // event to be triggered during useCache
22d7fd4c3eSGerrit Uitslag    var $_time;
234b5f4f4eSchris
24c59b3e00SGerrit Uitslag    /**
25c59b3e00SGerrit Uitslag     * @param string $key primary identifier
26c59b3e00SGerrit Uitslag     * @param string $ext file extension
27c59b3e00SGerrit Uitslag     */
28c59b3e00SGerrit Uitslag    public function cache($key,$ext) {
294b5f4f4eSchris        $this->key = $key;
304b5f4f4eSchris        $this->ext = $ext;
314b5f4f4eSchris        $this->cache = getCacheName($key,$ext);
324b5f4f4eSchris    }
334b5f4f4eSchris
344b5f4f4eSchris    /**
354b5f4f4eSchris     * public method to determine whether the cache can be used
364b5f4f4eSchris     *
374b5f4f4eSchris     * to assist in cetralisation of event triggering and calculation of cache statistics,
384b5f4f4eSchris     * don't override this function override _useCache()
394b5f4f4eSchris     *
404b5f4f4eSchris     * @param  array   $depends   array of cache dependencies, support dependecies:
414b5f4f4eSchris     *                            'age'   => max age of the cache in seconds
424b5f4f4eSchris     *                            'files' => cache must be younger than mtime of each file
43ce6b63d9Schris     *                                       (nb. dependency passes if file doesn't exist)
444b5f4f4eSchris     *
454b5f4f4eSchris     * @return bool    true if cache can be used, false otherwise
464b5f4f4eSchris     */
47c59b3e00SGerrit Uitslag    public function useCache($depends=array()) {
484b5f4f4eSchris        $this->depends = $depends;
490abe1d3eSchris        $this->_addDependencies();
504b5f4f4eSchris
514b5f4f4eSchris        if ($this->_event) {
524b5f4f4eSchris            return $this->_stats(trigger_event($this->_event,$this,array($this,'_useCache')));
534b5f4f4eSchris        } else {
544b5f4f4eSchris            return $this->_stats($this->_useCache());
554b5f4f4eSchris        }
564b5f4f4eSchris    }
574b5f4f4eSchris
580abe1d3eSchris    /**
594b5f4f4eSchris     * private method containing cache use decision logic
604b5f4f4eSchris     *
610abe1d3eSchris     * this function processes the following keys in the depends array
620abe1d3eSchris     *   purge - force a purge on any non empty value
630abe1d3eSchris     *   age   - expire cache if older than age (seconds)
640abe1d3eSchris     *   files - expire cache if any file in this array was updated more recently than the cache
650abe1d3eSchris     *
66*a8795974SMichael Hamann     * Note that this function needs to be public as it is used as callback for the event handler
67*a8795974SMichael Hamann     *
680abe1d3eSchris     * can be overridden
694b5f4f4eSchris     *
704b5f4f4eSchris     * @return bool               see useCache()
714b5f4f4eSchris     */
72*a8795974SMichael Hamann    public function _useCache() {
734b5f4f4eSchris
740abe1d3eSchris        if (!empty($this->depends['purge'])) return false;              // purge requested?
754b5f4f4eSchris        if (!($this->_time = @filemtime($this->cache))) return false;   // cache exists?
764b5f4f4eSchris
774b5f4f4eSchris        // cache too old?
784b5f4f4eSchris        if (!empty($this->depends['age']) && ((time() - $this->_time) > $this->depends['age'])) return false;
794b5f4f4eSchris
804b5f4f4eSchris        if (!empty($this->depends['files'])) {
814b5f4f4eSchris            foreach ($this->depends['files'] as $file) {
82a257b0bdSMartin Doucha                if ($this->_time <= @filemtime($file)) return false;         // cache older than files it depends on?
834b5f4f4eSchris            }
844b5f4f4eSchris        }
854b5f4f4eSchris
864b5f4f4eSchris        return true;
874b5f4f4eSchris    }
884b5f4f4eSchris
894b5f4f4eSchris    /**
900abe1d3eSchris     * add dependencies to the depends array
910abe1d3eSchris     *
920abe1d3eSchris     * this method should only add dependencies,
930abe1d3eSchris     * it should not remove any existing dependencies and
940abe1d3eSchris     * it should only overwrite a dependency when the new value is more stringent than the old
950abe1d3eSchris     */
96c59b3e00SGerrit Uitslag    protected function _addDependencies() {
977d01a0eaSTom N Harris        global $INPUT;
987d01a0eaSTom N Harris        if ($INPUT->has('purge')) $this->depends['purge'] = true;   // purge requested
990abe1d3eSchris    }
1000abe1d3eSchris
1010abe1d3eSchris    /**
1024b5f4f4eSchris     * retrieve the cached data
1034b5f4f4eSchris     *
1044b5f4f4eSchris     * @param   bool   $clean   true to clean line endings, false to leave line endings alone
1054b5f4f4eSchris     * @return  string          cache contents
1064b5f4f4eSchris     */
107c59b3e00SGerrit Uitslag    public function retrieveCache($clean=true) {
1084b5f4f4eSchris        return io_readFile($this->cache, $clean);
1094b5f4f4eSchris    }
1104b5f4f4eSchris
1114b5f4f4eSchris    /**
1124b5f4f4eSchris     * cache $data
1134b5f4f4eSchris     *
1144b5f4f4eSchris     * @param   string $data   the data to be cached
115cbaf4259SChris Smith     * @return  bool           true on success, false otherwise
1164b5f4f4eSchris     */
117c59b3e00SGerrit Uitslag    public function storeCache($data) {
118cbaf4259SChris Smith        return io_savefile($this->cache, $data);
1194b5f4f4eSchris    }
1204b5f4f4eSchris
1214b5f4f4eSchris    /**
1224b5f4f4eSchris     * remove any cached data associated with this cache instance
1234b5f4f4eSchris     */
124c59b3e00SGerrit Uitslag    public function removeCache() {
1254b5f4f4eSchris        @unlink($this->cache);
1264b5f4f4eSchris    }
1274b5f4f4eSchris
1284b5f4f4eSchris    /**
12933c1bd61SBen Coburn     * Record cache hits statistics.
13033c1bd61SBen Coburn     * (Only when debugging allowed, to reduce overhead.)
1314b5f4f4eSchris     *
1324b5f4f4eSchris     * @param    bool   $success   result of this cache use attempt
1334b5f4f4eSchris     * @return   bool              pass-thru $success value
1344b5f4f4eSchris     */
135c59b3e00SGerrit Uitslag    protected function _stats($success) {
1364b5f4f4eSchris        global $conf;
13749eb6e38SAndreas Gohr        static $stats = null;
1384b5f4f4eSchris        static $file;
1394b5f4f4eSchris
14033c1bd61SBen Coburn        if (!$conf['allowdebug']) { return $success; }
14133c1bd61SBen Coburn
1424b5f4f4eSchris        if (is_null($stats)) {
1434b5f4f4eSchris            $file = $conf['cachedir'].'/cache_stats.txt';
1444b5f4f4eSchris            $lines = explode("\n",io_readFile($file));
1454b5f4f4eSchris
1464b5f4f4eSchris            foreach ($lines as $line) {
1474b5f4f4eSchris                $i = strpos($line,',');
1484b5f4f4eSchris                $stats[substr($line,0,$i)] = $line;
1494b5f4f4eSchris            }
1504b5f4f4eSchris        }
1514b5f4f4eSchris
1524b5f4f4eSchris        if (isset($stats[$this->ext])) {
1530abe1d3eSchris            list($ext,$count,$hits) = explode(',',$stats[$this->ext]);
1544b5f4f4eSchris        } else {
1554b5f4f4eSchris            $ext = $this->ext;
1564b5f4f4eSchris            $count = 0;
1570abe1d3eSchris            $hits = 0;
1584b5f4f4eSchris        }
1594b5f4f4eSchris
1604b5f4f4eSchris        $count++;
1610abe1d3eSchris        if ($success) $hits++;
1620abe1d3eSchris        $stats[$this->ext] = "$ext,$count,$hits";
1634b5f4f4eSchris
1644b5f4f4eSchris        io_saveFile($file,join("\n",$stats));
1654b5f4f4eSchris
1664b5f4f4eSchris        return $success;
1674b5f4f4eSchris    }
1684b5f4f4eSchris}
1694b5f4f4eSchris
170cefd14cbSGerrit Uitslag/**
171cefd14cbSGerrit Uitslag * Parser caching
172cefd14cbSGerrit Uitslag */
1734b5f4f4eSchrisclass cache_parser extends cache {
1744b5f4f4eSchris
175c59b3e00SGerrit Uitslag    public $file = '';       // source file for cache
176c59b3e00SGerrit Uitslag    public $mode = '';       // input mode (represents the processing the input file will undergo)
1774b5f4f4eSchris
1784b5f4f4eSchris    var $_event = 'PARSER_CACHE_USE';
1794b5f4f4eSchris
180c59b3e00SGerrit Uitslag    /**
181c59b3e00SGerrit Uitslag     *
182c59b3e00SGerrit Uitslag     * @param string $id page id
183c59b3e00SGerrit Uitslag     * @param string $file source file for cache
184c59b3e00SGerrit Uitslag     * @param string $mode input mode
185c59b3e00SGerrit Uitslag     */
186c59b3e00SGerrit Uitslag    public function cache_parser($id, $file, $mode) {
1874b5f4f4eSchris        if ($id) $this->page = $id;
1884b5f4f4eSchris        $this->file = $file;
1894b5f4f4eSchris        $this->mode = $mode;
1904b5f4f4eSchris
1914b5f4f4eSchris        parent::cache($file.$_SERVER['HTTP_HOST'].$_SERVER['SERVER_PORT'],'.'.$mode);
1924b5f4f4eSchris    }
1934b5f4f4eSchris
194c59b3e00SGerrit Uitslag    /**
195c59b3e00SGerrit Uitslag     * method contains cache use decision logic
196c59b3e00SGerrit Uitslag     *
197c59b3e00SGerrit Uitslag     * @return bool               see useCache()
198c59b3e00SGerrit Uitslag     */
199*a8795974SMichael Hamann    public function _useCache() {
2004b5f4f4eSchris
2014b5f4f4eSchris        if (!@file_exists($this->file)) return false;                   // source exists?
2020abe1d3eSchris        return parent::_useCache();
2030abe1d3eSchris    }
2044b5f4f4eSchris
205c59b3e00SGerrit Uitslag    protected function _addDependencies() {
206c59b3e00SGerrit Uitslag        global $conf;
2070abe1d3eSchris
2080abe1d3eSchris        $this->depends['age'] = isset($this->depends['age']) ?
2090abe1d3eSchris            min($this->depends['age'],$conf['cachetime']) : $conf['cachetime'];
2104b5f4f4eSchris
2114b5f4f4eSchris        // parser cache file dependencies ...
2124b5f4f4eSchris        $files = array($this->file,                              // ... source
2134b5f4f4eSchris                DOKU_INC.'inc/parser/parser.php',                // ... parser
2144b5f4f4eSchris                DOKU_INC.'inc/parser/handler.php',               // ... handler
2154b5f4f4eSchris                );
216f8121585SChris Smith        $files = array_merge($files, getConfigFiles('main'));    // ... wiki settings
2174b5f4f4eSchris
2184b5f4f4eSchris        $this->depends['files'] = !empty($this->depends['files']) ? array_merge($files, $this->depends['files']) : $files;
2190abe1d3eSchris        parent::_addDependencies();
2204b5f4f4eSchris    }
2214b5f4f4eSchris
2224b5f4f4eSchris}
2234b5f4f4eSchris
224cefd14cbSGerrit Uitslag/**
225cefd14cbSGerrit Uitslag * Caching of data of renderer
226cefd14cbSGerrit Uitslag */
2274b5f4f4eSchrisclass cache_renderer extends cache_parser {
228c59b3e00SGerrit Uitslag
229c59b3e00SGerrit Uitslag    /**
230c59b3e00SGerrit Uitslag     * method contains cache use decision logic
231c59b3e00SGerrit Uitslag     *
232c59b3e00SGerrit Uitslag     * @return bool               see useCache()
233c59b3e00SGerrit Uitslag     */
234*a8795974SMichael Hamann    public function _useCache() {
235b9991f57Schris        global $conf;
2364b5f4f4eSchris
2370abe1d3eSchris        if (!parent::_useCache()) return false;
2384b5f4f4eSchris
239c0322273SAdrian Lang        if (!isset($this->page)) {
240c0322273SAdrian Lang            return true;
241c0322273SAdrian Lang        }
242c0322273SAdrian Lang
2432302d6beSMartin Doucha        if ($this->_time < @filemtime(metaFN($this->page,'.meta'))) return false;         // meta cache older than file it depends on?
2442302d6beSMartin Doucha
245c0322273SAdrian Lang        // check current link existence is consistent with cache version
246c0322273SAdrian Lang        // first check the purgefile
247c0322273SAdrian Lang        // - if the cache is more recent than the purgefile we know no links can have been updated
2482e3d6a01SKazutaka Miyasaka        if ($this->_time >= @filemtime($conf['cachedir'].'/purgefile')) {
249c0322273SAdrian Lang            return true;
250c0322273SAdrian Lang        }
251c0322273SAdrian Lang
252ce6b63d9Schris        // for wiki pages, check metadata dependencies
253ce6b63d9Schris        $metadata = p_get_metadata($this->page);
2540abe1d3eSchris
255c0322273SAdrian Lang        if (!isset($metadata['relation']['references']) ||
2562e3d6a01SKazutaka Miyasaka                empty($metadata['relation']['references'])) {
257c0322273SAdrian Lang            return true;
258c0322273SAdrian Lang        }
2590abe1d3eSchris
260c0322273SAdrian Lang        foreach ($metadata['relation']['references'] as $id => $exists) {
261103c256aSChris Smith            if ($exists != page_exists($id,'',false)) return false;
2624b5f4f4eSchris        }
2634b5f4f4eSchris
2644b5f4f4eSchris        return true;
2654b5f4f4eSchris    }
2660abe1d3eSchris
267c59b3e00SGerrit Uitslag    protected function _addDependencies() {
2680abe1d3eSchris
2690abe1d3eSchris        // renderer cache file dependencies ...
2700abe1d3eSchris        $files = array(
2710abe1d3eSchris                DOKU_INC.'inc/parser/'.$this->mode.'.php',       // ... the renderer
2720abe1d3eSchris                );
273ce6b63d9Schris
274ce6b63d9Schris        // page implies metadata and possibly some other dependencies
275ce6b63d9Schris        if (isset($this->page)) {
2760a69dff7Schris
27798214867SMichael Hamann            $valid = p_get_metadata($this->page, 'date valid');         // for xhtml this will render the metadata if needed
2780a69dff7Schris            if (!empty($valid['age'])) {
2790a69dff7Schris                $this->depends['age'] = isset($this->depends['age']) ?
2800a69dff7Schris                    min($this->depends['age'],$valid['age']) : $valid['age'];
2810a69dff7Schris            }
282ce6b63d9Schris        }
2830abe1d3eSchris
2840abe1d3eSchris        $this->depends['files'] = !empty($this->depends['files']) ? array_merge($files, $this->depends['files']) : $files;
2850abe1d3eSchris        parent::_addDependencies();
2860abe1d3eSchris    }
2874b5f4f4eSchris}
2884b5f4f4eSchris
289cefd14cbSGerrit Uitslag/**
290cefd14cbSGerrit Uitslag * Caching of parser instructions
291cefd14cbSGerrit Uitslag */
2924b5f4f4eSchrisclass cache_instructions extends cache_parser {
2934b5f4f4eSchris
294c59b3e00SGerrit Uitslag    /**
295c59b3e00SGerrit Uitslag     * @param string $id page id
296c59b3e00SGerrit Uitslag     * @param string $file source file for cache
297c59b3e00SGerrit Uitslag     */
298c59b3e00SGerrit Uitslag    public function cache_instructions($id, $file) {
2994b5f4f4eSchris        parent::cache_parser($id, $file, 'i');
3004b5f4f4eSchris    }
3014b5f4f4eSchris
302c59b3e00SGerrit Uitslag    /**
303c59b3e00SGerrit Uitslag     * retrieve the cached data
304c59b3e00SGerrit Uitslag     *
305c59b3e00SGerrit Uitslag     * @param   bool   $clean   true to clean line endings, false to leave line endings alone
306c59b3e00SGerrit Uitslag     * @return  string          cache contents
307c59b3e00SGerrit Uitslag     */
308c59b3e00SGerrit Uitslag    public function retrieveCache($clean=true) {
3094b5f4f4eSchris        $contents = io_readFile($this->cache, false);
3104b5f4f4eSchris        return !empty($contents) ? unserialize($contents) : array();
3114b5f4f4eSchris    }
3124b5f4f4eSchris
313c59b3e00SGerrit Uitslag    /**
314c59b3e00SGerrit Uitslag     * cache $instructions
315c59b3e00SGerrit Uitslag     *
316c59b3e00SGerrit Uitslag     * @param   string $instructions  the instruction to be cached
317c59b3e00SGerrit Uitslag     * @return  bool                  true on success, false otherwise
318c59b3e00SGerrit Uitslag     */
319c59b3e00SGerrit Uitslag    public function storeCache($instructions) {
320cbaf4259SChris Smith        return io_savefile($this->cache,serialize($instructions));
3214b5f4f4eSchris    }
3224b5f4f4eSchris}
323