mirror of
https://github.com/predis/predis.git
synced 2026-08-19 23:31:49 +00:00
4e6ed3f26d
This is a starting point to add a documentation of the whole set of APIs and classes of Predis. The next step will be to actually improve and extend it.
159 lines
3.7 KiB
PHP
159 lines
3.7 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;
|
|
|
|
/**
|
|
* Client-side abstraction of a Redis monitor context.
|
|
*
|
|
* @author Daniele Alessandri <suppakilla@gmail.com>
|
|
*/
|
|
class MonitorContext implements \Iterator
|
|
{
|
|
private $_client;
|
|
private $_isValid;
|
|
private $_position;
|
|
|
|
/**
|
|
* @param Client Client instance used by the context.
|
|
*/
|
|
public function __construct(Client $client)
|
|
{
|
|
$this->checkCapabilities($client);
|
|
$this->_client = $client;
|
|
$this->openContext();
|
|
}
|
|
|
|
/**
|
|
* Automatically closes the context when PHP's garbage collector kicks in.
|
|
*/
|
|
public function __destruct()
|
|
{
|
|
$this->closeContext();
|
|
}
|
|
|
|
/**
|
|
* Checks if the passed client instance satisfies the required conditions
|
|
* needed to initialize a monitor context.
|
|
*
|
|
* @param Client Client instance used by the context.
|
|
*/
|
|
private function checkCapabilities(Client $client)
|
|
{
|
|
if (Helpers::isCluster($client->getConnection())) {
|
|
throw new ClientException(
|
|
'Cannot initialize a monitor context over a cluster of connections'
|
|
);
|
|
}
|
|
|
|
if ($client->getProfile()->supportsCommand('monitor') === false) {
|
|
throw new ClientException(
|
|
'The current profile does not support the MONITOR command'
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Initializes the context and sends the MONITOR command to the server.
|
|
*
|
|
* @param Client Client instance used by the context.
|
|
*/
|
|
protected function openContext()
|
|
{
|
|
$this->_isValid = true;
|
|
$monitor = $this->_client->createCommand('monitor');
|
|
$this->_client->executeCommand($monitor);
|
|
}
|
|
|
|
/**
|
|
* Closes the context. Internally this is done by disconnecting from server
|
|
* since there is no way to terminate the stream initialized by MONITOR.
|
|
*/
|
|
public function closeContext()
|
|
{
|
|
$this->_client->disconnect();
|
|
$this->_isValid = false;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function rewind()
|
|
{
|
|
// NOOP
|
|
}
|
|
|
|
/**
|
|
* Returns the last message payload retrieved from the server.
|
|
*
|
|
* @return Object
|
|
*/
|
|
public function current()
|
|
{
|
|
return $this->getValue();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function key()
|
|
{
|
|
return $this->_position;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function next()
|
|
{
|
|
$this->_position++;
|
|
}
|
|
|
|
/**
|
|
* Checks if the the context is still in a valid state to continue.
|
|
*
|
|
* @return Boolean
|
|
*/
|
|
public function valid()
|
|
{
|
|
return $this->_isValid;
|
|
}
|
|
|
|
/**
|
|
* Waits for a new message from the server generated by MONITOR and
|
|
* returns it when available.
|
|
*
|
|
* @return Object
|
|
*/
|
|
private function getValue()
|
|
{
|
|
$database = 0;
|
|
$event = $this->_client->getConnection()->read();
|
|
|
|
$callback = function($matches) use (&$database) {
|
|
if (isset($matches[1])) {
|
|
$database = (int) $matches[1];
|
|
}
|
|
return ' ';
|
|
};
|
|
|
|
$event = preg_replace_callback('/ \(db (\d+)\) /', $callback, $event, 1);
|
|
@list($timestamp, $command, $arguments) = split(' ', $event, 3);
|
|
|
|
return (object) array(
|
|
'timestamp' => (float) $timestamp,
|
|
'database' => $database,
|
|
'command' => substr($command, 1, -1),
|
|
'arguments' => $arguments,
|
|
);
|
|
}
|
|
}
|