123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 |
- <?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\Replication;
- use Predis\NotSupportedException;
- use Predis\Command\CommandInterface;
- /**
- * Defines a strategy for master/reply replication.
- *
- * @author Daniele Alessandri <suppakilla@gmail.com>
- */
- class ReplicationStrategy
- {
- protected $disallowed;
- protected $readonly;
- protected $readonlySHA1;
- /**
- *
- */
- public function __construct()
- {
- $this->disallowed = $this->getDisallowedOperations();
- $this->readonly = $this->getReadOnlyOperations();
- $this->readonlySHA1 = array();
- }
- /**
- * Returns if the specified command performs a read-only operation
- * against a key stored on Redis.
- *
- * @param CommandInterface $command Instance of Redis command.
- * @return Boolean
- */
- public function isReadOperation(CommandInterface $command)
- {
- if (isset($this->disallowed[$id = $command->getId()])) {
- throw new NotSupportedException("The command $id is not allowed in replication mode");
- }
- if (isset($this->readonly[$id])) {
- if (true === $readonly = $this->readonly[$id]) {
- return true;
- }
- return call_user_func($readonly, $command);
- }
- if (($eval = $id === 'EVAL') || $id === 'EVALSHA') {
- $sha1 = $eval ? sha1($command->getArgument(0)) : $command->getArgument(0);
- if (isset($this->readonlySHA1[$sha1])) {
- if (true === $readonly = $this->readonlySHA1[$sha1]) {
- return true;
- }
- return call_user_func($readonly, $command);
- }
- }
- return false;
- }
- /**
- * Returns if the specified command is disallowed in a master/slave
- * replication context.
- *
- * @param CommandInterface $command Instance of Redis command.
- * @return Boolean
- */
- public function isDisallowedOperation(CommandInterface $command)
- {
- return isset($this->disallowed[$command->getId()]);
- }
- /**
- * Checks if a SORT command is a readable operation by parsing the arguments
- * array of the specified commad instance.
- *
- * @param CommandInterface $command Instance of Redis command.
- * @return Boolean
- */
- protected function isSortReadOnly(CommandInterface $command)
- {
- $arguments = $command->getArguments();
- return ($c = count($arguments)) === 1 ? true : $arguments[$c - 2] !== 'STORE';
- }
- /**
- * Marks a command as a read-only operation. When the behaviour of a
- * command can be decided only at runtime depending on its arguments,
- * a callable object can be provided to dynamically check if the passed
- * instance of a command performs write operations or not.
- *
- * @param string $commandID ID of the command.
- * @param mixed $readonly A boolean or a callable object.
- */
- public function setCommandReadOnly($commandID, $readonly = true)
- {
- $commandID = strtoupper($commandID);
- if ($readonly) {
- $this->readonly[$commandID] = $readonly;
- } else {
- unset($this->readonly[$commandID]);
- }
- }
- /**
- * Marks a Lua script for EVAL and EVALSHA as a read-only operation. When
- * the behaviour of a script can be decided only at runtime depending on
- * its arguments, a callable object can be provided to dynamically check
- * if the passed instance of EVAL or EVALSHA performs write operations or
- * not.
- *
- * @param string $script Body of the Lua script.
- * @param mixed $readonly A boolean or a callable object.
- */
- public function setScriptReadOnly($script, $readonly = true)
- {
- $sha1 = sha1($script);
- if ($readonly) {
- $this->readonlySHA1[$sha1] = $readonly;
- } else {
- unset($this->readonlySHA1[$sha1]);
- }
- }
- /**
- * Returns the default list of disallowed commands.
- *
- * @return array
- */
- protected function getDisallowedOperations()
- {
- return array(
- 'SHUTDOWN' => true,
- 'INFO' => true,
- 'DBSIZE' => true,
- 'LASTSAVE' => true,
- 'CONFIG' => true,
- 'MONITOR' => true,
- 'SLAVEOF' => true,
- 'SAVE' => true,
- 'BGSAVE' => true,
- 'BGREWRITEAOF' => true,
- 'SLOWLOG' => true,
- );
- }
- /**
- * Returns the default list of commands performing read-only operations.
- *
- * @return array
- */
- protected function getReadOnlyOperations()
- {
- return array(
- 'EXISTS' => true,
- 'TYPE' => true,
- 'KEYS' => true,
- 'RANDOMKEY' => true,
- 'TTL' => true,
- 'GET' => true,
- 'MGET' => true,
- 'SUBSTR' => true,
- 'STRLEN' => true,
- 'GETRANGE' => true,
- 'GETBIT' => true,
- 'LLEN' => true,
- 'LRANGE' => true,
- 'LINDEX' => true,
- 'SCARD' => true,
- 'SISMEMBER' => true,
- 'SINTER' => true,
- 'SUNION' => true,
- 'SDIFF' => true,
- 'SMEMBERS' => true,
- 'SRANDMEMBER' => true,
- 'ZRANGE' => true,
- 'ZREVRANGE' => true,
- 'ZRANGEBYSCORE' => true,
- 'ZREVRANGEBYSCORE' => true,
- 'ZCARD' => true,
- 'ZSCORE' => true,
- 'ZCOUNT' => true,
- 'ZRANK' => true,
- 'ZREVRANK' => true,
- 'HGET' => true,
- 'HMGET' => true,
- 'HEXISTS' => true,
- 'HLEN' => true,
- 'HKEYS' => true,
- 'HVALS' => true,
- 'HGETALL' => true,
- 'PING' => true,
- 'AUTH' => true,
- 'SELECT' => true,
- 'ECHO' => true,
- 'QUIT' => true,
- 'OBJECT' => true,
- 'BITCOUNT' => true,
- 'TIME' => true,
- 'SORT' => array($this, 'isSortReadOnly'),
- );
- }
- }
|