/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
1563.2.12 by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile.
1
# Copyright (C) 2006 Canonical Ltd
2
#
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.
7
#
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.
12
#
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
4183.7.1 by Sabin Iacob
update FSF mailing address
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1563.2.12 by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile.
16
6379.6.7 by Jelmer Vernooij
Move importing from future until after doc string, otherwise the doc string will disappear.
17
"""Inter-object utility class."""
18
6379.6.3 by Jelmer Vernooij
Use absolute_import.
19
from __future__ import absolute_import
1563.2.12 by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile.
20
6729.1.1 by Jelmer Vernooij
Move NoCompatibleInter from errors to breezy.inter.
21
from .errors import BzrError
6754.8.3 by Jelmer Vernooij
Use context manager in decorators.
22
from .lock import LogicalLockResult
6729.1.1 by Jelmer Vernooij
Move NoCompatibleInter from errors to breezy.inter.
23
24
25
class NoCompatibleInter(BzrError):
26
27
    _fmt = ('No compatible object available for operations from %(source)r '
28
            'to %(target)r.')
29
30
    def __init__(self, source, target):
31
        self.source = source
32
        self.target = target
5837.1.1 by Jelmer Vernooij
Make Inter.get raise NoCompatibleInter.
33
34
1563.2.12 by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile.
35
class InterObject(object):
36
    """This class represents operations taking place between two objects.
37
38
    Its instances have methods like join or copy_content or fetch, and contain
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
39
    references to the source and target objects these operations can be
1563.2.12 by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile.
40
    carried out between.
41
42
    Often we will provide convenience methods on the objects which carry out
43
    operations with another of similar type - they will always forward to
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
44
    a subclass of InterObject - i.e.
1563.2.12 by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile.
45
    InterVersionedFile.get(other).method_name(parameters).
1852.11.1 by Robert Collins
Deprecate compare_trees and move its body to InterTree.changes_from.
46
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
47
    If the source and target objects implement the locking protocol -
1852.11.1 by Robert Collins
Deprecate compare_trees and move its body to InterTree.changes_from.
48
    lock_read, lock_write, unlock, then the InterObject's lock_read,
49
    lock_write and unlock methods may be used (optionally in conjunction with
50
    the needs_read_lock and needs_write_lock decorators.)
2241.1.4 by Martin Pool
Moved old weave-based repository formats into bzrlib.repofmt.weaverepo.
51
52
    When looking for an inter, the most recently registered types are tested
53
    first.  So typically the most generic and slowest InterObjects should be
54
    registered first.
1563.2.12 by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile.
55
    """
56
1910.2.15 by Aaron Bentley
Back out inter.get changes, make optimizers an ordered list
57
    # _optimisers = list()
58
    # Each concrete InterObject type should have its own optimisers list.
1563.2.12 by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile.
59
60
    def __init__(self, source, target):
61
        """Construct a default InterObject instance. Please use 'get'.
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
62
63
        Only subclasses of InterObject should call
1563.2.12 by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile.
64
        InterObject.__init__ - clients should call InterFOO.get where FOO
65
        is the base type of the objects they are interacting between. I.e.
66
        InterVersionedFile or InterRepository.
67
        get() is a convenience class method which will create an optimised
68
        InterFOO if possible.
69
        """
70
        self.source = source
71
        self.target = target
72
1852.11.1 by Robert Collins
Deprecate compare_trees and move its body to InterTree.changes_from.
73
    def _double_lock(self, lock_source, lock_target):
1852.11.3 by Robert Collins
Fix typo in inter.py.
74
        """Take out two locks, rolling back the first if the second throws."""
1852.11.1 by Robert Collins
Deprecate compare_trees and move its body to InterTree.changes_from.
75
        lock_source()
76
        try:
77
            lock_target()
78
        except Exception:
79
            # we want to ensure that we don't leave source locked by mistake.
80
            # and any error on target should not confuse source.
81
            self.source.unlock()
82
            raise
83
1563.2.12 by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile.
84
    @classmethod
85
    def get(klass, source, target):
86
        """Retrieve a Inter worker object for these objects.
87
88
        :param source: the object to be the 'source' member of
89
                       the InterObject instance.
90
        :param target: the object to be the 'target' member of
91
                       the InterObject instance.
5891.1.3 by Andrew Bennetts
Move docstring formatting fixes.
92
1563.2.12 by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile.
93
        If an optimised worker exists it will be used otherwise
94
        a default Inter worker instance will be created.
95
        """
1910.2.15 by Aaron Bentley
Back out inter.get changes, make optimizers an ordered list
96
        for provider in reversed(klass._optimisers):
1563.2.12 by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile.
97
            if provider.is_compatible(source, target):
98
                return provider(source, target)
5837.1.1 by Jelmer Vernooij
Make Inter.get raise NoCompatibleInter.
99
        raise NoCompatibleInter(source, target)
1563.2.12 by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile.
100
1852.11.1 by Robert Collins
Deprecate compare_trees and move its body to InterTree.changes_from.
101
    def lock_read(self):
102
        """Take out a logical read lock.
103
104
        This will lock the source branch and the target branch. The source gets
105
        a read lock and the target a read lock.
106
        """
107
        self._double_lock(self.source.lock_read, self.target.lock_read)
6754.8.3 by Jelmer Vernooij
Use context manager in decorators.
108
        return LogicalLockResult(self.unlock)
1852.11.1 by Robert Collins
Deprecate compare_trees and move its body to InterTree.changes_from.
109
110
    def lock_write(self):
111
        """Take out a logical write lock.
112
113
        This will lock the source branch and the target branch. The source gets
114
        a read lock and the target a write lock.
115
        """
116
        self._double_lock(self.source.lock_read, self.target.lock_write)
6754.8.3 by Jelmer Vernooij
Use context manager in decorators.
117
        return LogicalLockResult(self.unlock)
1852.11.1 by Robert Collins
Deprecate compare_trees and move its body to InterTree.changes_from.
118
1563.2.12 by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile.
119
    @classmethod
120
    def register_optimiser(klass, optimiser):
121
        """Register an InterObject optimiser."""
1910.2.15 by Aaron Bentley
Back out inter.get changes, make optimizers an ordered list
122
        klass._optimisers.append(optimiser)
1563.2.12 by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile.
123
1852.11.1 by Robert Collins
Deprecate compare_trees and move its body to InterTree.changes_from.
124
    def unlock(self):
125
        """Release the locks on source and target."""
126
        try:
127
            self.target.unlock()
128
        finally:
129
            self.source.unlock()
130
1563.2.12 by Robert Collins
Checkpointing: created InterObject to factor out common inter object worker code, added InterVersionedFile and tests to allow making join work between any versionedfile.
131
    @classmethod
132
    def unregister_optimiser(klass, optimiser):
133
        """Unregister an InterObject optimiser."""
134
        klass._optimisers.remove(optimiser)