/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
3296.1.1 by Martin Pool
If LockableFiles is destroyed while locked, just mutter
1
# Copyright (C) 2005, 2006, 2008 Canonical Ltd
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
2
#
1185.65.22 by Robert Collins
lockable_files was extracted from branch.py - give it a copyright statement
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
7
#
1185.65.22 by Robert Collins
lockable_files was extracted from branch.py - give it a copyright statement
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
# GNU General Public License for more details.
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
12
#
1185.65.22 by Robert Collins
lockable_files was extracted from branch.py - give it a copyright statement
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
1185.65.29 by Robert Collins
Implement final review suggestions.
17
from cStringIO import StringIO
3535.5.1 by John Arbash Meinel
cleanup a few imports to be lazily loaded.
18
19
from bzrlib.lazy_import import lazy_import
20
lazy_import(globals(), """
1185.65.29 by Robert Collins
Implement final review suggestions.
21
import codecs
3535.5.1 by John Arbash Meinel
cleanup a few imports to be lazily loaded.
22
import warnings
23
24
from bzrlib import (
25
    errors,
26
    osutils,
27
    transactions,
28
    urlutils,
29
    )
30
""")
31
32
from bzrlib.decorators import (
33
    needs_read_lock,
34
    needs_write_lock,
35
    )
3388.2.1 by Martin Pool
Deprecate LockableFiles.get_utf8
36
from bzrlib.symbol_versioning import (
37
    deprecated_in,
38
    deprecated_method,
39
    )
1685.1.45 by John Arbash Meinel
Moved url functions into bzrlib.urlutils
40
1185.65.10 by Robert Collins
Rename Controlfiles to LockableFiles.
41
1553.5.41 by Martin Pool
Add new LockableFiles.LockDirStrategy; not used yet
42
# XXX: The tracking here of lock counts and whether the lock is held is
43
# somewhat redundant with what's done in LockDir; the main difference is that
44
# LockableFiles permits reentrancy.
1185.65.27 by Robert Collins
Tweak storage towards mergability.
45
4041.1.1 by Michael Hudson
this is terrible but it works
46
class LockWarner(object):
47
48
    def __init__(self, lock_count_holder, repr):
49
        self.lock_count_holder = lock_count_holder
50
        self.repr = repr
51
52
    def __del__(self):
4041.1.2 by Michael Hudson
ahem
53
        if self.lock_count_holder[0] >= 1:
4041.1.1 by Michael Hudson
this is terrible but it works
54
            # do not automatically unlock; there should have been a
55
            # try/finally to unlock this.
56
            warnings.warn("%r was gc'd while locked" % self.repr)
4041.1.3 by Michael Hudson
_this_ works
57
4041.1.1 by Michael Hudson
this is terrible but it works
58
1185.66.3 by Aaron Bentley
Renamed ControlFiles to LockableFiles
59
class LockableFiles(object):
1553.5.38 by Martin Pool
More explanation for LockableFiles
60
    """Object representing a set of related files locked within the same scope.
61
62
    These files are used by a WorkingTree, Repository or Branch, and should
63
    generally only be touched by that object.
64
65
    LockableFiles also provides some policy on top of Transport for encoding
66
    control files as utf-8.
67
1553.5.39 by Martin Pool
More lock docs
68
    LockableFiles manage a lock count and can be locked repeatedly by
69
    a single caller.  (The underlying lock implementation generally does not
70
    support this.)
71
1553.5.38 by Martin Pool
More explanation for LockableFiles
72
    Instances of this class are often called control_files.
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
73
1553.5.43 by Martin Pool
Get LockableFiles tests running against LockDir
74
    This object builds on top of a Transport, which is used to actually write
75
    the files to disk, and an OSLock or LockDir, which controls how access to
76
    the files is controlled.  The particular type of locking used is set when
77
    the object is constructed.  In older formats OSLocks are used everywhere.
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
78
    in newer formats a LockDir is used for Repositories and Branches, and
1553.5.43 by Martin Pool
Get LockableFiles tests running against LockDir
79
    OSLocks for the local filesystem.
3407.2.9 by Martin Pool
doc
80
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
81
    This class is now deprecated; code should move to using the Transport
82
    directly for file operations and using the lock or CountedLock for
3407.2.9 by Martin Pool
doc
83
    locking.
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
84
    """
1185.65.10 by Robert Collins
Rename Controlfiles to LockableFiles.
85
1553.5.47 by Martin Pool
cleanup LockableFiles
86
    # _lock_mode: None, or 'r' or 'w'
