2015-01-12 15:48:07 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
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
|
|
|
*
|
|
|
|
* @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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
2015-01-12 15:48:07 +03:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2015-01-12 15:48:07 +03:00
|
|
|
namespace OC\Memcache;
|
|
|
|
|
2015-04-28 16:39:38 +03:00
|
|
|
use OCP\IMemcache;
|
|
|
|
|
|
|
|
class ArrayCache extends Cache implements IMemcache {
|
2015-01-12 15:48:07 +03:00
|
|
|
/** @var array Array with the cached data */
|
2020-03-26 11:30:18 +03:00
|
|
|
protected $cachedData = [];
|
2015-01-12 15:48:07 +03:00
|
|
|
|
2015-06-08 16:25:23 +03:00
|
|
|
use CADTrait;
|
|
|
|
|
2015-01-12 15:48:07 +03:00
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
|
|
|
public function get($key) {
|
|
|
|
if ($this->hasKey($key)) {
|
|
|
|
return $this->cachedData[$key];
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
|
|
|
public function set($key, $value, $ttl = 0) {
|
|
|
|
$this->cachedData[$key] = $value;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
|
|
|
public function hasKey($key) {
|
|
|
|
return isset($this->cachedData[$key]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
|
|
|
public function remove($key) {
|
|
|
|
unset($this->cachedData[$key]);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
|
|
|
public function clear($prefix = '') {
|
|
|
|
if ($prefix === '') {
|
|
|
|
$this->cachedData = [];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($this->cachedData as $key => $value) {
|
|
|
|
if (strpos($key, $prefix) === 0) {
|
|
|
|
$this->remove($key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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) {
|
|
|
|
// since this cache is not shared race conditions aren't an issue
|
|
|
|
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) {
|
|
|
|
$oldValue = $this->get($key);
|
|
|
|
if (is_int($oldValue)) {
|
|
|
|
$this->set($key, $oldValue + $step);
|
|
|
|
return $oldValue + $step;
|
|
|
|
} else {
|
|
|
|
$success = $this->add($key, $step);
|
2018-01-27 01:46:40 +03:00
|
|
|
return $success ? $step : false;
|
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) {
|
|
|
|
$oldValue = $this->get($key);
|
|
|
|
if (is_int($oldValue)) {
|
|
|
|
$this->set($key, $oldValue - $step);
|
|
|
|
return $oldValue - $step;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-29 17:34:36 +03:00
|
|
|
/**
|
|
|
|
* Compare and set
|
|
|
|
*
|
|
|
|
* @param string $key
|
|
|
|
* @param mixed $old
|
|
|
|
* @param mixed $new
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function cas($key, $old, $new) {
|
|
|
|
if ($this->get($key) === $old) {
|
|
|
|
return $this->set($key, $new);
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-12 15:48:07 +03:00
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
2020-04-10 17:51:06 +03:00
|
|
|
public static function isAvailable() {
|
2015-01-12 15:48:07 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|