29
29
Eventually we may need to use some kind of lock representation that
30
30
will work on a dumb filesystem without actual locking primitives.
32
This defines two classes: ReadLock and WriteLock, which can be
33
implemented in different ways on different platforms. Both have an
37
40
from trace import mutter, note, warning
38
41
from errors import LockError
43
class _base_Lock(object):
44
def _open(self, filename, filemode):
45
self.f = open(filename, filemode)
51
from warnings import warn
52
warn("lock on %r not released" % self.f)
56
raise NotImplementedError()
63
############################################################
42
LOCK_SH = fcntl.LOCK_SH
43
LOCK_EX = fcntl.LOCK_EX
44
LOCK_NB = fcntl.LOCK_NB
53
fcntl.flock(f, fcntl.LOCK_UN)
70
class _fcntl_FileLock(_base_Lock):
74
fcntl.flock(self.f, fcntl.LOCK_UN)
79
class _fcntl_WriteLock(_fcntl_FileLock):
80
def __init__(self, filename):
82
fcntl.flock(self._open(filename, 'wb'), fcntl.LOCK_EX)
87
class _fcntl_ReadLock(_fcntl_FileLock):
88
def __init__(self, filename):
90
fcntl.flock(self._open(filename, 'rb'), fcntl.LOCK_SH)
94
WriteLock = _fcntl_WriteLock
95
ReadLock = _fcntl_ReadLock
57
97
except ImportError:
59
99
import win32con, win32file, pywintypes
60
LOCK_SH = 0 # the default
61
LOCK_EX = win32con.LOCKFILE_EXCLUSIVE_LOCK
62
LOCK_NB = win32con.LOCKFILE_FAIL_IMMEDIATELY
67
hfile = win32file._get_osfhandle(f.fileno())
69
hfile = win32file._get_osfhandle(f)
70
overlapped = pywintypes.OVERLAPPED()
71
win32file.LockFileEx(hfile, flags, 0, 0x7fff0000, overlapped)
78
hfile = win32file._get_osfhandle(f.fileno())
80
hfile = win32file._get_osfhandle(f)
81
overlapped = pywintypes.OVERLAPPED()
82
win32file.UnlockFileEx(hfile, 0, 0x7fff0000, overlapped)
102
#LOCK_SH = 0 # the default
103
#LOCK_EX = win32con.LOCKFILE_EXCLUSIVE_LOCK
104
#LOCK_NB = win32con.LOCKFILE_FAIL_IMMEDIATELY
106
class _w32c_FileLock(_base_Lock):
107
def _lock(self, filename, openmode, lockmode):
109
self._open(filename, openmode)
110
self.hfile = win32file._get_osfhandle(self.f.fileno())
111
overlapped = pywintypes.OVERLAPPED()
112
win32file.LockFileEx(self.hfile, lockmode, 0, 0x7fff0000, overlapped)
118
overlapped = pywintypes.OVERLAPPED()
119
win32file.UnlockFileEx(self.hfile, 0, 0x7fff0000, overlapped)
127
class _w32c_ReadLock(_w32c_FileLock):
128
def __init__(self, filename):
129
_w32c_FileLock._lock(self, filename, 'rb', 0)
131
class _w32c_WriteLock(_w32c_FileLock):
132
def __init__(self, filename):
133
_w32c_FileLock._lock(self, filename, 'wb',
134
win32con.LOCKFILE_EXCLUSIVE_LOCK)
138
WriteLock = _w32c_WriteLock
139
ReadLock = _w32c_ReadLock
85
141
except ImportError:
88
146
# Unfortunately, msvcrt.locking() doesn't distinguish between
89
147
# read locks and write locks. Also, the way the combinations
90
148
# work to get non-blocking is not the same, so we
91
149
# have to write extra special functions here.
152
class _msvc_FileLock(_base_Lock):
160
class _msvc_ReadLock(_msvc_FileLock):
161
def __init__(self, filename):
162
_msvc_lock(self._open(filename, 'rb'), self.LOCK_SH)
165
class _msvc_WriteLock(_msvc_FileLock):
166
def __init__(self, filename):
167
_msvc_lock(self._open(filename, 'wb'), self.LOCK_EX)
171
def _msvc_lock(f, flags):
99
173
# Unfortunately, msvcrt.LK_RLCK is equivalent to msvcrt.LK_LOCK
100
174
# according to the comments, LK_RLCK is open the lock for writing.