123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <?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\PubSub;
- use Predis\ClientException;
- use Predis\ClientInterface;
- use Predis\Helpers;
- use Predis\NotSupportedException;
- use Predis\Connection\AggregatedConnectionInterface;
- /**
- * Client-side abstraction of a Publish / Subscribe context.
- *
- * @author Daniele Alessandri <suppakilla@gmail.com>
- */
- class PubSubContext extends AbstractPubSubContext
- {
- private $client;
- private $options;
- /**
- * @param ClientInterface Client instance used by the context.
- * @param array Options for the context initialization.
- */
- public function __construct(ClientInterface $client, Array $options = null)
- {
- $this->checkCapabilities($client);
- $this->options = $options ?: array();
- $this->client = $client;
- $this->genericSubscribeInit('subscribe');
- $this->genericSubscribeInit('psubscribe');
- }
- /**
- * Checks if the passed client instance satisfies the required conditions
- * needed to initialize a Publish / Subscribe context.
- *
- * @param ClientInterface Client instance used by the context.
- */
- private function checkCapabilities(ClientInterface $client)
- {
- if ($client->getConnection() instanceof AggregatedConnectionInterface) {
- throw new NotSupportedException('Cannot initialize a PUB/SUB context when using aggregated connections');
- }
- $commands = array('publish', 'subscribe', 'unsubscribe', 'psubscribe', 'punsubscribe');
- if ($client->getProfile()->supportsCommands($commands) === false) {
- throw new NotSupportedException('The current profile does not support PUB/SUB related commands');
- }
- }
- /**
- * This method shares the logic to handle both SUBSCRIBE and PSUBSCRIBE.
- *
- * @param string $subscribeAction Type of subscription.
- */
- private function genericSubscribeInit($subscribeAction)
- {
- if (isset($this->options[$subscribeAction])) {
- $this->$subscribeAction($this->options[$subscribeAction]);
- }
- }
- /**
- * {@inheritdoc}
- */
- protected function writeCommand($method, $arguments)
- {
- $arguments = Helpers::filterArrayArguments($arguments);
- $command = $this->client->createCommand($method, $arguments);
- $this->client->getConnection()->writeCommand($command);
- }
- /**
- * {@inheritdoc}
- */
- protected function disconnect()
- {
- $this->client->disconnect();
- }
- /**
- * {@inheritdoc}
- */
- protected function getValue()
- {
- $response = $this->client->getConnection()->read();
- switch ($response[0]) {
- case self::SUBSCRIBE:
- case self::UNSUBSCRIBE:
- case self::PSUBSCRIBE:
- case self::PUNSUBSCRIBE:
- if ($response[2] === 0) {
- $this->invalidate();
- }
- case self::MESSAGE:
- return (object) array(
- 'kind' => $response[0],
- 'channel' => $response[1],
- 'payload' => $response[2],
- );
- case self::PMESSAGE:
- return (object) array(
- 'kind' => $response[0],
- 'pattern' => $response[1],
- 'channel' => $response[2],
- 'payload' => $response[3],
- );
- default:
- $message = "Received an unknown message type {$response[0]} inside of a pubsub context";
- throw new ClientException($message);
- }
- }
- }
|