123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395 |
- <?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\Command\Processor;
- use InvalidArgumentException;
- use Predis\Command\CommandInterface;
- use Predis\Command\PrefixableCommandInterface;
- /**
- * Command processor capable of prefixing keys stored in the arguments of Redis
- * commands supported.
- *
- * @author Daniele Alessandri <suppakilla@gmail.com>
- */
- class KeyPrefixProcessor implements ProcessorInterface
- {
- private $prefix;
- private $commands;
- /**
- * @param string $prefix Prefix for the keys.
- */
- public function __construct($prefix)
- {
- $this->prefix = $prefix;
- $this->commands = array(
- /* ---------------- Redis 1.2 ---------------- */
- 'EXISTS' => 'self::first',
- 'DEL' => 'self::all',
- 'TYPE' => 'self::first',
- 'KEYS' => 'self::first',
- 'RENAME' => 'self::all',
- 'RENAMENX' => 'self::all',
- 'EXPIRE' => 'self::first',
- 'EXPIREAT' => 'self::first',
- 'TTL' => 'self::first',
- 'MOVE' => 'self::first',
- 'SORT' => 'self::sort',
- 'DUMP' => 'self::first',
- 'RESTORE' => 'self::first',
- 'SET' => 'self::first',
- 'SETNX' => 'self::first',
- 'MSET' => 'self::interleaved',
- 'MSETNX' => 'self::interleaved',
- 'GET' => 'self::first',
- 'MGET' => 'self::all',
- 'GETSET' => 'self::first',
- 'INCR' => 'self::first',
- 'INCRBY' => 'self::first',
- 'DECR' => 'self::first',
- 'DECRBY' => 'self::first',
- 'RPUSH' => 'self::first',
- 'LPUSH' => 'self::first',
- 'LLEN' => 'self::first',
- 'LRANGE' => 'self::first',
- 'LTRIM' => 'self::first',
- 'LINDEX' => 'self::first',
- 'LSET' => 'self::first',
- 'LREM' => 'self::first',
- 'LPOP' => 'self::first',
- 'RPOP' => 'self::first',
- 'RPOPLPUSH' => 'self::all',
- 'SADD' => 'self::first',
- 'SREM' => 'self::first',
- 'SPOP' => 'self::first',
- 'SMOVE' => 'self::skipLast',
- 'SCARD' => 'self::first',
- 'SISMEMBER' => 'self::first',
- 'SINTER' => 'self::all',
- 'SINTERSTORE' => 'self::all',
- 'SUNION' => 'self::all',
- 'SUNIONSTORE' => 'self::all',
- 'SDIFF' => 'self::all',
- 'SDIFFSTORE' => 'self::all',
- 'SMEMBERS' => 'self::first',
- 'SRANDMEMBER' => 'self::first',
- 'ZADD' => 'self::first',
- 'ZINCRBY' => 'self::first',
- 'ZREM' => 'self::first',
- 'ZRANGE' => 'self::first',
- 'ZREVRANGE' => 'self::first',
- 'ZRANGEBYSCORE' => 'self::first',
- 'ZCARD' => 'self::first',
- 'ZSCORE' => 'self::first',
- 'ZREMRANGEBYSCORE' => 'self::first',
- /* ---------------- Redis 2.0 ---------------- */
- 'SETEX' => 'self::first',
- 'APPEND' => 'self::first',
- 'SUBSTR' => 'self::first',
- 'BLPOP' => 'self::skipLast',
- 'BRPOP' => 'self::skipLast',
- 'ZUNIONSTORE' => 'self::zsetStore',
- 'ZINTERSTORE' => 'self::zsetStore',
- 'ZCOUNT' => 'self::first',
- 'ZRANK' => 'self::first',
- 'ZREVRANK' => 'self::first',
- 'ZREMRANGEBYRANK' => 'self::first',
- 'HSET' => 'self::first',
- 'HSETNX' => 'self::first',
- 'HMSET' => 'self::first',
- 'HINCRBY' => 'self::first',
- 'HGET' => 'self::first',
- 'HMGET' => 'self::first',
- 'HDEL' => 'self::first',
- 'HEXISTS' => 'self::first',
- 'HLEN' => 'self::first',
- 'HKEYS' => 'self::first',
- 'HVALS' => 'self::first',
- 'HGETALL' => 'self::first',
- 'SUBSCRIBE' => 'self::all',
- 'UNSUBSCRIBE' => 'self::all',
- 'PSUBSCRIBE' => 'self::all',
- 'PUNSUBSCRIBE' => 'self::all',
- 'PUBLISH' => 'self::first',
- /* ---------------- Redis 2.2 ---------------- */
- 'PERSIST' => 'self::first',
- 'STRLEN' => 'self::first',
- 'SETRANGE' => 'self::first',
- 'GETRANGE' => 'self::first',
- 'SETBIT' => 'self::first',
- 'GETBIT' => 'self::first',
- 'RPUSHX' => 'self::first',
- 'LPUSHX' => 'self::first',
- 'LINSERT' => 'self::first',
- 'BRPOPLPUSH' => 'self::skipLast',
- 'ZREVRANGEBYSCORE' => 'self::first',
- 'WATCH' => 'self::all',
- /* ---------------- Redis 2.6 ---------------- */
- 'PTTL' => 'self::first',
- 'PEXPIRE' => 'self::first',
- 'PEXPIREAT' => 'self::first',
- 'PSETEX' => 'self::first',
- 'INCRBYFLOAT' => 'self::first',
- 'BITOP' => 'self::skipFirst',
- 'BITCOUNT' => 'self::first',
- 'HINCRBYFLOAT' => 'self::first',
- 'EVAL' => 'self::evalKeys',
- 'EVALSHA' => 'self::evalKeys',
- /* ---------------- Redis 2.8 ---------------- */
- 'SSCAN' => 'self::first',
- 'ZSCAN' => 'self::first',
- 'HSCAN' => 'self::first',
- 'PFADD' => 'self::first',
- 'PFCOUNT' => 'self::all',
- 'PFMERGE' => 'self::all',
- 'ZLEXCOUNT' => 'self::first',
- 'ZRANGEBYLEX' => 'self::first',
- 'ZREMRANGEBYLEX' => 'self::first',
- );
- }
- /**
- * Sets a prefix that is applied to all the keys.
- *
- * @param string $prefix Prefix for the keys.
- */
- public function setPrefix($prefix)
- {
- $this->prefix = $prefix;
- }
- /**
- * Gets the current prefix.
- *
- * @return string
- */
- public function getPrefix()
- {
- return $this->prefix;
- }
- /**
- * {@inheritdoc}
- */
- public function process(CommandInterface $command)
- {
- if ($command instanceof PrefixableCommandInterface) {
- $command->prefixKeys($this->prefix);
- } elseif (isset($this->commands[$commandID = strtoupper($command->getId())])) {
- call_user_func($this->commands[$commandID], $command, $this->prefix);
- }
- }
- /**
- * Sets an handler for the specified command ID.
- *
- * The callback signature must have 2 parameters of the following types:
- *
- * - Predis\Command\CommandInterface (command instance)
- * - String (prefix)
- *
- * When the callback argument is omitted or NULL, the previously
- * associated handler for the specified command ID is removed.
- *
- * @param string $commandID The ID of the command to be handled.
- * @param mixed $callback A valid callable object or NULL.
- */
- public function setCommandHandler($commandID, $callback = null)
- {
- $commandID = strtoupper($commandID);
- if (!isset($callback)) {
- unset($this->commands[$commandID]);
- return;
- }
- if (!is_callable($callback)) {
- throw new InvalidArgumentException(
- "Callback must be a valid callable object or NULL"
- );
- }
- $this->commands[$commandID] = $callback;
- }
- /**
- * {@inheritdoc}
- */
- public function __toString()
- {
- return $this->getPrefix();
- }
- /**
- * Applies the specified prefix only the first argument.
- *
- * @param CommandInterface $command Command instance.
- * @param string $prefix Prefix string.
- */
- public static function first(CommandInterface $command, $prefix)
- {
- if ($arguments = $command->getArguments()) {
- $arguments[0] = "$prefix{$arguments[0]}";
- $command->setRawArguments($arguments);
- }
- }
- /**
- * Applies the specified prefix to all the arguments.
- *
- * @param CommandInterface $command Command instance.
- * @param string $prefix Prefix string.
- */
- public static function all(CommandInterface $command, $prefix)
- {
- if ($arguments = $command->getArguments()) {
- foreach ($arguments as &$key) {
- $key = "$prefix$key";
- }
- $command->setRawArguments($arguments);
- }
- }
- /**
- * Applies the specified prefix only to even arguments in the list.
- *
- * @param CommandInterface $command Command instance.
- * @param string $prefix Prefix string.
- */
- public static function interleaved(CommandInterface $command, $prefix)
- {
- if ($arguments = $command->getArguments()) {
- $length = count($arguments);
- for ($i = 0; $i < $length; $i += 2) {
- $arguments[$i] = "$prefix{$arguments[$i]}";
- }
- $command->setRawArguments($arguments);
- }
- }
- /**
- * Applies the specified prefix to all the arguments but the first one.
- *
- * @param CommandInterface $command Command instance.
- * @param string $prefix Prefix string.
- */
- public static function skipFirst(CommandInterface $command, $prefix)
- {
- if ($arguments = $command->getArguments()) {
- $length = count($arguments);
- for ($i = 1; $i < $length; $i++) {
- $arguments[$i] = "$prefix{$arguments[$i]}";
- }
- $command->setRawArguments($arguments);
- }
- }
- /**
- * Applies the specified prefix to all the arguments but the last one.
- *
- * @param CommandInterface $command Command instance.
- * @param string $prefix Prefix string.
- */
- public static function skipLast(CommandInterface $command, $prefix)
- {
- if ($arguments = $command->getArguments()) {
- $length = count($arguments);
- for ($i = 0; $i < $length - 1; $i++) {
- $arguments[$i] = "$prefix{$arguments[$i]}";
- }
- $command->setRawArguments($arguments);
- }
- }
- /**
- * Applies the specified prefix to the keys of a SORT command.
- *
- * @param CommandInterface $command Command instance.
- * @param string $prefix Prefix string.
- */
- public static function sort(CommandInterface $command, $prefix)
- {
- if ($arguments = $command->getArguments()) {
- $arguments[0] = "$prefix{$arguments[0]}";
- if (($count = count($arguments)) > 1) {
- for ($i = 1; $i < $count; $i++) {
- switch ($arguments[$i]) {
- case 'BY':
- case 'STORE':
- $arguments[$i] = "$prefix{$arguments[++$i]}";
- break;
- case 'GET':
- $value = $arguments[++$i];
- if ($value !== '#') {
- $arguments[$i] = "$prefix$value";
- }
- break;
- case 'LIMIT';
- $i += 2;
- break;
- }
- }
- }
- $command->setRawArguments($arguments);
- }
- }
- /**
- * Applies the specified prefix to the keys of an EVAL-based command.
- *
- * @param CommandInterface $command Command instance.
- * @param string $prefix Prefix string.
- */
- public static function evalKeys(CommandInterface $command, $prefix)
- {
- if ($arguments = $command->getArguments()) {
- for ($i = 2; $i < $arguments[1] + 2; $i++) {
- $arguments[$i] = "$prefix{$arguments[$i]}";
- }
- $command->setRawArguments($arguments);
- }
- }
- /**
- * Applies the specified prefix to the keys of Z[INTERSECTION|UNION]STORE.
- *
- * @param CommandInterface $command Command instance.
- * @param string $prefix Prefix string.
- */
- public static function zsetStore(CommandInterface $command, $prefix)
- {
- if ($arguments = $command->getArguments()) {
- $arguments[0] = "$prefix{$arguments[0]}";
- $length = ((int) $arguments[1]) + 2;
- for ($i = 2; $i < $length; $i++) {
- $arguments[$i] = "$prefix{$arguments[$i]}";
- }
- $command->setRawArguments($arguments);
- }
- }
- }
|