The example (and related documentation at redis.io) was not updated for 5 years. Redis had no sorted sets and hashes when the original code was written (!). An update was really needed. We also use a modern PHP client now: Predis. A copy is shipped within this repository to make life easier to newcomers trying Redis for the first time via this example.
168 lines
4.9 KiB
PHP
168 lines
4.9 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\Pipeline;
|
|
|
|
use Iterator;
|
|
use SplQueue;
|
|
use Predis\ClientException;
|
|
use Predis\ResponseErrorInterface;
|
|
use Predis\ResponseObjectInterface;
|
|
use Predis\ServerException;
|
|
use Predis\Connection\ConnectionInterface;
|
|
use Predis\Connection\SingleConnectionInterface;
|
|
use Predis\Profile\ServerProfile;
|
|
use Predis\Profile\ServerProfileInterface;
|
|
|
|
/**
|
|
* Implements a pipeline executor that wraps the whole pipeline
|
|
* in a MULTI / EXEC context to make sure that it is executed
|
|
* correctly.
|
|
*
|
|
* @author Daniele Alessandri <suppakilla@gmail.com>
|
|
*/
|
|
class MultiExecExecutor implements PipelineExecutorInterface
|
|
{
|
|
protected $profile;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function __construct(ServerProfileInterface $profile = null)
|
|
{
|
|
$this->setProfile($profile ?: ServerProfile::getDefault());
|
|
}
|
|
|
|
/**
|
|
* Allows the pipeline executor to perform operations on the
|
|
* connection before starting to execute the commands stored
|
|
* in the pipeline.
|
|
*
|
|
* @param ConnectionInterface $connection Connection instance.
|
|
*/
|
|
protected function checkConnection(ConnectionInterface $connection)
|
|
{
|
|
if (!$connection instanceof SingleConnectionInterface) {
|
|
$class = __CLASS__;
|
|
throw new ClientException("$class can be used only with single connections");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function execute(ConnectionInterface $connection, SplQueue $commands)
|
|
{
|
|
$this->checkConnection($connection);
|
|
|
|
$cmd = $this->profile->createCommand('multi');
|
|
$connection->executeCommand($cmd);
|
|
|
|
foreach ($commands as $command) {
|
|
$connection->writeCommand($command);
|
|
}
|
|
|
|
foreach ($commands as $command) {
|
|
$response = $connection->readResponse($command);
|
|
|
|
if ($response instanceof ResponseErrorInterface) {
|
|
$cmd = $this->profile->createCommand('discard');
|
|
$connection->executeCommand($cmd);
|
|
|
|
throw new ServerException($response->getMessage());
|
|
}
|
|
}
|
|
|
|
$cmd = $this->profile->createCommand('exec');
|
|
$responses = $connection->executeCommand($cmd);
|
|
|
|
if (!isset($responses)) {
|
|
throw new ClientException('The underlying transaction has been aborted by the server');
|
|
}
|
|
|
|
if (count($responses) !== count($commands)) {
|
|
throw new ClientException("Invalid number of replies [expected: ".count($commands)." - actual: ".count($responses)."]");
|
|
}
|
|
|
|
$consumer = $responses instanceof Iterator ? 'consumeIteratorResponse' : 'consumeArrayResponse';
|
|
|
|
return $this->$consumer($commands, $responses);
|
|
}
|
|
|
|
/**
|
|
* Consumes an iterator response returned by EXEC.
|
|
*
|
|
* @param SplQueue $commands Pipelined commands
|
|
* @param Iterator $responses Responses returned by EXEC.
|
|
* @return array
|
|
*/
|
|
protected function consumeIteratorResponse(SplQueue $commands, Iterator $responses)
|
|
{
|
|
$values = array();
|
|
|
|
foreach ($responses as $response) {
|
|
$command = $commands->dequeue();
|
|
|
|
if ($response instanceof ResponseObjectInterface) {
|
|
if ($response instanceof Iterator) {
|
|
$response = iterator_to_array($response);
|
|
$values[] = $command->parseResponse($response);
|
|
} else {
|
|
$values[] = $response;
|
|
}
|
|
} else {
|
|
$values[] = $command->parseResponse($response);
|
|
}
|
|
}
|
|
|
|
return $values;
|
|
}
|
|
|
|
/**
|
|
* Consumes an array response returned by EXEC.
|
|
*
|
|
* @param SplQueue $commands Pipelined commands
|
|
* @param Array $responses Responses returned by EXEC.
|
|
* @return array
|
|
*/
|
|
protected function consumeArrayResponse(SplQueue $commands, Array &$responses)
|
|
{
|
|
$size = count($commands);
|
|
$values = array();
|
|
|
|
for ($i = 0; $i < $size; $i++) {
|
|
$command = $commands->dequeue();
|
|
$response = $responses[$i];
|
|
|
|
if ($response instanceof ResponseObjectInterface) {
|
|
$values[$i] = $response;
|
|
} else {
|
|
$values[$i] = $command->parseResponse($response);
|
|
}
|
|
|
|
unset($responses[$i]);
|
|
}
|
|
|
|
return $values;
|
|
}
|
|
|
|
/**
|
|
* @param ServerProfileInterface $profile Server profile.
|
|
*/
|
|
public function setProfile(ServerProfileInterface $profile)
|
|
{
|
|
if (!$profile->supportsCommands(array('multi', 'exec', 'discard'))) {
|
|
throw new ClientException('The specified server profile must support MULTI, EXEC and DISCARD.');
|
|
}
|
|
|
|
$this->profile = $profile;
|
|
}
|
|
}
|