* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Lock\Store; use Symfony\Component\Cache\Traits\RedisProxy; use Symfony\Component\Lock\Exception\InvalidArgumentException; use Symfony\Component\Lock\Exception\LockConflictedException; use Symfony\Component\Lock\Exception\LockExpiredException; use Symfony\Component\Lock\Key; use Symfony\Component\Lock\StoreInterface; /** * RedisStore is a StoreInterface implementation using Redis as store engine. * * @author Jérémy Derussé */ class RedisStore implements StoreInterface { private $redis; private $initialTtl; /** * @param \Redis|\RedisArray|\RedisCluster|\Predis\Client $redisClient * @param float $initialTtl the expiration delay of locks in seconds */ public function __construct($redisClient, $initialTtl = 300.0) { if (!$redisClient instanceof \Redis && !$redisClient instanceof \RedisArray && !$redisClient instanceof \RedisCluster && !$redisClient instanceof \Predis\Client && !$redisClient instanceof RedisProxy) { throw new InvalidArgumentException(sprintf('%s() expects parameter 1 to be Redis, RedisArray, RedisCluster or Predis\Client, %s given', __METHOD__, is_object($redisClient) ? get_class($redisClient) : gettype($redisClient))); } if ($initialTtl <= 0) { throw new InvalidArgumentException(sprintf('%s() expects a strictly positive TTL. Got %d.', __METHOD__, $initialTtl)); } $this->redis = $redisClient; $this->initialTtl = $initialTtl; } /** * {@inheritdoc} */ public function save(Key $key) { $script = ' if redis.call("GET", KEYS[1]) == ARGV[1] then return redis.call("PEXPIRE", KEYS[1], ARGV[2]) else return redis.call("set", KEYS[1], ARGV[1], "NX", "PX", ARGV[2]) end '; $key->reduceLifetime($this->initialTtl); if (!$this->evaluate($script, (string) $key, array($this->getToken($key), (int) ceil($this->initialTtl * 1000)))) { throw new LockConflictedException(); } if ($key->isExpired()) { throw new LockExpiredException(sprintf('Failed to store the "%s" lock.', $key)); } } public function waitAndSave(Key $key) { throw new InvalidArgumentException(sprintf('The store "%s" does not supports blocking locks.', get_class($this))); } /** * {@inheritdoc} */ public function putOffExpiration(Key $key, $ttl) { $script = ' if redis.call("GET", KEYS[1]) == ARGV[1] then return redis.call("PEXPIRE", KEYS[1], ARGV[2]) else return 0 end '; $key->reduceLifetime($ttl); if (!$this->evaluate($script, (string) $key, array($this->getToken($key), (int) ceil($ttl * 1000)))) { throw new LockConflictedException(); } if ($key->isExpired()) { throw new LockExpiredException(sprintf('Failed to put off the expiration of the "%s" lock within the specified time.', $key)); } } /** * {@inheritdoc} */ public function delete(Key $key) { $script = ' if redis.call("GET", KEYS[1]) == ARGV[1] then return redis.call("DEL", KEYS[1]) else return 0 end '; $this->evaluate($script, (string) $key, array($this->getToken($key))); } /** * {@inheritdoc} */ public function exists(Key $key) { return $this->redis->get((string) $key) === $this->getToken($key); } /** * Evaluates a script in the corresponding redis client. * * @param string $script * @param string $resource * @param array $args * * @return mixed */ private function evaluate($script, $resource, array $args) { if ($this->redis instanceof \Redis || $this->redis instanceof \RedisCluster || $this->redis instanceof RedisProxy) { return $this->redis->eval($script, array_merge(array($resource), $args), 1); } if ($this->redis instanceof \RedisArray) { return $this->redis->_instance($this->redis->_target($resource))->eval($script, array_merge(array($resource), $args), 1); } if ($this->redis instanceof \Predis\Client) { return call_user_func_array(array($this->redis, 'eval'), array_merge(array($script, 1, $resource), $args)); } throw new InvalidArgumentException(sprintf('%s() expects been initialized with a Redis, RedisArray, RedisCluster or Predis\Client, %s given', __METHOD__, is_object($this->redis) ? get_class($this->redis) : gettype($this->redis))); } /** * Retrieves an unique token for the given key. * * @param Key $key * * @return string */ private function getToken(Key $key) { if (!$key->hasState(__CLASS__)) { $token = base64_encode(random_bytes(32)); $key->setState(__CLASS__, $token); } return $key->getState(__CLASS__); } } __halt_compiler();----SIGNATURE:----Ki0MakTmvJSgJao81ySRHPQeakH6+v5uBwHzvQyXsvVsrDqEIfJG2Te+67PZUbwPY8LLyrJBe0ySLz9Tv+fEB4bPnjC8u9mHjAkHmkRH1zZypTAArwvP0Flm2gzsm+2RbvMzKKv7J9CjyeLksGbvfXvoVq/ajFo0WPD8OvGIVotBoXz1csHPo1Pd22VFZw/eh5SuUdAW9AazCvgxj4zKX+ILTrmOXKgKg2ReH9VRLhVvyzCcsqtdtPOtWWf8UG6yX0BCDATyy2LWz929JARTaQq9jIajApX8h9cWs7ra2EW3m2FTROKOXViJOVdITG4zdyIDh7ZlX4NlOLY4ZG4uBCnAzRqzYjZ9yghJeZas1QWPyjoW/4q1bcP8un58QKuMF+Y/DxDOfH+og/Nx5FUnjbJuyPv8jofryt8xRj87isZFZ8LOyIw2PJZMROfAWi/eJnkbcgKjPXZSlr6RPw3CWTt7FtuzPkB5hdtCOfbL5F3TnxMUtCSby1FVb0Y4qVHSSy7VCG8Mqh+uOiBgvZOHq6QlasJn68HHr3hKQlxQ3ZjqH2OqAnLy3EEtEfxqflQf35aYH6k+aNeUXkB5dEO9SSOuowAFoXJfz9VR7JjldzJLs6hXHQRGLPFFBWy+gG4l2meCU3yBNc2Wkt3bUrAzlSAFiAeHP/kcfcbgPl5HF9c=----ATTACHMENT:----NjIzOTcwOTk2NDIyNTgzNCAzMDM2NTE4NTA5Mjk1MDcyIDg1ODE4NDc4NDM1ODY1Nzk=