1553.5.43 by Martin Pool
Get LockableFiles tests running against LockDir
87
1553.5.47 by Martin Pool
cleanup LockableFiles
88
    # _lock_count: If _lock_mode is true, a positive count of the number of
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
89
    # times the lock has been taken *by this process*.
90
1553.5.63 by Martin Pool
Lock type is now mandatory for LockableFiles constructor
91
    def __init__(self, transport, lock_name, lock_class):
1553.5.43 by Martin Pool
Get LockableFiles tests running against LockDir
92
        """Create a LockableFiles group
93
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
94
        :param transport: Transport pointing to the directory holding the
1553.5.43 by Martin Pool
Get LockableFiles tests running against LockDir
95
            control files and lock.
96
        :param lock_name: Name of the lock guarding these files.
1553.5.47 by Martin Pool
cleanup LockableFiles
97
        :param lock_class: Class of lock strategy to use: typically
98
            either LockDir or TransportLock.
1553.5.43 by Martin Pool
Get LockableFiles tests running against LockDir
99
        """
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
100
        self._transport = transport
101
        self.lock_name = lock_name
102
        self._transaction = None
1553.5.47 by Martin Pool
cleanup LockableFiles
103
        self._lock_mode = None
4041.1.1 by Michael Hudson
this is terrible but it works
104
        self._lock_count_holder = [0]
4041.1.2 by Michael Hudson
ahem
105
        self._lock_warner = LockWarner(self._lock_count_holder, repr(self))
1685.1.43 by John Arbash Meinel
Bug in lockable files when _find_mode throws
106
        self._find_modes()
1553.5.43 by Martin Pool
Get LockableFiles tests running against LockDir
107
        esc_name = self._escape(lock_name)
1608.2.1 by Martin Pool
[merge] Storage filename escaping
108
        self._lock = lock_class(transport, esc_name,
1553.5.59 by Martin Pool
Pass file/mode bits through to creation of lock files/dirs
109
                                file_modebits=self._file_mode,
110
                                dir_modebits=self._dir_mode)
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
111
1553.5.60 by Martin Pool
New LockableFiles.create_lock() method
112
    def create_lock(self):
113
        """Create the lock.
114
115
        This should normally be called only when the LockableFiles directory
116
        is first created on disk.
117
        """
1666.1.4 by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in
118
        self._lock.create(mode=self._dir_mode)
1553.5.60 by Martin Pool
New LockableFiles.create_lock() method
119
1553.5.53 by Martin Pool
Add LockableFiles __repr__
120
    def __repr__(self):
121
        return '%s(%r)' % (self.__class__.__name__,
122
                           self._transport)
1185.80.2 by John Arbash Meinel
Traced double locking code to WorkingTree creating its own control files.
123
    def __str__(self):
124
        return 'LockableFiles(%s, %s)' % (self.lock_name, self._transport.base)
125
1687.1.6 by Robert Collins
Extend LockableFiles to support break_lock() calls.
126
    def break_lock(self):
127
        """Break the lock of this lockable files group if it is held.
128
129
        The current ui factory will be used to prompt for user conformation.
130
        """
131
        self._lock.break_lock()
132
1185.69.2 by John Arbash Meinel
Changed LockableFiles to take the root directory directly. Moved mode information into LockableFiles instead of Branch
133
    def _escape(self, file_or_path):
3834.2.2 by Martin Pool
Deprecated LockableFiles._escape
134
        """DEPRECATED: Do not use outside this class"""
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
135
        if not isinstance(file_or_path, basestring):
136
            file_or_path = '/'.join(file_or_path)
137
        if file_or_path == '':
1185.69.2 by John Arbash Meinel
Changed LockableFiles to take the root directory directly. Moved mode information into LockableFiles instead of Branch
138
            return u''
3535.5.1 by John Arbash Meinel
cleanup a few imports to be lazily loaded.
139
        return urlutils.escape(osutils.safe_unicode(file_or_path))
1185.69.2 by John Arbash Meinel
Changed LockableFiles to take the root directory directly. Moved mode information into LockableFiles instead of Branch
140
141
    def _find_modes(self):
3416.2.1 by Martin Pool
Add BzrDir._get_file_mode and _get_dir_mode
142
        """Determine the appropriate modes for files and directories.
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
143
3416.2.1 by Martin Pool
Add BzrDir._get_file_mode and _get_dir_mode
144
        :deprecated: Replaced by BzrDir._find_modes.
145
        """
