Files
predis/lib/Predis/Profiles/ServerProfile.php
T
Daniele Alessandri 4e6ed3f26d [phpdoc] Add API documentation.
This is a starting point to add a documentation of the whole set of APIs and
classes of Predis. The next step will be to actually improve and extend it.
2011-10-21 12:54:24 +02:00

227 lines
5.7 KiB
PHP

<?php
/*
* This file is part of the Predis package.
*
* (c) Daniele Alessandri <suppakilla@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Predis\Profiles;
use Predis\ClientException;
use Predis\Commands\Processors\ICommandProcessor;
use Predis\Commands\Processors\IProcessingSupport;
/**
* Base class that implements common functionalities of server profiles.
*
* @author Daniele Alessandri <suppakilla@gmail.com>
*/
abstract class ServerProfile implements IServerProfile, IProcessingSupport
{
private static $_profiles;
private $_registeredCommands;
private $_processor;
/**
*
*/
public function __construct()
{
$this->_registeredCommands = $this->getSupportedCommands();
}
/**
* Returns a map of all the commands supported by the profile and their
* actual PHP classes.
*
* @return array
*/
protected abstract function getSupportedCommands();
/**
* Returns the default server profile.
*
* @return IServerProfile
*/
public static function getDefault()
{
return self::get('default');
}
/**
* Returns the development server profile.
*
* @return IServerProfile
*/
public static function getDevelopment()
{
return self::get('dev');
}
/**
* Returns a map of all the server profiles supported by default and their
* actual PHP classes.
*
* @return array
*/
private static function getDefaultProfiles()
{
return array(
'1.2' => '\Predis\Profiles\ServerVersion12',
'2.0' => '\Predis\Profiles\ServerVersion20',
'2.2' => '\Predis\Profiles\ServerVersion22',
'2.4' => '\Predis\Profiles\ServerVersion24',
'default' => '\Predis\Profiles\ServerVersion24',
'dev' => '\Predis\Profiles\ServerVersionNext',
);
}
/**
* Registers a new server profile.
*
* @param string $alias Profile version or alias.
* @param string $profileClass FQN of a class implementing Predis\Profiles\IServerProfile.
*/
public static function define($alias, $profileClass)
{
if (!isset(self::$_profiles)) {
self::$_profiles = self::getDefaultProfiles();
}
$profileReflection = new \ReflectionClass($profileClass);
if (!$profileReflection->isSubclassOf('\Predis\Profiles\IServerProfile')) {
throw new ClientException(
"Cannot register '$profileClass' as it is not a valid profile class"
);
}
self::$_profiles[$alias] = $profileClass;
}
/**
* Returns the specified server profile.
*
* @param string $version Profile version or alias.
* @return IServerProfile
*/
public static function get($version)
{
if (!isset(self::$_profiles)) {
self::$_profiles = self::getDefaultProfiles();
}
if (!isset(self::$_profiles[$version])) {
throw new ClientException("Unknown server profile: $version");
}
$profile = self::$_profiles[$version];
return new $profile();
}
/**
* {@inheritdoc}
*/
public function supportsCommands(Array $commands)
{
foreach ($commands as $command) {
if ($this->supportsCommand($command) === false) {
return false;
}
}
return true;
}
/**
* {@inheritdoc}
*/
public function supportsCommand($command)
{
return isset($this->_registeredCommands[strtolower($command)]);
}
/**
* {@inheritdoc}
*/
public function createCommand($method, $arguments = array())
{
$method = strtolower($method);
if (!isset($this->_registeredCommands[$method])) {
throw new ClientException("'$method' is not a registered Redis command");
}
$commandClass = $this->_registeredCommands[$method];
$command = new $commandClass();
$command->setArguments($arguments);
if (isset($this->_processor)) {
$this->_processor->process($command);
}
return $command;
}
/**
* Defines new commands in the server profile.
*
* @param array $commands Named list of command IDs and their classes.
*/
public function defineCommands(Array $commands)
{
foreach ($commands as $alias => $command) {
$this->defineCommand($alias, $command);
}
}
/**
* Defines a new commands in the server profile.
*
* @param string $alias Command ID.
* @param string $command FQN of a class implementing Predis\Commands\ICommand.
*/
public function defineCommand($alias, $command)
{
$commandReflection = new \ReflectionClass($command);
if (!$commandReflection->isSubclassOf('\Predis\Commands\ICommand')) {
throw new ClientException("Cannot register '$command' as it is not a valid Redis command");
}
$this->_registeredCommands[strtolower($alias)] = $command;
}
/**
* {@inheritdoc}
*/
public function setProcessor(ICommandProcessor $processor)
{
if (!isset($processor)) {
unset($this->_processor);
return;
}
$this->_processor = $processor;
}
/**
* {@inheritdoc}
*/
public function getProcessor()
{
return $this->_processor;
}
/**
* Returns the version of server profile as its string representation.
*
* @return string
*/
public function __toString()
{
return $this->getVersion();
}
}