123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- <?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\Connection;
- use Predis\Command\RawCommand;
- /**
- * Standard connection factory for creating connections to Redis nodes.
- *
- * @author Daniele Alessandri <suppakilla@gmail.com>
- */
- class Factory implements FactoryInterface
- {
- private $defaults = array();
- protected $schemes = array(
- 'tcp' => 'Predis\Connection\StreamConnection',
- 'unix' => 'Predis\Connection\StreamConnection',
- 'tls' => 'Predis\Connection\StreamConnection',
- 'redis' => 'Predis\Connection\StreamConnection',
- 'rediss' => 'Predis\Connection\StreamConnection',
- 'http' => 'Predis\Connection\WebdisConnection',
- );
- /**
- * Checks if the provided argument represents a valid connection class
- * implementing Predis\Connection\NodeConnectionInterface. Optionally,
- * callable objects are used for lazy initialization of connection objects.
- *
- * @param mixed $initializer FQN of a connection class or a callable for lazy initialization.
- *
- * @throws \InvalidArgumentException
- *
- * @return mixed
- */
- protected function checkInitializer($initializer)
- {
- if (is_callable($initializer)) {
- return $initializer;
- }
- $class = new \ReflectionClass($initializer);
- if (!$class->isSubclassOf('Predis\Connection\NodeConnectionInterface')) {
- throw new \InvalidArgumentException(
- 'A connection initializer must be a valid connection class or a callable object.'
- );
- }
- return $initializer;
- }
- /**
- * {@inheritdoc}
- */
- public function define($scheme, $initializer)
- {
- $this->schemes[$scheme] = $this->checkInitializer($initializer);
- }
- /**
- * {@inheritdoc}
- */
- public function undefine($scheme)
- {
- unset($this->schemes[$scheme]);
- }
- /**
- * {@inheritdoc}
- */
- public function create($parameters)
- {
- if (!$parameters instanceof ParametersInterface) {
- $parameters = $this->createParameters($parameters);
- }
- $scheme = $parameters->scheme;
- if (!isset($this->schemes[$scheme])) {
- throw new \InvalidArgumentException("Unknown connection scheme: '$scheme'.");
- }
- $initializer = $this->schemes[$scheme];
- if (is_callable($initializer)) {
- $connection = call_user_func($initializer, $parameters, $this);
- } else {
- $connection = new $initializer($parameters);
- $this->prepareConnection($connection);
- }
- if (!$connection instanceof NodeConnectionInterface) {
- throw new \UnexpectedValueException(
- 'Objects returned by connection initializers must implement '.
- "'Predis\Connection\NodeConnectionInterface'."
- );
- }
- return $connection;
- }
- /**
- * {@inheritdoc}
- */
- public function aggregate(AggregateConnectionInterface $connection, array $parameters)
- {
- foreach ($parameters as $node) {
- $connection->add($node instanceof NodeConnectionInterface ? $node : $this->create($node));
- }
- }
- /**
- * Assigns a default set of parameters applied to new connections.
- *
- * The set of parameters passed to create a new connection have precedence
- * over the default values set for the connection factory.
- *
- * @param array $parameters Set of connection parameters.
- */
- public function setDefaultParameters(array $parameters)
- {
- $this->defaults = $parameters;
- }
- /**
- * Returns the default set of parameters applied to new connections.
- *
- * @return array
- */
- public function getDefaultParameters()
- {
- return $this->defaults;
- }
- /**
- * Creates a connection parameters instance from the supplied argument.
- *
- * @param mixed $parameters Original connection parameters.
- *
- * @return ParametersInterface
- */
- protected function createParameters($parameters)
- {
- if (is_string($parameters)) {
- $parameters = Parameters::parse($parameters);
- } else {
- $parameters = $parameters ?: array();
- }
- if ($this->defaults) {
- $parameters += $this->defaults;
- }
- return new Parameters($parameters);
- }
- /**
- * Prepares a connection instance after its initialization.
- *
- * @param NodeConnectionInterface $connection Connection instance.
- */
- protected function prepareConnection(NodeConnectionInterface $connection)
- {
- $parameters = $connection->getParameters();
- if (isset($parameters->password)) {
- $connection->addConnectCommand(
- new RawCommand('AUTH', array($parameters->password))
- );
- }
- if (isset($parameters->database)) {
- $connection->addConnectCommand(
- new RawCommand('SELECT', array($parameters->database))
- );
- }
- }
- }
|