~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/hashcache.py

  • Committer: Martin Pool
  • Date: 2005-09-16 09:19:54 UTC
  • Revision ID: mbp@sourcefrog.net-20050916091954-aee6d7be00db6354
- more docs in commit code

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
# TODO: Perhaps return more details on the file to avoid statting it
24
24
# again: nonexistent, file type, size, etc
25
25
 
 
26
# TODO: Perhaps use a Python pickle instead of a text file; might be faster.
 
27
 
26
28
 
27
29
 
28
30
CACHE_HEADER = "### bzr hashcache v5\n"
31
33
 
32
34
from bzrlib.osutils import sha_file
33
35
from bzrlib.trace import mutter, warning
 
36
from bzrlib.atomicfile import AtomicFile
 
37
 
34
38
 
35
39
 
36
40
 
135
139
                del self._cache[path]
136
140
 
137
141
 
138
 
 
139
142
    def get_sha1(self, path):
140
143
        """Return the sha1 of a file.
141
144
        """
185
188
 
186
189
    def write(self):
187
190
        """Write contents of cache to file."""
188
 
        from atomicfile import AtomicFile
189
 
 
190
191
        outf = AtomicFile(self.cache_file_name(), 'wb')
191
192
        try:
192
193
            print >>outf, CACHE_HEADER,
222
223
            inf = file(fn, 'rb', buffering=65000)
223
224
        except IOError, e:
224
225
            mutter("failed to open %s: %s" % (fn, e))
 
226
            # better write it now so it is valid
 
227
            self.needs_write = True
225
228
            return
226
229
 
227
230
 
229
232
        if hdr != CACHE_HEADER:
230
233
            mutter('cache header marker not found at top of %s; discarding cache'
231
234
                   % fn)
 
235
            self.needs_write = True
232
236
            return
233
237
 
234
238
        for l in inf: