mirror of
https://github.com/predis/predis.git
synced 2026-08-20 10:52:00 +00:00
42 lines
1.3 KiB
PHP
42 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Predis\Protocols;
|
|
|
|
use Predis\Utils;
|
|
use Predis\MalformedServerResponse;
|
|
use Predis\Network\IConnectionComposable;
|
|
|
|
class ResponseMultiBulkHandler implements IResponseHandler {
|
|
public function handle(IConnectionComposable $connection, $lengthString) {
|
|
$length = (int) $lengthString;
|
|
if ($length != $lengthString) {
|
|
Utils::onCommunicationException(new MalformedServerResponse(
|
|
$connection, "Cannot parse '$length' as data length"
|
|
));
|
|
}
|
|
|
|
if ($length === -1) {
|
|
return null;
|
|
}
|
|
|
|
$list = array();
|
|
if ($length > 0) {
|
|
$handlersCache = array();
|
|
$reader = $connection->getProtocol()->getReader();
|
|
for ($i = 0; $i < $length; $i++) {
|
|
$header = $connection->readLine();
|
|
$prefix = $header[0];
|
|
if (isset($handlersCache[$prefix])) {
|
|
$handler = $handlersCache[$prefix];
|
|
}
|
|
else {
|
|
$handler = $reader->getHandler($prefix);
|
|
$handlersCache[$prefix] = $handler;
|
|
}
|
|
$list[$i] = $handler->handle($connection, substr($header, 1));
|
|
}
|
|
}
|
|
return $list;
|
|
}
|
|
}
|