2013-07-16 17:34:22 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @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/>
|
|
|
|
*
|
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;
|
|
|
|
|
2014-01-24 19:01:19 +04:00
|
|
|
use \OCP\ICacheFactory;
|
|
|
|
|
|
|
|
class Factory implements ICacheFactory {
|
2015-01-14 21:25:00 +03:00
|
|
|
const NULL_CACHE = '\\OC\\Memcache\\Null';
|
|
|
|
|
2015-02-18 16:16:14 +03:00
|
|
|
/**
|
|
|
|
* @var string $globalPrefix
|
|
|
|
*/
|
2014-01-06 16:11:38 +04:00
|
|
|
private $globalPrefix;
|
|
|
|
|
2015-01-14 21:25:00 +03:00
|
|
|
/**
|
|
|
|
* @var string $localCacheClass
|
|
|
|
*/
|
|
|
|
private $localCacheClass;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string $distributedCacheClass
|
|
|
|
*/
|
|
|
|
private $distributedCacheClass;
|
|
|
|
|
2014-01-06 16:11:38 +04:00
|
|
|
/**
|
|
|
|
* @param string $globalPrefix
|
2015-01-14 21:25:00 +03:00
|
|
|
* @param string|null $localCacheClass
|
|
|
|
* @param string|null $distributedCacheClass
|
2014-01-06 16:11:38 +04:00
|
|
|
*/
|
2015-01-14 21:25:00 +03:00
|
|
|
public function __construct($globalPrefix,
|
|
|
|
$localCacheClass = null, $distributedCacheClass = null)
|
|
|
|
{
|
2014-01-06 16:11:38 +04:00
|
|
|
$this->globalPrefix = $globalPrefix;
|
2015-01-14 21:25:00 +03:00
|
|
|
|
|
|
|
if (!($localCacheClass && $localCacheClass::isAvailable())) {
|
|
|
|
$localCacheClass = self::NULL_CACHE;
|
|
|
|
}
|
|
|
|
if (!($distributedCacheClass && $distributedCacheClass::isAvailable())) {
|
|
|
|
$distributedCacheClass = $localCacheClass;
|
|
|
|
}
|
|
|
|
$this->localCacheClass = $localCacheClass;
|
|
|
|
$this->distributedCacheClass = $distributedCacheClass;
|
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
|
2013-07-16 17:34:22 +04:00
|
|
|
* @return \OC\Memcache\Cache
|
|
|
|
*/
|
2015-01-14 21:25:00 +03: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 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
|
|
|
|
*/
|
|
|
|
public function isAvailable() {
|
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
|
2015-01-14 21:25:00 +03:00
|
|
|
* @return \OC\Memcache\Cache|null
|
2013-08-17 18:01:37 +04:00
|
|
|
*/
|
2014-07-29 13:14:36 +04:00
|
|
|
public function createLowLatency($prefix = '') {
|
2015-01-14 21:25:00 +03:00
|
|
|
return $this->createLocal($prefix);
|
2013-08-17 18:01:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-01-14 21:25:00 +03:00
|
|
|
* check local memcache availability
|
2013-08-17 18:01:37 +04:00
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2014-07-29 13:14:36 +04:00
|
|
|
public function isAvailableLowLatency() {
|
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
|
|
|
}
|