source: trunk/lib/Cache.inc.php @ 550

Last change on this file since 550 was 537, checked in by anonymous, 9 years ago

Minor

File size: 10.4 KB
RevLine 
[1]1<?php
2/**
[362]3 * The Strangecode Codebase - a general application development framework for PHP
4 * For details visit the project site: <http://trac.strangecode.com/codebase/>
[396]5 * Copyright 2001-2012 Strangecode, LLC
[468]6 *
[362]7 * This file is part of The Strangecode Codebase.
8 *
9 * The Strangecode Codebase is free software: you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as published by the
11 * Free Software Foundation, either version 3 of the License, or (at your option)
12 * any later version.
[468]13 *
[362]14 * The Strangecode Codebase is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
17 * details.
[468]18 *
[362]19 * You should have received a copy of the GNU General Public License along with
20 * The Strangecode Codebase. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23/**
[136]24 * Cache.inc.php
25 *
[1]26 * Provides an API for storing a limited amount of data
27 * intended to have a short lifetime in a user's session.
28 *
[534]29 * Disable cache per-request by adding '_disable_cache=1' to a GET or POST parameter.
30 *
[1]31 * @author  Quinn Comendant <quinn@strangecode.com>
[136]32 * @version 2.1
[1]33 * @since   2001
34 */
[136]35
[502]36class Cache
37{
[136]38
[468]39    // A place to keep object instances for the singleton pattern.
[484]40    protected static $instances = array();
[468]41
[152]42    // Namespace of this instance of Prefs.
[484]43    protected $_ns;
[152]44
45    // Configuration parameters for this object.
[484]46    protected $_params = array(
[468]47
48        // Type of cache. Currently only 'session' is supported.
49        'type' => 'session',
50
[334]51        // If false nothing will be cached or retrieved. Useful for testing realtime data requests.
[21]52        'enabled' => true,
[152]53
54        // The maximum size in bytes of any one variable.
55        'item_size_limit' => 4194304, // 4 MB
[468]56
[152]57        // The maximum size in bytes before the cache will begin flushing out old items.
58        'stack_size_limit' => 4194304, // 4 MB
[468]59
[152]60        // The minimum items to keep in the cache regardless of item or cache size.
61        'min_items' => 5,
[1]62    );
[468]63
[152]64    /*
[537]65    * Constructor. This is publicly accessible for compatibility with older implementations,
[468]66    * but the preferred method of instantiation is by use of the singleton pattern:
67    *   $cache =& Cache::getInstance('namespace');
68    *   $cache->setParam(array('enabled' => true));
[152]69    *
70    * @access   public
71    * @param    string  $namespace  This object will store data under this realm.
72    * @author   Quinn Comendant <quinn@strangecode.com>
73    * @version  1.0
74    * @since    05 Jun 2006 23:14:21
75    */
[468]76    public function __construct($namespace='')
[152]77    {
[172]78        $app =& App::getInstance();
[468]79
[154]80        $this->_ns = $namespace;
[172]81
82        if (true !== $app->getParam('enable_session')) {
[523]83            // Force disable the cache because there is no session to save to.
[534]84            $app->logMsg('Cache disabled, enable_session != true.', LOG_DEBUG, __FILE__, __LINE__);
[172]85            $this->setParam(array('enabled' => false));
[523]86        } else if (!isset($_SESSION['_cache'][$this->_ns])) {
87            // Otherwise, clear to initialize the session variable.
[152]88            $this->clear();
89        }
90    }
[1]91
92    /**
93     * This method enforces the singleton pattern for this class.
94     *
[136]95     * @return  object  Reference to the global Cache object.
[1]96     * @access  public
97     * @static
98     */
[468]99    public static function &getInstance($namespace='')
[136]100    {
[468]101        if (!array_key_exists($namespace, self::$instances)) {
102            self::$instances[$namespace] = new self($namespace);
[1]103        }
[468]104        return self::$instances[$namespace];
[1]105    }
106
107    /**
108     * Set (or overwrite existing) parameters by passing an array of new parameters.
109     *
110     * @access public
111     * @param  array    $params     Array of parameters (key => val pairs).
112     */
[468]113    public function setParam($params)
[1]114    {
[479]115        $app =& App::getInstance();
[21]116
[1]117        if (isset($params) && is_array($params)) {
118            // Merge new parameters with old overriding only those passed.
[136]119            $this->_params = array_merge($this->_params, $params);
[1]120        } else {
[136]121            $app->logMsg(sprintf('Parameters are not an array: %s', $params), LOG_ERR, __FILE__, __LINE__);
[1]122        }
123    }
124
125    /**
126     * Return the value of a parameter, if it exists.
127     *
128     * @access public
129     * @param string $param        Which parameter to return.
130     * @return mixed               Configured parameter value.
131     */
[468]132    public function getParam($param)
[1]133    {
[479]134        $app =& App::getInstance();
[468]135
[478]136        if (array_key_exists($param, $this->_params)) {
[136]137            return $this->_params[$param];
[1]138        } else {
[146]139            $app->logMsg(sprintf('Parameter is not set: %s', $param), LOG_DEBUG, __FILE__, __LINE__);
[1]140            return null;
141        }
142    }
143
144    /**
[334]145     * Stores a new variable in the session cache. The $key should not be numeric
[468]146     * because the array_shift function will reset the key to the next largest
[174]147     * int key. Weird behavior I can't understand. For example $cache["123"] will become $cache[0]
[1]148     *
[468]149     * @param str   $key                An identifier for the cached object.
150     * @param mixed $var                The data to store in the session cache.
151     * @param bool  $allow_oversized    If we have something really big that we still want to cache, setting this to true allows this.
152     * @return bool                     True on success, false otherwise.
[1]153     */
[468]154    public function set($key, $var, $allow_oversized=false)
[1]155    {
[479]156        $app =& App::getInstance();
[1]157
[534]158        if (true !== $this->getParam('enabled') || getFormData('_disable_cache')) {
[316]159            $app->logMsg(sprintf('Cache disabled, not saving data.', null), LOG_DEBUG, __FILE__, __LINE__);
[21]160            return false;
161        }
162
[468]163        if (is_numeric($key)) {
164            $app->logMsg(sprintf('Cache::set key value should not be numeric (%s given)', $key), LOG_WARNING, __FILE__, __LINE__);
165        }
166
[152]167        $var = serialize($var);
[247]168        $var_len = mb_strlen($var);
[42]169
[152]170        if ($var_len >= $this->getParam('item_size_limit')) {
171            $app->logMsg(sprintf('Serialized variable (%s bytes) more than item_size_limit (%s bytes).', $var_len, $this->getParam('item_size_limit')), LOG_NOTICE, __FILE__, __LINE__);
[1]172            return false;
173        }
[42]174
[468]175        if ($allow_oversized && $var_len >= $this->getParam('stack_size_limit')) {
[152]176            $app->logMsg(sprintf('Serialized variable (%s bytes) more than stack_size_limit (%s bytes).', $var_len, $this->getParam('stack_size_limit')), LOG_NOTICE, __FILE__, __LINE__);
[1]177            return false;
[468]178        }
[1]179
[152]180        // Remove any value already stored under this key.
[174]181        unset($_SESSION['_cache'][$this->_ns][$key]);
[152]182
183        // Continue to prune the cache if its size is greater than stack_size_limit, but keep at least min_items.
[247]184        while (mb_strlen(serialize($_SESSION['_cache'][$this->_ns])) + $var_len >= $this->getParam('stack_size_limit') && sizeof($_SESSION['_cache'][$this->_ns]) >= $this->getParam('min_items')) {
[154]185            array_shift($_SESSION['_cache'][$this->_ns]);
[1]186        }
[42]187
[152]188        // Save this value under the specified key.
[174]189        $_SESSION['_cache'][$this->_ns][$key] =& $var;
[152]190
191        if ($var_len >= 1024000) {
192            $app->logMsg(sprintf('Successfully cached oversized variable (%s bytes).', $var_len), LOG_DEBUG, __FILE__, __LINE__);
[1]193        }
[42]194
[136]195        return true;
[1]196    }
[42]197
[1]198    /**
[334]199     * Retrieves an object from the session cache and returns it unserialized.
[1]200     * It also moves it to the top of the stack, which makes it such that the
201     * cache flushing mechanism of putCache deletes the oldest referenced items
202     * first.
203     *
[136]204     * @param string $key  The key for the datum to retrieve.
[1]205     * @return mixed          The requested datum, or false on failure.
206     */
[468]207    public function get($key)
[1]208    {
[153]209        $app =& App::getInstance();
[162]210
[534]211        if (true !== $this->getParam('enabled') || getFormData('_disable_cache')) {
[316]212            $app->logMsg(sprintf('Cache disabled, not getting data.', null), LOG_DEBUG, __FILE__, __LINE__);
[21]213            return false;
214        }
[42]215
[480]216        if (isset($_SESSION['_cache'][$this->_ns]) && array_key_exists($key, $_SESSION['_cache'][$this->_ns])) {
[537]217            $app->logMsg(sprintf('Retrieving %s from cache.', $key), LOG_DEBUG, __FILE__, __LINE__);
[1]218            // Move the accessed cached datum to the top of the stack. Maybe somebody knows a better way to do this?
[174]219            $tmp =& $_SESSION['_cache'][$this->_ns][$key];
220            unset($_SESSION['_cache'][$this->_ns][$key]);
221            $_SESSION['_cache'][$this->_ns][$key] =& $tmp;
[1]222            // Return the unserialized datum.
[174]223            return unserialize($_SESSION['_cache'][$this->_ns][$key]);
[1]224        } else {
[172]225            $app->logMsg(sprintf('Missing %s from cache.', $key), LOG_DEBUG, __FILE__, __LINE__);
[1]226            return false;
227        }
228    }
[42]229
[1]230    /**
231     * Tells you if the object is cached.
232     *
[136]233     * @param string $key  The key of the object to check.
[218]234     * @return bool         True if a value exists for the given key.
[1]235     */
[468]236    public function exists($key)
[1]237    {
[405]238        $app =& App::getInstance();
239
[534]240        if (true !== $this->getParam('enabled') || getFormData('_disable_cache')) {
[405]241            $app->logMsg(sprintf('Cache disabled on exist assertion.', null), LOG_DEBUG, __FILE__, __LINE__);
[21]242            return false;
243        }
244
[480]245        return (isset($_SESSION['_cache'][$this->_ns]) && array_key_exists($key, $_SESSION['_cache'][$this->_ns]));
[1]246    }
[42]247
[1]248    /**
[188]249     * Removes a cached object.
[1]250     *
[136]251     * @param string $key  The key of the object to check.
[218]252     * @return bool         True if the value existed before being unset.
[1]253     */
[468]254    public function delete($key)
[1]255    {
[523]256        $app =& App::getInstance();
257
[534]258        if (true !== $this->getParam('enabled') || getFormData('_disable_cache')) {
[523]259            $app->logMsg(sprintf('Cache disabled, skipping delete of %s', $key), LOG_DEBUG, __FILE__, __LINE__);
260            return false;
261        }
262
[480]263        if (isset($_SESSION['_cache'][$this->_ns]) && array_key_exists($key, $_SESSION['_cache'][$this->_ns])) {
[218]264            unset($_SESSION['_cache'][$this->_ns][$key]);
265            return true;
266        } else {
267            return false;
268        }
[1]269    }
[468]270
[152]271    /*
272    * Delete all existing items from the cache.
273    *
274    * @access   public
275    * @author   Quinn Comendant <quinn@strangecode.com>
276    * @version  1.0
277    * @since    05 Jun 2006 23:51:34
278    */
[468]279    public function clear()
[152]280    {
[154]281        $_SESSION['_cache'][$this->_ns] = array();
[152]282    }
[1]283
[136]284// END Cache
[1]285}
286
Note: See TracBrowser for help on using the repository browser.