1185.69.2 by John Arbash Meinel
Changed LockableFiles to take the root directory directly. Moved mode information into LockableFiles instead of Branch
146
        try:
1534.4.28 by Robert Collins
first cut at merge from integration.
147
            st = self._transport.stat('.')
148
        except errors.TransportNotPossible:
1185.69.2 by John Arbash Meinel
Changed LockableFiles to take the root directory directly. Moved mode information into LockableFiles instead of Branch
149
            self._dir_mode = 0755
150
            self._file_mode = 0644
151
        else:
3107.2.1 by John Arbash Meinel
Fix LockableFiles to not use modes that allow the user to write to things they create.
152
            # Check the directory mode, but also make sure the created
153
            # directories and files are read-write for this user. This is
154
            # mostly a workaround for filesystems which lie about being able to
155
            # write to a directory (cygwin & win32)
156
            self._dir_mode = (st.st_mode & 07777) | 00700
1185.69.2 by John Arbash Meinel
Changed LockableFiles to take the root directory directly. Moved mode information into LockableFiles instead of Branch
157
            # Remove the sticky and execute bits for files
158
            self._file_mode = self._dir_mode & ~07111
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
159
3407.2.8 by Martin Pool
Deprecate LockableFiles.controlfilename
160
    @deprecated_method(deprecated_in((1, 6, 0)))
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
161
    def controlfilename(self, file_or_path):
3407.2.8 by Martin Pool
Deprecate LockableFiles.controlfilename
162
        """Return location relative to branch.
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
163
3407.2.8 by Martin Pool
Deprecate LockableFiles.controlfilename
164
        :deprecated: Use Transport methods instead.
165
        """
1185.69.2 by John Arbash Meinel
Changed LockableFiles to take the root directory directly. Moved mode information into LockableFiles instead of Branch
166
        return self._transport.abspath(self._escape(file_or_path))
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
167
1185.65.29 by Robert Collins
Implement final review suggestions.
168
    @needs_read_lock
3407.2.1 by Martin Pool
Deprecate LockableFiles.get
169
    @deprecated_method(deprecated_in((1, 5, 0)))
1185.65.29 by Robert Collins
Implement final review suggestions.
170
    def get(self, relpath):
3407.2.1 by Martin Pool
Deprecate LockableFiles.get
171
        """Get a file as a bytestream.
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
172
3407.2.1 by Martin Pool
Deprecate LockableFiles.get
173
        :deprecated: Use a Transport instead of LockableFiles.
174
        """
1185.65.29 by Robert Collins
Implement final review suggestions.
175
        relpath = self._escape(relpath)
176
        return self._transport.get(relpath)
177
178
    @needs_read_lock
3388.2.1 by Martin Pool
Deprecate LockableFiles.get_utf8
179
    @deprecated_method(deprecated_in((1, 5, 0)))
1185.65.29 by Robert Collins
Implement final review suggestions.
180
    def get_utf8(self, relpath):
3407.2.1 by Martin Pool
Deprecate LockableFiles.get
181
        """Get a file as a unicode stream.
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
182
3407.2.1 by Martin Pool
Deprecate LockableFiles.get
183
        :deprecated: Use a Transport instead of LockableFiles.
184
        """
1185.65.29 by Robert Collins
Implement final review suggestions.
185
        relpath = self._escape(relpath)
186
        # DO NOT introduce an errors=replace here.
187
        return codecs.getreader('utf-8')(self._transport.get(relpath))
188
1185.65.27 by Robert Collins
Tweak storage towards mergability.
189
    @needs_write_lock
3407.2.7 by Martin Pool
Deprecate LockableFiles.put_utf8 and put_bytes.
190
    @deprecated_method(deprecated_in((1, 6, 0)))
1185.65.12 by Robert Collins
Remove the only-used-once put_controlfiles, and change put_controlfile to put and put_utf8.
191
    def put(self, path, file):
192
        """Write a file.
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
193
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
194
        :param path: The path to put the file, relative to the .bzr control
195
                     directory
3407.2.7 by Martin Pool
Deprecate LockableFiles.put_utf8 and put_bytes.
196
        :param file: A file-like or string object whose contents should be copied.
197
198
        :deprecated: Use Transport methods instead.
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
199
        """
1955.3.8 by John Arbash Meinel
avoid some deprecation warnings in other parts of the code
200
        self._transport.put_file(self._escape(path), file, mode=self._file_mode)
