~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/inter.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-08-17 07:52:09 UTC
  • mfrom: (1910.3.4 trivial)
  • Revision ID: pqm@pqm.ubuntu.com-20060817075209-e85a1f9e05ff8b87
(andrew) Trivial fixes to NotImplemented errors.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    lock_read, lock_write, unlock, then the InterObject's lock_read,
35
35
    lock_write and unlock methods may be used (optionally in conjunction with
36
36
    the needs_read_lock and needs_write_lock decorators.)
37
 
 
38
 
    When looking for an inter, the most recently registered types are tested
39
 
    first.  So typically the most generic and slowest InterObjects should be
40
 
    registered first.
41
37
    """
42
38
 
43
 
    # _optimisers = list()
44
 
    # Each concrete InterObject type should have its own optimisers list.
 
39
    # _optimisers = set()
 
40
    # Each concrete InterObject type should have its own optimisers set.
45
41
 
46
42
    def __init__(self, source, target):
47
43
        """Construct a default InterObject instance. Please use 'get'.
78
74
        If an optimised worker exists it will be used otherwise
79
75
        a default Inter worker instance will be created.
80
76
        """
81
 
        for provider in reversed(klass._optimisers):
 
77
        for provider in klass._optimisers:
82
78
            if provider.is_compatible(source, target):
83
79
                return provider(source, target)
84
80
        return klass(source, target)
102
98
    @classmethod
103
99
    def register_optimiser(klass, optimiser):
104
100
        """Register an InterObject optimiser."""
105
 
        klass._optimisers.append(optimiser)
 
101
        klass._optimisers.add(optimiser)
106
102
 
107
103
    def unlock(self):
108
104
        """Release the locks on source and target."""