123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501 |
- <?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;
- use InvalidArgumentException;
- use UnexpectedValueException;
- use Predis\Command\CommandInterface;
- use Predis\Command\RawCommand;
- use Predis\Command\ScriptCommand;
- use Predis\Configuration\Options;
- use Predis\Configuration\OptionsInterface;
- use Predis\Connection\ConnectionInterface;
- use Predis\Connection\AggregateConnectionInterface;
- use Predis\Connection\ParametersInterface;
- use Predis\Monitor\Consumer as MonitorConsumer;
- use Predis\Pipeline\Pipeline;
- use Predis\PubSub\Consumer as PubSubConsumer;
- use Predis\Response\ErrorInterface as ErrorResponseInterface;
- use Predis\Response\ResponseInterface;
- use Predis\Response\ServerException;
- use Predis\Transaction\MultiExec as MultiExecTransaction;
- /**
- * Client class used for connecting and executing commands on Redis.
- *
- * This is the main high-level abstraction of Predis upon which various other
- * abstractions are built. Internally it aggregates various other classes each
- * one with its own responsibility and scope.
- *
- * @author Daniele Alessandri <suppakilla@gmail.com>
- */
- class Client implements ClientInterface
- {
- const VERSION = '1.0.0-dev';
- protected $connection;
- protected $options;
- private $profile;
- /**
- * @param mixed $parameters Connection parameters for one or more servers.
- * @param mixed $options Options to configure some behaviours of the client.
- */
- public function __construct($parameters = null, $options = null)
- {
- $this->options = $this->createOptions($options ?: array());
- $this->connection = $this->createConnection($parameters ?: array());
- $this->profile = $this->options->profile;
- }
- /**
- * Creates a new instance of Predis\Configuration\Options from different
- * types of arguments or simply returns the passed argument if it is an
- * instance of Predis\Configuration\OptionsInterface.
- *
- * @param mixed $options Client options.
- * @return OptionsInterface
- */
- protected function createOptions($options)
- {
- if (is_array($options)) {
- return new Options($options);
- }
- if ($options instanceof OptionsInterface) {
- return $options;
- }
- throw new InvalidArgumentException("Invalid type for client options.");
- }
- /**
- * Creates single or aggregate connections from different types of arguments
- * (string, array) or returns the passed argument if it is an instance of a
- * class implementing Predis\Connection\ConnectionInterface.
- *
- * Accepted types for connection parameters are:
- *
- * - Instance of Predis\Connection\ConnectionInterface.
- * - Instance of Predis\Connection\ParametersInterface.
- * - Array
- * - String
- * - Callable
- *
- * @param mixed $parameters Connection parameters or connection instance.
- * @return ConnectionInterface
- */
- protected function createConnection($parameters)
- {
- if ($parameters instanceof ConnectionInterface) {
- return $parameters;
- }
- if ($parameters instanceof ParametersInterface || is_string($parameters)) {
- return $this->options->connections->create($parameters);
- }
- if (is_array($parameters)) {
- if (!isset($parameters[0])) {
- return $this->options->connections->create($parameters);
- }
- $options = $this->options;
- if ($options->defined('aggregate')) {
- $initializer = $this->getConnectionInitializerWrapper($options->aggregate);
- $connection = $initializer($parameters, $options);
- } else {
- if ($options->defined('replication') && $replication = $options->replication) {
- $connection = $replication;
- } else {
- $connection = $options->cluster;
- }
- $options->connections->aggregate($connection, $parameters);
- }
- return $connection;
- }
- if (is_callable($parameters)) {
- $initializer = $this->getConnectionInitializerWrapper($parameters);
- $connection = $initializer($this->options);
- return $connection;
- }
- throw new InvalidArgumentException('Invalid type for connection parameters.');
- }
- /**
- * Wraps a callable to make sure that its returned value represents a valid
- * connection type.
- *
- * @param mixed $callable
- * @return \Closure
- */
- protected function getConnectionInitializerWrapper($callable)
- {
- return function () use ($callable) {
- $connection = call_user_func_array($callable, func_get_args());
- if (!$connection instanceof ConnectionInterface) {
- throw new UnexpectedValueException(
- 'The callable connection initializer returned an invalid type.'
- );
- }
- return $connection;
- };
- }
- /**
- * {@inheritdoc}
- */
- public function getProfile()
- {
- return $this->profile;
- }
- /**
- * {@inheritdoc}
- */
- public function getOptions()
- {
- return $this->options;
- }
- /**
- * Creates a new client instance for the specified connection ID or alias,
- * only when working with an aggregate connection (cluster, replication).
- * The new client instances uses the same options of the original one.
- *
- * @param string $connectionID Identifier of a connection.
- * @return Client
- */
- public function getClientFor($connectionID)
- {
- if (!$connection = $this->getConnectionById($connectionID)) {
- throw new InvalidArgumentException("Invalid connection ID: $connectionID.");
- }
- return new static($connection, $this->options);
- }
- /**
- * Opens the underlying connection and connects to the server.
- */
- public function connect()
- {
- $this->connection->connect();
- }
- /**
- * Closes the underlying connection and disconnects from the server.
- */
- public function disconnect()
- {
- $this->connection->disconnect();
- }
- /**
- * Closes the underlying connection and disconnects from the server.
- *
- * This is the same as `Client::disconnect()` as it does not actually send
- * the `QUIT` command to Redis, but simply closes the connection.
- */
- public function quit()
- {
- $this->disconnect();
- }
- /**
- * Returns the current state of the underlying connection.
- *
- * @return bool
- */
- public function isConnected()
- {
- return $this->connection->isConnected();
- }
- /**
- * {@inheritdoc}
- */
- public function getConnection()
- {
- return $this->connection;
- }
- /**
- * Retrieves the specified connection from the aggregate connection when the
- * client is in cluster or replication mode.
- *
- * @param string $connectionID Index or alias of the single connection.
- * @return Connection\NodeConnectionInterface
- */
- public function getConnectionById($connectionID)
- {
- if (!$this->connection instanceof AggregateConnectionInterface) {
- throw new NotSupportedException(
- 'Retrieving connections by ID is supported only by aggregate connections.'
- );
- }
- return $this->connection->getConnectionById($connectionID);
- }
- /**
- * Executes a command without filtering its arguments, parsing the response,
- * applying any prefix to keys or throwing exceptions on Redis errors even
- * regardless of client options.
- *
- * It is possibile to indentify Redis error responses from normal responses
- * using the second optional argument which is populated by reference.
- *
- * @param array $arguments Command arguments as defined by the command signature.
- * @param bool $error Set to TRUE when Redis returned an error response.
- * @return mixed
- */
- public function executeRaw(array $arguments, &$error = null)
- {
- $error = false;
- $command = new RawCommand($arguments);
- $response = $this->connection->executeCommand($command);
- if ($response instanceof ResponseInterface) {
- if ($response instanceof ErrorResponseInterface) {
- $error = true;
- }
- return (string) $response;
- }
- return $response;
- }
- /**
- * Creates a Redis command with the specified arguments and sends a request
- * to the server.
- *
- * @param string $commandID Command ID.
- * @param array $arguments Arguments for the command.
- * @return mixed
- */
- public function __call($commandID, $arguments)
- {
- $command = $this->createCommand($commandID, $arguments);
- $response = $this->executeCommand($command);
- return $response;
- }
- /**
- * {@inheritdoc}
- */
- public function createCommand($commandID, $arguments = array())
- {
- return $this->profile->createCommand($commandID, $arguments);
- }
- /**
- * {@inheritdoc}
- */
- public function executeCommand(CommandInterface $command)
- {
- $response = $this->connection->executeCommand($command);
- if ($response instanceof ResponseInterface) {
- if ($response instanceof ErrorResponseInterface) {
- $response = $this->onErrorResponse($command, $response);
- }
- return $response;
- }
- return $command->parseResponse($response);
- }
- /**
- * Handles -ERR responses returned by Redis.
- *
- * @param CommandInterface $command Redis command that generated the error.
- * @param ErrorResponseInterface $response Instance of the error response.
- * @return mixed
- */
- protected function onErrorResponse(CommandInterface $command, ErrorResponseInterface $response)
- {
- if ($command instanceof ScriptCommand && $response->getErrorType() === 'NOSCRIPT') {
- $eval = $this->createCommand('eval');
- $eval->setRawArguments($command->getEvalArguments());
- $response = $this->executeCommand($eval);
- if (!$response instanceof ResponseInterface) {
- $response = $command->parseResponse($response);
- }
- return $response;
- }
- if ($this->options->exceptions) {
- throw new ServerException($response->getMessage());
- }
- return $response;
- }
- /**
- * Executes the specified initializer method on `$this` by adjusting the
- * actual invokation depending on the arity (0, 1 or 2 arguments). This is
- * simply an utility method to create Redis contexts instances since they
- * follow a common initialization path.
- *
- * @param string $initializer Method name.
- * @param array $argv Arguments for the method.
- * @return mixed
- */
- private function sharedContextFactory($initializer, $argv = null)
- {
- switch (count($argv)) {
- case 0:
- return $this->$initializer();
- case 1:
- return is_array($argv[0])
- ? $this->$initializer($argv[0])
- : $this->$initializer(null, $argv[0]);
- case 2:
- list($arg0, $arg1) = $argv;
- return $this->$initializer($arg0, $arg1);
- default:
- return $this->$initializer($this, $argv);
- }
- }
- /**
- * Creates a new pipeline context and returns it, or returns the results of
- * a pipeline executed inside the optionally provided callable object.
- *
- * @param mixed ... Array of options, a callable for execution, or both.
- * @return Pipeline|array
- */
- public function pipeline(/* arguments */)
- {
- return $this->sharedContextFactory('createPipeline', func_get_args());
- }
- /**
- * Actual pipeline context initializer method.
- *
- * @param array $options Options for the context.
- * @param mixed $callable Optional callable used to execute the context.
- * @return Pipeline|array
- */
- protected function createPipeline(array $options = null, $callable = null)
- {
- if (isset($options['atomic']) && $options['atomic']) {
- $class = 'Predis\Pipeline\Atomic';
- } elseif (isset($options['fire-and-forget']) && $options['fire-and-forget']) {
- $class = 'Predis\Pipeline\FireAndForget';
- } else {
- $class = 'Predis\Pipeline\Pipeline';
- }
- $pipeline = new $class($this);
- if (isset($callable)) {
- return $pipeline->execute($callable);
- }
- return $pipeline;
- }
- /**
- * Creates a new transaction context and returns it, or returns the results
- * of a transaction executed inside the optionally provided callable object.
- *
- * @param mixed ... Array of options, a callable for execution, or both.
- * @return MultiExecTransaction|array
- */
- public function transaction(/* arguments */)
- {
- return $this->sharedContextFactory('createTransaction', func_get_args());
- }
- /**
- * Actual transaction context initializer method.
- *
- * @param array $options Options for the context.
- * @param mixed $callable Optional callable used to execute the context.
- * @return MultiExecTransaction|array
- */
- protected function createTransaction(array $options = null, $callable = null)
- {
- $transaction = new MultiExecTransaction($this, $options);
- if (isset($callable)) {
- return $transaction->execute($callable);
- }
- return $transaction;
- }
- /**
- * Creates a new publis/subscribe context and returns it, or starts its loop
- * inside the optionally provided callable object.
- *
- * @param mixed ... Array of options, a callable for execution, or both.
- * @return PubSubConsumer|NULL
- */
- public function pubSubLoop(/* arguments */)
- {
- return $this->sharedContextFactory('createPubSub', func_get_args());
- }
- /**
- * Actual publish/subscribe context initializer method.
- *
- * @param array $options Options for the context.
- * @param mixed $callable Optional callable used to execute the context.
- * @return PubSubConsumer|NULL
- */
- protected function createPubSub(array $options = null, $callable = null)
- {
- $pubsub = new PubSubConsumer($this, $options);
- if (!isset($callable)) {
- return $pubsub;
- }
- foreach ($pubsub as $message) {
- if (call_user_func($callable, $pubsub, $message) === false) {
- $pubsub->stop();
- }
- }
- }
- /**
- * Creates a new monitor consumer and returns it.
- *
- * @return MonitorConsumer
- */
- public function monitor()
- {
- return new MonitorConsumer($this);
- }
- }
|