~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

  • Committer: Robert J. Tanner
  • Date: 2009-06-10 03:56:49 UTC
  • mfrom: (4423 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4425.
  • Revision ID: tanner@real-time.com-20090610035649-7rfx4cls4550zc3c
Merge 1.15.1 back to trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
202
202
            specific_file_ids=specific_file_ids)
203
203
 
204
204
    def iter_references(self):
205
 
        for path, entry in self.iter_entries_by_dir():
206
 
            if entry.kind == 'tree-reference':
207
 
                yield path, entry.file_id
 
205
        if self.supports_tree_reference():
 
206
            for path, entry in self.iter_entries_by_dir():
 
207
                if entry.kind == 'tree-reference':
 
208
                    yield path, entry.file_id
208
209
 
209
210
    def kind(self, file_id):
210
211
        raise NotImplementedError("Tree subclass %s must implement kind"
262
263
        """
263
264
        raise NotImplementedError(self.get_file)
264
265
 
 
266
    def get_file_with_stat(self, file_id, path=None):
 
267
        """Get a file handle and stat object for file_id.
 
268
 
 
269
        The default implementation returns (self.get_file, None) for backwards
 
270
        compatibility.
 
271
 
 
272
        :param file_id: The file id to read.
 
273
        :param path: The path of the file, if it is known.
 
274
        :return: A tuple (file_handle, stat_value_or_None). If the tree has
 
275
            no stat facility, or need for a stat cache feedback during commit,
 
276
            it may return None for the second element of the tuple.
 
277
        """
 
278
        return (self.get_file(file_id, path), None)
 
279
 
265
280
    def get_file_text(self, file_id, path=None):
266
281
        """Return the byte content of a file.
267
282