~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/inter.py

  • Committer: Patch Queue Manager
  • Date: 2013-05-23 10:35:23 UTC
  • mfrom: (6574.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20130523103523-2wt6jmauja1n1vdt
(jameinel) Merge bzr/2.5 into trunk. (John A Meinel)

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
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
 
 
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
16
 
18
17
"""Inter-object utility class."""
19
18
 
 
19
from __future__ import absolute_import
 
20
 
 
21
from bzrlib.errors import NoCompatibleInter
 
22
 
20
23
 
21
24
class InterObject(object):
22
25
    """This class represents operations taking place between two objects.
23
26
 
24
27
    Its instances have methods like join or copy_content or fetch, and contain
25
 
    references to the source and target objects these operations can be 
 
28
    references to the source and target objects these operations can be
26
29
    carried out between.
27
30
 
28
31
    Often we will provide convenience methods on the objects which carry out
29
32
    operations with another of similar type - they will always forward to
30
 
    a subclass of InterObject - i.e. 
 
33
    a subclass of InterObject - i.e.
31
34
    InterVersionedFile.get(other).method_name(parameters).
 
35
 
 
36
    If the source and target objects implement the locking protocol -
 
37
    lock_read, lock_write, unlock, then the InterObject's lock_read,
 
38
    lock_write and unlock methods may be used (optionally in conjunction with
 
39
    the needs_read_lock and needs_write_lock decorators.)
 
40
 
 
41
    When looking for an inter, the most recently registered types are tested
 
42
    first.  So typically the most generic and slowest InterObjects should be
 
43
    registered first.
32
44
    """
33
45
 
34
 
    # _optimisers = set()
35
 
    # Each concrete InterObject type should have its own optimisers set.
 
46
    # _optimisers = list()
 
47
    # Each concrete InterObject type should have its own optimisers list.
36
48
 
37
49
    def __init__(self, source, target):
38
50
        """Construct a default InterObject instance. Please use 'get'.
39
 
        
40
 
        Only subclasses of InterObject should call 
 
51
 
 
52
        Only subclasses of InterObject should call
41
53
        InterObject.__init__ - clients should call InterFOO.get where FOO
42
54
        is the base type of the objects they are interacting between. I.e.
43
55
        InterVersionedFile or InterRepository.
47
59
        self.source = source
48
60
        self.target = target
49
61
 
 
62
    def _double_lock(self, lock_source, lock_target):
 
63
        """Take out two locks, rolling back the first if the second throws."""
 
64
        lock_source()
 
65
        try:
 
66
            lock_target()
 
67
        except Exception:
 
68
            # we want to ensure that we don't leave source locked by mistake.
 
69
            # and any error on target should not confuse source.
 
70
            self.source.unlock()
 
71
            raise
 
72
 
50
73
    @classmethod
51
74
    def get(klass, source, target):
52
75
        """Retrieve a Inter worker object for these objects.
55
78
                       the InterObject instance.
56
79
        :param target: the object to be the 'target' member of
57
80
                       the InterObject instance.
 
81
 
58
82
        If an optimised worker exists it will be used otherwise
59
83
        a default Inter worker instance will be created.
60
84
        """
61
 
        for provider in klass._optimisers:
 
85
        for provider in reversed(klass._optimisers):
62
86
            if provider.is_compatible(source, target):
63
87
                return provider(source, target)
64
 
        return klass(source, target)
 
88
        raise NoCompatibleInter(source, target)
 
89
 
 
90
    def lock_read(self):
 
91
        """Take out a logical read lock.
 
92
 
 
93
        This will lock the source branch and the target branch. The source gets
 
94
        a read lock and the target a read lock.
 
95
        """
 
96
        self._double_lock(self.source.lock_read, self.target.lock_read)
 
97
 
 
98
    def lock_write(self):
 
99
        """Take out a logical write lock.
 
100
 
 
101
        This will lock the source branch and the target branch. The source gets
 
102
        a read lock and the target a write lock.
 
103
        """
 
104
        self._double_lock(self.source.lock_read, self.target.lock_write)
65
105
 
66
106
    @classmethod
67
107
    def register_optimiser(klass, optimiser):
68
108
        """Register an InterObject optimiser."""
69
 
        klass._optimisers.add(optimiser)
 
109
        klass._optimisers.append(optimiser)
 
110
 
 
111
    def unlock(self):
 
112
        """Release the locks on source and target."""
 
113
        try:
 
114
            self.target.unlock()
 
115
        finally:
 
116
            self.source.unlock()
70
117
 
71
118
    @classmethod
72
119
    def unregister_optimiser(klass, optimiser):