|
| 1 | +from datetime import datetime, timedelta |
| 2 | +import functools |
| 3 | + |
| 4 | +from django.conf import settings |
| 5 | +from django.db import transaction, IntegrityError |
| 6 | + |
| 7 | +from .models import DBMutex |
| 8 | + |
| 9 | + |
| 10 | +class DBMutexError(Exception): |
| 11 | + """ |
| 12 | + Thrown when a lock cannot be acquired. |
| 13 | + """ |
| 14 | + pass |
| 15 | + |
| 16 | + |
| 17 | +class DBMutexTimeoutError(Exception): |
| 18 | + """ |
| 19 | + Thrown when a lock times out before it is released. |
| 20 | + """ |
| 21 | + pass |
| 22 | + |
| 23 | + |
| 24 | +class db_mutex(object): |
| 25 | + """ |
| 26 | + An object that acts as a context manager and a function decorator for acquiring a |
| 27 | + DB mutex lock. |
| 28 | +
|
| 29 | + Args: |
| 30 | + lock_id: The ID of the lock one is trying to acquire |
| 31 | +
|
| 32 | + Raises: |
| 33 | + DBMutexError when the lock cannot be obtained |
| 34 | + DBMutexTimeoutError when the lock was deleted during execution |
| 35 | +
|
| 36 | + Examples: |
| 37 | + This context manager/function decorator can be used in the following way |
| 38 | +
|
| 39 | + from db_mutex import db_mutex |
| 40 | +
|
| 41 | + # Lock a critical section of code |
| 42 | + try: |
| 43 | + with db_mutex('lock_id'): |
| 44 | + # Run critical code here |
| 45 | + pass |
| 46 | + except DBMutexError: |
| 47 | + print 'Could not obtain lock' |
| 48 | + except DBMutexTimeoutError: |
| 49 | + print 'Task completed but the lock timed out' |
| 50 | +
|
| 51 | + # Lock a function |
| 52 | + @db_mutex('lock_id'): |
| 53 | + def critical_function(): |
| 54 | + # Critical code goes here |
| 55 | + pass |
| 56 | +
|
| 57 | + try: |
| 58 | + critical_function() |
| 59 | + except DBMutexError: |
| 60 | + print 'Could not obtain lock' |
| 61 | + except DBMutexTimeoutError: |
| 62 | + print 'Task completed but the lock timed out' |
| 63 | + """ |
| 64 | + mutex_ttl_seconds_settings_key = 'DB_MUTEX_TTL_SECONDS' |
| 65 | + |
| 66 | + def __init__(self, lock_id): |
| 67 | + self.lock_id = lock_id |
| 68 | + self.lock = None |
| 69 | + |
| 70 | + def get_mutex_ttl_seconds(self): |
| 71 | + """ |
| 72 | + Returns a TTL for mutex locks. It defaults to 30 minutes. If the user specifies None |
| 73 | + as the TTL, locks never expire. |
| 74 | + """ |
| 75 | + return getattr(settings, self.mutex_ttl_seconds_settings_key, timedelta(minutes=30).total_seconds()) |
| 76 | + |
| 77 | + def delete_expired_locks(self): |
| 78 | + """ |
| 79 | + Deletes all expired mutex locks if a ttl is provided. |
| 80 | + """ |
| 81 | + ttl_seconds = self.get_mutex_ttl_seconds() |
| 82 | + if ttl_seconds is not None: |
| 83 | + DBMutex.objects.filter(creation_time__lte=datetime.utcnow() - timedelta(seconds=ttl_seconds)).delete() |
| 84 | + |
| 85 | + def __call__(self, func): |
| 86 | + return self.decorate_callable(func) |
| 87 | + |
| 88 | + def __enter__(self): |
| 89 | + self.start() |
| 90 | + |
| 91 | + def __exit__(self, *args): |
| 92 | + self.stop() |
| 93 | + |
| 94 | + def start(self): |
| 95 | + """ |
| 96 | + Acquires the db mutex lock. Takes the necessary steps to delete any stale locks. |
| 97 | + Throws a DBMutexError if it can't acquire the lock. |
| 98 | + """ |
| 99 | + # Delete any expired locks first |
| 100 | + self.delete_expired_locks() |
| 101 | + try: |
| 102 | + with transaction.atomic(): |
| 103 | + self.lock = DBMutex.objects.create(lock_id=self.lock_id) |
| 104 | + except IntegrityError: |
| 105 | + raise DBMutexError('Could not acquire lock: {0}'.format(self.lock_id)) |
| 106 | + |
| 107 | + def stop(self): |
| 108 | + """ |
| 109 | + Releases the db mutex lock. Throws an error if the lock was released before the function finished. |
| 110 | + """ |
| 111 | + if not DBMutex.objects.filter(id=self.lock.id).exists(): |
| 112 | + raise DBMutexTimeoutError('Lock {0} expired before function completed'.format(self.lock_id)) |
| 113 | + else: |
| 114 | + self.lock.delete() |
| 115 | + |
| 116 | + def decorate_callable(self, func): |
| 117 | + """ |
| 118 | + Decorates a function with the db_mutex decorator by using this class as a context manager around |
| 119 | + it. |
| 120 | + """ |
| 121 | + def wrapper(*args, **kwargs): |
| 122 | + with self: |
| 123 | + result = func(*args, **kwargs) |
| 124 | + return result |
| 125 | + functools.update_wrapper(wrapper, func) |
| 126 | + return wrapper |
0 commit comments