/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/lock.py

  • Committer: Martin Pool
  • Date: 2005-06-01 04:09:38 UTC
  • Revision ID: mbp@sourcefrog.net-20050601040938-d905145b57ae017f
- unify two defintions of LockError

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
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.
31
 
 
32
 
This defines two classes: ReadLock and WriteLock, which can be
33
 
implemented in different ways on different platforms.  Both have an
34
 
unlock() method.
35
31
"""
36
32
 
37
33
 
38
 
import sys
39
 
import os
40
 
 
41
 
from bzrlib.trace import mutter, note, warning
42
 
from bzrlib.errors import LockError
43
 
 
44
 
class _base_Lock(object):
45
 
    def _open(self, filename, filemode):
46
 
        import errno
47
 
        try:
48
 
            self.f = open(filename, filemode)
49
 
            return self.f
50
 
        except IOError, e:
51
 
            if e.errno != errno.ENOENT:
52
 
                raise
53
 
 
54
 
            # maybe this is an old branch (before may 2005)
55
 
            mutter("trying to create missing branch lock %r" % filename)
56
 
            
57
 
            self.f = open(filename, 'wb')
58
 
            return self.f
59
 
 
60
 
 
61
 
    def __del__(self):
62
 
        if self.f:
63
 
            from warnings import warn
64
 
            warn("lock on %r not released" % self.f)
65
 
            self.unlock()
66
 
            
67
 
 
68
 
    def unlock(self):
69
 
        raise NotImplementedError()
70
 
 
71
 
        
72
 
 
73
 
 
74
 
 
75
 
 
76
 
############################################################
77
 
# msvcrt locks
78
 
 
 
34
import sys, os
 
35
 
 
36
import bzrlib
 
37
from trace import mutter, note, warning
 
38
from errors import LockError
79
39
 
80
40
try:
81
41
    import fcntl
82
 
 
83
 
    class _fcntl_FileLock(_base_Lock):
84
 
        f = None
85
 
 
86
 
        def unlock(self):
87
 
            fcntl.flock(self.f, fcntl.LOCK_UN)
88
 
            self.f.close()
89
 
            del self.f 
90
 
 
91
 
 
92
 
    class _fcntl_WriteLock(_fcntl_FileLock):
93
 
        def __init__(self, filename):
94
 
            try:
95
 
                fcntl.flock(self._open(filename, 'wb'), fcntl.LOCK_EX)
96
 
            except Exception, e:
97
 
                raise LockError(e)
98
 
 
99
 
 
100
 
    class _fcntl_ReadLock(_fcntl_FileLock):
101
 
        def __init__(self, filename):
102
 
            try:
103
 
                fcntl.flock(self._open(filename, 'rb'), fcntl.LOCK_SH)
104
 
            except Exception, e:
105
 
                raise LockError(e)
106
 
 
107
 
    WriteLock = _fcntl_WriteLock
108
 
    ReadLock = _fcntl_ReadLock
 
42
    LOCK_SH = fcntl.LOCK_SH
 
43
    LOCK_EX = fcntl.LOCK_EX
 
44
    LOCK_NB = fcntl.LOCK_NB
 
45
    def lock(f, flags):
 
46
        try:
 
47
            fcntl.flock(f, flags)
 
48
        except Exception, e:
 
49
            raise LockError(e)
 
50
 
 
51
    def unlock(f):
 
52
        try:
 
53
            fcntl.flock(f, fcntl.LOCK_UN)
 
54
        except Exception, e:
 
55
            raise LockError(e)
109
56
 
110
57
except ImportError:
111
58
    try:
112
59
        import win32con, win32file, pywintypes
113
 
 
114
 
 
115
 
        #LOCK_SH = 0 # the default
116
 
        #LOCK_EX = win32con.LOCKFILE_EXCLUSIVE_LOCK
117
 
        #LOCK_NB = win32con.LOCKFILE_FAIL_IMMEDIATELY
118
 
 
119
 
        class _w32c_FileLock(_base_Lock):
120
 
            def _lock(self, filename, openmode, lockmode):
121
 
                try:
122
 
                    self._open(filename, openmode)
123
 
                    self.hfile = win32file._get_osfhandle(self.f.fileno())
124
 
                    overlapped = pywintypes.OVERLAPPED()
125
 
                    win32file.LockFileEx(self.hfile, lockmode, 0, 0x7fff0000, overlapped)
126
 
                except Exception, e:
127
 
                    raise LockError(e)
128
 
 
129
 
            def unlock(self):
130
 
                try:
131
 
                    overlapped = pywintypes.OVERLAPPED()
132
 
                    win32file.UnlockFileEx(self.hfile, 0, 0x7fff0000, overlapped)
133
 
                    self.f.close()
134
 
                    self.f = None
135
 
                except Exception, e:
136
 
                    raise LockError(e)
137
 
 
138
 
 
139
 
 
140
 
        class _w32c_ReadLock(_w32c_FileLock):
141
 
            def __init__(self, filename):
142
 
                _w32c_FileLock._lock(self, filename, 'rb', 0)
143
 
 
144
 
        class _w32c_WriteLock(_w32c_FileLock):
145
 
            def __init__(self, filename):
146
 
                _w32c_FileLock._lock(self, filename, 'wb',
147
 
                                     win32con.LOCKFILE_EXCLUSIVE_LOCK)
148
 
 
149
 
 
150
 
 
151
 
        WriteLock = _w32c_WriteLock
152
 
        ReadLock = _w32c_ReadLock
153
 
 
 
60
        LOCK_SH = 0 # the default
 
61
        LOCK_EX = win32con.LOCKFILE_EXCLUSIVE_LOCK
 
62
        LOCK_NB = win32con.LOCKFILE_FAIL_IMMEDIATELY
 
63
 
 
64
        def lock(f, flags):
 
65
            try:
 
66
                if type(f) == file:
 
67
                    hfile = win32file._get_osfhandle(f.fileno())
 
68
                else:
 
69
                    hfile = win32file._get_osfhandle(f)
 
70
                overlapped = pywintypes.OVERLAPPED()
 
71
                win32file.LockFileEx(hfile, flags, 0, 0x7fff0000, overlapped)
 
72
            except Exception, e:
 
73
                raise LockError(e)
 
74
 
 
75
        def unlock(f):
 
76
            try:
 
77
                if type(f) == file:
 
78
                    hfile = win32file._get_osfhandle(f.fileno())
 
79
                else:
 
80
                    hfile = win32file._get_osfhandle(f)
 
81
                overlapped = pywintypes.OVERLAPPED()
 
82
                win32file.UnlockFileEx(hfile, 0, 0x7fff0000, overlapped)
 
83
            except Exception, e:
 
84
                raise LockError(e)
154
85
    except ImportError:
155
86
        try:
156
87
            import msvcrt
157
 
 
158
 
 
159
88
            # Unfortunately, msvcrt.locking() doesn't distinguish between
160
89
            # read locks and write locks. Also, the way the combinations
161
90
            # work to get non-blocking is not the same, so we
162
91
            # have to write extra special functions here.
163
92
 
164
 
 
165
 
            class _msvc_FileLock(_base_Lock):
166
 
                LOCK_SH = 1
167
 
                LOCK_EX = 2
168
 
                LOCK_NB = 4
169
 
                def unlock(self):
170
 
                    _msvc_unlock(self.f)
171
 
 
172
 
 
173
 
            class _msvc_ReadLock(_msvc_FileLock):
174
 
                def __init__(self, filename):
175
 
                    _msvc_lock(self._open(filename, 'rb'), self.LOCK_SH)
176
 
 
177
 
 
178
 
            class _msvc_WriteLock(_msvc_FileLock):
179
 
                def __init__(self, filename):
180
 
                    _msvc_lock(self._open(filename, 'wb'), self.LOCK_EX)
181
 
 
182
 
 
183
 
 
184
 
            def _msvc_lock(f, flags):
 
93
            LOCK_SH = 1
 
94
            LOCK_EX = 2
 
95
            LOCK_NB = 4
 
96
 
 
97
            def lock(f, flags):
185
98
                try:
186
99
                    # Unfortunately, msvcrt.LK_RLCK is equivalent to msvcrt.LK_LOCK
187
100
                    # according to the comments, LK_RLCK is open the lock for writing.
197
110
                        fn = f
198
111
                        fpos = os.lseek(fn, 0,0)
199
112
                        os.lseek(fn, 0,0)
200
 
 
201
 
                    if flags & _msvc_FileLock.LOCK_SH:
202
 
                        if flags & _msvc_FileLock.LOCK_NB:
 
113
                    
 
114
                    if flags & LOCK_SH:
 
115
                        if flags & LOCK_NB:
203
116
                            lock_mode = msvcrt.LK_NBLCK
204
117
                        else:
205
118
                            lock_mode = msvcrt.LK_LOCK
206
 
                    elif flags & _msvc_FileLock.LOCK_EX:
207
 
                        if flags & _msvc_FileLock.LOCK_NB:
 
119
                    elif flags & LOCK_EX:
 
120
                        if flags & LOCK_NB:
208
121
                            lock_mode = msvcrt.LK_NBRLCK
209
122
                        else:
210
123
                            lock_mode = msvcrt.LK_RLCK
217
130
                except Exception, e:
218
131
                    raise LockError(e)
219
132
 
220
 
            def _msvc_unlock(f):
 
133
            def unlock(f):
221
134
                try:
222
135
                    if type(f) == file:
223
136
                        fpos = f.tell()
234
147
                        os.lseek(fn, fpos, 0)
235
148
                except Exception, e:
236
149
                    raise LockError(e)
237
 
 
238
 
 
239
 
 
240
 
            WriteLock = _msvc_WriteLock
241
 
            ReadLock = _msvc_ReadLock
242
150
        except ImportError:
243
 
            raise NotImplementedError("please write a locking method "
244
 
                                      "for platform %r" % sys.platform)
245
 
 
246
 
 
247
 
 
248
 
 
249
 
 
250
 
 
 
151
            from warnings import Warning
 
152
            
 
153
            warning("please write a locking method for platform %r" % sys.platform)
 
154
 
 
155
            # Creating no-op lock/unlock for now
 
156
            def lock(f, flags):
 
157
                pass
 
158
            def unlock(f):
 
159
                pass
251
160