1
# Copyright (C) 2009 Jelmer Vernooij <jelmer@samba.org>
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
# GNU General Public License for more details.
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
"""Map from Git sha's to Bazaar objects."""
19
from dulwich.objects import (
24
from dulwich.object_store import (
35
from bzrlib.revision import (
39
from bzrlib.plugins.git.mapping import (
42
extract_unusual_modes,
46
from bzrlib.plugins.git.shamap import (
47
from_repository as cache_from_repository,
53
def get_object_store(repo, mapping=None):
54
git = getattr(repo, "_git", None)
56
return git.object_store
57
return BazaarObjectStore(repo, mapping)
60
MAX_TREE_CACHE_SIZE = 50 * 1024 * 1024
63
class LRUTreeCache(object):
65
def __init__(self, repository):
66
def approx_tree_size(tree):
67
# Very rough estimate, 1k per inventory entry
68
return len(tree.inventory) * 1024
69
self.repository = repository
70
self._cache = lru_cache.LRUSizeCache(max_size=MAX_TREE_CACHE_SIZE,
71
after_cleanup_size=None, compute_size=approx_tree_size)
73
def revision_tree(self, revid):
75
return self._cache[revid]
77
tree = self.repository.revision_tree(revid)
81
def iter_revision_trees(self, revids):
82
trees = dict([(k, self._cache.get(k)) for k in revids])
83
for tree in self.repository.revision_trees(
84
[r for r, v in trees.iteritems() if v is None]):
85
trees[tree.get_revision_id()] = tree
87
return (trees[r] for r in revids)
89
def revision_trees(self, revids):
90
return list(self.iter_revision_trees(revids))
93
self._cache.add(tree.get_revision_id(), tree)
96
def _check_expected_sha(expected_sha, object):
97
"""Check whether an object matches an expected SHA.
99
:param expected_sha: None or expected SHA as either binary or as hex digest
100
:param object: Object to verify
102
if expected_sha is None:
104
if len(expected_sha) == 40:
105
if expected_sha != object.sha().hexdigest():
106
raise AssertionError("Invalid sha for %r: %s" % (object,
108
elif len(expected_sha) == 20:
109
if expected_sha != object.sha().digest():
110
raise AssertionError("Invalid sha for %r: %s" % (object,
111
sha_to_hex(expected_sha)))
113
raise AssertionError("Unknown length %d for %r" % (len(expected_sha),
117
def _tree_to_objects(tree, parent_trees, idmap, unusual_modes):
118
"""Iterate over the objects that were introduced in a revision.
121
:param unusual_modes: Unusual file modes
122
:return: Yields (path, object, ie) entries
128
base_tree = parent_trees[0]
129
other_parent_trees = parent_trees[1:]
131
base_tree = tree._repository.revision_tree(NULL_REVISION)
132
other_parent_trees = []
133
def find_unchanged_parent_ie(ie, parent_trees):
134
assert ie.kind in ("symlink", "file")
135
for ptree in parent_trees:
137
pie = ptree.inventory[ie.file_id]
138
except errors.NoSuchId:
141
if (pie.text_sha1 == ie.text_sha1 and
142
pie.kind == ie.kind and
143
pie.symlink_target == ie.symlink_target):
146
for (file_id, path, changed_content, versioned, parent, name, kind,
147
executable) in tree.iter_changes(base_tree):
148
if kind[1] == "file":
149
ie = tree.inventory[file_id]
153
pie = find_unchanged_parent_ie(ie, other_parent_trees)
157
shamap[ie.file_id] = idmap.lookup_blob_id(
158
pie.file_id, pie.revision)
159
if not file_id in shamap:
160
new_blobs.append((path[1], ie))
161
new_trees[posixpath.dirname(path[1])] = parent[1]
162
elif kind[1] == "symlink":
163
ie = tree.inventory[file_id]
165
blob = symlink_to_blob(ie)
166
shamap[file_id] = blob.id
168
find_unchanged_parent_ie(ie, other_parent_trees)
170
yield path[1], blob, ie
171
new_trees[posixpath.dirname(path[1])] = parent[1]
172
elif kind[1] not in (None, "directory"):
173
raise AssertionError(kind[1])
174
if path[0] is not None:
175
new_trees[posixpath.dirname(path[0])] = parent[0]
177
for (path, ie), chunks in tree.iter_files_bytes(
178
[(ie.file_id, (path, ie)) for (path, ie) in new_blobs]):
182
shamap[ie.file_id] = obj.id
184
for path in unusual_modes:
185
parent_path = posixpath.dirname(path)
186
new_trees[parent_path] = tree.path2id(parent_path)
190
items = new_trees.items()
192
for path, file_id in items:
194
parent_id = tree.inventory[file_id].parent_id
195
except errors.NoSuchId:
196
# Directory was removed recursively perhaps ?
198
if parent_id is not None:
199
parent_path = urlutils.dirname(path)
200
new_trees[parent_path] = parent_id
201
trees[path] = file_id
203
def ie_to_hexsha(ie):
205
return shamap[ie.file_id]
207
if ie.kind in ("file", "symlink"):
209
return idmap.lookup_blob_id(ie.file_id, ie.revision)
213
blob.data = tree.get_file_text(ie.file_id)
215
elif ie.kind == "directory":
216
# Not all cache backends store the tree information,
217
# calculate again from scratch
218
ret = directory_to_tree(ie, ie_to_hexsha, unusual_modes)
225
for path in sorted(trees.keys(), reverse=True):
226
ie = tree.inventory[trees[path]]
227
assert ie.kind == "directory"
228
obj = directory_to_tree(ie, ie_to_hexsha, unusual_modes)
231
shamap[ie.file_id] = obj.id
234
class BazaarObjectStore(BaseObjectStore):
235
"""A Git-style object store backed onto a Bazaar repository."""
237
def __init__(self, repository, mapping=None):
238
self.repository = repository
240
self.mapping = default_mapping
242
self.mapping = mapping
243
self._cache = cache_from_repository(repository)
244
self._content_cache_types = ("tree")
245
self.start_write_group = self._cache.idmap.start_write_group
246
self.abort_write_group = self._cache.idmap.abort_write_group
247
self.commit_write_group = self._cache.idmap.commit_write_group
248
self.tree_cache = LRUTreeCache(self.repository)
250
def _update_sha_map(self, stop_revision=None):
251
graph = self.repository.get_graph()
252
if stop_revision is None:
253
heads = graph.heads(self.repository.all_revision_ids())
255
heads = set([stop_revision])
256
missing_revids = self._cache.idmap.missing_revisions(heads)
258
parents = graph.get_parent_map(heads)
260
for p in parents.values():
261
todo.update([x for x in p if x not in missing_revids])
262
heads = self._cache.idmap.missing_revisions(todo)
263
missing_revids.update(heads)
264
if NULL_REVISION in missing_revids:
265
missing_revids.remove(NULL_REVISION)
266
missing_revids = self.repository.has_revisions(missing_revids)
267
if not missing_revids:
269
self.start_write_group()
271
pb = ui.ui_factory.nested_progress_bar()
273
for i, revid in enumerate(graph.iter_topo_order(missing_revids)):
274
trace.mutter('processing %r', revid)
275
pb.update("updating git map", i, len(missing_revids))
276
self._update_sha_map_revision(revid)
280
self.abort_write_group()
283
self.commit_write_group()
286
self._update_sha_map()
287
return iter(self._cache.idmap.sha1s())
289
def _reconstruct_commit(self, rev, tree_sha):
290
def parent_lookup(revid):
292
return self._lookup_revision_sha1(revid)
293
except errors.NoSuchRevision:
294
trace.warning("Ignoring ghost parent %s", revid)
296
return self.mapping.export_commit(rev, tree_sha, parent_lookup)
298
def _revision_to_objects(self, rev, tree):
299
unusual_modes = extract_unusual_modes(rev)
300
present_parents = self.repository.has_revisions(rev.parent_ids)
301
parent_trees = self.tree_cache.revision_trees(
302
[p for p in rev.parent_ids if p in present_parents])
304
for path, obj, ie in _tree_to_objects(tree, parent_trees,
305
self._cache.idmap, unusual_modes):
310
# Pointless commit - get the tree sha elsewhere
311
if not rev.parent_ids:
314
base_sha1 = self._lookup_revision_sha1(rev.parent_ids[0])
315
tree_sha = self[base_sha1].tree
316
commit_obj = self._reconstruct_commit(rev, tree_sha)
318
foreign_revid, mapping = mapping_registry.parse_revision_id(
320
except errors.InvalidRevisionId:
323
_check_expected_sha(foreign_revid, commit_obj)
324
yield None, commit_obj, None
326
def _get_updater(self, rev):
327
return self._cache.get_updater(rev)
329
def _update_sha_map_revision(self, revid):
330
rev = self.repository.get_revision(revid)
331
tree = self.tree_cache.revision_tree(rev.revision_id)
332
updater = self._get_updater(rev)
333
for path, obj, ie in self._revision_to_objects(rev, tree):
334
updater.add_object(obj, ie)
335
commit_obj = updater.finish()
338
def _reconstruct_blobs(self, keys):
339
"""Return a Git Blob object from a fileid and revision stored in bzr.
341
:param fileid: File id of the text
342
:param revision: Revision of the text
344
stream = self.repository.iter_files_bytes(
345
((key[0], key[1], key) for key in keys))
346
for (fileid, revision, expected_sha), chunks in stream:
348
blob.chunked = chunks
349
if blob.id != expected_sha and blob.data == "":
350
# Perhaps it's a symlink ?
351
tree = self.tree_cache.revision_tree(revision)
352
entry = tree.inventory[fileid]
353
if entry.kind == 'symlink':
354
blob = symlink_to_blob(entry)
355
_check_expected_sha(expected_sha, blob)
358
def _reconstruct_tree(self, fileid, revid, inv, unusual_modes,
360
"""Return a Git Tree object from a file id and a revision stored in bzr.
362
:param fileid: fileid in the tree.
363
:param revision: Revision of the tree.
365
def get_ie_sha1(entry):
366
if entry.kind == "directory":
368
return self._cache.idmap.lookup_tree_id(entry.file_id,
370
except (NotImplementedError, KeyError):
371
obj = self._reconstruct_tree(entry.file_id, revid, inv,
377
elif entry.kind in ("file", "symlink"):
379
return self._cache.idmap.lookup_blob_id(entry.file_id,
383
return self._reconstruct_blobs(
384
[(entry.file_id, entry.revision, None)]).next().id
386
raise AssertionError("unknown entry kind '%s'" % entry.kind)
387
tree = directory_to_tree(inv[fileid], get_ie_sha1, unusual_modes)
388
_check_expected_sha(expected_sha, tree)
391
def get_parents(self, sha):
392
"""Retrieve the parents of a Git commit by SHA1.
394
:param sha: SHA1 of the commit
395
:raises: KeyError, NotCommitError
397
return self[sha].parents
399
def _lookup_revision_sha1(self, revid):
400
"""Return the SHA1 matching a Bazaar revision."""
401
if revid == NULL_REVISION:
404
return self._cache.idmap.lookup_commit(revid)
407
return mapping_registry.parse_revision_id(revid)[0]
408
except errors.InvalidRevisionId:
409
self._update_sha_map(revid)
410
return self._cache.idmap.lookup_commit(revid)
412
def get_raw(self, sha):
413
"""Get the raw representation of a Git object by SHA1.
415
:param sha: SHA1 of the git object
418
return (obj.type, obj.as_raw_string())
420
def __contains__(self, sha):
421
# See if sha is in map
423
(type, type_data) = self._lookup_git_sha(sha)
425
return self.repository.has_revision(type_data[0])
427
return self.repository.texts.has_version(type_data)
429
return self.repository.has_revision(type_data[1])
431
raise AssertionError("Unknown object type '%s'" % type)
435
def _lookup_git_sha(self, sha):
436
# See if sha is in map
438
return self._cache.idmap.lookup_git_sha(sha)
440
# if not, see if there are any unconverted revisions and add them
441
# to the map, search for sha in map again
442
self._update_sha_map()
443
return self._cache.idmap.lookup_git_sha(sha)
445
def __getitem__(self, sha):
446
if self._cache.content_cache is not None:
448
return self._cache.content_cache[sha]
451
(type, type_data) = self._lookup_git_sha(sha)
452
# convert object to git object
454
(revid, tree_sha) = type_data
456
rev = self.repository.get_revision(revid)
457
except errors.NoSuchRevision:
458
trace.mutter('entry for %s %s in shamap: %r, but not found in '
459
'repository', type, sha, type_data)
461
commit = self._reconstruct_commit(rev, tree_sha)
462
_check_expected_sha(sha, commit)
465
(fileid, revision) = type_data
466
return self._reconstruct_blobs([(fileid, revision, sha)]).next()
468
(fileid, revid) = type_data
470
tree = self.tree_cache.revision_tree(revid)
471
rev = self.repository.get_revision(revid)
472
except errors.NoSuchRevision:
473
trace.mutter('entry for %s %s in shamap: %r, but not found in repository', type, sha, type_data)
475
unusual_modes = extract_unusual_modes(rev)
477
return self._reconstruct_tree(fileid, revid, tree.inventory,
478
unusual_modes, expected_sha=sha)
479
except errors.NoSuchRevision:
482
raise AssertionError("Unknown object type '%s'" % type)
484
def generate_pack_contents(self, have, want, progress=None, get_tagged=None):
485
"""Iterate over the contents of a pack file.
487
:param have: List of SHA1s of objects that should not be sent
488
:param want: List of SHA1s of objects that should be sent
491
for commit_sha in have:
493
(type, (revid, tree_sha)) = self._lookup_git_sha(commit_sha)
497
assert type == "commit"
500
for commit_sha in want:
501
if commit_sha in have:
503
(type, (revid, tree_sha)) = self._lookup_git_sha(commit_sha)
504
assert type == "commit"
508
processed.update(pending)
509
next_map = self.repository.get_parent_map(pending)
511
for item in next_map.iteritems():
513
next_pending.update(p for p in item[1] if p not in processed)
514
pending = next_pending
515
if NULL_REVISION in todo:
516
todo.remove(NULL_REVISION)
517
trace.mutter('sending revisions %r', todo)
519
pb = ui.ui_factory.nested_progress_bar()
521
for i, revid in enumerate(todo):
522
pb.update("generating git objects", i, len(todo))
523
rev = self.repository.get_revision(revid)
524
tree = self.tree_cache.revision_tree(revid)
525
for path, obj, ie in self._revision_to_objects(rev, tree):
526
ret.append((obj, path))
531
def add_thin_pack(self):
534
fd, path = tempfile.mkstemp(suffix=".pack")
535
f = os.fdopen(fd, 'wb')
537
from dulwich.pack import PackData, Pack
538
from bzrlib.plugins.git.fetch import import_git_objects
541
if os.path.getsize(path) == 0:
544
pd.create_index_v2(path[:-5]+".idx", self.object_store.get_raw)
547
self.repository.lock_write()
549
self.repository.start_write_group()
551
import_git_objects(self.repository, self.mapping,
552
p.iterobjects(get_raw=self.get_raw),
555
self.repository.abort_write_group()
558
self.repository.commit_write_group()
560
self.repository.unlock()
563
# The pack isn't kept around anyway, so no point
564
# in treating full packs different from thin packs
565
add_pack = add_thin_pack