~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weavestore.py

  • Committer: Robert Collins
  • Date: 2005-09-29 02:01:49 UTC
  • Revision ID: robertc@robertcollins.net-20050929020149-1ff16722c6a01b2c
reenable remotebranch tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
    This has some shortcuts for reading and writing them.
36
36
    """
37
 
    def __init__(self, dir):
 
37
    def __init__(self, dir, get_file=None):
38
38
        self._dir = dir
39
39
        self._cache = {}
40
 
        self.enable_cache = False
 
40
        self.enable_cache = False
 
41
        if get_file is not None:
 
42
            self.get_file = get_file
41
43
 
 
44
    def get_file(self, filename):
 
45
        return file(filename, 'rb')
42
46
 
43
47
    def filename(self, file_id):
44
48
        return self._dir + os.sep + file_id + '.weave'
48
52
        if self.enable_cache:
49
53
            if file_id in self._cache:
50
54
                return self._cache[file_id]
51
 
        w = read_weave(file(self.filename(file_id), 'rb'))
 
55
        w = read_weave(self.get_file(self.filename(file_id)))
52
56
        if self.enable_cache:
53
57
            self._cache[file_id] = w
54
58
        return w
65
69
    def get_weave_or_empty(self, file_id):
66
70
        """Return a weave, or an empty one if it doesn't exist.""" 
67
71
        try:
68
 
            inf = file(self.filename(file_id), 'rb')
 
72
            inf = self.get_file(self.filename(file_id))
69
73
        except IOError, e:
70
74
            if e.errno == errno.ENOENT:
71
75
                return Weave(weave_name=file_id)