2012-06-05 21:58:30 +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>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @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;
|
|
|
|
|
2013-08-15 05:37:59 +04:00
|
|
|
/**
|
|
|
|
* See http://xcache.lighttpd.net/wiki/XcacheApi for provided constants and
|
|
|
|
* functions etc.
|
|
|
|
*/
|
2013-03-17 19:00:39 +04:00
|
|
|
class XCache extends Cache {
|
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) {
|
|
|
|
return xcache_get($this->getNamespace().$key);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function set($key, $value, $ttl=0) {
|
2012-09-07 17:22:01 +04:00
|
|
|
if($ttl>0) {
|
2012-09-10 13:26:20 +04:00
|
|
|
return xcache_set($this->getNamespace().$key, $value, $ttl);
|
2012-06-05 21:58:30 +04:00
|
|
|
}else{
|
2012-09-10 13:26:20 +04:00
|
|
|
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) {
|
|
|
|
return xcache_isset($this->getNamespace().$key);
|
|
|
|
}
|
|
|
|
|
2012-06-05 21:58:30 +04:00
|
|
|
public function remove($key) {
|
|
|
|
return xcache_unset($this->getNamespace().$key);
|
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function clear($prefix='') {
|
2013-08-15 05:31:42 +04:00
|
|
|
if (function_exists('xcache_unset_by_prefix')) {
|
2013-08-15 05:36:42 +04: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
|
|
|
|
|
|
|
static public function isAvailable(){
|
|
|
|
if (!extension_loaded('xcache')) {
|
|
|
|
return false;
|
2013-08-10 00:14:28 +04:00
|
|
|
}
|
|
|
|
if (\OC::$CLI) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-08-15 05:34:43 +04:00
|
|
|
if (!function_exists('xcache_unset_by_prefix') && ini_get('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;
|
|
|
|
}
|
2013-12-17 05:20:00 +04:00
|
|
|
$var_size = (int) ini_get('xcache.var_size');
|
|
|
|
if (!$var_size) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-08-10 00:14:28 +04:00
|
|
|
return true;
|
2013-03-17 19:00:39 +04:00
|
|
|
}
|
|
|
|
}
|