2013-07-16 13:34:22 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2015-02-26 10:37:37 +00:00
|
|
|
* Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
2013-07-16 13:34:22 +00:00
|
|
|
*/
|
2015-02-26 10:37:37 +00:00
|
|
|
|
2013-07-16 13:34:22 +00:00
|
|
|
namespace OC\Memcache;
|
|
|
|
|
2014-01-24 15:01:19 +00:00
|
|
|
use \OCP\ICacheFactory;
|
|
|
|
|
|
|
|
class Factory implements ICacheFactory {
|
2015-01-14 18:25:00 +00:00
|
|
|
const NULL_CACHE = '\\OC\\Memcache\\Null';
|
|
|
|
|
2015-02-18 13:16:14 +00:00
|
|
|
/**
|
|
|
|
* @var string $globalPrefix
|
|
|
|
*/
|
2014-01-06 12:11:38 +00:00
|
|
|
private $globalPrefix;
|
|
|
|
|
2015-01-14 18:25:00 +00:00
|
|
|
/**
|
|
|
|
* @var string $localCacheClass
|
|
|
|
*/
|
|
|
|
private $localCacheClass;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string $distributedCacheClass
|
|
|
|
*/
|
|
|
|
private $distributedCacheClass;
|
|
|
|
|
2014-01-06 12:11:38 +00:00
|
|
|
/**
|
|
|
|
* @param string $globalPrefix
|
2015-01-14 18:25:00 +00:00
|
|
|
* @param string|null $localCacheClass
|
|
|
|
* @param string|null $distributedCacheClass
|
2014-01-06 12:11:38 +00:00
|
|
|
*/
|
2015-01-14 18:25:00 +00:00
|
|
|
public function __construct($globalPrefix,
|
|
|
|
$localCacheClass = null, $distributedCacheClass = null)
|
|
|
|
{
|
2014-01-06 12:11:38 +00:00
|
|
|
$this->globalPrefix = $globalPrefix;
|
2015-01-14 18:25:00 +00:00
|
|
|
|
|
|
|
if (!($localCacheClass && $localCacheClass::isAvailable())) {
|
|
|
|
$localCacheClass = self::NULL_CACHE;
|
|
|
|
}
|
|
|
|
if (!($distributedCacheClass && $distributedCacheClass::isAvailable())) {
|
|
|
|
$distributedCacheClass = $localCacheClass;
|
|
|
|
}
|
|
|
|
$this->localCacheClass = $localCacheClass;
|
|
|
|
$this->distributedCacheClass = $distributedCacheClass;
|
2014-01-06 12:11:38 +00:00
|
|
|
}
|
|
|
|
|
2013-07-16 13:34:22 +00:00
|
|
|
/**
|
2015-01-14 18:25:00 +00:00
|
|
|
* create a distributed cache instance
|
2013-07-16 13:34:22 +00:00
|
|
|
*
|
2013-07-16 14:08:37 +00:00
|
|
|
* @param string $prefix
|
2013-07-16 13:34:22 +00:00
|
|
|
* @return \OC\Memcache\Cache
|
|
|
|
*/
|
2015-01-14 18:25:00 +00:00
|
|
|
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);
|
2013-07-16 13:34:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-01-14 18:25:00 +00:00
|
|
|
* check memcache availability
|
2013-07-16 13:34:22 +00:00
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isAvailable() {
|
2015-01-14 18:25:00 +00:00
|
|
|
return ($this->distributedCacheClass !== self::NULL_CACHE);
|
2013-07-16 13:34:22 +00:00
|
|
|
}
|
2013-08-17 14:01:37 +00:00
|
|
|
|
|
|
|
/**
|
2015-01-14 18:25:00 +00:00
|
|
|
* @see \OC\Memcache\Factory::createLocal()
|
2013-08-17 14:01:37 +00:00
|
|
|
* @param string $prefix
|
2015-01-14 18:25:00 +00:00
|
|
|
* @return \OC\Memcache\Cache|null
|
2013-08-17 14:01:37 +00:00
|
|
|
*/
|
2014-07-29 09:14:36 +00:00
|
|
|
public function createLowLatency($prefix = '') {
|
2015-01-14 18:25:00 +00:00
|
|
|
return $this->createLocal($prefix);
|
2013-08-17 14:01:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-01-14 18:25:00 +00:00
|
|
|
* check local memcache availability
|
2013-08-17 14:01:37 +00:00
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2014-07-29 09:14:36 +00:00
|
|
|
public function isAvailableLowLatency() {
|
2015-01-14 18:25:00 +00:00
|
|
|
return ($this->localCacheClass !== self::NULL_CACHE);
|
2013-08-17 14:01:37 +00:00
|
|
|
}
|
2013-07-16 13:34:22 +00:00
|
|
|
}
|