123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- <?php
- /**
- * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
- * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
- * SPDX-License-Identifier: AGPL-3.0-only
- */
- namespace OC\Memcache;
- use Closure;
- use OCP\Cache\CappedMemoryCache;
- use OCP\ICache;
- use OCP\ICacheFactory;
- use OCP\IMemcache;
- use OCP\Profiler\IProfiler;
- use Psr\Log\LoggerInterface;
- class Factory implements ICacheFactory {
- public const NULL_CACHE = NullCache::class;
- private ?string $globalPrefix = null;
- private LoggerInterface $logger;
- /**
- * @var ?class-string<ICache> $localCacheClass
- */
- private ?string $localCacheClass;
- /**
- * @var ?class-string<ICache> $distributedCacheClass
- */
- private ?string $distributedCacheClass;
- /**
- * @var ?class-string<IMemcache> $lockingCacheClass
- */
- private ?string $lockingCacheClass;
- private string $logFile;
- private IProfiler $profiler;
- /**
- * @param Closure $globalPrefixClosure
- * @param LoggerInterface $logger
- * @param ?class-string<ICache> $localCacheClass
- * @param ?class-string<ICache> $distributedCacheClass
- * @param ?class-string<IMemcache> $lockingCacheClass
- * @param string $logFile
- */
- public function __construct(
- private Closure $globalPrefixClosure,
- LoggerInterface $logger,
- IProfiler $profiler,
- ?string $localCacheClass = null,
- ?string $distributedCacheClass = null,
- ?string $lockingCacheClass = null,
- string $logFile = '',
- ) {
- $this->logFile = $logFile;
- if (!$localCacheClass) {
- $localCacheClass = self::NULL_CACHE;
- }
- $localCacheClass = ltrim($localCacheClass, '\\');
- if (!$distributedCacheClass) {
- $distributedCacheClass = $localCacheClass;
- }
- $distributedCacheClass = ltrim($distributedCacheClass, '\\');
- $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') && $localCacheClass === APCu::class) {
- // CLI should not fail if APCu is not available but fallback to NullCache.
- // This can be the case if APCu is used without apc.enable_cli=1.
- // APCu however cannot be shared between PHP instances (CLI and web) anyway.
- $localCacheClass = self::NULL_CACHE;
- } else {
- throw new \OCP\HintException(strtr($missingCacheMessage, [
- '{class}' => $localCacheClass, '{use}' => 'local'
- ]), $missingCacheHint);
- }
- }
- if (!class_exists($distributedCacheClass) || !$distributedCacheClass::isAvailable()) {
- if (\OC::$CLI && !defined('PHPUNIT_RUN') && $distributedCacheClass === APCu::class) {
- // CLI should not fail if APCu is not available but fallback to NullCache.
- // This can be the case if APCu is used without apc.enable_cli=1.
- // APCu however cannot be shared between Nextcloud (PHP) instances anyway.
- $distributedCacheClass = self::NULL_CACHE;
- } else {
- throw new \OCP\HintException(strtr($missingCacheMessage, [
- '{class}' => $distributedCacheClass, '{use}' => 'distributed'
- ]), $missingCacheHint);
- }
- }
- if (!($lockingCacheClass && class_exists($lockingCacheClass) && $lockingCacheClass::isAvailable())) {
- // don't fall back since the fallback might not be suitable for storing lock
- $lockingCacheClass = self::NULL_CACHE;
- }
- $lockingCacheClass = ltrim($lockingCacheClass, '\\');
- $this->localCacheClass = $localCacheClass;
- $this->distributedCacheClass = $distributedCacheClass;
- $this->lockingCacheClass = $lockingCacheClass;
- $this->profiler = $profiler;
- }
- private function getGlobalPrefix(): ?string {
- if (is_null($this->globalPrefix)) {
- $this->globalPrefix = ($this->globalPrefixClosure)();
- }
- return $this->globalPrefix;
- }
- /**
- * create a cache instance for storing locks
- *
- * @param string $prefix
- * @return IMemcache
- */
- public function createLocking(string $prefix = ''): IMemcache {
- $globalPrefix = $this->getGlobalPrefix();
- if (is_null($globalPrefix)) {
- return new ArrayCache($prefix);
- }
- assert($this->lockingCacheClass !== null);
- $cache = new $this->lockingCacheClass($globalPrefix . '/' . $prefix);
- if ($this->lockingCacheClass === Redis::class && $this->profiler->isEnabled()) {
- // We only support the profiler with Redis
- $cache = new ProfilerWrapperCache($cache, 'Locking');
- $this->profiler->add($cache);
- }
- if ($this->lockingCacheClass === Redis::class &&
- $this->logFile !== '' && is_writable(dirname($this->logFile)) && (!file_exists($this->logFile) || is_writable($this->logFile))) {
- $cache = new LoggerWrapperCache($cache, $this->logFile);
- }
- return $cache;
- }
- /**
- * create a distributed cache instance
- *
- * @param string $prefix
- * @return ICache
- */
- public function createDistributed(string $prefix = ''): ICache {
- $globalPrefix = $this->getGlobalPrefix();
- if (is_null($globalPrefix)) {
- return new ArrayCache($prefix);
- }
- assert($this->distributedCacheClass !== null);
- $cache = new $this->distributedCacheClass($globalPrefix . '/' . $prefix);
- if ($this->distributedCacheClass === Redis::class && $this->profiler->isEnabled()) {
- // We only support the profiler with Redis
- $cache = new ProfilerWrapperCache($cache, 'Distributed');
- $this->profiler->add($cache);
- }
- if ($this->distributedCacheClass === Redis::class && $this->logFile !== ''
- && is_writable(dirname($this->logFile)) && (!file_exists($this->logFile) || is_writable($this->logFile))) {
- $cache = new LoggerWrapperCache($cache, $this->logFile);
- }
- return $cache;
- }
- /**
- * create a local cache instance
- *
- * @param string $prefix
- * @return ICache
- */
- public function createLocal(string $prefix = ''): ICache {
- $globalPrefix = $this->getGlobalPrefix();
- if (is_null($globalPrefix)) {
- return new ArrayCache($prefix);
- }
- assert($this->localCacheClass !== null);
- $cache = new $this->localCacheClass($globalPrefix . '/' . $prefix);
- if ($this->localCacheClass === Redis::class && $this->profiler->isEnabled()) {
- // We only support the profiler with Redis
- $cache = new ProfilerWrapperCache($cache, 'Local');
- $this->profiler->add($cache);
- }
- if ($this->localCacheClass === Redis::class && $this->logFile !== ''
- && is_writable(dirname($this->logFile)) && (!file_exists($this->logFile) || is_writable($this->logFile))) {
- $cache = new LoggerWrapperCache($cache, $this->logFile);
- }
- return $cache;
- }
- /**
- * check memcache availability
- *
- * @return bool
- */
- public function isAvailable(): bool {
- return $this->distributedCacheClass !== self::NULL_CACHE;
- }
- public function createInMemory(int $capacity = 512): ICache {
- return new CappedMemoryCache($capacity);
- }
- /**
- * Check if a local memory cache backend is available
- *
- * @return bool
- */
- public function isLocalCacheAvailable(): bool {
- return $this->localCacheClass !== self::NULL_CACHE;
- }
- }
|