123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- namespace Predis\Network;
- use Predis\Utils;
- use Predis\ICommand;
- use Predis\ConnectionParameters;
- use Predis\ClientException;
- use Predis\CommunicationException;
- abstract class ConnectionBase implements IConnectionSingle {
- private $_cachedId;
- protected $_params, $_initCmds, $_resource;
- public function __construct(ConnectionParameters $parameters) {
- $this->_initCmds = array();
- $this->_params = $parameters;
- }
- public function __destruct() {
- $this->disconnect();
- }
- public function isConnected() {
- return is_resource($this->_resource);
- }
- protected abstract function createResource();
- public function connect() {
- if ($this->isConnected()) {
- throw new ClientException('Connection already estabilished');
- }
- $this->_resource = $this->createResource();
- }
- public function pushInitCommand(ICommand $command){
- $this->_initCmds[] = $command;
- }
- public function executeCommand(ICommand $command) {
- $this->writeCommand($command);
- return $this->readResponse($command);
- }
- protected function onCommunicationException($message, $code = null) {
- Utils::onCommunicationException(
- new CommunicationException($this, $message, $code)
- );
- }
- public function getResource() {
- if (!$this->isConnected()) {
- $this->connect();
- }
- return $this->_resource;
- }
- public function getParameters() {
- return $this->_params;
- }
- public function __toString() {
- if (!isset($this->_cachedId)) {
- $this->_cachedId = "{$this->_params->host}:{$this->_params->port}";
- }
- return $this->_cachedId;
- }
- }
|