mirror of
https://github.com/nextcloud/server.git
synced 2026-04-07 01:56:38 -04:00
To continue this formatting madness, here's a tiny patch that adds unified formatting for control structures like if and loops as well as classes, their methods and anonymous functions. This basically forces the constructs to start on the same line. This is not exactly what PSR2 wants, but I think we can have a few exceptions with "our" style. The starting of braces on the same line is pracrically standard for our code. This also removes and empty lines from method/function bodies at the beginning and end. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
193 lines
5.3 KiB
PHP
193 lines
5.3 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
*
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
|
* @author Markus Goetz <markus@woboq.com>
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
* @author Robin Appelman <robin@icewind.nl>
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
* @author Stefan Weil <sw@weilnetz.de>
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
*
|
|
* @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/>
|
|
*
|
|
*/
|
|
|
|
namespace OC\Memcache;
|
|
|
|
use OCP\ICache;
|
|
use OCP\ICacheFactory;
|
|
use OCP\ILogger;
|
|
use OCP\IMemcache;
|
|
|
|
class Factory implements ICacheFactory {
|
|
const NULL_CACHE = NullCache::class;
|
|
|
|
/**
|
|
* @var string $globalPrefix
|
|
*/
|
|
private $globalPrefix;
|
|
|
|
/**
|
|
* @var ILogger $logger
|
|
*/
|
|
private $logger;
|
|
|
|
/**
|
|
* @var string $localCacheClass
|
|
*/
|
|
private $localCacheClass;
|
|
|
|
/**
|
|
* @var string $distributedCacheClass
|
|
*/
|
|
private $distributedCacheClass;
|
|
|
|
/**
|
|
* @var string $lockingCacheClass
|
|
*/
|
|
private $lockingCacheClass;
|
|
|
|
/**
|
|
* @param string $globalPrefix
|
|
* @param ILogger $logger
|
|
* @param string|null $localCacheClass
|
|
* @param string|null $distributedCacheClass
|
|
* @param string|null $lockingCacheClass
|
|
*/
|
|
public function __construct(string $globalPrefix, ILogger $logger,
|
|
$localCacheClass = null, $distributedCacheClass = null, $lockingCacheClass = null) {
|
|
$this->logger = $logger;
|
|
$this->globalPrefix = $globalPrefix;
|
|
|
|
if (!$localCacheClass) {
|
|
$localCacheClass = self::NULL_CACHE;
|
|
}
|
|
if (!$distributedCacheClass) {
|
|
$distributedCacheClass = $localCacheClass;
|
|
}
|
|
|
|
$missingCacheMessage = 'Memcache {class} not available for {use} cache';
|
|
$missingCacheHint = 'Is the matching PHP module installed and enabled?';
|
|
if (!class_exists($localCacheClass) || !$localCacheClass::isAvailable()) {
|
|
if (\OC::$CLI && !defined('PHPUNIT_RUN')) {
|
|
// CLI should not hard-fail on broken memcache
|
|
$this->logger->info($missingCacheMessage, [
|
|
'class' => $localCacheClass,
|
|
'use' => 'local',
|
|
'app' => 'cli'
|
|
]);
|
|
$localCacheClass = self::NULL_CACHE;
|
|
} else {
|
|
throw new \OC\HintException(strtr($missingCacheMessage, [
|
|
'{class}' => $localCacheClass, '{use}' => 'local'
|
|
]), $missingCacheHint);
|
|
}
|
|
}
|
|
if (!class_exists($distributedCacheClass) || !$distributedCacheClass::isAvailable()) {
|
|
if (\OC::$CLI && !defined('PHPUNIT_RUN')) {
|
|
// CLI should not hard-fail on broken memcache
|
|
$this->logger->info($missingCacheMessage, [
|
|
'class' => $distributedCacheClass,
|
|
'use' => 'distributed',
|
|
'app' => 'cli'
|
|
]);
|
|
$distributedCacheClass = self::NULL_CACHE;
|
|
} else {
|
|
throw new \OC\HintException(strtr($missingCacheMessage, [
|
|
'{class}' => $distributedCacheClass, '{use}' => 'distributed'
|
|
]), $missingCacheHint);
|
|
}
|
|
}
|
|
if (!($lockingCacheClass && class_exists($distributedCacheClass) && $lockingCacheClass::isAvailable())) {
|
|
// don't fallback since the fallback might not be suitable for storing lock
|
|
$lockingCacheClass = self::NULL_CACHE;
|
|
}
|
|
|
|
$this->localCacheClass = $localCacheClass;
|
|
$this->distributedCacheClass = $distributedCacheClass;
|
|
$this->lockingCacheClass = $lockingCacheClass;
|
|
}
|
|
|
|
/**
|
|
* create a cache instance for storing locks
|
|
*
|
|
* @param string $prefix
|
|
* @return IMemcache
|
|
*/
|
|
public function createLocking(string $prefix = ''): IMemcache {
|
|
return new $this->lockingCacheClass($this->globalPrefix . '/' . $prefix);
|
|
}
|
|
|
|
/**
|
|
* create a distributed cache instance
|
|
*
|
|
* @param string $prefix
|
|
* @return ICache
|
|
*/
|
|
public function createDistributed(string $prefix = ''): ICache {
|
|
return new $this->distributedCacheClass($this->globalPrefix . '/' . $prefix);
|
|
}
|
|
|
|
/**
|
|
* create a local cache instance
|
|
*
|
|
* @param string $prefix
|
|
* @return ICache
|
|
*/
|
|
public function createLocal(string $prefix = ''): ICache {
|
|
return new $this->localCacheClass($this->globalPrefix . '/' . $prefix);
|
|
}
|
|
|
|
/**
|
|
* @see \OC\Memcache\Factory::createDistributed()
|
|
* @param string $prefix
|
|
* @return ICache
|
|
* @deprecated 13.0.0 Use either createLocking, createDistributed or createLocal
|
|
*/
|
|
public function create(string $prefix = ''): ICache {
|
|
return $this->createDistributed($prefix);
|
|
}
|
|
|
|
/**
|
|
* check memcache availability
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function isAvailable(): bool {
|
|
return ($this->distributedCacheClass !== self::NULL_CACHE);
|
|
}
|
|
|
|
/**
|
|
* @see \OC\Memcache\Factory::createLocal()
|
|
* @param string $prefix
|
|
* @return ICache
|
|
*/
|
|
public function createLowLatency(string $prefix = ''): ICache {
|
|
return $this->createLocal($prefix);
|
|
}
|
|
|
|
/**
|
|
* Check if a local memory cache backend is available
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function isLocalCacheAvailable(): bool {
|
|
return ($this->localCacheClass !== self::NULL_CACHE);
|
|
}
|
|
}
|