~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/hashcache.py

  • Committer: Robert Collins
  • Date: 2005-10-09 23:42:12 UTC
  • Revision ID: robertc@robertcollins.net-20051009234212-7973344d900afb0b
merge in niemeyers prefixed-store patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
CACHE_HEADER = "### bzr hashcache v5\n"
31
31
 
32
32
import os, stat, time
 
33
import sha
33
34
 
34
35
from bzrlib.osutils import sha_file
35
36
from bzrlib.trace import mutter, warning
36
37
from bzrlib.atomicfile import AtomicFile
37
38
 
38
39
 
39
 
 
 
40
FP_MODE_COLUMN = 5
40
41
 
41
42
def _fingerprint(abspath):
42
43
    try:
51
52
    # we discard any high precision because it's not reliable; perhaps we
52
53
    # could do better on some systems?
53
54
    return (fs.st_size, long(fs.st_mtime),
54
 
            long(fs.st_ctime), fs.st_ino, fs.st_dev)
 
55
            long(fs.st_ctime), fs.st_ino, fs.st_dev, fs.st_mode)
55
56
 
56
57
 
57
58
class HashCache(object):
139
140
                del self._cache[path]
140
141
 
141
142
 
142
 
 
143
143
    def get_sha1(self, path):
144
144
        """Return the sha1 of a file.
145
145
        """
165
165
            return cache_sha1
166
166
        
167
167
        self.miss_count += 1
168
 
        digest = sha_file(file(abspath, 'rb', buffering=65000))
 
168
 
 
169
 
 
170
        mode = file_fp[FP_MODE_COLUMN]
 
171
        if stat.S_ISREG(mode):
 
172
            digest = sha_file(file(abspath, 'rb', buffering=65000))
 
173
        elif stat.S_ISLNK(mode):
 
174
            link_target = os.readlink(abspath)
 
175
            digest = sha.new(os.readlink(abspath)).hexdigest()
 
176
        else:
 
177
            raise BzrError("file %r: unknown file stat mode: %o"%(abspath,mode))
169
178
 
170
179
        now = int(time.time())
171
180
        if file_fp[1] >= now or file_fp[2] >= now:
181
190
            self.update_count += 1
182
191
            self.needs_write = True
183
192
            self._cache[path] = (digest, file_fp)
184
 
        
185
193
        return digest
186
194
        
187
 
 
188
 
 
189
 
 
190
195
    def write(self):
191
196
        """Write contents of cache to file."""
192
197
        outf = AtomicFile(self.cache_file_name(), 'wb')
245
250
 
246
251
            pos += 3
247
252
            fields = l[pos:].split(' ')
248
 
            if len(fields) != 6:
 
253
            if len(fields) != 7:
249
254
                warning("bad line in hashcache: %r" % l)
250
255
                continue
251
256