1185.65.12 by Robert Collins
Remove the only-used-once put_controlfiles, and change put_controlfile to put and put_utf8.
201
1185.65.27 by Robert Collins
Tweak storage towards mergability.
202
    @needs_write_lock
3407.2.7 by Martin Pool
Deprecate LockableFiles.put_utf8 and put_bytes.
203
    @deprecated_method(deprecated_in((1, 6, 0)))
2249.5.11 by John Arbash Meinel
Audit Branch to ensure utf8 revision ids.
204
    def put_bytes(self, path, a_string):
205
        """Write a string of bytes.
206
207
        :param path: The path to put the bytes, relative to the transport root.
3407.2.7 by Martin Pool
Deprecate LockableFiles.put_utf8 and put_bytes.
208
        :param a_string: A string object, whose exact bytes are to be copied.
209
210
        :deprecated: Use Transport methods instead.
2249.5.11 by John Arbash Meinel
Audit Branch to ensure utf8 revision ids.
211
        """
212
        self._transport.put_bytes(self._escape(path), a_string,
213
                                  mode=self._file_mode)
214
215
    @needs_write_lock
3407.2.5 by Martin Pool
Deprecate LockableFiles.put_utf8
216
    @deprecated_method(deprecated_in((1, 6, 0)))
1185.65.29 by Robert Collins
Implement final review suggestions.
217
    def put_utf8(self, path, a_string):
218
        """Write a string, encoding as utf-8.
1185.65.12 by Robert Collins
Remove the only-used-once put_controlfiles, and change put_controlfile to put and put_utf8.
219
1185.65.29 by Robert Collins
Implement final review suggestions.
220
        :param path: The path to put the string, relative to the transport root.
2249.5.11 by John Arbash Meinel
Audit Branch to ensure utf8 revision ids.
221
        :param string: A string or unicode object whose contents should be copied.
3407.2.7 by Martin Pool
Deprecate LockableFiles.put_utf8 and put_bytes.
222
223
        :deprecated: Use Transport methods instead.
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
224
        """
1185.67.7 by Aaron Bentley
Refactored a bit
225
        # IterableFile would not be needed if Transport.put took iterables
226
        # instead of files.  ADHB 2005-12-25
1185.65.17 by Robert Collins
Merge from integration, mode-changes are broken.
227
        # RBC 20060103 surely its not needed anyway, with codecs transcode
228
        # file support ?
1185.69.2 by John Arbash Meinel
Changed LockableFiles to take the root directory directly. Moved mode information into LockableFiles instead of Branch
229
        # JAM 20060103 We definitely don't want encode(..., 'replace')
230
        # these are valuable files which should have exact contents.
1185.65.29 by Robert Collins
Implement final review suggestions.
231
        if not isinstance(a_string, basestring):
232
            raise errors.BzrBadParameterNotString(a_string)
2249.5.11 by John Arbash Meinel
Audit Branch to ensure utf8 revision ids.
233
        self.put_bytes(path, a_string.encode('utf-8'))
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
234
2018.5.75 by Andrew Bennetts
Add Repository.{dont_,}leave_lock_in_place.
235
    def leave_in_place(self):
236
        """Set this LockableFiles to not clear the physical lock on unlock."""
237
        self._lock.leave_in_place()
238
239
    def dont_leave_in_place(self):
240
        """Set this LockableFiles to clear the physical lock on unlock."""
241
        self._lock.dont_leave_in_place()
242
2279.7.1 by Andrew Bennetts
``LockableFiles.lock_write()`` now accepts a ``token`` keyword argument, so that
243
    def lock_write(self, token=None):
244
        """Lock this group of files for writing.
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
245
2279.7.1 by Andrew Bennetts
``LockableFiles.lock_write()`` now accepts a ``token`` keyword argument, so that
246
        :param token: if this is already locked, then lock_write will fail
247
            unless the token matches the existing lock.
248
        :returns: a token if this instance supports tokens, otherwise None.
249
        :raises TokenLockingNotSupported: when a token is given but this
250
            instance doesn't support using token locks.
251
        :raises MismatchedToken: if the specified token doesn't match the token
252
            of the existing lock.
2018.5.145 by Andrew Bennetts
Add a brief explanation of what tokens are used for to lock_write docstrings.
253
254
        A token should be passed in if you know that you have locked the object
255
        some other way, and need to synchronise this object's state with that
256
        fact.
2279.7.1 by Andrew Bennetts
``LockableFiles.lock_write()`` now accepts a ``token`` keyword argument, so that
257
        """
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
258
        # TODO: Upgrade locking to support using a Transport,
