Andrey Andreev | 7d4ea07 | 2011-12-25 19:23:50 +0200 | [diff] [blame] | 1 | <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); |
Greg Aker | bde25d9 | 2010-12-21 09:31:21 -0600 | [diff] [blame] | 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
Phil Sturgeon | 07c1ac8 | 2012-03-09 17:03:37 +0000 | [diff] [blame] | 5 | * An open source application development framework for PHP 5.2.4 or newer |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 6 | * |
| 7 | * NOTICE OF LICENSE |
Andrey Andreev | 7d4ea07 | 2011-12-25 19:23:50 +0200 | [diff] [blame] | 8 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 9 | * Licensed under the Open Software License version 3.0 |
Andrey Andreev | 7d4ea07 | 2011-12-25 19:23:50 +0200 | [diff] [blame] | 10 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 11 | * This source file is subject to the Open Software License (OSL 3.0) that is |
| 12 | * bundled with this package in the files license.txt / license.rst. It is |
| 13 | * also available through the world wide web at this URL: |
| 14 | * http://opensource.org/licenses/OSL-3.0 |
| 15 | * If you did not receive a copy of the license and are unable to obtain it |
| 16 | * through the world wide web, please send an email to |
| 17 | * licensing@ellislab.com so we can send you a copy immediately. |
Greg Aker | bde25d9 | 2010-12-21 09:31:21 -0600 | [diff] [blame] | 18 | * |
| 19 | * @package CodeIgniter |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 20 | * @author EllisLab Dev Team |
Greg Aker | 0defe5d | 2012-01-01 18:46:41 -0600 | [diff] [blame] | 21 | * @copyright Copyright (c) 2006 - 2012 EllisLab, Inc. |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 22 | * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) |
Greg Aker | bde25d9 | 2010-12-21 09:31:21 -0600 | [diff] [blame] | 23 | * @link http://codeigniter.com |
| 24 | * @since Version 2.0 |
Andrey Andreev | 7d4ea07 | 2011-12-25 19:23:50 +0200 | [diff] [blame] | 25 | * @filesource |
Greg Aker | bde25d9 | 2010-12-21 09:31:21 -0600 | [diff] [blame] | 26 | */ |
| 27 | |
Greg Aker | bde25d9 | 2010-12-21 09:31:21 -0600 | [diff] [blame] | 28 | /** |
Andrey Andreev | 7d4ea07 | 2011-12-25 19:23:50 +0200 | [diff] [blame] | 29 | * CodeIgniter Caching Class |
Greg Aker | bde25d9 | 2010-12-21 09:31:21 -0600 | [diff] [blame] | 30 | * |
| 31 | * @package CodeIgniter |
| 32 | * @subpackage Libraries |
| 33 | * @category Core |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 34 | * @author EllisLab Dev Team |
Andrey Andreev | 7d4ea07 | 2011-12-25 19:23:50 +0200 | [diff] [blame] | 35 | * @link |
Greg Aker | bde25d9 | 2010-12-21 09:31:21 -0600 | [diff] [blame] | 36 | */ |
Phil Sturgeon | eb2dcda | 2011-04-02 14:44:58 +0100 | [diff] [blame] | 37 | class CI_Cache extends CI_Driver_Library { |
Andrey Andreev | 7d4ea07 | 2011-12-25 19:23:50 +0200 | [diff] [blame] | 38 | |
Timothy Warren | 0688ac9 | 2012-04-20 10:25:04 -0400 | [diff] [blame] | 39 | /** |
| 40 | * Valid cache drivers |
| 41 | * |
| 42 | * @var array |
| 43 | */ |
Greg Aker | bde25d9 | 2010-12-21 09:31:21 -0600 | [diff] [blame] | 44 | protected $valid_drivers = array( |
Anton Lindqvist | 3093042 | 2012-04-25 12:32:58 +0200 | [diff] [blame] | 45 | 'cache_apc', |
Anton Lindqvist | 6581cac | 2012-04-25 12:35:41 +0200 | [diff] [blame] | 46 | 'cache_dummy', |
Anton Lindqvist | 3093042 | 2012-04-25 12:32:58 +0200 | [diff] [blame] | 47 | 'cache_file', |
Anton Lindqvist | 6581cac | 2012-04-25 12:35:41 +0200 | [diff] [blame] | 48 | 'cache_memcached', |
Anton Lindqvist | 3093042 | 2012-04-25 12:32:58 +0200 | [diff] [blame] | 49 | 'cache_redis', |
| 50 | 'cache_wincache' |
| 51 | ); |
Greg Aker | bde25d9 | 2010-12-21 09:31:21 -0600 | [diff] [blame] | 52 | |
Timothy Warren | 0688ac9 | 2012-04-20 10:25:04 -0400 | [diff] [blame] | 53 | /** |
| 54 | * Path of cache files (if file-based cache) |
| 55 | * |
| 56 | * @var string |
| 57 | */ |
| 58 | protected $_cache_path = NULL; |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 59 | |
Timothy Warren | 0688ac9 | 2012-04-20 10:25:04 -0400 | [diff] [blame] | 60 | /** |
| 61 | * Reference to the driver |
| 62 | * |
Timothy Warren | b82bc3a | 2012-04-27 09:12:58 -0400 | [diff] [blame] | 63 | * @var mixed |
Timothy Warren | 0688ac9 | 2012-04-20 10:25:04 -0400 | [diff] [blame] | 64 | */ |
| 65 | protected $_adapter = 'dummy'; |
Andrey Andreev | 5645479 | 2012-05-17 14:32:19 +0300 | [diff] [blame] | 66 | |
Timothy Warren | 0688ac9 | 2012-04-20 10:25:04 -0400 | [diff] [blame] | 67 | /** |
| 68 | * Fallback driver |
| 69 | * |
| 70 | * @param string |
| 71 | */ |
Eric Roberts | bf50a3b | 2012-05-27 19:04:43 -0500 | [diff] [blame] | 72 | protected $_backup_driver = 'dummy'; |
Andrey Andreev | 7d4ea07 | 2011-12-25 19:23:50 +0200 | [diff] [blame] | 73 | |
Greg Aker | bde25d9 | 2010-12-21 09:31:21 -0600 | [diff] [blame] | 74 | /** |
| 75 | * Constructor |
| 76 | * |
Greg Aker | bde25d9 | 2010-12-21 09:31:21 -0600 | [diff] [blame] | 77 | * Initialize class properties based on the configuration array. |
| 78 | * |
Andrey Andreev | 7d4ea07 | 2011-12-25 19:23:50 +0200 | [diff] [blame] | 79 | * @param array |
Andrey Andreev | b24b033 | 2012-03-26 15:34:39 +0300 | [diff] [blame] | 80 | * @return void |
Greg Aker | bde25d9 | 2010-12-21 09:31:21 -0600 | [diff] [blame] | 81 | */ |
Andrey Andreev | b24b033 | 2012-03-26 15:34:39 +0300 | [diff] [blame] | 82 | public function __construct($config = array()) |
Greg Aker | 03abee3 | 2011-12-25 00:31:29 -0600 | [diff] [blame] | 83 | { |
Greg Aker | bde25d9 | 2010-12-21 09:31:21 -0600 | [diff] [blame] | 84 | $default_config = array( |
Timothy Warren | 0688ac9 | 2012-04-20 10:25:04 -0400 | [diff] [blame] | 85 | 'adapter', |
| 86 | 'memcached' |
| 87 | ); |
Greg Aker | bde25d9 | 2010-12-21 09:31:21 -0600 | [diff] [blame] | 88 | |
| 89 | foreach ($default_config as $key) |
| 90 | { |
| 91 | if (isset($config[$key])) |
| 92 | { |
| 93 | $param = '_'.$key; |
| 94 | |
| 95 | $this->{$param} = $config[$key]; |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | if (isset($config['backup'])) |
| 100 | { |
| 101 | if (in_array('cache_'.$config['backup'], $this->valid_drivers)) |
| 102 | { |
| 103 | $this->_backup_driver = $config['backup']; |
| 104 | } |
| 105 | } |
Eric Roberts | bf50a3b | 2012-05-27 19:04:43 -0500 | [diff] [blame] | 106 | |
| 107 | // If the specified adapter isn't available, check the backup. |
| 108 | if ( ! $this->is_supported($this->_adapter)) |
| 109 | { |
| 110 | if ( ! $this->is_supported($this->_backup_driver)) |
| 111 | { |
| 112 | // Backup isn't supported either. Default to 'Dummy' driver. |
| 113 | log_message('error', 'Cache adapter "'.$this->_adapter.'" and backup "'.$this->_backup_driver.'" are both unavailable. Cache is now using "Dummy" adapter.'); |
| 114 | $this->_adapter = 'dummy'; |
| 115 | } |
| 116 | else |
| 117 | { |
| 118 | // Backup is supported. Set it to primary. |
| 119 | $this->_adapter = $this->_backup_driver; |
| 120 | } |
| 121 | } |
Greg Aker | bde25d9 | 2010-12-21 09:31:21 -0600 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | // ------------------------------------------------------------------------ |
| 125 | |
| 126 | /** |
Andrey Andreev | b24b033 | 2012-03-26 15:34:39 +0300 | [diff] [blame] | 127 | * Get |
| 128 | * |
| 129 | * Look for a value in the cache. If it exists, return the data |
| 130 | * if not, return FALSE |
| 131 | * |
| 132 | * @param string |
| 133 | * @return mixed value that is stored/FALSE on failure |
| 134 | */ |
| 135 | public function get($id) |
| 136 | { |
| 137 | return $this->{$this->_adapter}->get($id); |
| 138 | } |
| 139 | |
| 140 | // ------------------------------------------------------------------------ |
| 141 | |
| 142 | /** |
| 143 | * Cache Save |
| 144 | * |
| 145 | * @param string Unique Key |
| 146 | * @param mixed Data to store |
| 147 | * @param int Length of time (in seconds) to cache the data |
| 148 | * @return bool true on success/false on failure |
| 149 | */ |
| 150 | public function save($id, $data, $ttl = 60) |
| 151 | { |
| 152 | return $this->{$this->_adapter}->save($id, $data, $ttl); |
| 153 | } |
| 154 | |
| 155 | // ------------------------------------------------------------------------ |
| 156 | |
| 157 | /** |
| 158 | * Delete from Cache |
| 159 | * |
| 160 | * @param mixed unique identifier of the item in the cache |
| 161 | * @return bool true on success/false on failure |
| 162 | */ |
| 163 | public function delete($id) |
| 164 | { |
| 165 | return $this->{$this->_adapter}->delete($id); |
| 166 | } |
| 167 | |
| 168 | // ------------------------------------------------------------------------ |
| 169 | |
| 170 | /** |
| 171 | * Clean the cache |
| 172 | * |
| 173 | * @return bool false on failure/true on success |
| 174 | */ |
| 175 | public function clean() |
| 176 | { |
| 177 | return $this->{$this->_adapter}->clean(); |
| 178 | } |
| 179 | |
| 180 | // ------------------------------------------------------------------------ |
| 181 | |
| 182 | /** |
| 183 | * Cache Info |
| 184 | * |
| 185 | * @param string user/filehits |
| 186 | * @return mixed array on success, false on failure |
| 187 | */ |
| 188 | public function cache_info($type = 'user') |
| 189 | { |
| 190 | return $this->{$this->_adapter}->cache_info($type); |
| 191 | } |
| 192 | |
| 193 | // ------------------------------------------------------------------------ |
| 194 | |
| 195 | /** |
| 196 | * Get Cache Metadata |
| 197 | * |
| 198 | * @param mixed key to get cache metadata on |
| 199 | * @return mixed return value from child method |
| 200 | */ |
| 201 | public function get_metadata($id) |
| 202 | { |
| 203 | return $this->{$this->_adapter}->get_metadata($id); |
| 204 | } |
| 205 | |
| 206 | // ------------------------------------------------------------------------ |
| 207 | |
| 208 | /** |
Greg Aker | bde25d9 | 2010-12-21 09:31:21 -0600 | [diff] [blame] | 209 | * Is the requested driver supported in this environment? |
| 210 | * |
Andrey Andreev | b24b033 | 2012-03-26 15:34:39 +0300 | [diff] [blame] | 211 | * @param string The driver to test. |
| 212 | * @return array |
Greg Aker | bde25d9 | 2010-12-21 09:31:21 -0600 | [diff] [blame] | 213 | */ |
| 214 | public function is_supported($driver) |
| 215 | { |
| 216 | static $support = array(); |
| 217 | |
| 218 | if ( ! isset($support[$driver])) |
| 219 | { |
| 220 | $support[$driver] = $this->{$driver}->is_supported(); |
| 221 | } |
| 222 | |
| 223 | return $support[$driver]; |
| 224 | } |
| 225 | |
Greg Aker | bde25d9 | 2010-12-21 09:31:21 -0600 | [diff] [blame] | 226 | } |
Greg Aker | bde25d9 | 2010-12-21 09:31:21 -0600 | [diff] [blame] | 227 | |
| 228 | /* End of file Cache.php */ |
Andrey Andreev | 7d4ea07 | 2011-12-25 19:23:50 +0200 | [diff] [blame] | 229 | /* Location: ./system/libraries/Cache/Cache.php */ |