2012-06-05 21:58:30 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Andreas Fischer <bantu@owncloud.com>
|
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Clark Tomlinson <fallen013@gmail.com>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @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/>
|
|
|
|
*
|
2012-06-05 21:58:30 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-03-17 19:00:39 +04:00
|
|
|
namespace OC\Memcache;
|
2015-04-29 17:34:36 +03:00
|
|
|
|
2015-04-28 16:39:38 +03:00
|
|
|
use OCP\IMemcache;
|
2013-03-17 19:00:39 +04:00
|
|
|
|
2013-08-15 05:37:59 +04:00
|
|
|
/**
|
|
|
|
* See http://xcache.lighttpd.net/wiki/XcacheApi for provided constants and
|
|
|
|
* functions etc.
|
|
|
|
*/
|
2015-04-28 16:39:38 +03:00
|
|
|
class XCache extends Cache implements IMemcache {
|
2015-04-30 14:39:31 +03:00
|
|
|
use CASTrait;
|
|
|
|
|
2015-06-08 16:25:23 +03:00
|
|
|
use CADTrait;
|
|
|
|
|
2012-06-05 21:58:30 +04:00
|
|
|
/**
|
2013-08-10 00:14:28 +04:00
|
|
|
* entries in XCache gets namespaced to prevent collisions between ownCloud instances and users
|
2012-06-05 21:58:30 +04:00
|
|
|
*/
|
|
|
|
protected function getNameSpace() {
|
2012-06-25 19:42:50 +04:00
|
|
|
return $this->prefix;
|
2012-06-05 21:58:30 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function get($key) {
|
2015-04-28 16:39:38 +03:00
|
|
|
return xcache_get($this->getNamespace() . $key);
|
2012-06-05 21:58:30 +04:00
|
|
|
}
|
|
|
|
|
2015-04-28 16:39:38 +03:00
|
|
|
public function set($key, $value, $ttl = 0) {
|
|
|
|
if ($ttl > 0) {
|
|
|
|
return xcache_set($this->getNamespace() . $key, $value, $ttl);
|
|
|
|
} else {
|
|
|
|
return xcache_set($this->getNamespace() . $key, $value);
|
2012-06-05 21:58:30 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-05 22:54:07 +04:00
|
|
|
public function hasKey($key) {
|
2015-04-28 16:39:38 +03:00
|
|
|
return xcache_isset($this->getNamespace() . $key);
|
2012-06-05 22:54:07 +04:00
|
|
|
}
|
|
|
|
|
2012-06-05 21:58:30 +04:00
|
|
|
public function remove($key) {
|
2015-04-28 16:39:38 +03:00
|
|
|
return xcache_unset($this->getNamespace() . $key);
|
2012-06-05 21:58:30 +04:00
|
|
|
}
|
|
|
|
|
2015-04-28 16:39:38 +03:00
|
|
|
public function clear($prefix = '') {
|
2013-08-15 05:31:42 +04:00
|
|
|
if (function_exists('xcache_unset_by_prefix')) {
|
2015-04-28 16:39:38 +03:00
|
|
|
return xcache_unset_by_prefix($this->getNamespace() . $prefix);
|
2013-08-15 05:31:42 +04:00
|
|
|
} else {
|
|
|
|
// Since we can not clear by prefix, we just clear the whole cache.
|
|
|
|
xcache_clear_cache(\XC_TYPE_VAR, 0);
|
|
|
|
}
|
2012-07-22 04:31:43 +04:00
|
|
|
return true;
|
2012-06-05 21:58:30 +04:00
|
|
|
}
|
2013-03-17 19:00:39 +04:00
|
|
|
|
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) {
|
|
|
|
if ($this->hasKey($key)) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return $this->set($key, $value, $ttl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Increase a stored number
|
|
|
|
*
|
|
|
|
* @param string $key
|
|
|
|
* @param int $step
|
|
|
|
* @return int | bool
|
|
|
|
*/
|
|
|
|
public function inc($key, $step = 1) {
|
|
|
|
return xcache_inc($this->getPrefix() . $key, $step);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Decrease a stored number
|
|
|
|
*
|
|
|
|
* @param string $key
|
|
|
|
* @param int $step
|
|
|
|
* @return int | bool
|
|
|
|
*/
|
|
|
|
public function dec($key, $step = 1) {
|
|
|
|
return xcache_dec($this->getPrefix() . $key, $step);
|
|
|
|
}
|
|
|
|
|
|
|
|
static public function isAvailable() {
|
2013-03-17 19:00:39 +04:00
|
|
|
if (!extension_loaded('xcache')) {
|
|
|
|
return false;
|
2013-08-10 00:14:28 +04:00
|
|
|
}
|
2015-04-29 17:34:36 +03:00
|
|
|
if (\OC::$CLI && !getenv('XCACHE_TEST')) {
|
2013-08-10 00:14:28 +04:00
|
|
|
return false;
|
|
|
|
}
|
2014-09-17 18:07:32 +04:00
|
|
|
if (!function_exists('xcache_unset_by_prefix') && \OC::$server->getIniWrapper()->getBool('xcache.admin.enable_auth')) {
|
2013-08-15 05:40:02 +04:00
|
|
|
// We do not want to use XCache if we can not clear it without
|
2013-08-15 05:34:43 +04:00
|
|
|
// using the administration function xcache_clear_cache()
|
|
|
|
// AND administration functions are password-protected.
|
2013-03-17 19:00:39 +04:00
|
|
|
return false;
|
|
|
|
}
|
2016-03-30 15:54:56 +03:00
|
|
|
$var_size = \OC::$server->getIniWrapper()->getBytes('xcache.var_size');
|
2013-12-17 05:20:00 +04:00
|
|
|
if (!$var_size) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-08-10 00:14:28 +04:00
|
|
|
return true;
|
2013-03-17 19:00:39 +04:00
|
|
|
}
|
|
|
|
}
|