~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:56:24 UTC
  • Revision ID: mbp@sourcefrog.net-20050916095623-ca0dff452934f21f
- make progress bar more tolerant of out-of-range values

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
34
33
 
35
 
from bzrlib.osutils import sha_file, pathjoin, safe_unicode
 
34
from bzrlib.osutils import sha_file
36
35
from bzrlib.trace import mutter, warning
37
36
from bzrlib.atomicfile import AtomicFile
38
 
from bzrlib.errors import BzrError
39
 
 
40
 
 
41
 
FP_MTIME_COLUMN = 1
42
 
FP_CTIME_COLUMN = 2
43
 
FP_MODE_COLUMN = 5
 
37
 
 
38
 
 
39
 
44
40
 
45
41
def _fingerprint(abspath):
46
42
    try:
55
51
    # we discard any high precision because it's not reliable; perhaps we
56
52
    # could do better on some systems?
57
53
    return (fs.st_size, long(fs.st_mtime),
58
 
            long(fs.st_ctime), fs.st_ino, fs.st_dev, fs.st_mode)
 
54
            long(fs.st_ctime), fs.st_ino, fs.st_dev)
59
55
 
60
56
 
61
57
class HashCache(object):
94
90
    """
95
91
    needs_write = False
96
92
 
97
 
    def __init__(self, root, cache_file_name, mode=None):
98
 
        """Create a hash cache in base dir, and set the file mode to mode."""
99
 
        self.root = safe_unicode(root)
 
93
    def __init__(self, basedir):
 
94
        self.basedir = basedir
100
95
        self.hit_count = 0
101
96
        self.miss_count = 0
102
97
        self.stat_count = 0
104
99
        self.removed_count = 0
105
100
        self.update_count = 0
106
101
        self._cache = {}
107
 
        self._mode = mode
108
 
        self._cache_file_name = safe_unicode(cache_file_name)
 
102
 
109
103
 
110
104
    def cache_file_name(self):
111
 
        return self._cache_file_name
 
105
        return os.sep.join([self.basedir, '.bzr', 'stat-cache'])
 
106
 
 
107
 
 
108
 
112
109
 
113
110
    def clear(self):
114
111
        """Discard all cached information.
118
115
            self.needs_write = True
119
116
            self._cache = {}
120
117
 
 
118
 
121
119
    def scan(self):
122
120
        """Scan all files and remove entries where the cache entry is obsolete.
123
121
        
124
122
        Obsolete entries are those where the file has been modified or deleted
125
123
        since the entry was inserted.        
126
124
        """
127
 
        # FIXME optimisation opportunity, on linux [and check other oses]:
128
 
        # rather than iteritems order, stat in inode order.
129
125
        prep = [(ce[1][3], path, ce) for (path, ce) in self._cache.iteritems()]
130
126
        prep.sort()
131
127
        
132
128
        for inum, path, cache_entry in prep:
133
 
            abspath = pathjoin(self.root, path)
 
129
            abspath = os.sep.join([self.basedir, path])
134
130
            fp = _fingerprint(abspath)
135
131
            self.stat_count += 1
136
132
            
146
142
    def get_sha1(self, path):
147
143
        """Return the sha1 of a file.
148
144
        """
149
 
        abspath = pathjoin(self.root, path)
 
145
        abspath = os.sep.join([self.basedir, path])
150
146
        self.stat_count += 1
151
147
        file_fp = _fingerprint(abspath)
152
148
        
168
164
            return cache_sha1
169
165
        
170
166
        self.miss_count += 1
171
 
 
172
 
 
173
 
        mode = file_fp[FP_MODE_COLUMN]
174
 
        if stat.S_ISREG(mode):
175
 
            digest = sha_file(file(abspath, 'rb', buffering=65000))
176
 
        elif stat.S_ISLNK(mode):
177
 
            digest = sha.new(os.readlink(abspath)).hexdigest()
178
 
        else:
179
 
            raise BzrError("file %r: unknown file stat mode: %o"%(abspath,mode))
 
167
        digest = sha_file(file(abspath, 'rb', buffering=65000))
180
168
 
181
169
        now = int(time.time())
182
 
        if file_fp[FP_MTIME_COLUMN] >= now or file_fp[FP_CTIME_COLUMN] >= now:
 
170
        if file_fp[1] >= now or file_fp[2] >= now:
183
171
            # changed too recently; can't be cached.  we can
184
172
            # return the result and it could possibly be cached
185
173
            # next time.
186
 
            #
187
 
            # the point is that we only want to cache when we are sure that any
188
 
            # subsequent modifications of the file can be detected.  If a
189
 
            # modification neither changes the inode, the device, the size, nor
190
 
            # the mode, then we can only distinguish it by time; therefore we
191
 
            # need to let sufficient time elapse before we may cache this entry
192
 
            # again.  If we didn't do this, then, for example, a very quick 1
193
 
            # byte replacement in the file might go undetected.
194
174
            self.danger_count += 1 
195
175
            if cache_fp:
196
176
                self.removed_count += 1
200
180
            self.update_count += 1
201
181
            self.needs_write = True
202
182
            self._cache[path] = (digest, file_fp)
 
183
        
203
184
        return digest
204
185
        
 
186
 
 
187
 
 
188
 
205
189
    def write(self):
206
190
        """Write contents of cache to file."""
207
 
        outf = AtomicFile(self.cache_file_name(), 'wb', new_mode=self._mode)
 
191
        outf = AtomicFile(self.cache_file_name(), 'wb')
208
192
        try:
209
193
            print >>outf, CACHE_HEADER,
210
194
 
222
206
        finally:
223
207
            if not outf.closed:
224
208
                outf.abort()
 
209
        
 
210
 
225
211
 
226
212
    def read(self):
227
213
        """Reinstate cache from file.
236
222
        try:
237
223
            inf = file(fn, 'rb', buffering=65000)
238
224
        except IOError, e:
239
 
            mutter("failed to open %s: %s", fn, e)
 
225
            mutter("failed to open %s: %s" % (fn, e))
240
226
            # better write it now so it is valid
241
227
            self.needs_write = True
242
228
            return
244
230
 
245
231
        hdr = inf.readline()
246
232
        if hdr != CACHE_HEADER:
247
 
            mutter('cache header marker not found at top of %s;'
248
 
                   ' discarding cache', fn)
 
233
            mutter('cache header marker not found at top of %s; discarding cache'
 
234
                   % fn)
249
235
            self.needs_write = True
250
236
            return
251
237
 
258
244
 
259
245
            pos += 3
260
246
            fields = l[pos:].split(' ')
261
 
            if len(fields) != 7:
 
247
            if len(fields) != 6:
262
248
                warning("bad line in hashcache: %r" % l)
263
249
                continue
264
250