1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
|
<?php
/**
*
* @package acm
* @version $Id: acm_file.php 9233 2008-12-27 12:18:04Z acydburn $
* @copyright (c) 2005 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/**
* Base cache class.
*
* A prefix of # for $var_name indicates global data.
*
* @method mixed get($var_name) Get cached data.
* @method mixed put($var_name, $data, $ttl = 31536000) Put data into cache.
* @method mixed destroy($var_name) Destroy cached data.
* @method mixed exists($var_name) Check if cached data exists.
*
* @package acm
*/
class phpbb_acm
{
/**
* @var array required phpBB objects
*/
public $phpbb_required = array();
/**
* @var array Optional phpBB objects
*/
public $phpbb_optional = array();
/**
* @var array Currently registered core acm types.
*/
public $cache_types = array('data' => NULL, 'sql' => NULL);
/**
* Constructor
* @access public
*/
public function __construct() { }
/**
* Magic method for calling type-specific functions.
* Functions directly supported are: get(), put(), exists(), destroy()
*
* The type is added to the methods name, for getting sql data just use get_sql() for example.
*
* see {@link phpbb_acm_abstract phpbb_acm_abstract} for more information
*
* @access public
*/
public function __call($method, $arguments)
{
$supported_internal_functions = array('get', 'put', 'exists', 'destroy');
$internal_method = explode('_', $method, 2);
// Get cache type and method
if (in_array($internal_method[0], $supported_internal_functions))
{
$cache_type = (empty($internal_method[1])) ? 'data' : $internal_method[1];
$method = $internal_method[0];
}
else
{
$cache_type = $arguments[0];
array_shift($arguments);
}
// Check if the cache type is initialized and exist
if (!$this->type_exists($cache_type))
{
return false;
}
// $this->cache_types[$cache_type]->$method($arguments);
return call_user_func_array(array($this->cache_types[$cache_type], $method), $arguments);
}
/**
* Tidy cache. This removes all expired cache data.
* @access public
*/
public function tidy()
{
foreach ($this->cache_types as $cache_type => $object)
{
if ($object === NULL)
{
continue;
}
$this->cache_types[$cache_type]->tidy();
}
}
/**
* Purge cache. This removes all cache data, not only the expired one.
* @access public
*/
public function purge()
{
foreach ($this->cache_types as $cache_type => $object)
{
if ($object === NULL)
{
continue;
}
$this->cache_types[$cache_type]->purge();
}
}
/**
* Load cache data. This is usually only used internally.
* @access public
*/
public function load()
{
foreach ($this->cache_types as $cache_type => $object)
{
if ($object === NULL)
{
continue;
}
$this->cache_types[$cache_type]->load();
}
}
/**
* Unload everything from cache and make sure non-stored cache items are properly saved.
* @access public
*/
public function unload()
{
foreach ($this->cache_types as $cache_type => $object)
{
if ($object === NULL)
{
continue;
}
$this->cache_types[$cache_type]->unload();
}
}
/**
* Register a custom cache type/class.
*
* @param string $cache_type The cache type to register/set
* @param string $cache_append String to append to the cached data as identifier (if the coder has different types to distinct from)
* @param string $cache_object The exact name of the cache class to load.
* The filename must be: <code>includes/acm/acm_{$cache_object}.php</code>
* The class definition must be: <code>class phpbb_acm_{$cache_object} extends phpbb_acm_abstract</code>
* Additionally it is possible to define classes for every cache type...
* for example: <code>phpbb_acm_{$cache_object}_{$cache_type} extends phpbb_acm_{$cache_object}</code>
*
* @return bool Returns true on success, else false.
* @access public
*/
public function register($cache_type, $cache_append = false, $cache_object = false)
{
$cache_object = ($cache_object === false) ? basename(phpbb::$base_config['acm_type']) : basename($cache_object);
// We need to init every cache type...
if (!isset($this->cache_types[$cache_type]))
{
$this->cache_types[$cache_type] = NULL;
}
// Unregister if already registered
if ($this->cache_types[$cache_type] !== NULL)
{
$this->cache_types[$cache_type] = NULL;
}
if ($this->cache_types[$cache_type] === NULL)
{
$class_name = 'phpbb_acm_' . $cache_object;
if (!class_exists($class_name))
{
if (!file_exists(PHPBB_ROOT_PATH . 'includes/acm/acm_' . $cache_object . '.' . PHP_EXT))
{
return false;
}
require_once PHPBB_ROOT_PATH . 'includes/acm/acm_' . $cache_object . '.' . PHP_EXT;
}
$class_name = (class_exists('phpbb_acm_' . $cache_object . '_' . $cache_type)) ? 'phpbb_acm_' . $cache_object . '_' . $cache_type : 'phpbb_acm_' . $cache_object;
// Set cache prefix, for example ctpl_prosilver
$cache_prefix = ($cache_append === false) ? $cache_type : $cache_type . '_' . $cache_append;
$this->cache_types[$cache_type] = new $class_name($cache_prefix);
if (!$this->supported($cache_type))
{
$this->cache_types[$cache_type] = NULL;
return false;
}
}
return true;
}
/**
* Check if a specified cache type is supported with the ACM class
*
* @param string $cache_type The cache type to check.
*
* @return bool True if the type is supported, else false.
* @access public
*/
public function supported($cache_type)
{
if (!$this->type_exists($cache_type))
{
return false;
}
return !empty($this->cache_types[$cache_type]->supported[$cache_type]) || $this->cache_types[$cache_type]->supported === true;
}
/**
* Check if the cache type exists. Sometimes some types do not exist if the relevant files are not there or do not support the given cache type.
*
* @param string $cache_type The cache type to check.
*
* @return bool True if the type exist, else false.
* @access private
*/
private function type_exists($cache_type)
{
if (!isset($this->cache_types[$cache_type]) || $this->cache_types[$cache_type] === NULL)
{
$this->register($cache_type);
}
return $this->cache_types[$cache_type] !== NULL;
}
}
/**
* The abstract class all ACM plugins must extend.
* @package acm
*/
abstract class phpbb_acm_abstract
{
/**
* @var string The current cache prefix
*/
public $cache_prefix = '';
/**
* @var array Cached global data
*/
protected $vars = array();
/**
* @var array Expire information for cached global data
*/
protected $var_expires = array();
/**
* @var bool Is true if global data is modified
*/
protected $is_modified = false;
/**
* Get cached data
*
* @param string $var_name Variable name. Global variable name is prefixed with #.
*
* @return mixed Returns false if there is no data available, else returns the data
* @access public
*/
abstract public function get($var_name);
/**
* Put data into cache
*
* @param string $var_name Variable name. Global variable name is prefixed with #.
* @param mixed $data Data to be put into cache.
* @param int $ttl Cache lifetime in seconds.
*
* @return mixed Returns $data
* @access public
*/
abstract public function put($var_name, $data, $ttl = 31536000);
/**
* Destroy cached data.
*
* @param string $var_name Variable name. Global variable name is prefixed with #.
*
* @return mixed Returns false if the cached data does not exist
* @access public
*/
abstract public function destroy($var_name);
/**
* Check if cached data exists.
*
* @param string $var_name Variable name. Global variable name is prefixed with #.
*
* @return bool True if it exists
* @access public
*/
abstract public function exists($var_name);
/**
* Load cache data. This is usually only used internally.
* @access public
*/
abstract public function load();
/**
* Unload everything from cache and make sure non-stored cache items are properly saved.
* @access public
*/
abstract public function unload();
/**
* Tidy cache. This removes all expired cache data.
* @access public
*/
public function tidy()
{
$this->tidy_local();
$this->tidy_global();
set_config('cache_last_gc', time(), true);
}
/**
* Purge cache. This removes all cache data, not only the expired one.
* @access public
*/
public function purge()
{
$this->purge_local();
$this->purge_global();
}
/**
* Tidy only local cache data
* @access protected
*/
abstract protected function tidy_local();
/**
* Purge only local cache data
* @access protected
*/
abstract protected function purge_local();
/**
* Get global cache data. See {@link get() get()}.
* @access protected
*/
protected function get_global($var_name)
{
// Check if we have all variables
if (!sizeof($this->vars))
{
$this->load();
}
if (!isset($this->var_expires[$var_name]))
{
return false;
}
// If expired... we remove this entry now...
if (time() > $this->var_expires[$var_name])
{
$this->destroy('#' . $var_name);
return false;
}
if (isset($this->vars[$var_name]))
{
return $this->vars[$var_name];
}
return false;
}
/**
* Put data into global cache. See {@link put() put()}.
* @access protected
*/
protected function put_global($var_name, $data, $ttl = 31536000)
{
$this->vars[$var_name] = $data;
$this->var_expires[$var_name] = time() + $ttl;
$this->is_modified = true;
return $data;
}
/**
* Check if global data exists. See {@link exists() exists()}.
* @access protected
*/
protected function exists_global($var_name)
{
return !empty($this->vars[$var_name]) && time() <= $this->var_expires[$var_name];
}
/**
* Destroy global cache data. See {@link destroy() destroy()}.
* @access protected
*/
protected function destroy_global($var_name)
{
$this->is_modified = true;
unset($this->vars[$var_name]);
unset($this->var_expires[$var_name]);
// We save here to let the following cache hits succeed
$this->unload();
}
/**
* Tidy global cache data. See {@link tidy() tidy()}.
* @access protected
*/
protected function tidy_global()
{
// Now tidy global settings
if (!sizeof($this->vars))
{
$this->load();
}
foreach ($this->var_expires as $var_name => $expires)
{
if (time() > $expires)
{
// We only unset, then save later
unset($this->vars[$var_name]);
unset($this->var_expires[$var_name]);
}
}
$this->is_modified = true;
$this->unload();
}
/**
* Purge global cache data. See {@link purge() purge()}.
* @access protected
*/
protected function purge_global()
{
// Now purge global settings
unset($this->vars);
unset($this->var_expires);
$this->vars = array();
$this->var_expires = array();
$this->is_modified = true;
$this->unload();
}
}
?>
|