123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <?php
- namespace Predis\Profile;
- use InvalidArgumentException;
- use ReflectionClass;
- use Predis\ClientException;
- final class Factory
- {
- private static $profiles = array(
- '2.0' => 'Predis\Profile\RedisVersion200',
- '2.2' => 'Predis\Profile\RedisVersion220',
- '2.4' => 'Predis\Profile\RedisVersion240',
- '2.6' => 'Predis\Profile\RedisVersion260',
- '2.8' => 'Predis\Profile\RedisVersion280',
- 'default' => 'Predis\Profile\RedisVersion280',
- 'dev' => 'Predis\Profile\RedisUnstable',
- );
-
- private function __construct()
- {
-
- }
-
- public static function getDefault()
- {
- return self::get('default');
- }
-
- public static function getDevelopment()
- {
- return self::get('dev');
- }
-
- public static function define($alias, $class)
- {
- $reflection = new ReflectionClass($class);
- if (!$reflection->isSubclassOf('Predis\Profile\ProfileInterface')) {
- throw new InvalidArgumentException("The class '$class' is not a valid profile class.");
- }
- self::$profiles[$alias] = $class;
- }
-
- public static function get($version)
- {
- if (!isset(self::$profiles[$version])) {
- throw new ClientException("Unknown server profile: '$version'.");
- }
- $profile = self::$profiles[$version];
- return new $profile();
- }
- }
|