Files
predis/lib/Predis/Profile/ServerProfile.php
T
Daniele Alessandri d78780382a Promote Redis 2.8 to a standalone server profile.
We still need to populate this new server profile with the
recently added new commands for Redis 2.8.

The next development version has been set to Redis 3.0.
2013-11-02 18:19:32 +01:00

229 lines
5.8 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\Profile;
use Predis\ClientException;
use Predis\Command\Processor\CommandProcessingInterface;
use Predis\Command\Processor\CommandProcessorInterface;
/**
* Base class that implements common functionalities of server profiles.
*
* @author Daniele Alessandri <suppakilla@gmail.com>
*/
abstract class ServerProfile implements ServerProfileInterface, CommandProcessingInterface
{
private static $profiles;
private $commands;
private $processor;
/**
*
*/
public function __construct()
{
$this->commands = $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 ServerProfileInterface
*/
public static function getDefault()
{
return self::get('default');
}
/**
* Returns the development server profile.
*
* @return ServerProfileInterface
*/
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\Profile\ServerVersion12',
'2.0' => 'Predis\Profile\ServerVersion20',
'2.2' => 'Predis\Profile\ServerVersion22',
'2.4' => 'Predis\Profile\ServerVersion24',
'2.6' => 'Predis\Profile\ServerVersion26',
'2.8' => 'Predis\Profile\ServerVersion28',
'default' => 'Predis\Profile\ServerVersion26',
'dev' => 'Predis\Profile\ServerVersionNext',
);
}
/**
* Registers a new server profile.
*
* @param string $alias Profile version or alias.
* @param string $profileClass FQN of a class implementing Predis\Profile\ServerProfileInterface.
*/
public static function define($alias, $profileClass)
{
if (!isset(self::$profiles)) {
self::$profiles = self::getDefaultProfiles();
}
$profileReflection = new \ReflectionClass($profileClass);
if (!$profileReflection->isSubclassOf('Predis\Profile\ServerProfileInterface')) {
throw new \InvalidArgumentException("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 ServerProfileInterface
*/
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)) {
return false;
}
}
return true;
}
/**
* {@inheritdoc}
*/
public function supportsCommand($command)
{
return isset($this->commands[strtolower($command)]);
}
/**
* Returns the FQN of the class that represent the specified command ID
* registered in the current server profile.
*
* @param string $command Command ID.
* @return string
*/
public function getCommandClass($command)
{
if (isset($this->commands[$command = strtolower($command)])) {
return $this->commands[$command];
}
}
/**
* {@inheritdoc}
*/
public function createCommand($method, $arguments = array())
{
$method = strtolower($method);
if (!isset($this->commands[$method])) {
throw new ClientException("'$method' is not a registered Redis command");
}
$commandClass = $this->commands[$method];
$command = new $commandClass();
$command->setArguments($arguments);
if (isset($this->processor)) {
$this->processor->process($command);
}
return $command;
}
/**
* Defines a new commands in the server profile.
*
* @param string $alias Command ID.
* @param string $command FQN of a class implementing Predis\Command\CommandInterface.
*/
public function defineCommand($alias, $command)
{
$commandReflection = new \ReflectionClass($command);
if (!$commandReflection->isSubclassOf('Predis\Command\CommandInterface')) {
throw new \InvalidArgumentException("Cannot register '$command' as it is not a valid Redis command");
}
$this->commands[strtolower($alias)] = $command;
}
/**
* {@inheritdoc}
*/
public function setProcessor(CommandProcessorInterface $processor = null)
{
$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();
}
}