Subversion-Projekte lars-tiefland.ci

Revision

Revision 2257 | Details | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
68 lars 1
<?php
2
/**
3
 * CodeIgniter
4
 *
5
 * An open source application development framework for PHP
6
 *
7
 * This content is released under the MIT License (MIT)
8
 *
2414 lars 9
 * Copyright (c) 2014 - 2019, British Columbia Institute of Technology
68 lars 10
 *
11
 * Permission is hereby granted, free of charge, to any person obtaining a copy
12
 * of this software and associated documentation files (the "Software"), to deal
13
 * in the Software without restriction, including without limitation the rights
14
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
 * copies of the Software, and to permit persons to whom the Software is
16
 * furnished to do so, subject to the following conditions:
17
 *
18
 * The above copyright notice and this permission notice shall be included in
19
 * all copies or substantial portions of the Software.
20
 *
21
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27
 * THE SOFTWARE.
28
 *
29
 * @package	CodeIgniter
30
 * @author	EllisLab Dev Team
31
 * @copyright	Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
2414 lars 32
 * @copyright	Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
33
 * @license	https://opensource.org/licenses/MIT	MIT License
68 lars 34
 * @link	https://codeigniter.com
35
 * @since	Version 2.0.0
36
 * @filesource
37
 */
38
defined('BASEPATH') OR exit('No direct script access allowed');
39
 
40
/**
41
 * CodeIgniter APC Caching Class
42
 *
43
 * @package		CodeIgniter
44
 * @subpackage	Libraries
45
 * @category	Core
46
 * @author		EllisLab Dev Team
47
 * @link
48
 */
49
class CI_Cache_apc extends CI_Driver {
50
 
51
	/**
52
	 * Class constructor
53
	 *
54
	 * Only present so that an error message is logged
55
	 * if APC is not available.
56
	 *
57
	 * @return	void
58
	 */
59
	public function __construct()
60
	{
61
		if ( ! $this->is_supported())
62
		{
63
			log_message('error', 'Cache: Failed to initialize APC; extension not loaded/enabled?');
64
		}
65
	}
66
 
67
	// ------------------------------------------------------------------------
68
 
69
	/**
70
	 * Get
71
	 *
72
	 * Look for a value in the cache. If it exists, return the data
73
	 * if not, return FALSE
74
	 *
75
	 * @param	string
76
	 * @return	mixed	value that is stored/FALSE on failure
77
	 */
78
	public function get($id)
79
	{
80
		$success = FALSE;
81
		$data = apc_fetch($id, $success);
82
 
2107 lars 83
		return ($success === TRUE) ? $data : FALSE;
68 lars 84
	}
85
 
86
	// ------------------------------------------------------------------------
87
 
88
	/**
89
	 * Cache Save
90
	 *
91
	 * @param	string	$id	Cache ID
92
	 * @param	mixed	$data	Data to store
93
	 * @param	int	$ttl	Length of time (in seconds) to cache the data
2107 lars 94
	 * @param	bool	$raw	Whether to store the raw value (unused)
68 lars 95
	 * @return	bool	TRUE on success, FALSE on failure
96
	 */
97
	public function save($id, $data, $ttl = 60, $raw = FALSE)
98
	{
2107 lars 99
		return apc_store($id, $data, (int) $ttl);
68 lars 100
	}
101
 
102
	// ------------------------------------------------------------------------
103
 
104
	/**
105
	 * Delete from Cache
106
	 *
107
	 * @param	mixed	unique identifier of the item in the cache
108
	 * @return	bool	true on success/false on failure
109
	 */
110
	public function delete($id)
111
	{
112
		return apc_delete($id);
113
	}
114
 
115
	// ------------------------------------------------------------------------
116
 
117
	/**
118
	 * Increment a raw value
119
	 *
120
	 * @param	string	$id	Cache ID
121
	 * @param	int	$offset	Step/value to add
122
	 * @return	mixed	New value on success or FALSE on failure
123
	 */
124
	public function increment($id, $offset = 1)
125
	{
126
		return apc_inc($id, $offset);
127
	}
128
 
129
	// ------------------------------------------------------------------------
130
 
131
	/**
132
	 * Decrement a raw value
133
	 *
134
	 * @param	string	$id	Cache ID
135
	 * @param	int	$offset	Step/value to reduce by
136
	 * @return	mixed	New value on success or FALSE on failure
137
	 */
138
	public function decrement($id, $offset = 1)
139
	{
140
		return apc_dec($id, $offset);
141
	}
142
 
143
	// ------------------------------------------------------------------------
144
 
145
	/**
146
	 * Clean the cache
147
	 *
148
	 * @return	bool	false on failure/true on success
149
	 */
150
	public function clean()
151
	{
152
		return apc_clear_cache('user');
153
	}
154
 
155
	// ------------------------------------------------------------------------
156
 
157
	/**
158
	 * Cache Info
159
	 *
160
	 * @param	string	user/filehits
161
	 * @return	mixed	array on success, false on failure
162
	 */
163
	 public function cache_info($type = NULL)
164
	 {
165
		 return apc_cache_info($type);
166
	 }
167
 
168
	// ------------------------------------------------------------------------
169
 
170
	/**
171
	 * Get Cache Metadata
172
	 *
173
	 * @param	mixed	key to get cache metadata on
174
	 * @return	mixed	array on success/false on failure
175
	 */
176
	public function get_metadata($id)
177
	{
2107 lars 178
		$cache_info = apc_cache_info('user', FALSE);
179
		if (empty($cache_info) OR empty($cache_info['cache_list']))
68 lars 180
		{
181
			return FALSE;
182
		}
183
 
2107 lars 184
		foreach ($cache_info['cache_list'] as &$entry)
185
		{
186
			if ($entry['info'] !== $id)
187
			{
188
				continue;
189
			}
68 lars 190
 
2107 lars 191
			$success  = FALSE;
192
			$metadata = array(
193
				'expire' => ($entry['ttl'] ? $entry['mtime'] + $entry['ttl'] : 0),
194
				'mtime'  => $entry['ttl'],
195
				'data'   => apc_fetch($id, $success)
196
			);
197
 
198
			return ($success === TRUE) ? $metadata : FALSE;
199
		}
200
 
201
		return FALSE;
68 lars 202
	}
203
 
204
	// ------------------------------------------------------------------------
205
 
206
	/**
207
	 * is_supported()
208
	 *
209
	 * Check to see if APC is available on this system, bail if it isn't.
210
	 *
211
	 * @return	bool
212
	 */
213
	public function is_supported()
214
	{
215
		return (extension_loaded('apc') && ini_get('apc.enabled'));
216
	}
217
}