devilbox/.devilbox/www/include/lib/container/Memcd.php

219 lines
5.4 KiB
PHP
Raw Normal View History

2017-05-06 09:13:33 +00:00
<?php
namespace devilbox;
/**
* @requires devilbox::Logger
*/
2017-05-15 06:56:17 +00:00
class Memcd extends BaseClass implements BaseInterface
2017-05-06 09:13:33 +00:00
{
/*********************************************************************************
*
* Private Variables
*
*********************************************************************************/
/**
* Memcached instance
* @var object|null
*/
private $_memcached = null;
/*********************************************************************************
*
2017-05-15 06:56:17 +00:00
* Constructor Overwrite
2017-05-06 09:13:33 +00:00
*
*********************************************************************************/
/**
* Use singleton getInstance() instead.
*
* @param string $user Username
* @param string $pass Password
* @param string $host Host
*/
2017-05-15 06:56:17 +00:00
public function __construct($hostname, $data = array())
2017-05-06 09:13:33 +00:00
{
2017-05-15 06:56:17 +00:00
parent::__construct($hostname, $data);
2017-05-07 16:49:38 +00:00
$memcd = new \Memcached('_devilbox');
$list = $memcd->getServerList();
// if (!empty($list)) {
// $memcd->resetServerList();
// }
2017-05-07 16:49:38 +00:00
if (empty($list)) {
//$memcd->setOption(\Memcached::OPT_RECV_TIMEOUT, 100);
//$memcd->setOption(\Memcached::OPT_SEND_TIMEOUT, 100);
2017-05-07 16:49:38 +00:00
$memcd->setOption(\Memcached::OPT_LIBKETAMA_COMPATIBLE, true);
$memcd->setOption(\Memcached::OPT_BINARY_PROTOCOL, false);
//$memcd->setOption(\Memcached::OPT_SERVER_FAILURE_LIMIT, 50);
//$memcd->setOption(\Memcached::OPT_CONNECT_TIMEOUT, 100);
//$memcd->setOption(\Memcached::OPT_RETRY_TIMEOUT, 100);
2017-05-07 16:49:38 +00:00
//$memcd->setOption(\Memcached::OPT_REMOVE_FAILED_SERVERS, true);
2017-05-15 06:56:17 +00:00
$memcd->addServer($hostname, 11211);
2017-05-07 16:49:38 +00:00
}
2017-05-06 09:13:33 +00:00
2017-05-07 16:49:38 +00:00
$err = false;
$stats = $memcd->getStats();
2017-05-15 06:56:17 +00:00
if (!isset($stats[$hostname.':11211'])) {
2017-05-07 16:49:38 +00:00
$memcd->quit();
2017-05-15 06:56:17 +00:00
$this->_connect_error = 'Failed to connect to Memcached host on '.$hostname.' (no connection array)';
$this->_connect_errno = 1;
return;
2017-05-07 16:49:38 +00:00
}
2017-05-15 06:56:17 +00:00
else if (!isset($stats[$hostname.':11211']['pid'])) {
2017-05-07 16:49:38 +00:00
$memcd->quit();
2017-05-15 06:56:17 +00:00
$this->_connect_error = 'Failed to connect to Memcached host on '.$hostname.' (no pid)';
$this->_connect_errno = 2;
return;
2017-05-07 16:49:38 +00:00
}
2017-05-15 06:56:17 +00:00
else if ($stats[$hostname.':11211']['pid'] < 1) {
2017-05-07 16:49:38 +00:00
$memcd->quit();
2017-05-15 06:56:17 +00:00
$this->_connect_error = 'Failed to connect to Memcached host on '.$hostname.' (invalid pid)';
$this->_connect_errno = 3;
return;
2017-05-07 16:49:38 +00:00
}
2017-05-15 06:56:17 +00:00
$memcd->set('devilbox-version', $GLOBALS['DEVILBOX_VERSION'].' ('.$GLOBALS['DEVILBOX_DATE'].')');
$this->_memcached = $memcd;
2017-05-06 09:13:33 +00:00
}
/**
* Destructor
*/
public function __destruct()
{
if ($this->_memcached) {
$this->_memcached->quit();
}
}
2017-05-15 06:56:17 +00:00
2017-05-06 09:13:33 +00:00
/*********************************************************************************
*
2017-05-15 06:56:17 +00:00
* Select functions
2017-05-06 09:13:33 +00:00
*
*********************************************************************************/
2017-05-07 16:49:38 +00:00
public function getKeys()
2017-05-06 09:13:33 +00:00
{
2017-05-07 16:49:38 +00:00
$store = array();
2017-05-06 09:13:33 +00:00
if ($this->_memcached) {
2017-05-07 16:49:38 +00:00
if (!($keys = $this->_memcached->getAllKeys())) {
$keys = array();
}
$this->_memcached->getDelayed($keys);
$store = $this->_memcached->fetchAll();
2017-05-06 09:13:33 +00:00
}
2017-05-07 16:49:38 +00:00
return $store;
2017-05-06 09:13:33 +00:00
}
2017-05-07 16:49:38 +00:00
public function getInfo()
2017-05-06 09:13:33 +00:00
{
$stats = array();
if ($this->_memcached) {
$stats = $this->_memcached->getStats();
}
2017-05-07 16:49:38 +00:00
return $stats;
}
2017-05-06 09:13:33 +00:00
/*********************************************************************************
*
* Interface required functions
*
*********************************************************************************/
2017-05-15 06:56:17 +00:00
private $_can_connect = array();
private $_can_connect_err = array();
private $_name = null;
private $_version = null;
public function canConnect(&$err, $hostname, $data = array())
{
$err = false;
// Return if already cached
if (isset($this->_can_connect[$hostname])) {
// Assume error for unset error message
$err = isset($this->_can_connect_err[$hostname]) ? $this->_can_connect_err[$hostname] : true;
return $this->_can_connect[$hostname];
}
// Silence errors and try to connect
//error_reporting(-1);
$memcd = new \Memcached();
$memcd->resetServerList();
if (!$memcd->addServer($hostname, 11211)) {
$memcd->quit();
$err = 'Failed to connect to Memcached host on '.$hostname;
$this->_can_connect[$hostname] = false;
$this->_can_connect_err[$hostname] = $err;
return false;
}
$stats = $memcd->getStats();
if (!isset($stats[$hostname.':11211'])) {
$err = 'Failed to connect to Memcached host on '.$hostname;
$this->_can_connect[$hostname] = false;
}
else if (!isset($stats[$hostname.':11211']['pid'])) {
$err = 'Failed to connect to Memcached host on '.$hostname;
$this->_can_connect[$hostname] = false;
}
else if ($stats[$hostname.':11211']['pid'] < 1) {
$err = 'Failed to connect to Memcached host on '.$hostname;
$this->_can_connect[$hostname] = false;
}
else {
$this->_can_connect[$hostname] = true;
}
$memcd->quit();
$this->_can_connect_err[$hostname] = $err;
return $this->_can_connect[$hostname];
}
2017-05-06 09:13:33 +00:00
public function getName($default = 'Memcached')
{
return $default;
}
public function getVersion()
{
2017-05-15 06:56:17 +00:00
// Return if already cached
if ($this->_version !== null) {
return $this->_version;
}
// Return empty if not available
if (!$this->isAvailable()) {
$this->_version = '';
return $this->_version;
}
if ($this->_memcached) {
$info = $this->_memcached->getVersion();
$info = array_values($info);
if (!isset($info[0])) {
loadClass('Logger')->error('Could not get Memcached version');
2017-05-15 06:56:17 +00:00
$this->_version = '';
} else {
2017-05-15 06:56:17 +00:00
$this->_version = $info[0];
}
2017-05-06 09:13:33 +00:00
}
2017-05-15 06:56:17 +00:00
return $this->_version;
2017-05-06 09:13:33 +00:00
}
}