|
Server IP : 10.2.73.233 / Your IP : 216.73.216.223 Web Server : Apache/2.4.59 (Debian) System : Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64 User : www-data ( 33) PHP Version : 5.6.40-64+0~20230107.71+debian10~1.gbp673146 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/ifk/web/assets/../prado4.3.2/Web/../Caching/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
/**
* TMemCache class file
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Carl G. Mathisen <carlgmathisen@gmail.com>
* @link https://github.com/pradosoft/prado
* @license https://github.com/pradosoft/prado/blob/master/LICENSE
*/
namespace Prado\Caching;
use Prado\Exceptions\TConfigurationException;
use Prado\Exceptions\TInvalidOperationException;
use Prado\Prado;
use Prado\TPropertyValue;
use Prado\Xml\TXmlElement;
/**
* TMemCache class
*
* TMemCache implements a cache application module based on {@link http://www.danga.com/memcached/ memcached}.
*
* TMemCache can be configured with the Host and Port properties, which
* specify the host and port of the memcache server to be used.
* By default, they take the value 'localhost' and 11211, respectively.
* These properties must be set before {@link init} is invoked.
*
* The following basic cache operations are implemented:
* - {@link get} : retrieve the value with a key (if any) from cache
* - {@link set} : store the value with a key into cache
* - {@link add} : store the value only if cache does not have this key
* - {@link delete} : delete the value with the specified key from cache
* - {@link flush} : delete all values from cache
*
* Each value is associated with an expiration time. The {@link get} operation
* ensures that any expired value will not be returned. The expiration time can
* be specified by the number of seconds (maximum 60*60*24*30)
* or a UNIX timestamp. A expiration time 0 represents never expire.
*
* By definition, cache does not ensure the existence of a value
* even if it never expires. Cache is not meant to be an persistent storage.
*
* Also note, there is no security measure to protected data in memcache.
* All data in memcache can be accessed by any process running in the system.
*
* To use this module, the memcached PHP extension must be loaded.
*
* Some usage examples of TMemCache are as follows,
* <code>
* $cache=new TMemCache; // TMemCache may also be loaded as a Prado application module
* $cache->init(null);
* $cache->add('object',$object);
* $object2=$cache->get('object');
* </code>
*
* You can configure TMemCache two different ways. If you only need one memcache server
* you may use the method as follows.
* <code>
* <module id="cache" class="Prado\Caching\TMemCache" Host="localhost" Port="11211" />
* </code>
*
* If you want a more complex configuration, you may use the method as follows.
* <code>
* <module id="cache" class="Prado\Caching\TMemCache">
* <server Host="localhost" Port="11211" Weight="1" />
* <server Host="anotherhost" Port="11211" Weight="1" />
* </module>
* </code>
*
* If loaded, TMemCache will register itself with {@link TApplication} as the
* cache module. It can be accessed via {@link TApplication::getCache()}.
*
* TMemCache may be configured in application configuration file as follows
* <code>
* <module id="cache" class="Prado\Caching\TMemCache" Host="localhost" Port="11211" />
* </code>
* where {@link getHost Host} and {@link getPort Port} are configurable properties
* of TMemCache.
*
* By default the Memcached instances are destroyed at the end of the request.
* To create an instance that persists between requests, set a persistent ID using
* {@link setPersistentID PersistentID}.
* All instances created with the same persistent_id will share the same connection.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 3.0
*/
class TMemCache extends TCache
{
/**
* @var bool if the module is initialized
*/
private $_initialized = false;
/**
* @var \Memcached the Memcached instance
*/
private $_cache;
/**
* @var string host name of the memcache server
*/
private $_host = 'localhost';
/**
* @var int the port number of the memcache server
*/
private $_port = 11211;
/**
* @var array list of servers available
*/
private $_servers = [];
/**
* @var null|string persistent id for the instance of the memcache server
*/
private $_persistentid;
/**
* Destructor.
* Disconnect the memcache server.
*/
public function __destruct()
{
if ($this->_cache !== null) {
// Quit() is available only for memcached >= 2
// $this->_cache->quit();
}
parent::__destruct();
}
/**
* Initializes this module.
* This method is required by the IModule interface. It makes sure that
* UniquePrefix has been set, creates a Memcache instance and connects
* to the memcache server.
* @param \Prado\Xml\TXmlElement $config configuration for this module, can be null
* @throws TConfigurationException if memcache extension is not installed or memcache sever connection fails
*/
public function init($config)
{
if (!extension_loaded('memcached')) {
throw new TConfigurationException('memcached_extension_required');
}
$this->loadConfig($config);
$this->_cache = new \Memcached($this->_persistentid);
if ($this->_persistentid !== null && count($this->_cache->getServerList()) > 0) {
Prado::trace('Skipping re-adding servers for persistent id ' . $this->_persistentid, '\Prado\Caching\TMemCache');
} else {
if (count($this->_servers)) {
foreach ($this->_servers as $server) {
Prado::trace('Adding server ' . $server['Host'] . ' from serverlist', '\Prado\Caching\TMemCache');
if ($this->_cache->addServer(
$server['Host'],
$server['Port'],
$server['Weight']
) === false) {
throw new TConfigurationException('memcache_connection_failed', $server['Host'], $server['Port']);
}
}
} else {
Prado::trace('Adding server ' . $this->_host, '\Prado\Caching\TMemCache');
if ($this->_cache->addServer($this->_host, $this->_port) === false) {
throw new TConfigurationException('memcache_connection_failed', $this->_host, $this->_port);
}
}
}
$this->_initialized = true;
parent::init($config);
}
/**
* Loads configuration from an XML element
* @param \Prado\Xml\TXmlElement $xml configuration node
* @throws TConfigurationException if log route class or type is not specified
*/
private function loadConfig($xml)
{
if ($xml instanceof TXmlElement) {
foreach ($xml->getElementsByTagName('server') as $serverConfig) {
$properties = $serverConfig->getAttributes();
if (($host = $properties->remove('Host')) === null) {
throw new TConfigurationException('memcache_serverhost_required');
}
if (($port = $properties->remove('Port')) === null) {
throw new TConfigurationException('memcache_serverport_required');
}
if (!is_numeric($port)) {
throw new TConfigurationException('memcache_serverport_invalid');
}
$server = ['Host' => $host, 'Port' => $port, 'Weight' => 1];
$checks = [
'Weight' => 'memcache_serverweight_invalid'
];
foreach ($checks as $property => $exception) {
$value = $properties->remove($property);
if ($value !== null && is_numeric($value)) {
$server[$property] = $value;
} elseif ($value !== null) {
throw new TConfigurationException($exception);
}
}
$this->_servers[] = $server;
}
}
}
/**
* @return string host name of the memcache server
*/
public function getHost()
{
return $this->_host;
}
/**
* @param string $value host name of the memcache server
* @throws TInvalidOperationException if the module is already initialized
*/
public function setHost($value)
{
if ($this->_initialized) {
throw new TInvalidOperationException('memcache_host_unchangeable');
} else {
$this->_host = $value;
}
}
/**
* @return int port number of the memcache server
*/
public function getPort()
{
return $this->_port;
}
/**
* @param int $value port number of the memcache server
* @throws TInvalidOperationException if the module is already initialized
*/
public function setPort($value)
{
if ($this->_initialized) {
throw new TInvalidOperationException('memcache_port_unchangeable');
} else {
$this->_port = TPropertyValue::ensureInteger($value);
}
}
/**
* @param array $value Set internal memcached options: https://www.php.net/manual/en/memcached.constants.php
* @throws TInvalidOperationException if the module is not initialized yet
*/
public function setOptions($value)
{
if (!$this->_initialized) {
throw new TInvalidOperationException('memcache_not_initialized');
} else {
$this->_cache->setOptions(TPropertyValue::ensureArray($value));
}
}
/**
* @return string persistent id for the instance of the memcache server
*/
public function getPersistentID()
{
return $this->_persistentid;
}
/**
* @param string $value persistent id for the instance of the memcache server
*/
public function setPersistentID($value)
{
$this->_persistentid = TPropertyValue::ensureString($value);
}
/**
* @param string $value if memcached instead memcache
* @throws TInvalidOperationException if the module is already initialized or usage of the old, unsupported memcache extension has been requested
* @deprecated since Prado 4.1, only memcached is available
*/
public function setUseMemcached($value)
{
if ($this->_initialized || TPropertyValue::ensureBoolean($value) === false) {
throw new TInvalidOperationException('memcache_host_unchangeable');
}
}
/**
* Retrieves a value from cache with a specified key.
* This is the implementation of the method declared in the parent class.
* @param string $key a unique key identifying the cached value
* @return false|string the value stored in cache, false if the value is not in the cache or expired.
*/
protected function getValue($key)
{
return $this->_cache->get($key);
}
/**
* Stores a value identified by a key in cache.
* This is the implementation of the method declared in the parent class.
*
* @param string $key the key identifying the value to be cached
* @param string $value the value to be cached
* @param int $expire the number of seconds in which the cached value will expire. 0 means never expire.
* @return bool true if the value is successfully stored into cache, false otherwise
*/
protected function setValue($key, $value, $expire)
{
return $this->_cache->set($key, $value, $expire);
}
/**
* Stores a value identified by a key into cache if the cache does not contain this key.
* This is the implementation of the method declared in the parent class.
*
* @param string $key the key identifying the value to be cached
* @param string $value the value to be cached
* @param int $expire the number of seconds in which the cached value will expire. 0 means never expire.
* @return bool true if the value is successfully stored into cache, false otherwise
*/
protected function addValue($key, $value, $expire)
{
return $this->_cache->add($key, $value, $expire);
}
/**
* Deletes a value with the specified key from cache
* This is the implementation of the method declared in the parent class.
* @param string $key the key of the value to be deleted
* @return bool if no error happens during deletion
*/
protected function deleteValue($key)
{
return $this->_cache->delete($key);
}
/**
* Deletes all values from cache.
* Be careful of performing this operation if the cache is shared by multiple applications.
* @return bool if no error happens during flush
*/
public function flush()
{
return $this->_cache->flush();
}
}