Created
June 29, 2010 17:52
-
-
Save maxharp3r/457547 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logging | |
import random | |
import time | |
from google.appengine.api.memcache import Client as mcClient | |
mc = mcClient() | |
NS = "mtx" | |
class Mutex: | |
"""Simple mutex mechanism. | |
A fork of: | |
http://appengine-cookbook.appspot.com/recipe/mutex-using-memcache-api/ | |
Example use: | |
m = Mutex("Some Key", 2) | |
try: | |
m.lock() | |
# Do stuff here.... | |
except: | |
# Handle errors here.... | |
pass | |
finally: | |
m.unlock() | |
""" | |
def __init__(self, key, mem_timeout=30): | |
self.key = key | |
self.mem_timeout = mem_timeout | |
self.locked = False | |
random.seed() | |
def __del__(self): | |
if self.locked == True: | |
self.unlock() | |
def lock(self): | |
if self.locked == True: | |
return | |
did_add = mc.add(self.key, True, time=self.mem_timeout, namespace=NS) | |
while did_add is False: | |
#logging.debug("MUTEX: waiting (key==%s)" % (self.key)) | |
time.sleep(random.random() * 1) # average .5 second wait | |
did_add = mc.add(self.key, True, time=self.mem_timeout, namespace=NS) | |
#logging.debug("MUTEX: acquired lock (key==%s)" % (self.key)) | |
self.locked = True | |
def unlock(self): | |
if self.locked == True: | |
mc.delete(self.key, namespace=NS) | |
self.locked = False | |
#logging.debug("MUTEX: released lock (key==%s)" % (self.key)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment