2013-03-17 19:00:39 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
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>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
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:00:39 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-03-17 19:00:39 +04:00
|
|
|
namespace OC\Memcache;
|
|
|
|
|
2015-01-16 16:38:55 +03:00
|
|
|
abstract class Cache implements \ArrayAccess, \OCP\ICache {
|
2013-07-16 17:42:40 +04:00
|
|
|
/**
|
|
|
|
* @var string $prefix
|
|
|
|
*/
|
|
|
|
protected $prefix;
|
2013-03-17 19:00:39 +04:00
|
|
|
|
|
|
|
/**
|
2013-07-16 17:42:40 +04:00
|
|
|
* @param string $prefix
|
2013-03-17 19:00:39 +04:00
|
|
|
*/
|
2013-07-16 17:42:40 +04:00
|
|
|
public function __construct($prefix = '') {
|
2014-01-06 16:11:38 +04:00
|
|
|
$this->prefix = $prefix;
|
2013-07-16 17:42:40 +04:00
|
|
|
}
|
|
|
|
|
2015-03-17 13:56:00 +03:00
|
|
|
/**
|
|
|
|
* @return string Prefix used for caching purposes
|
|
|
|
*/
|
2013-07-16 17:42:40 +04:00
|
|
|
public function getPrefix() {
|
|
|
|
return $this->prefix;
|
|
|
|
}
|
2013-03-17 19:00:39 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $key
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
abstract public function get($key);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $key
|
|
|
|
* @param mixed $value
|
|
|
|
* @param int $ttl
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
abstract public function set($key, $value, $ttl = 0);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $key
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
abstract public function hasKey($key);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $key
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
abstract public function remove($key);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $prefix
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
abstract public function clear($prefix = '');
|
2013-07-16 18:06:00 +04:00
|
|
|
|
|
|
|
//implement the ArrayAccess interface
|
|
|
|
|
|
|
|
public function offsetExists($offset) {
|
|
|
|
return $this->hasKey($offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function offsetSet($offset, $value) {
|
|
|
|
$this->set($offset, $value);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function offsetGet($offset) {
|
|
|
|
return $this->get($offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function offsetUnset($offset) {
|
|
|
|
$this->remove($offset);
|
|
|
|
}
|
2013-03-17 19:00:39 +04:00
|
|
|
}
|