ServerProfile.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. <?php
  2. /*
  3. * This file is part of the Predis package.
  4. *
  5. * (c) Daniele Alessandri <suppakilla@gmail.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Predis\Profile;
  11. use Predis\ClientException;
  12. use Predis\Command\Processor\CommandProcessingInterface;
  13. use Predis\Command\Processor\CommandProcessorInterface;
  14. /**
  15. * Base class that implements common functionalities of server profiles.
  16. *
  17. * @author Daniele Alessandri <suppakilla@gmail.com>
  18. */
  19. abstract class ServerProfile implements ServerProfileInterface, CommandProcessingInterface
  20. {
  21. private static $profiles;
  22. private $commands;
  23. private $processor;
  24. /**
  25. *
  26. */
  27. public function __construct()
  28. {
  29. $this->commands = $this->getSupportedCommands();
  30. }
  31. /**
  32. * Returns a map of all the commands supported by the profile and their
  33. * actual PHP classes.
  34. *
  35. * @return array
  36. */
  37. protected abstract function getSupportedCommands();
  38. /**
  39. * Returns the default server profile.
  40. *
  41. * @return ServerProfileInterface
  42. */
  43. public static function getDefault()
  44. {
  45. return self::get('default');
  46. }
  47. /**
  48. * Returns the development server profile.
  49. *
  50. * @return ServerProfileInterface
  51. */
  52. public static function getDevelopment()
  53. {
  54. return self::get('dev');
  55. }
  56. /**
  57. * Returns a map of all the server profiles supported by default and their
  58. * actual PHP classes.
  59. *
  60. * @return array
  61. */
  62. private static function getDefaultProfiles()
  63. {
  64. return array(
  65. '1.2' => 'Predis\Profile\ServerVersion12',
  66. '2.0' => 'Predis\Profile\ServerVersion20',
  67. '2.2' => 'Predis\Profile\ServerVersion22',
  68. '2.4' => 'Predis\Profile\ServerVersion24',
  69. '2.6' => 'Predis\Profile\ServerVersion26',
  70. '2.8' => 'Predis\Profile\ServerVersion28',
  71. 'default' => 'Predis\Profile\ServerVersion28',
  72. 'dev' => 'Predis\Profile\ServerVersionNext',
  73. );
  74. }
  75. /**
  76. * Registers a new server profile.
  77. *
  78. * @param string $alias Profile version or alias.
  79. * @param string $profileClass FQN of a class implementing Predis\Profile\ServerProfileInterface.
  80. */
  81. public static function define($alias, $profileClass)
  82. {
  83. if (!isset(self::$profiles)) {
  84. self::$profiles = self::getDefaultProfiles();
  85. }
  86. $profileReflection = new \ReflectionClass($profileClass);
  87. if (!$profileReflection->isSubclassOf('Predis\Profile\ServerProfileInterface')) {
  88. throw new \InvalidArgumentException("Cannot register '$profileClass' as it is not a valid profile class");
  89. }
  90. self::$profiles[$alias] = $profileClass;
  91. }
  92. /**
  93. * Returns the specified server profile.
  94. *
  95. * @param string $version Profile version or alias.
  96. * @return ServerProfileInterface
  97. */
  98. public static function get($version)
  99. {
  100. if (!isset(self::$profiles)) {
  101. self::$profiles = self::getDefaultProfiles();
  102. }
  103. if (!isset(self::$profiles[$version])) {
  104. throw new ClientException("Unknown server profile: $version");
  105. }
  106. $profile = self::$profiles[$version];
  107. return new $profile();
  108. }
  109. /**
  110. * {@inheritdoc}
  111. */
  112. public function supportsCommands(Array $commands)
  113. {
  114. foreach ($commands as $command) {
  115. if (!$this->supportsCommand($command)) {
  116. return false;
  117. }
  118. }
  119. return true;
  120. }
  121. /**
  122. * {@inheritdoc}
  123. */
  124. public function supportsCommand($command)
  125. {
  126. return isset($this->commands[strtolower($command)]);
  127. }
  128. /**
  129. * Returns the FQN of the class that represent the specified command ID
  130. * registered in the current server profile.
  131. *
  132. * @param string $command Command ID.
  133. * @return string
  134. */
  135. public function getCommandClass($command)
  136. {
  137. if (isset($this->commands[$command = strtolower($command)])) {
  138. return $this->commands[$command];
  139. }
  140. }
  141. /**
  142. * {@inheritdoc}
  143. */
  144. public function createCommand($method, $arguments = array())
  145. {
  146. $method = strtolower($method);
  147. if (!isset($this->commands[$method])) {
  148. throw new ClientException("'$method' is not a registered Redis command");
  149. }
  150. $commandClass = $this->commands[$method];
  151. $command = new $commandClass();
  152. $command->setArguments($arguments);
  153. if (isset($this->processor)) {
  154. $this->processor->process($command);
  155. }
  156. return $command;
  157. }
  158. /**
  159. * Defines a new commands in the server profile.
  160. *
  161. * @param string $alias Command ID.
  162. * @param string $command FQN of a class implementing Predis\Command\CommandInterface.
  163. */
  164. public function defineCommand($alias, $command)
  165. {
  166. $commandReflection = new \ReflectionClass($command);
  167. if (!$commandReflection->isSubclassOf('Predis\Command\CommandInterface')) {
  168. throw new \InvalidArgumentException("Cannot register '$command' as it is not a valid Redis command");
  169. }
  170. $this->commands[strtolower($alias)] = $command;
  171. }
  172. /**
  173. * {@inheritdoc}
  174. */
  175. public function setProcessor(CommandProcessorInterface $processor = null)
  176. {
  177. $this->processor = $processor;
  178. }
  179. /**
  180. * {@inheritdoc}
  181. */
  182. public function getProcessor()
  183. {
  184. return $this->processor;
  185. }
  186. /**
  187. * Returns the version of server profile as its string representation.
  188. *
  189. * @return string
  190. */
  191. public function __toString()
  192. {
  193. return $this->getVersion();
  194. }
  195. }