Files
predis/lib/Predis/Protocols/TextResponseReader.php
T

57 lines
1.8 KiB
PHP

<?php
namespace Predis\Protocols;
use Predis\Utils;
use Predis\CommunicationException;
use Predis\MalformedServerResponse;
use Predis\Network\IConnectionComposable;
class TextResponseReader implements IResponseReader {
private $_prefixHandlers;
public function __construct() {
$this->_prefixHandlers = $this->getDefaultHandlers();
}
private function getDefaultHandlers() {
return array(
TextProtocol::PREFIX_STATUS => new ResponseStatusHandler(),
TextProtocol::PREFIX_ERROR => new ResponseErrorHandler(),
TextProtocol::PREFIX_INTEGER => new ResponseIntegerHandler(),
TextProtocol::PREFIX_BULK => new ResponseBulkHandler(),
TextProtocol::PREFIX_MULTI_BULK => new ResponseMultiBulkHandler(),
);
}
public function setHandler($prefix, IResponseHandler $handler) {
$this->_prefixHandlers[$prefix] = $handler;
}
public function getHandler($prefix) {
if (isset($this->_prefixHandlers[$prefix])) {
return $this->_prefixHandlers[$prefix];
}
}
public function read(IConnectionComposable $connection) {
$header = $connection->readLine();
if ($header === '') {
$this->throwMalformedResponse($connection, 'Unexpected empty header');
}
$prefix = $header[0];
if (!isset($this->_prefixHandlers[$prefix])) {
$this->throwMalformedResponse($connection, "Unknown prefix '$prefix'");
}
$handler = $this->_prefixHandlers[$prefix];
return $handler->handle($connection, substr($header, 1));
}
private function throwMalformedResponse(IConnectionComposable $connection, $message) {
Utils::onCommunicationException(new MalformedServerResponse(
$connection, $message
));
}
}