mirror of
https://github.com/clearml/clearml-agent
synced 2025-01-31 09:06:52 +00:00
237 lines
7.0 KiB
Python
237 lines
7.0 KiB
Python
import os
|
|
import time
|
|
import tempfile
|
|
import contextlib
|
|
|
|
from .portalocker import constants, exceptions, lock, unlock
|
|
|
|
|
|
current_time = getattr(time, "monotonic", time.time)
|
|
|
|
DEFAULT_TIMEOUT = 10 ** 8
|
|
DEFAULT_CHECK_INTERVAL = 0.25
|
|
LOCK_METHOD = constants.LOCK_EX | constants.LOCK_NB
|
|
|
|
__all__ = [
|
|
'FileLock',
|
|
'open_atomic',
|
|
]
|
|
|
|
|
|
@contextlib.contextmanager
|
|
def open_atomic(filename, binary=True):
|
|
"""Open a file for atomic writing. Instead of locking this method allows
|
|
you to write the entire file and move it to the actual location. Note that
|
|
this makes the assumption that a rename is atomic on your platform which
|
|
is generally the case but not a guarantee.
|
|
|
|
http://docs.python.org/library/os.html#os.rename
|
|
|
|
>>> filename = 'test_file.txt'
|
|
>>> if os.path.exists(filename):
|
|
... os.remove(filename)
|
|
|
|
>>> with open_atomic(filename) as fh:
|
|
... written = fh.write(b"test")
|
|
>>> assert os.path.exists(filename)
|
|
>>> os.remove(filename)
|
|
|
|
"""
|
|
assert not os.path.exists(filename), '%r exists' % filename
|
|
path, name = os.path.split(filename)
|
|
|
|
# Create the parent directory if it doesn't exist
|
|
if path and not os.path.isdir(path): # pragma: no cover
|
|
os.makedirs(path)
|
|
|
|
temp_fh = tempfile.NamedTemporaryFile(
|
|
mode=binary and 'wb' or 'w',
|
|
dir=path,
|
|
delete=False,
|
|
)
|
|
yield temp_fh
|
|
temp_fh.flush()
|
|
os.fsync(temp_fh.fileno())
|
|
temp_fh.close()
|
|
try:
|
|
os.rename(temp_fh.name, filename)
|
|
finally:
|
|
try:
|
|
os.remove(temp_fh.name)
|
|
except Exception: # noqa
|
|
pass
|
|
|
|
|
|
class FileLock(object):
|
|
|
|
def __init__(
|
|
self, filename, mode='a', timeout=DEFAULT_TIMEOUT,
|
|
check_interval=DEFAULT_CHECK_INTERVAL, fail_when_locked=False,
|
|
**file_open_kwargs):
|
|
"""Lock manager with build-in timeout
|
|
|
|
filename -- filename
|
|
mode -- the open mode, 'a' or 'ab' should be used for writing
|
|
truncate -- use truncate to emulate 'w' mode, None is disabled, 0 is
|
|
truncate to 0 bytes
|
|
timeout -- timeout when trying to acquire a lock
|
|
check_interval -- check interval while waiting
|
|
fail_when_locked -- after the initial lock failed, return an error
|
|
or lock the file
|
|
**file_open_kwargs -- The kwargs for the `open(...)` call
|
|
|
|
fail_when_locked is useful when multiple threads/processes can race
|
|
when creating a file. If set to true than the system will wait till
|
|
the lock was acquired and then return an AlreadyLocked exception.
|
|
|
|
Note that the file is opened first and locked later. So using 'w' as
|
|
mode will result in truncate _BEFORE_ the lock is checked.
|
|
"""
|
|
|
|
if 'w' in mode:
|
|
truncate = True
|
|
mode = mode.replace('w', 'a')
|
|
else:
|
|
truncate = False
|
|
|
|
self.fh = None
|
|
self.filename = filename
|
|
self.mode = mode
|
|
self.truncate = truncate
|
|
self.timeout = timeout
|
|
self.check_interval = check_interval
|
|
self.fail_when_locked = fail_when_locked
|
|
self.flags_read = constants.LOCK_SH | constants.LOCK_NB
|
|
self.flags_write = constants.LOCK_EX | constants.LOCK_NB
|
|
self.file_open_kwargs = file_open_kwargs
|
|
|
|
def acquire(
|
|
self, timeout=None, check_interval=None, fail_when_locked=None, readonly=False):
|
|
"""Acquire the locked filehandle"""
|
|
if timeout is None:
|
|
timeout = self.timeout
|
|
if timeout is None:
|
|
timeout = 0
|
|
|
|
if check_interval is None:
|
|
check_interval = self.check_interval
|
|
|
|
if fail_when_locked is None:
|
|
fail_when_locked = self.fail_when_locked
|
|
|
|
# If we already have a filehandle, return it
|
|
fh = self.fh
|
|
if fh:
|
|
return fh
|
|
|
|
_fh = None
|
|
try:
|
|
# Get a new filehandler
|
|
_fh = self._get_fh()
|
|
# Try to lock
|
|
fh = self._get_lock(_fh, readonly=readonly)
|
|
except (exceptions.LockException, IOError) as exception:
|
|
# Try till the timeout has passed
|
|
timeoutend = current_time() + timeout
|
|
while timeoutend > current_time():
|
|
# Wait a bit
|
|
time.sleep(check_interval)
|
|
|
|
# Try again
|
|
try:
|
|
|
|
# We already tried to the get the lock
|
|
# If fail_when_locked is true, then stop trying
|
|
if fail_when_locked:
|
|
raise exceptions.AlreadyLocked(exception)
|
|
|
|
else: # pragma: no cover
|
|
if not _fh:
|
|
_fh = self._get_fh()
|
|
# We've got the lock
|
|
fh = self._get_lock(_fh, readonly=readonly)
|
|
break
|
|
|
|
except (exceptions.LockException, IOError):
|
|
pass
|
|
|
|
else:
|
|
# We got a timeout... reraising
|
|
raise exceptions.LockTimeout(exception)
|
|
|
|
# Prepare the filehandle (truncate if needed)
|
|
fh = self._prepare_fh(fh)
|
|
|
|
self.fh = fh
|
|
return fh
|
|
|
|
def release(self):
|
|
"""Releases the currently locked file handle"""
|
|
if self.fh:
|
|
# noinspection PyBroadException
|
|
try:
|
|
unlock(self.fh)
|
|
except Exception:
|
|
pass
|
|
# noinspection PyBroadException
|
|
try:
|
|
self.fh.close()
|
|
except Exception:
|
|
pass
|
|
self.fh = None
|
|
|
|
def delete_lock_file(self):
|
|
# type: () -> bool
|
|
"""
|
|
Remove the local file used for locking (fail if file is locked)
|
|
|
|
:return: True is successful
|
|
"""
|
|
if self.fh:
|
|
return False
|
|
# noinspection PyBroadException
|
|
try:
|
|
os.unlink(path=self.filename)
|
|
except BaseException:
|
|
return False
|
|
return True
|
|
|
|
def _get_fh(self):
|
|
"""Get a new filehandle"""
|
|
# Create the parent directory if it doesn't exist
|
|
path, name = os.path.split(self.filename)
|
|
if path and not os.path.isdir(path): # pragma: no cover
|
|
os.makedirs(path, exist_ok=True)
|
|
|
|
return open(self.filename, self.mode, **self.file_open_kwargs)
|
|
|
|
def _get_lock(self, fh, readonly=False):
|
|
"""
|
|
Try to lock the given filehandle
|
|
|
|
returns LockException if it fails"""
|
|
lock(fh, self.flags_read if readonly else self.flags_write)
|
|
return fh
|
|
|
|
def _prepare_fh(self, fh):
|
|
"""
|
|
Prepare the filehandle for usage
|
|
|
|
If truncate is a number, the file will be truncated to that amount of
|
|
bytes
|
|
"""
|
|
if self.truncate:
|
|
fh.seek(0)
|
|
fh.truncate(0)
|
|
|
|
return fh
|
|
|
|
def __enter__(self):
|
|
return self.acquire()
|
|
|
|
def __exit__(self, type_, value, tb):
|
|
self.release()
|
|
|
|
def __delete__(self, instance): # pragma: no cover
|
|
instance.release()
|