| |
| |
| """ |
| Record locking to manage potential repodata / repodata metadata file contention |
| between conda processes. Try to acquire a lock on a single byte in the metadat |
| file; modify both files; then release the lock. |
| """ |
|
|
| import time |
| import warnings |
| from contextlib import contextmanager |
|
|
| from ...base.context import context |
| from ...exceptions import LockError |
|
|
| LOCK_BYTE = 21 |
| LOCK_ATTEMPTS = 10 |
| LOCK_SLEEP = 1 |
|
|
|
|
| @contextmanager |
| def _lock_noop(fd, lock_attempts): |
| """When locking is not available.""" |
| yield |
|
|
|
|
| try: |
| import msvcrt |
|
|
| @contextmanager |
| def _lock_impl(fd, lock_attempts): |
| tell = fd.tell() |
| fd.seek(LOCK_BYTE) |
| try: |
| msvcrt.locking(fd.fileno(), msvcrt.LK_LOCK, 1) |
| except OSError: |
| raise LockError("Failed to acquire lock.") |
| else: |
| try: |
| fd.seek(tell) |
| yield |
| finally: |
| fd.seek(LOCK_BYTE) |
| try: |
| msvcrt.locking(fd.fileno(), msvcrt.LK_UNLCK, 1) |
| except OSError: |
| raise LockError("Failed to release lock.") |
|
|
|
|
| except ImportError: |
| try: |
| import fcntl |
| except ImportError: |
| |
| warnings.warn("file locking not available") |
|
|
| _lock_impl = _lock_noop |
|
|
| else: |
|
|
| class _lock_impl: |
| def __init__(self, fd, lock_attempts): |
| self.fd = fd |
| self.lock_attempts = lock_attempts |
|
|
| def __enter__(self): |
| for attempt in range(self.lock_attempts): |
| try: |
| |
| fcntl.lockf( |
| self.fd, fcntl.LOCK_EX | fcntl.LOCK_NB, 1, LOCK_BYTE |
| ) |
| break |
| except OSError: |
| if attempt > self.lock_attempts - 2: |
| raise LockError("Failed to acquire lock.") |
| time.sleep(LOCK_SLEEP) |
|
|
| def __exit__(self, *exc): |
| try: |
| fcntl.lockf(self.fd, fcntl.LOCK_UN, 1, LOCK_BYTE) |
| except OSError: |
| raise LockError("Failed to release lock.") |
|
|
|
|
| def lock(fd, *, lock_attempts=LOCK_ATTEMPTS): |
| if not context.no_lock: |
| |
| return _lock_impl(fd, lock_attempts) |
| return _lock_noop(fd, lock_attempts) |
|
|
|
|
| def locking_supported(): |
| "Return a bool to report whether file locking is supported or not" |
| return _lock_impl is not _lock_noop |
|
|