259
        # and potentially a remote locking protocol
260
        if self._lock_mode:
1594.2.22 by Robert Collins
Ensure that lockable files calls finish() on transactions.:
261
            if self._lock_mode != 'w' or not self.get_transaction().writeable():
1694.2.6 by Martin Pool
[merge] bzr.dev
262
                raise errors.ReadOnlyError(self)
2279.7.1 by Andrew Bennetts
``LockableFiles.lock_write()`` now accepts a ``token`` keyword argument, so that
263
            self._lock.validate_token(token)
4041.1.1 by Michael Hudson
this is terrible but it works
264
            self._lock_count_holder[0] += 1
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
265
            return self._token_from_lock
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
266
        else:
2279.7.1 by Andrew Bennetts
``LockableFiles.lock_write()`` now accepts a ``token`` keyword argument, so that
267
            token_from_lock = self._lock.lock_write(token=token)
1185.80.2 by John Arbash Meinel
Traced double locking code to WorkingTree creating its own control files.
268
            #traceback.print_stack()
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
269
            self._lock_mode = 'w'
4041.1.1 by Michael Hudson
this is terrible but it works
270
            self._lock_count_holder[0] = 1
1563.2.34 by Robert Collins
Remove the commit and rollback transaction methods as misleading, and implement a WriteTransaction
271
            self._set_transaction(transactions.WriteTransaction())
2018.14.1 by Andrew Bennetts
Update to current hpss branch? Fix lots of test failures.
272
            self._token_from_lock = token_from_lock
2279.7.1 by Andrew Bennetts
``LockableFiles.lock_write()`` now accepts a ``token`` keyword argument, so that
273
            return token_from_lock
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
274
275
    def lock_read(self):
276
        if self._lock_mode:
3376.2.4 by Martin Pool
Remove every assert statement from bzrlib!
277
            if self._lock_mode not in ('r', 'w'):
278
                raise ValueError("invalid lock mode %r" % (self._lock_mode,))
4041.1.1 by Michael Hudson
this is terrible but it works
279
            self._lock_count_holder[0] += 1
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
280
        else:
1553.5.47 by Martin Pool
cleanup LockableFiles
281
            self._lock.lock_read()
1185.80.2 by John Arbash Meinel
Traced double locking code to WorkingTree creating its own control files.
282
            #traceback.print_stack()
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
283
            self._lock_mode = 'r'
4041.1.1 by Michael Hudson
this is terrible but it works
284
            self._lock_count_holder[0] = 1
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
285
            self._set_transaction(transactions.ReadOnlyTransaction())
286
            # 5K may be excessive, but hey, its a knob.
287
            self.get_transaction().set_cache_size(5000)
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
288
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
289
    def unlock(self):
290
        if not self._lock_mode:
1553.5.36 by Martin Pool
Clean up duplicate BranchNotLocked error and rename to ObjectNotLocked
291
            raise errors.LockNotHeld(self)
4041.1.1 by Michael Hudson
this is terrible but it works
292
        if self._lock_count_holder[0] > 1:
293
            self._lock_count_holder[0] -= 1
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
294
        else:
1185.80.2 by John Arbash Meinel
Traced double locking code to WorkingTree creating its own control files.
295
            #traceback.print_stack()
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
296
            self._finish_transaction()
1687.1.6 by Robert Collins
Extend LockableFiles to support break_lock() calls.
297
            try:
298
                self._lock.unlock()
299
            finally:
4041.1.1 by Michael Hudson
this is terrible but it works
300
                self._lock_mode = self._lock_count_holder[0] = None
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
301
4041.1.3 by Michael Hudson
_this_ works
302
    @property
303
    def _lock_count(self):
304
        return self._lock_count_holder[0]
305
1553.5.35 by Martin Pool
Start break-lock --show
306
    def is_locked(self):
307
        """Return true if this LockableFiles group is locked"""
4041.1.1 by Michael Hudson
this is terrible but it works
308
        return self._lock_count_holder[0] >= 1
1553.5.35 by Martin Pool
Start break-lock --show
309
1694.2.6 by Martin Pool
[merge] bzr.dev
310
    def get_physical_lock_status(self):
311
        """Return physical lock status.
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
312
1694.2.6 by Martin Pool
[merge] bzr.dev
313
        Returns true if a lock is held on the transport. If no lock is held, or
314
        the underlying locking mechanism does not support querying lock
315
        status, false is returned.
316
        """
317
        try:
318
            return self._lock.peek() is not None
