2013-03-17 19:01:10 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Andreas Fischer <bantu@owncloud.com>
|
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
2016-01-12 17:02:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
2013-03-17 19:01:10 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-03-17 19:01:10 +04:00
|
|
|
namespace OC\Memcache;
|
|
|
|
|
2015-04-28 16:39:38 +03:00
|
|
|
use OCP\IMemcache;
|
|
|
|
|
|
|
|
class Memcached extends Cache implements IMemcache {
|
2015-04-29 17:34:36 +03:00
|
|
|
use CASTrait;
|
|
|
|
|
2013-03-17 19:01:10 +04:00
|
|
|
/**
|
|
|
|
* @var \Memcached $cache
|
|
|
|
*/
|
|
|
|
private static $cache = null;
|
|
|
|
|
2015-06-08 16:25:23 +03:00
|
|
|
use CADTrait;
|
|
|
|
|
2013-07-16 17:42:40 +04:00
|
|
|
public function __construct($prefix = '') {
|
|
|
|
parent::__construct($prefix);
|
2013-03-17 19:01:10 +04:00
|
|
|
if (is_null(self::$cache)) {
|
|
|
|
self::$cache = new \Memcached();
|
2015-11-10 17:58:17 +03:00
|
|
|
$servers = \OC::$server->getSystemConfig()->getValue('memcached_servers');
|
2014-01-10 03:57:40 +04:00
|
|
|
if (!$servers) {
|
2015-11-10 17:58:17 +03:00
|
|
|
$server = \OC::$server->getSystemConfig()->getValue('memcached_server');
|
2014-01-10 03:57:40 +04:00
|
|
|
if ($server) {
|
|
|
|
$servers = array($server);
|
|
|
|
} else {
|
|
|
|
$servers = array(array('localhost', 11211));
|
|
|
|
}
|
|
|
|
}
|
2013-12-09 04:34:31 +04:00
|
|
|
self::$cache->addServers($servers);
|
2013-03-17 19:01:10 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* entries in XCache gets namespaced to prevent collisions between owncloud instances and users
|
|
|
|
*/
|
|
|
|
protected function getNameSpace() {
|
|
|
|
return $this->prefix;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get($key) {
|
|
|
|
$result = self::$cache->get($this->getNamespace() . $key);
|
|
|
|
if ($result === false and self::$cache->getResultCode() == \Memcached::RES_NOTFOUND) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function set($key, $value, $ttl = 0) {
|
|
|
|
if ($ttl > 0) {
|
2015-11-10 17:58:17 +03:00
|
|
|
$result = self::$cache->set($this->getNamespace() . $key, $value, $ttl);
|
2013-03-17 19:01:10 +04:00
|
|
|
} else {
|
2015-11-10 17:58:17 +03:00
|
|
|
$result = self::$cache->set($this->getNamespace() . $key, $value);
|
2013-03-17 19:01:10 +04:00
|
|
|
}
|
2015-11-10 17:58:17 +03:00
|
|
|
$this->verifyReturnCode();
|
|
|
|
return $result;
|
2013-03-17 19:01:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function hasKey($key) {
|
|
|
|
self::$cache->get($this->getNamespace() . $key);
|
2014-05-08 20:11:29 +04:00
|
|
|
return self::$cache->getResultCode() === \Memcached::RES_SUCCESS;
|
2013-03-17 19:01:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function remove($key) {
|
2015-11-10 17:58:17 +03:00
|
|
|
$result= self::$cache->delete($this->getNamespace() . $key);
|
|
|
|
$this->verifyReturnCode();
|
|
|
|
return $result;
|
2013-03-17 19:01:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function clear($prefix = '') {
|
|
|
|
$prefix = $this->getNamespace() . $prefix;
|
|
|
|
$allKeys = self::$cache->getAllKeys();
|
2015-09-05 22:02:49 +03:00
|
|
|
if ($allKeys === false) {
|
|
|
|
// newer Memcached doesn't like getAllKeys(), flush everything
|
|
|
|
self::$cache->flush();
|
|
|
|
return true;
|
|
|
|
}
|
2013-03-17 19:01:10 +04:00
|
|
|
$keys = array();
|
|
|
|
$prefixLength = strlen($prefix);
|
|
|
|
foreach ($allKeys as $key) {
|
|
|
|
if (substr($key, 0, $prefixLength) === $prefix) {
|
|
|
|
$keys[] = $key;
|
|
|
|
}
|
|
|
|
}
|
2014-12-17 20:07:08 +03:00
|
|
|
if (method_exists(self::$cache, 'deleteMulti')) {
|
|
|
|
self::$cache->deleteMulti($keys);
|
|
|
|
} else {
|
|
|
|
foreach ($keys as $key) {
|
|
|
|
self::$cache->delete($key);
|
|
|
|
}
|
|
|
|
}
|
2013-03-17 19:01:10 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-04-28 16:39:38 +03:00
|
|
|
/**
|
|
|
|
* Set a value in the cache if it's not already stored
|
|
|
|
*
|
|
|
|
* @param string $key
|
|
|
|
* @param mixed $value
|
|
|
|
* @param int $ttl Time To Live in seconds. Defaults to 60*60*24
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function add($key, $value, $ttl = 0) {
|
2015-11-10 17:58:17 +03:00
|
|
|
$result = self::$cache->add($this->getPrefix() . $key, $value, $ttl);
|
|
|
|
$this->verifyReturnCode();
|
|
|
|
return $result;
|
2015-04-28 16:39:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Increase a stored number
|
|
|
|
*
|
|
|
|
* @param string $key
|
|
|
|
* @param int $step
|
|
|
|
* @return int | bool
|
|
|
|
*/
|
|
|
|
public function inc($key, $step = 1) {
|
|
|
|
$this->add($key, 0);
|
2015-11-10 17:58:17 +03:00
|
|
|
$result = self::$cache->increment($this->getPrefix() . $key, $step);
|
|
|
|
$this->verifyReturnCode();
|
|
|
|
return $result;
|
2015-04-28 16:39:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Decrease a stored number
|
|
|
|
*
|
|
|
|
* @param string $key
|
|
|
|
* @param int $step
|
|
|
|
* @return int | bool
|
|
|
|
*/
|
|
|
|
public function dec($key, $step = 1) {
|
2015-11-10 17:58:17 +03:00
|
|
|
$result = self::$cache->decrement($this->getPrefix() . $key, $step);
|
|
|
|
$this->verifyReturnCode();
|
|
|
|
return $result;
|
2015-04-28 16:39:38 +03:00
|
|
|
}
|
|
|
|
|
2013-03-17 19:01:10 +04:00
|
|
|
static public function isAvailable() {
|
|
|
|
return extension_loaded('memcached');
|
|
|
|
}
|
2015-11-10 17:58:17 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
|
|
|
private function verifyReturnCode() {
|
|
|
|
$code = self::$cache->getResultCode();
|
|
|
|
if ($code === \Memcached::RES_SUCCESS) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$message = self::$cache->getResultMessage();
|
|
|
|
throw new \Exception("Error $code interacting with memcached : $message");
|
|
|
|
}
|
2013-03-17 19:01:10 +04:00
|
|
|
}
|