123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <?php
- /**
- * @author Andreas Fischer <bantu@owncloud.com>
- * @author Lukas Reschke <lukas@owncloud.com>
- * @author Markus Goetz <markus@woboq.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <icewind@owncloud.com>
- * @author Robin McCorkell <rmccorkell@karoshi.org.uk>
- *
- * @copyright Copyright (c) 2015, ownCloud, Inc.
- * @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\ICacheFactory;
- class Factory implements ICacheFactory {
- const NULL_CACHE = '\\OC\\Memcache\\Null';
- /**
- * @var string $globalPrefix
- */
- private $globalPrefix;
- /**
- * @var string $localCacheClass
- */
- private $localCacheClass;
- /**
- * @var string $distributedCacheClass
- */
- private $distributedCacheClass;
- /**
- * @param string $globalPrefix
- * @param string|null $localCacheClass
- * @param string|null $distributedCacheClass
- */
- public function __construct($globalPrefix,
- $localCacheClass = null, $distributedCacheClass = null)
- {
- $this->globalPrefix = $globalPrefix;
- if (!($localCacheClass && $localCacheClass::isAvailable())) {
- $localCacheClass = self::NULL_CACHE;
- }
- if (!($distributedCacheClass && $distributedCacheClass::isAvailable())) {
- $distributedCacheClass = $localCacheClass;
- }
- $this->localCacheClass = $localCacheClass;
- $this->distributedCacheClass = $distributedCacheClass;
- }
- /**
- * create a distributed cache instance
- *
- * @param string $prefix
- * @return \OC\Memcache\Cache
- */
- public function createDistributed($prefix = '') {
- return new $this->distributedCacheClass($this->globalPrefix . '/' . $prefix);
- }
- /**
- * create a local cache instance
- *
- * @param string $prefix
- * @return \OC\Memcache\Cache
- */
- public function createLocal($prefix = '') {
- return new $this->localCacheClass($this->globalPrefix . '/' . $prefix);
- }
- /**
- * @see \OC\Memcache\Factory::createDistributed()
- * @param string $prefix
- * @return \OC\Memcache\Cache
- */
- public function create($prefix = '') {
- return $this->createDistributed($prefix);
- }
- /**
- * check memcache availability
- *
- * @return bool
- */
- public function isAvailable() {
- return ($this->distributedCacheClass !== self::NULL_CACHE);
- }
- /**
- * @see \OC\Memcache\Factory::createLocal()
- * @param string $prefix
- * @return \OC\Memcache\Cache|null
- */
- public function createLowLatency($prefix = '') {
- return $this->createLocal($prefix);
- }
- /**
- * check local memcache availability
- *
- * @return bool
- */
- public function isAvailableLowLatency() {
- return ($this->localCacheClass !== self::NULL_CACHE);
- }
- }
|