2013-07-16 17:34:22 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Markus Goetz <markus@woboq.com>
|
|
|
|
* @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>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Stefan Weil <sw@weilnetz.de>
|
2020-12-16 16:54:15 +03:00
|
|
|
* @author Vincent Petry <vincent@nextcloud.com>
|
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
|
|
|
*
|
2013-07-16 17:34:22 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-07-16 17:34:22 +04:00
|
|
|
namespace OC\Memcache;
|
|
|
|
|
2018-01-16 22:44:51 +03:00
|
|
|
use OCP\ICache;
|
|
|
|
use OCP\ICacheFactory;
|
|
|
|
use OCP\ILogger;
|
|
|
|
use OCP\IMemcache;
|
2014-01-24 19:01:19 +04:00
|
|
|
|
|
|
|
class Factory implements ICacheFactory {
|
2020-04-10 17:54:27 +03:00
|
|
|
public const NULL_CACHE = NullCache::class;
|
2015-01-14 21:25:00 +03:00
|
|
|
|
2015-02-18 16:16:14 +03:00
|
|
|
/**
|
|
|
|
* @var string $globalPrefix
|
|
|
|
*/
|
2014-01-06 16:11:38 +04:00
|
|
|
private $globalPrefix;
|
|
|
|
|
2015-07-15 17:21:07 +03:00
|
|
|
/**
|
|
|
|
* @var ILogger $logger
|
|
|
|
*/
|
|
|
|
private $logger;
|
|
|
|
|
2015-01-14 21:25:00 +03:00
|
|
|
/**
|
|
|
|
* @var string $localCacheClass
|
|
|
|
*/
|
|
|
|
private $localCacheClass;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string $distributedCacheClass
|
|
|
|
*/
|
|
|
|
private $distributedCacheClass;
|
|
|
|
|
2015-05-26 15:41:37 +03:00
|
|
|
/**
|
|
|
|
* @var string $lockingCacheClass
|
|
|
|
*/
|
|
|
|
private $lockingCacheClass;
|
|
|
|
|
2014-01-06 16:11:38 +04:00
|
|
|
/**
|
|
|
|
* @param string $globalPrefix
|
2015-07-15 17:21:07 +03:00
|
|
|
* @param ILogger $logger
|
2015-01-14 21:25:00 +03:00
|
|
|
* @param string|null $localCacheClass
|
|
|
|
* @param string|null $distributedCacheClass
|
2015-05-26 15:41:37 +03:00
|
|
|
* @param string|null $lockingCacheClass
|
2014-01-06 16:11:38 +04:00
|
|
|
*/
|
2018-01-16 22:44:51 +03:00
|
|
|
public function __construct(string $globalPrefix, ILogger $logger,
|
2020-04-10 15:19:56 +03:00
|
|
|
$localCacheClass = null, $distributedCacheClass = null, $lockingCacheClass = null) {
|
2015-07-15 17:21:07 +03:00
|
|
|
$this->logger = $logger;
|
2014-01-06 16:11:38 +04:00
|
|
|
$this->globalPrefix = $globalPrefix;
|
2015-01-14 21:25:00 +03:00
|
|
|
|
2015-06-09 16:22:33 +03:00
|
|
|
if (!$localCacheClass) {
|
2015-01-14 21:25:00 +03:00
|
|
|
$localCacheClass = self::NULL_CACHE;
|
|
|
|
}
|
2015-06-09 16:22:33 +03:00
|
|
|
if (!$distributedCacheClass) {
|
2015-01-14 21:25:00 +03:00
|
|
|
$distributedCacheClass = $localCacheClass;
|
|
|
|
}
|
2015-06-09 16:22:33 +03:00
|
|
|
|
2015-07-15 17:21:07 +03:00
|
|
|
$missingCacheMessage = 'Memcache {class} not available for {use} cache';
|
|
|
|
$missingCacheHint = 'Is the matching PHP module installed and enabled?';
|
2017-01-05 13:57:18 +03:00
|
|
|
if (!class_exists($localCacheClass) || !$localCacheClass::isAvailable()) {
|
2021-02-23 20:50:36 +03:00
|
|
|
throw new \OC\HintException(strtr($missingCacheMessage, [
|
|
|
|
'{class}' => $localCacheClass, '{use}' => 'local'
|
|
|
|
]), $missingCacheHint);
|
2015-06-09 16:22:33 +03:00
|
|
|
}
|
2017-01-05 13:57:18 +03:00
|
|
|
if (!class_exists($distributedCacheClass) || !$distributedCacheClass::isAvailable()) {
|
2021-02-23 20:50:36 +03:00
|
|
|
throw new \OC\HintException(strtr($missingCacheMessage, [
|
|
|
|
'{class}' => $distributedCacheClass, '{use}' => 'distributed'
|
|
|
|
]), $missingCacheHint);
|
2015-06-09 16:22:33 +03:00
|
|
|
}
|
2017-01-05 13:57:18 +03:00
|
|
|
if (!($lockingCacheClass && class_exists($distributedCacheClass) && $lockingCacheClass::isAvailable())) {
|
2016-04-07 20:51:27 +03:00
|
|
|
// don't fallback since the fallback might not be suitable for storing lock
|
2015-07-15 17:21:07 +03:00
|
|
|
$lockingCacheClass = self::NULL_CACHE;
|
2015-05-26 15:41:37 +03:00
|
|
|
}
|
2015-07-15 17:21:07 +03:00
|
|
|
|
2015-01-14 21:25:00 +03:00
|
|
|
$this->localCacheClass = $localCacheClass;
|
|
|
|
$this->distributedCacheClass = $distributedCacheClass;
|
2015-05-26 15:41:37 +03:00
|
|
|
$this->lockingCacheClass = $lockingCacheClass;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* create a cache instance for storing locks
|
|
|
|
*
|
|
|
|
* @param string $prefix
|
2018-01-16 22:44:51 +03:00
|
|
|
* @return IMemcache
|
2015-05-26 15:41:37 +03:00
|
|
|
*/
|
2018-01-16 22:44:51 +03:00
|
|
|
public function createLocking(string $prefix = ''): IMemcache {
|
2015-05-26 15:41:37 +03:00
|
|
|
return new $this->lockingCacheClass($this->globalPrefix . '/' . $prefix);
|
2014-01-06 16:11:38 +04:00
|
|
|
}
|
|
|
|
|
2013-07-16 17:34:22 +04:00
|
|
|
/**
|
2015-01-14 21:25:00 +03:00
|
|
|
* create a distributed cache instance
|
2013-07-16 17:34:22 +04:00
|
|
|
*
|
2013-07-16 18:08:37 +04:00
|
|
|
* @param string $prefix
|
2018-01-16 22:44:51 +03:00
|
|
|
* @return ICache
|
2013-07-16 17:34:22 +04:00
|
|
|
*/
|
2018-01-16 22:44:51 +03:00
|
|
|
public function createDistributed(string $prefix = ''): ICache {
|
2015-01-14 21:25:00 +03:00
|
|
|
return new $this->distributedCacheClass($this->globalPrefix . '/' . $prefix);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* create a local cache instance
|
|
|
|
*
|
|
|
|
* @param string $prefix
|
2018-01-16 22:44:51 +03:00
|
|
|
* @return ICache
|
2015-01-14 21:25:00 +03:00
|
|
|
*/
|
2018-01-16 22:44:51 +03:00
|
|
|
public function createLocal(string $prefix = ''): ICache {
|
2015-01-14 21:25:00 +03:00
|
|
|
return new $this->localCacheClass($this->globalPrefix . '/' . $prefix);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @see \OC\Memcache\Factory::createDistributed()
|
|
|
|
* @param string $prefix
|
2018-01-16 22:44:51 +03:00
|
|
|
* @return ICache
|
|
|
|
* @deprecated 13.0.0 Use either createLocking, createDistributed or createLocal
|
2015-01-14 21:25:00 +03:00
|
|
|
*/
|
2018-01-16 22:44:51 +03:00
|
|
|
public function create(string $prefix = ''): ICache {
|
2015-01-14 21:25:00 +03:00
|
|
|
return $this->createDistributed($prefix);
|
2013-07-16 17:34:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-01-14 21:25:00 +03:00
|
|
|
* check memcache availability
|
2013-07-16 17:34:22 +04:00
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2018-01-16 22:44:51 +03:00
|
|
|
public function isAvailable(): bool {
|
2015-01-14 21:25:00 +03:00
|
|
|
return ($this->distributedCacheClass !== self::NULL_CACHE);
|
2013-07-16 17:34:22 +04:00
|
|
|
}
|
2013-08-17 18:01:37 +04:00
|
|
|
|
|
|
|
/**
|
2015-01-14 21:25:00 +03:00
|
|
|
* @see \OC\Memcache\Factory::createLocal()
|
2013-08-17 18:01:37 +04:00
|
|
|
* @param string $prefix
|
2018-01-16 22:44:51 +03:00
|
|
|
* @return ICache
|
2013-08-17 18:01:37 +04:00
|
|
|
*/
|
2018-01-16 22:44:51 +03:00
|
|
|
public function createLowLatency(string $prefix = ''): ICache {
|
2015-01-14 21:25:00 +03:00
|
|
|
return $this->createLocal($prefix);
|
2013-08-17 18:01:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-03-13 20:18:04 +03:00
|
|
|
* Check if a local memory cache backend is available
|
2013-08-17 18:01:37 +04:00
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2018-03-13 20:18:04 +03:00
|
|
|
public function isLocalCacheAvailable(): bool {
|
2015-01-14 21:25:00 +03:00
|
|
|
return ($this->localCacheClass !== self::NULL_CACHE);
|
2013-08-17 18:01:37 +04:00
|
|
|
}
|
2013-07-16 17:34:22 +04:00
|
|
|
}
|