~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/hashcache.py

  • Committer: Aaron Bentley
  • Date: 2006-02-22 14:39:42 UTC
  • mto: (2027.1.2 revert-subpath-56549)
  • mto: This revision was merged to the branch mainline in revision 1570.
  • Revision ID: abentley@panoramicfeedback.com-20060222143942-ae72299f2de66767
Fixed build_tree with symlinks

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, safe_unicode
36
36
from bzrlib.trace import mutter, warning
37
37
from bzrlib.atomicfile import AtomicFile
38
 
from bzrlib.osutils import pathjoin
39
 
 
40
 
 
 
38
from bzrlib.errors import BzrError
 
39
 
 
40
 
 
41
FP_MTIME_COLUMN = 1
 
42
FP_CTIME_COLUMN = 2
41
43
FP_MODE_COLUMN = 5
42
44
 
43
45
def _fingerprint(abspath):
92
94
    """
93
95
    needs_write = False
94
96
 
95
 
    def __init__(self, basedir):
96
 
        self.basedir = basedir
 
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)
97
100
        self.hit_count = 0
98
101
        self.miss_count = 0
99
102
        self.stat_count = 0
101
104
        self.removed_count = 0
102
105
        self.update_count = 0
103
106
        self._cache = {}
 
107
        self._mode = mode
 
108
        self._cache_file_name = safe_unicode(cache_file_name)
104
109
 
105
110
    def cache_file_name(self):
106
 
        # FIXME: duplicate path logic here, this should be 
107
 
        # something like 'branch.controlfile'.
108
 
        return pathjoin(self.basedir, '.bzr', 'stat-cache')
 
111
        return self._cache_file_name
109
112
 
110
113
    def clear(self):
111
114
        """Discard all cached information.
115
118
            self.needs_write = True
116
119
            self._cache = {}
117
120
 
118
 
 
119
121
    def scan(self):
120
122
        """Scan all files and remove entries where the cache entry is obsolete.
121
123
        
122
124
        Obsolete entries are those where the file has been modified or deleted
123
125
        since the entry was inserted.        
124
126
        """
 
127
        # FIXME optimisation opportunity, on linux [and check other oses]:
 
128
        # rather than iteritems order, stat in inode order.
125
129
        prep = [(ce[1][3], path, ce) for (path, ce) in self._cache.iteritems()]
126
130
        prep.sort()
127
131
        
128
132
        for inum, path, cache_entry in prep:
129
 
            abspath = pathjoin(self.basedir, path)
 
133
            abspath = pathjoin(self.root, path)
130
134
            fp = _fingerprint(abspath)
131
135
            self.stat_count += 1
132
136
            
142
146
    def get_sha1(self, path):
143
147
        """Return the sha1 of a file.
144
148
        """
145
 
        abspath = pathjoin(self.basedir, path)
 
149
        abspath = pathjoin(self.root, path)
146
150
        self.stat_count += 1
147
151
        file_fp = _fingerprint(abspath)
148
152
        
170
174
        if stat.S_ISREG(mode):
171
175
            digest = sha_file(file(abspath, 'rb', buffering=65000))
172
176
        elif stat.S_ISLNK(mode):
173
 
            link_target = os.readlink(abspath)
174
177
            digest = sha.new(os.readlink(abspath)).hexdigest()
175
178
        else:
176
179
            raise BzrError("file %r: unknown file stat mode: %o"%(abspath,mode))
177
180
 
178
181
        now = int(time.time())
179
 
        if file_fp[1] >= now or file_fp[2] >= now:
 
182
        if file_fp[FP_MTIME_COLUMN] >= now or file_fp[FP_CTIME_COLUMN] >= now:
180
183
            # changed too recently; can't be cached.  we can
181
184
            # return the result and it could possibly be cached
182
185
            # 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.
183
194
            self.danger_count += 1 
184
195
            if cache_fp:
185
196
                self.removed_count += 1
193
204
        
194
205
    def write(self):
195
206
        """Write contents of cache to file."""
196
 
        outf = AtomicFile(self.cache_file_name(), 'wb')
 
207
        outf = AtomicFile(self.cache_file_name(), 'wb', new_mode=self._mode)
197
208
        try:
198
209
            print >>outf, CACHE_HEADER,
199
210