319
        except NotImplementedError:
320
            return False
321
1185.65.1 by Aaron Bentley
Refactored out ControlFiles and RevisionStore from _Branch
322
    def get_transaction(self):
323
        """Return the current active transaction.
324
325
        If no transaction is active, this returns a passthrough object
326
        for which all data is immediately flushed and no caching happens.
327
        """
328
        if self._transaction is None:
329
            return transactions.PassThroughTransaction()
330
        else:
331
            return self._transaction
332
333
    def _set_transaction(self, new_transaction):
334
        """Set a new active transaction."""
335
        if self._transaction is not None:
336
            raise errors.LockError('Branch %s is in a transaction already.' %
337
                                   self)
338
        self._transaction = new_transaction
339
340
    def _finish_transaction(self):
341
        """Exit the current transaction."""
342
        if self._transaction is None:
343
            raise errors.LockError('Branch %s is not in a transaction' %
344
                                   self)
345
        transaction = self._transaction
346
        self._transaction = None
347
        transaction.finish()
1553.5.40 by Martin Pool
Factor locking strategy out of LockableFiles so that we can use LockDirs in new formats.
348
349
1553.5.45 by Martin Pool
Clean up Transport-based locks for old branches
350
class TransportLock(object):
351
    """Locking method which uses transport-dependent locks.
352
353
    On the local filesystem these transform into OS-managed locks.
354
355
    These do not guard against concurrent access via different
356
    transports.
357
358
    This is suitable for use only in WorkingTrees (which are at present
359
    always local).
1553.5.40 by Martin Pool
Factor locking strategy out of LockableFiles so that we can use LockDirs in new formats.
360
    """
1553.5.59 by Martin Pool
Pass file/mode bits through to creation of lock files/dirs
361
    def __init__(self, transport, escaped_name, file_modebits, dir_modebits):
1553.5.40 by Martin Pool
Factor locking strategy out of LockableFiles so that we can use LockDirs in new formats.
362
        self._transport = transport
363
        self._escaped_name = escaped_name
1553.5.59 by Martin Pool
Pass file/mode bits through to creation of lock files/dirs
364
        self._file_modebits = file_modebits
365
        self._dir_modebits = dir_modebits
1553.5.40 by Martin Pool
Factor locking strategy out of LockableFiles so that we can use LockDirs in new formats.
366
1687.1.6 by Robert Collins
Extend LockableFiles to support break_lock() calls.
367
    def break_lock(self):
368
        raise NotImplementedError(self.break_lock)
369
2018.5.75 by Andrew Bennetts
Add Repository.{dont_,}leave_lock_in_place.
370
    def leave_in_place(self):
371
        raise NotImplementedError(self.leave_in_place)
372
2018.5.76 by Andrew Bennetts
Testing that repository.{dont_,}leave_lock_in_place raises NotImplementedError if lock_write returns None.
373
    def dont_leave_in_place(self):
374
        raise NotImplementedError(self.dont_leave_in_place)
375
2279.7.1 by Andrew Bennetts
``LockableFiles.lock_write()`` now accepts a ``token`` keyword argument, so that
376
    def lock_write(self, token=None):
377
        if token is not None:
378
            raise errors.TokenLockingNotSupported(self)
1553.5.40 by Martin Pool
Factor locking strategy out of LockableFiles so that we can use LockDirs in new formats.
379
        self._lock = self._transport.lock_write(self._escaped_name)
380
381
    def lock_read(self):
382
        self._lock = self._transport.lock_read(self._escaped_name)
383
384
    def unlock(self):
385
        self._lock.unlock()
386
        self._lock = None
387
1694.2.6 by Martin Pool
[merge] bzr.dev
388
    def peek(self):
389
        raise NotImplementedError()
390
1666.1.4 by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in
391
    def create(self, mode=None):
1553.5.59 by Martin Pool
Pass file/mode bits through to creation of lock files/dirs
392
        """Create lock mechanism"""
393
        # for old-style locks, create the file now
1955.3.8 by John Arbash Meinel
avoid some deprecation warnings in other parts of the code
394
        self._transport.put_bytes(self._escaped_name, '',
1553.5.60 by Martin Pool
New LockableFiles.create_lock() method
395
                            mode=self._file_modebits)
2279.7.1 by Andrew Bennetts
``LockableFiles.lock_write()`` now accepts a ``token`` keyword argument, so that
396
397
    def validate_token(self, token):
398
        if token is not None:
399
            raise errors.TokenLockingNotSupported(self)
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
400