forked from docker-archive/docker-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrlock.py
48 lines (38 loc) · 1.31 KB
/
rlock.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# https://gist.github.com/adewes/6103220
import redis
import time
class LockTimeout(BaseException):
pass
class Lock(object):
'''Implements a distributed lock using Redis.'''
def __init__(self, redis, lock_type, key, expires=60):
self.key = key
self.lock_type = lock_type
self.redis = redis
self.expires = expires
self.owns_lock = False
def lock_key(self):
return "%s:locks:%s" % (self.lock_type, self.key)
def __enter__(self):
expires = time.time() + self.expires + 1
pipe = self.redis.pipeline()
lock_key = self.lock_key()
pipe.watch(lock_key)
try:
lock_value = float(self.redis.get(lock_key))
except (ValueError, TypeError):
lock_value = None
if not lock_value or lock_value < time.time():
try:
pipe.multi()
pipe.set(lock_key, expires)
pipe.expire(lock_key, self.expires + 1)
pipe.execute()
self.owns_lock = True
return expires
except redis.WatchError:
print "Someone tinkered with the lock!"
pass
def __exit__(self, exc_type, exc_value, traceback):
if self.owns_lock:
self.redis.delete(self.lock_key())