~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/hashcache.py

 * The internal storage of history, and logical branch identity have now
   been split into Branch, and Repository. The common locking and file 
   management routines are now in bzrlib.lockablefiles. 
   (Aaron Bentley, Robert Collins, Martin Pool)

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
import os, stat, time
33
33
import sha
34
34
 
35
 
from bzrlib.osutils import sha_file
 
35
from bzrlib.osutils import sha_file, pathjoin
36
36
from bzrlib.trace import mutter, warning
37
37
from bzrlib.atomicfile import AtomicFile
38
 
 
39
 
 
 
38
from bzrlib.errors import BzrError
 
39
 
 
40
 
 
41
FP_MTIME_COLUMN = 1
 
42
FP_CTIME_COLUMN = 2
40
43
FP_MODE_COLUMN = 5
41
44
 
42
45
def _fingerprint(abspath):
101
104
        self.update_count = 0
102
105
        self._cache = {}
103
106
 
104
 
 
105
107
    def cache_file_name(self):
106
 
        return os.sep.join([self.basedir, '.bzr', 'stat-cache'])
107
 
 
108
 
 
109
 
 
 
108
        # FIXME: duplicate path logic here, this should be 
 
109
        # something like 'branch.controlfile'.
 
110
        return pathjoin(self.basedir, '.bzr', 'stat-cache')
110
111
 
111
112
    def clear(self):
112
113
        """Discard all cached information.
127
128
        prep.sort()
128
129
        
129
130
        for inum, path, cache_entry in prep:
130
 
            abspath = os.sep.join([self.basedir, path])
 
131
            abspath = pathjoin(self.basedir, path)
131
132
            fp = _fingerprint(abspath)
132
133
            self.stat_count += 1
133
134
            
143
144
    def get_sha1(self, path):
144
145
        """Return the sha1 of a file.
145
146
        """
146
 
        abspath = os.sep.join([self.basedir, path])
 
147
        abspath = pathjoin(self.basedir, path)
147
148
        self.stat_count += 1
148
149
        file_fp = _fingerprint(abspath)
149
150
        
171
172
        if stat.S_ISREG(mode):
172
173
            digest = sha_file(file(abspath, 'rb', buffering=65000))
173
174
        elif stat.S_ISLNK(mode):
174
 
            link_target = os.readlink(abspath)
175
175
            digest = sha.new(os.readlink(abspath)).hexdigest()
176
176
        else:
177
177
            raise BzrError("file %r: unknown file stat mode: %o"%(abspath,mode))
178
178
 
179
179
        now = int(time.time())
180
 
        if file_fp[1] >= now or file_fp[2] >= now:
 
180
        if file_fp[FP_MTIME_COLUMN] >= now or file_fp[FP_CTIME_COLUMN] >= now:
181
181
            # changed too recently; can't be cached.  we can
182
182
            # return the result and it could possibly be cached
183
183
            # next time.
 
184
            #
 
185
            # the point is that we only want to cache when we are sure that any
 
186
            # subsequent modifications of the file can be detected.  If a
 
187
            # modification neither changes the inode, the device, the size, nor
 
188
            # the mode, then we can only distinguish it by time; therefore we
 
189
            # need to let sufficient time elapse before we may cache this entry
 
190
            # again.  If we didn't do this, then, for example, a very quick 1
 
191
            # byte replacement in the file might go undetected.
184
192
            self.danger_count += 1 
185
193
            if cache_fp:
186
194
                self.removed_count += 1
212
220
        finally:
213
221
            if not outf.closed:
214
222
                outf.abort()
215
 
        
216
 
 
217
223
 
218
224
    def read(self):
219
225
        """Reinstate cache from file.
228
234
        try:
229
235
            inf = file(fn, 'rb', buffering=65000)
230
236
        except IOError, e:
231
 
            mutter("failed to open %s: %s" % (fn, e))
 
237
            mutter("failed to open %s: %s", fn, e)
232
238
            # better write it now so it is valid
233
239
            self.needs_write = True
234
240
            return
236
242
 
237
243
        hdr = inf.readline()
238
244
        if hdr != CACHE_HEADER:
239
 
            mutter('cache header marker not found at top of %s; discarding cache'
240
 
                   % fn)
 
245
            mutter('cache header marker not found at top of %s;'
 
246
                   ' discarding cache', fn)
241
247
            self.needs_write = True
242
248
            return
243
249