31
33
File text can be retrieved from the text store.
34
def __init__(self, repository, revision_id):
35
self._repository = repository
36
def __init__(self, branch, inv, revision_id):
37
# for compatability the 'branch' parameter has not been renamed to
38
# repository at this point. However, we should change RevisionTree's
39
# construction to always be via Repository and not via direct
40
# construction - this will mean that we can change the constructor
41
# with much less chance of breaking client code.
42
self._repository = branch
36
44
self._revision_id = revision_id
37
45
self._rules_searcher = None
56
64
"""Return the revision id associated with this tree."""
57
65
return self._revision_id
59
def get_file_revision(self, file_id, path=None):
60
"""Return the revision id in which a file was last changed."""
61
raise NotImplementedError(self.get_file_revision)
63
67
def get_file_text(self, file_id, path=None):
64
68
_, content = list(self.iter_files_bytes([(file_id, None)]))[0]
65
69
return ''.join(content)
67
71
def get_file(self, file_id, path=None):
68
72
return StringIO(self.get_file_text(file_id))
71
return self._repository.is_locked()
74
self._repository.lock_read()
78
return '<%s instance at %x, rev_id=%r>' % (
79
self.__class__.__name__, id(self), self._revision_id)
82
self._repository.unlock()
84
def _get_rules_searcher(self, default_searcher):
85
"""See Tree._get_rules_searcher."""
86
if self._rules_searcher is None:
87
self._rules_searcher = super(RevisionTree,
88
self)._get_rules_searcher(default_searcher)
89
return self._rules_searcher
92
class InventoryRevisionTree(RevisionTree,tree.InventoryTree):
94
def __init__(self, repository, inv, revision_id):
95
RevisionTree.__init__(self, repository, revision_id)
98
def get_file_mtime(self, file_id, path=None):
99
ie = self._inventory[file_id]
74
def iter_files_bytes(self, desired_files):
75
"""See Tree.iter_files_bytes.
77
This version is implemented on top of Repository.extract_files_bytes"""
78
repo_desired_files = [(f, self.inventory[f].revision, i)
79
for f, i in desired_files]
101
revision = self._repository.get_revision(ie.revision)
102
except errors.NoSuchRevision:
103
raise errors.FileTimestampUnavailable(self.id2path(file_id))
104
return revision.timestamp
81
for result in self._repository.iter_files_bytes(repo_desired_files):
83
except errors.RevisionNotPresent, e:
84
raise errors.NoSuchFile(e.revision_id)
86
def annotate_iter(self, file_id,
87
default_revision=revision.CURRENT_REVISION):
88
"""See Tree.annotate_iter"""
89
text_key = (file_id, self.inventory[file_id].revision)
90
annotations = self._repository.texts.annotate(text_key)
91
return [(key[-1], line) for key, line in annotations]
106
93
def get_file_size(self, file_id):
94
"""See Tree.get_file_size"""
107
95
return self._inventory[file_id].text_size
109
97
def get_file_sha1(self, file_id, path=None, stat_value=None):
112
100
return ie.text_sha1
115
def get_file_revision(self, file_id, path=None):
103
def get_file_mtime(self, file_id, path=None):
116
104
ie = self._inventory[file_id]
105
revision = self._repository.get_revision(ie.revision)
106
return revision.timestamp
119
108
def is_executable(self, file_id, path=None):
120
109
ie = self._inventory[file_id]
121
110
if ie.kind != "file":
123
112
return ie.executable
125
114
def has_filename(self, filename):
142
131
for path, entry in entries:
143
132
yield path, 'V', entry.kind, entry.file_id, entry
145
def get_symlink_target(self, file_id, path=None):
134
def get_symlink_target(self, file_id):
146
135
ie = self._inventory[file_id]
147
136
# Inventories store symlink targets in unicode
148
137
return ie.symlink_target
179
168
def _file_size(self, entry, stat_value):
180
169
return entry.text_size
171
def _get_ancestors(self, default_revision):
172
return set(self._repository.get_ancestry(self._revision_id,
176
self._repository.lock_read()
179
return '<%s instance at %x, rev_id=%r>' % (
180
self.__class__.__name__, id(self), self._revision_id)
183
self._repository.unlock()
182
185
def walkdirs(self, prefix=""):
183
186
_directory = 'directory'
184
187
inv = self.inventory
208
211
if dir[2] == _directory:
209
212
pending.append(dir)
211
def iter_files_bytes(self, desired_files):
212
"""See Tree.iter_files_bytes.
214
This version is implemented on top of Repository.extract_files_bytes"""
215
repo_desired_files = [(f, self.get_file_revision(f), i)
216
for f, i in desired_files]
218
for result in self._repository.iter_files_bytes(repo_desired_files):
220
except errors.RevisionNotPresent, e:
221
raise errors.NoSuchFile(e.revision_id)
223
def annotate_iter(self, file_id,
224
default_revision=revision.CURRENT_REVISION):
225
"""See Tree.annotate_iter"""
226
text_key = (file_id, self.get_file_revision(file_id))
227
annotator = self._repository.texts.get_annotator()
228
annotations = annotator.annotate_flat(text_key)
229
return [(key[-1], line) for key, line in annotations]
214
def _get_rules_searcher(self, default_searcher):
215
"""See Tree._get_rules_searcher."""
216
if self._rules_searcher is None:
217
self._rules_searcher = super(RevisionTree,
218
self)._get_rules_searcher(default_searcher)
219
return self._rules_searcher
232
222
class InterCHKRevisionTree(tree.InterTree):
251
241
lookup_trees = [self.source]
253
243
lookup_trees.extend(extra_trees)
254
# The ids of items we need to examine to insure delta consistency.
255
precise_file_ids = set()
256
discarded_changes = {}
257
244
if specific_files == []:
258
245
specific_file_ids = []
260
247
specific_file_ids = self.target.paths2ids(specific_files,
261
248
lookup_trees, require_versioned=require_versioned)
262
250
# FIXME: It should be possible to delegate include_unchanged handling
263
251
# to CHKInventory.iter_changes and do a better job there -- vila
265
changed_file_ids = set()
253
if include_unchanged:
254
changed_file_ids = []
266
255
for result in self.target.inventory.iter_changes(self.source.inventory):
267
if specific_file_ids is not None:
269
if file_id not in specific_file_ids:
270
# A change from the whole tree that we don't want to show yet.
271
# We may find that we need to show it for delta consistency, so
273
discarded_changes[result[0]] = result
275
new_parent_id = result[4][1]
276
precise_file_ids.add(new_parent_id)
256
if (specific_file_ids is not None
257
and not result[0] in specific_file_ids):
258
# CHKMap.iter_changes is clean and fast. Better filter out
259
# the specific files *after* it did its job.
278
changed_file_ids.add(result[0])
279
if specific_file_ids is not None:
280
for result in self._handle_precise_ids(precise_file_ids,
281
changed_file_ids, discarded_changes=discarded_changes):
262
if include_unchanged:
263
# Keep track of yielded results (cheaper than building the
265
changed_file_ids.append(result[0])
283
266
if include_unchanged:
284
267
# CHKMap avoid being O(tree), so we go to O(tree) only if