2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Xcache storage engine for cache.
|
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2013-02-08 11:59:49 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
2013-02-08 12:22:51 +00:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2008-05-30 11:40:08 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2013-02-08 11:59:49 +00:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-11-06 06:00:11 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Cache.Engine
|
2008-10-30 17:30:26 +00:00
|
|
|
* @since CakePHP(tm) v 1.2.0.4947
|
2013-05-30 22:11:14 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Xcache storage engine for cache
|
|
|
|
*
|
2008-10-30 17:30:26 +00:00
|
|
|
* @link http://trac.lighttpd.net/xcache/ Xcache
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Cache.Engine
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
class XcacheEngine extends CacheEngine {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2009-11-21 20:19:11 +00:00
|
|
|
* Settings
|
|
|
|
*
|
|
|
|
* - PHP_AUTH_USER = xcache.admin.user, default cake
|
|
|
|
* - PHP_AUTH_PW = xcache.admin.password, default cake
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $settings = array();
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Initialize the Cache Engine
|
|
|
|
*
|
|
|
|
* Called automatically by the cache frontend
|
|
|
|
* To reinitialize the settings call Cache::engine('EngineName', [optional] settings = array());
|
|
|
|
*
|
2011-04-17 06:13:03 +00:00
|
|
|
* @param array $settings array of setting for the engine
|
2014-07-03 13:36:42 +00:00
|
|
|
* @return bool True if the engine has been successfully initialized, false if not
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2011-07-30 23:17:20 +00:00
|
|
|
public function init($settings = array()) {
|
2015-07-26 13:35:03 +00:00
|
|
|
if (PHP_SAPI !== 'cli') {
|
2012-06-08 09:14:22 +00:00
|
|
|
parent::init(array_merge(array(
|
|
|
|
'engine' => 'Xcache',
|
|
|
|
'prefix' => Inflector::slug(APP_DIR) . '_',
|
|
|
|
'PHP_AUTH_USER' => 'user',
|
|
|
|
'PHP_AUTH_PW' => 'password'
|
|
|
|
), $settings)
|
|
|
|
);
|
|
|
|
return function_exists('xcache_info');
|
2012-04-24 03:59:32 +00:00
|
|
|
}
|
2012-06-08 09:14:22 +00:00
|
|
|
return false;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Write data for key into cache
|
|
|
|
*
|
|
|
|
* @param string $key Identifier for the data
|
|
|
|
* @param mixed $value Data to be cached
|
2014-07-03 13:36:42 +00:00
|
|
|
* @param int $duration How long to cache the data, in seconds
|
|
|
|
* @return bool True if the data was successfully cached, false on failure
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-04-19 04:04:34 +00:00
|
|
|
public function write($key, $value, $duration) {
|
2008-07-26 20:00:20 +00:00
|
|
|
$expires = time() + $duration;
|
2009-11-21 20:44:03 +00:00
|
|
|
xcache_set($key . '_expires', $expires, $duration);
|
2008-05-30 11:40:08 +00:00
|
|
|
return xcache_set($key, $value, $duration);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Read a key from the cache
|
|
|
|
*
|
|
|
|
* @param string $key Identifier for the data
|
|
|
|
* @return mixed The cached data, or false if the data doesn't exist, has expired, or if there was an error fetching it
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function read($key) {
|
2008-05-30 11:40:08 +00:00
|
|
|
if (xcache_isset($key)) {
|
2008-07-26 20:00:20 +00:00
|
|
|
$time = time();
|
2014-09-10 14:29:23 +00:00
|
|
|
$cachetime = (int)xcache_get($key . '_expires');
|
2008-07-26 20:00:20 +00:00
|
|
|
if ($cachetime < $time || ($time + $this->settings['duration']) < $cachetime) {
|
|
|
|
return false;
|
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
return xcache_get($key);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2010-01-21 16:41:44 +00:00
|
|
|
/**
|
|
|
|
* Increments the value of an integer cached key
|
|
|
|
* If the cache key is not an integer it will be treated as 0
|
|
|
|
*
|
|
|
|
* @param string $key Identifier for the data
|
2014-07-03 13:36:42 +00:00
|
|
|
* @param int $offset How much to increment
|
2010-01-21 16:41:44 +00:00
|
|
|
* @return New incremented value, false otherwise
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function increment($key, $offset = 1) {
|
2010-01-21 16:41:44 +00:00
|
|
|
return xcache_inc($key, $offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Decrements the value of an integer cached key.
|
|
|
|
* If the cache key is not an integer it will be treated as 0
|
|
|
|
*
|
|
|
|
* @param string $key Identifier for the data
|
2014-07-03 13:36:42 +00:00
|
|
|
* @param int $offset How much to subtract
|
2010-01-21 16:41:44 +00:00
|
|
|
* @return New decremented value, false otherwise
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function decrement($key, $offset = 1) {
|
2010-01-21 16:41:44 +00:00
|
|
|
return xcache_dec($key, $offset);
|
|
|
|
}
|
2011-12-06 20:52:48 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Delete a key from the cache
|
|
|
|
*
|
|
|
|
* @param string $key Identifier for the data
|
2014-07-03 13:36:42 +00:00
|
|
|
* @return bool True if the value was successfully deleted, false if it didn't exist or couldn't be removed
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function delete($key) {
|
2008-05-30 11:40:08 +00:00
|
|
|
return xcache_unset($key);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Delete all keys from the cache
|
|
|
|
*
|
2014-07-03 13:36:42 +00:00
|
|
|
* @param bool $check If true no deletes will occur and instead CakePHP will rely
|
2014-06-01 02:02:55 +00:00
|
|
|
* on key TTL values.
|
2014-07-03 13:36:42 +00:00
|
|
|
* @return bool True if the cache was successfully cleared, false otherwise
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-06-11 03:41:29 +00:00
|
|
|
public function clear($check) {
|
2011-08-20 05:39:30 +00:00
|
|
|
$this->_auth();
|
2009-02-18 18:07:06 +00:00
|
|
|
$max = xcache_count(XC_TYPE_VAR);
|
|
|
|
for ($i = 0; $i < $max; $i++) {
|
2009-01-14 19:33:30 +00:00
|
|
|
xcache_clear_cache(XC_TYPE_VAR, $i);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2011-08-20 05:39:30 +00:00
|
|
|
$this->_auth(true);
|
2009-02-18 18:07:06 +00:00
|
|
|
return true;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2012-03-26 02:50:39 +00:00
|
|
|
/**
|
|
|
|
* Returns the `group value` for each of the configured groups
|
|
|
|
* If the group initial value was not found, then it initializes
|
|
|
|
* the group accordingly.
|
|
|
|
*
|
|
|
|
* @return array
|
2013-01-11 14:06:54 +00:00
|
|
|
*/
|
2012-03-26 02:50:39 +00:00
|
|
|
public function groups() {
|
|
|
|
$result = array();
|
|
|
|
foreach ($this->settings['groups'] as $group) {
|
2012-03-27 04:30:52 +00:00
|
|
|
$value = xcache_get($this->settings['prefix'] . $group);
|
2012-03-26 02:50:39 +00:00
|
|
|
if (!$value) {
|
|
|
|
$value = 1;
|
2012-03-27 04:30:52 +00:00
|
|
|
xcache_set($this->settings['prefix'] . $group, $value, 0);
|
2012-03-26 02:50:39 +00:00
|
|
|
}
|
|
|
|
$result[] = $group . $value;
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Increments the group value to simulate deletion of all keys under a group
|
2012-03-26 04:59:02 +00:00
|
|
|
* old values will remain in storage until they expire.
|
2012-03-26 02:50:39 +00:00
|
|
|
*
|
2014-06-01 02:02:55 +00:00
|
|
|
* @param string $group The group to clear.
|
2014-07-03 13:36:42 +00:00
|
|
|
* @return bool success
|
2013-01-11 14:06:54 +00:00
|
|
|
*/
|
2012-03-26 02:50:39 +00:00
|
|
|
public function clearGroup($group) {
|
2012-04-23 01:03:07 +00:00
|
|
|
return (bool)xcache_inc($this->settings['prefix'] . $group, 1);
|
2012-03-26 02:50:39 +00:00
|
|
|
}
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Populates and reverses $_SERVER authentication values
|
|
|
|
* Makes necessary changes (and reverting them back) in $_SERVER
|
|
|
|
*
|
|
|
|
* This has to be done because xcache_clear_cache() needs to pass Basic Http Auth
|
|
|
|
* (see xcache.admin configuration settings)
|
|
|
|
*
|
2014-07-03 13:36:42 +00:00
|
|
|
* @param bool $reverse Revert changes
|
2011-07-30 21:02:25 +00:00
|
|
|
* @return void
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2011-08-20 05:39:30 +00:00
|
|
|
protected function _auth($reverse = false) {
|
2008-05-30 11:40:08 +00:00
|
|
|
static $backup = array();
|
2008-08-29 16:51:00 +00:00
|
|
|
$keys = array('PHP_AUTH_USER' => 'user', 'PHP_AUTH_PW' => 'password');
|
|
|
|
foreach ($keys as $key => $setting) {
|
2008-05-30 11:40:08 +00:00
|
|
|
if ($reverse) {
|
|
|
|
if (isset($backup[$key])) {
|
|
|
|
$_SERVER[$key] = $backup[$key];
|
|
|
|
unset($backup[$key]);
|
|
|
|
} else {
|
|
|
|
unset($_SERVER[$key]);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$value = env($key);
|
|
|
|
if (!empty($value)) {
|
|
|
|
$backup[$key] = $value;
|
|
|
|
}
|
2008-08-29 16:51:00 +00:00
|
|
|
if (!empty($this->settings[$setting])) {
|
|
|
|
$_SERVER[$key] = $this->settings[$setting];
|
2012-02-23 13:38:02 +00:00
|
|
|
} elseif (!empty($this->settings[$key])) {
|
2008-08-29 16:51:00 +00:00
|
|
|
$_SERVER[$key] = $this->settings[$key];
|
|
|
|
} else {
|
|
|
|
$_SERVER[$key] = $value;
|
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-27 21:42:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Write data for key into cache if it doesn't exist already.
|
|
|
|
* If it already exists, it fails and returns false.
|
|
|
|
*
|
|
|
|
* @param string $key Identifier for the data.
|
|
|
|
* @param mixed $value Data to be cached.
|
|
|
|
* @param int $duration How long to cache the data, in seconds.
|
|
|
|
* @return bool True if the data was successfully cached, false on failure.
|
|
|
|
*/
|
|
|
|
public function add($key, $value, $duration) {
|
|
|
|
$cachedValue = $this->read($key);
|
|
|
|
if ($cachedValue === false) {
|
|
|
|
return $this->write($key, $value, $duration);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|