~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

  • Committer: Jelmer Vernooij
  • Date: 2006-06-21 13:54:14 UTC
  • mto: (1558.14.8 Aaron's integration)
  • mto: This revision was merged to the branch mainline in revision 1803.
  • Revision ID: jelmer@samba.org-20060621135414-11a3a70e53adbb99
Install benchmarks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
"""Tree classes, representing directory at point in time.
18
18
"""
19
19
 
20
 
from sets import Set
21
 
import os.path, os, fnmatch
22
 
 
23
 
from osutils import pumpfile, filesize, quotefn, sha_file, \
24
 
     joinpath, splitpath, appendpath, isdir, isfile, file_kind, fingerprint_file
25
 
import errno
26
 
from stat import S_ISREG, S_ISDIR, ST_MODE, ST_SIZE
27
 
 
28
 
from inventory import Inventory
29
 
from trace import mutter, note
30
 
from errors import bailout
31
 
import branch
 
20
import os
 
21
from cStringIO import StringIO
32
22
 
33
23
import bzrlib
 
24
from bzrlib.errors import BzrError, BzrCheckError
 
25
from bzrlib.inventory import Inventory
 
26
from bzrlib.osutils import fingerprint_file
 
27
import bzrlib.revision
 
28
from bzrlib.trace import mutter, note
34
29
 
35
30
class Tree(object):
36
31
    """Abstract file tree.
54
49
    trees or versioned trees.
55
50
    """
56
51
    
 
52
    def conflicts(self):
 
53
        """Get a list of the conflicts in the tree.
 
54
 
 
55
        Each conflict is an instance of bzrlib.conflicts.Conflict.
 
56
        """
 
57
        return []
 
58
 
 
59
    def get_parent_ids(self):
 
60
        """Get the parent ids for this tree. 
 
61
 
 
62
        :return: a list of parent ids. [] is returned to indicate
 
63
        a tree with no parents.
 
64
        :raises: BzrError if the parents are not known.
 
65
        """
 
66
        raise NotImplementedError(self.get_parent_ids)
 
67
    
57
68
    def has_filename(self, filename):
58
69
        """True if the tree has given filename."""
59
70
        raise NotImplementedError()
61
72
    def has_id(self, file_id):
62
73
        return self.inventory.has_id(file_id)
63
74
 
 
75
    def has_or_had_id(self, file_id):
 
76
        if file_id == self.inventory.root.file_id:
 
77
            return True
 
78
        return self.inventory.has_id(file_id)
 
79
 
64
80
    __contains__ = has_id
65
81
 
66
82
    def __iter__(self):
69
85
    def id2path(self, file_id):
70
86
        return self.inventory.id2path(file_id)
71
87
 
 
88
    def kind(self, file_id):
 
89
        raise NotImplementedError("subclasses must implement kind")
 
90
 
72
91
    def _get_inventory(self):
73
92
        return self._inventory
 
93
    
 
94
    def get_file_by_path(self, path):
 
95
        return self.get_file(self._inventory.path2id(path))
74
96
 
75
97
    inventory = property(_get_inventory,
76
98
                         doc="Inventory of this Tree")
77
99
 
78
100
    def _check_retrieved(self, ie, f):
 
101
        if not __debug__:
 
102
            return  
79
103
        fp = fingerprint_file(f)
80
104
        f.seek(0)
81
105
        
82
106
        if ie.text_size != None:
83
107
            if ie.text_size != fp['size']:
84
 
                bailout("mismatched size for file %r in %r" % (ie.file_id, self._store),
 
108
                raise BzrError("mismatched size for file %r in %r" % (ie.file_id, self._store),
85
109
                        ["inventory expects %d bytes" % ie.text_size,
86
110
                         "file is actually %d bytes" % fp['size'],
87
111
                         "store is probably damaged/corrupt"])
88
112
 
89
113
        if ie.text_sha1 != fp['sha1']:
90
 
            bailout("wrong SHA-1 for file %r in %r" % (ie.file_id, self._store),
 
114
            raise BzrError("wrong SHA-1 for file %r in %r" % (ie.file_id, self._store),
91
115
                    ["inventory expects %s" % ie.text_sha1,
92
116
                     "file is actually %s" % fp['sha1'],
93
117
                     "store is probably damaged/corrupt"])
94
118
 
95
119
 
96
 
    def print_file(self, fileid):
97
 
        """Print file with id `fileid` to stdout."""
 
120
    def print_file(self, file_id):
 
121
        """Print file with id `file_id` to stdout."""
98
122
        import sys
99
 
        pumpfile(self.get_file(fileid), sys.stdout)
100
 
        
101
 
        
102
 
    def export(self, dest):        
103
 
        """Export this tree to a new directory.
104
 
 
105
 
        `dest` should not exist, and will be created holding the
106
 
        contents of this tree.
107
 
 
108
 
        TODO: To handle subdirectories we need to create the
109
 
               directories first.
110
 
 
111
 
        :note: If the export fails, the destination directory will be
112
 
               left in a half-assed state.
113
 
        """
114
 
        os.mkdir(dest)
115
 
        mutter('export version %r' % self)
116
 
        inv = self.inventory
117
 
        for dp, ie in inv.iter_entries():
118
 
            kind = ie.kind
119
 
            fullpath = appendpath(dest, dp)
120
 
            if kind == 'directory':
121
 
                os.mkdir(fullpath)
122
 
            elif kind == 'file':
123
 
                pumpfile(self.get_file(ie.file_id), file(fullpath, 'wb'))
124
 
            else:
125
 
                bailout("don't know how to export {%s} of kind %r" % (ie.file_id, kind))
126
 
            mutter("  export {%s} kind %s to %s" % (ie.file_id, kind, fullpath))
127
 
 
128
 
 
129
 
 
 
123
        sys.stdout.write(self.get_file_text(file_id))
 
124
 
 
125
    def lock_read(self):
 
126
        pass
 
127
 
 
128
    def unknowns(self):
 
129
        """What files are present in this tree and unknown.
 
130
        
 
131
        :return: an iterator over the unknown files.
 
132
        """
 
133
        return iter([])
 
134
 
 
135
    def unlock(self):
 
136
        pass
 
137
 
 
138
    def filter_unversioned_files(self, paths):
 
139
        """Filter out paths that are not versioned.
 
140
 
 
141
        :return: set of paths.
 
142
        """
 
143
        # NB: we specifically *don't* call self.has_filename, because for
 
144
        # WorkingTrees that can indicate files that exist on disk but that 
 
145
        # are not versioned.
 
146
        pred = self.inventory.has_filename
 
147
        return set((p for p in paths if not pred(p)))
 
148
        
 
149
        
130
150
class RevisionTree(Tree):
131
151
    """Tree viewing a previous revision.
132
152
 
137
157
           or at least passing a description to the constructor.
138
158
    """
139
159
    
140
 
    def __init__(self, store, inv):
141
 
        self._store = store
 
160
    def __init__(self, branch, inv, revision_id):
 
161
        # for compatability the 'branch' parameter has not been renamed to 
 
162
        # repository at this point. However, we should change RevisionTree's
 
163
        # construction to always be via Repository and not via direct 
 
164
        # construction - this will mean that we can change the constructor
 
165
        # with much less chance of breaking client code.
 
166
        self._repository = branch
 
167
        self._weave_store = branch.weave_store
142
168
        self._inventory = inv
 
169
        self._revision_id = revision_id
 
170
 
 
171
    def get_parent_ids(self):
 
172
        """See Tree.get_parent_ids.
 
173
 
 
174
        A RevisionTree's parents match the revision graph.
 
175
        """
 
176
        parent_ids = self._repository.get_revision(self._revision_id).parent_ids
 
177
        return parent_ids
 
178
        
 
179
    def get_revision_id(self):
 
180
        """Return the revision id associated with this tree."""
 
181
        return self._revision_id
 
182
 
 
183
    def get_weave(self, file_id):
 
184
        return self._weave_store.get_weave(file_id,
 
185
                self._repository.get_transaction())
 
186
 
 
187
    def get_file_lines(self, file_id):
 
188
        ie = self._inventory[file_id]
 
189
        weave = self.get_weave(file_id)
 
190
        return weave.get_lines(ie.revision)
 
191
 
 
192
    def get_file_text(self, file_id):
 
193
        return ''.join(self.get_file_lines(file_id))
143
194
 
144
195
    def get_file(self, file_id):
145
 
        ie = self._inventory[file_id]
146
 
        f = self._store[ie.text_id]
147
 
        mutter("  get fileid{%s} from %r" % (file_id, self))
148
 
        self._check_retrieved(ie, f)
149
 
        return f
 
196
        return StringIO(self.get_file_text(file_id))
150
197
 
151
198
    def get_file_size(self, file_id):
152
199
        return self._inventory[file_id].text_size
153
200
 
154
 
    def get_file_sha1(self, file_id):
155
 
        ie = self._inventory[file_id]
156
 
        return ie.text_sha1
 
201
    def get_file_sha1(self, file_id, path=None):
 
202
        ie = self._inventory[file_id]
 
203
        if ie.kind == "file":
 
204
            return ie.text_sha1
 
205
        return None
 
206
 
 
207
    def get_file_mtime(self, file_id, path=None):
 
208
        ie = self._inventory[file_id]
 
209
        revision = self._repository.get_revision(ie.revision)
 
210
        return revision.timestamp
 
211
 
 
212
    def is_executable(self, file_id, path=None):
 
213
        ie = self._inventory[file_id]
 
214
        if ie.kind != "file":
 
215
            return None 
 
216
        return self._inventory[file_id].executable
157
217
 
158
218
    def has_filename(self, filename):
159
219
        return bool(self.inventory.path2id(filename))
161
221
    def list_files(self):
162
222
        # The only files returned by this are those from the version
163
223
        for path, entry in self.inventory.iter_entries():
164
 
            yield path, 'V', entry.kind, entry.file_id
 
224
            yield path, 'V', entry.kind, entry.file_id, entry
 
225
 
 
226
    def get_symlink_target(self, file_id):
 
227
        ie = self._inventory[file_id]
 
228
        return ie.symlink_target;
 
229
 
 
230
    def kind(self, file_id):
 
231
        return self._inventory[file_id].kind
 
232
 
 
233
    def lock_read(self):
 
234
        self._repository.lock_read()
 
235
 
 
236
    def unlock(self):
 
237
        self._repository.unlock()
165
238
 
166
239
 
167
240
class EmptyTree(Tree):
 
241
 
168
242
    def __init__(self):
169
243
        self._inventory = Inventory()
170
244
 
 
245
    def get_parent_ids(self):
 
246
        """See Tree.get_parent_ids.
 
247
 
 
248
        An EmptyTree always has NULL_REVISION as the only parent.
 
249
        """
 
250
        return []
 
251
 
 
252
    def get_symlink_target(self, file_id):
 
253
        return None
 
254
 
171
255
    def has_filename(self, filename):
172
256
        return False
173
257
 
 
258
    def kind(self, file_id):
 
259
        assert self._inventory[file_id].kind == "root_directory"
 
260
        return "root_directory"
 
261
 
174
262
    def list_files(self):
175
 
        if False:  # just to make it a generator
176
 
            yield None
 
263
        return iter([])
177
264
    
 
265
    def __contains__(self, file_id):
 
266
        return file_id in self._inventory
 
267
 
 
268
    def get_file_sha1(self, file_id, path=None):
 
269
        assert self._inventory[file_id].kind == "root_directory"
 
270
        return None
178
271
 
179
272
 
180
273
######################################################################
241
334
        if old_name != new_name:
242
335
            yield (old_name, new_name)
243
336
            
 
337
 
 
338