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
# FIXME: Should be the same as in parent
208
if ie.kind in ("file", "symlink"):
210
return idmap.lookup_blob_id(ie.file_id, ie.revision)
214
blob.data = tree.get_file_text(ie.file_id)
216
elif ie.kind == "directory":
217
# Not all cache backends store the tree information,
218
# calculate again from scratch
219
ret = directory_to_tree(ie, ie_to_hexsha, unusual_modes)
226
for path in sorted(trees.keys(), reverse=True):
227
ie = tree.inventory[trees[path]]
228
assert ie.kind == "directory"
229
obj = directory_to_tree(ie, ie_to_hexsha, unusual_modes)
232
shamap[ie.file_id] = obj.id
235
class BazaarObjectStore(BaseObjectStore):
236
"""A Git-style object store backed onto a Bazaar repository."""
238
def __init__(self, repository, mapping=None):
239
self.repository = repository
241
self.mapping = default_mapping
243
self.mapping = mapping
244
self._cache = cache_from_repository(repository)
245
self._content_cache_types = ("tree")
246
self.start_write_group = self._cache.idmap.start_write_group
247
self.abort_write_group = self._cache.idmap.abort_write_group
248
self.commit_write_group = self._cache.idmap.commit_write_group
249
self.tree_cache = LRUTreeCache(self.repository)
251
def _update_sha_map(self, stop_revision=None):
252
graph = self.repository.get_graph()
253
if stop_revision is None:
254
heads = graph.heads(self.repository.all_revision_ids())
256
heads = set([stop_revision])
257
missing_revids = self._cache.idmap.missing_revisions(heads)
259
parents = graph.get_parent_map(heads)
261
for p in parents.values():
262
todo.update([x for x in p if x not in missing_revids])
263
heads = self._cache.idmap.missing_revisions(todo)
264
missing_revids.update(heads)
265
if NULL_REVISION in missing_revids:
266
missing_revids.remove(NULL_REVISION)
267
missing_revids = self.repository.has_revisions(missing_revids)
268
if not missing_revids:
270
self.start_write_group()
272
pb = ui.ui_factory.nested_progress_bar()
274
for i, revid in enumerate(graph.iter_topo_order(missing_revids)):
275
trace.mutter('processing %r', revid)
276
pb.update("updating git map", i, len(missing_revids))
277
self._update_sha_map_revision(revid)
281
self.abort_write_group()
284
self.commit_write_group()
287
self._update_sha_map()
288
return iter(self._cache.idmap.sha1s())
290
def _reconstruct_commit(self, rev, tree_sha):
291
def parent_lookup(revid):
293
return self._lookup_revision_sha1(revid)
294
except errors.NoSuchRevision:
295
trace.warning("Ignoring ghost parent %s", revid)
297
return self.mapping.export_commit(rev, tree_sha, parent_lookup)
299
def _revision_to_objects(self, rev, tree):
300
unusual_modes = extract_unusual_modes(rev)
301
present_parents = self.repository.has_revisions(rev.parent_ids)
302
parent_trees = self.tree_cache.revision_trees(
303
[p for p in rev.parent_ids if p in present_parents])
305
for path, obj, ie in _tree_to_objects(tree, parent_trees,
306
self._cache.idmap, unusual_modes):
311
# Pointless commit - get the tree sha elsewhere
312
if not rev.parent_ids:
315
base_sha1 = self._lookup_revision_sha1(rev.parent_ids[0])
316
tree_sha = self[base_sha1].tree
317
commit_obj = self._reconstruct_commit(rev, tree_sha)
319
foreign_revid, mapping = mapping_registry.parse_revision_id(
321
except errors.InvalidRevisionId:
324
_check_expected_sha(foreign_revid, commit_obj)
325
yield None, commit_obj, None
327
def _get_updater(self, rev):
328
return self._cache.get_updater(rev)
330
def _update_sha_map_revision(self, revid):
331
rev = self.repository.get_revision(revid)
332
tree = self.tree_cache.revision_tree(rev.revision_id)
333
updater = self._get_updater(rev)
334
for path, obj, ie in self._revision_to_objects(rev, tree):
335
updater.add_object(obj, ie)
336
commit_obj = updater.finish()
339
def _reconstruct_blobs(self, keys):
340
"""Return a Git Blob object from a fileid and revision stored in bzr.
342
:param fileid: File id of the text
343
:param revision: Revision of the text
345
stream = self.repository.iter_files_bytes(
346
((key[0], key[1], key) for key in keys))
347
for (fileid, revision, expected_sha), chunks in stream:
349
blob.chunked = chunks
350
if blob.id != expected_sha and blob.data == "":
351
# Perhaps it's a symlink ?
352
tree = self.tree_cache.revision_tree(revision)
353
entry = tree.inventory[fileid]
354
if entry.kind == 'symlink':
355
blob = symlink_to_blob(entry)
356
_check_expected_sha(expected_sha, blob)
359
def _reconstruct_tree(self, fileid, revid, inv, unusual_modes,
361
"""Return a Git Tree object from a file id and a revision stored in bzr.
363
:param fileid: fileid in the tree.
364
:param revision: Revision of the tree.
366
def get_ie_sha1(entry):
367
if entry.kind == "directory":
369
return self._cache.idmap.lookup_tree_id(entry.file_id,
371
except (NotImplementedError, KeyError):
372
obj = self._reconstruct_tree(entry.file_id, revid, inv,
378
elif entry.kind in ("file", "symlink"):
380
return self._cache.idmap.lookup_blob_id(entry.file_id,
384
return self._reconstruct_blobs(
385
[(entry.file_id, entry.revision, None)]).next().id
387
raise AssertionError("unknown entry kind '%s'" % entry.kind)
388
tree = directory_to_tree(inv[fileid], get_ie_sha1, unusual_modes)
389
_check_expected_sha(expected_sha, tree)
392
def get_parents(self, sha):
393
"""Retrieve the parents of a Git commit by SHA1.
395
:param sha: SHA1 of the commit
396
:raises: KeyError, NotCommitError
398
return self[sha].parents
400
def _lookup_revision_sha1(self, revid):
401
"""Return the SHA1 matching a Bazaar revision."""
402
from dulwich.protocol import ZERO_SHA
403
if revid == NULL_REVISION:
406
return self._cache.idmap.lookup_commit(revid)
409
return mapping_registry.parse_revision_id(revid)[0]
410
except errors.InvalidRevisionId:
411
self._update_sha_map(revid)
412
return self._cache.idmap.lookup_commit(revid)
414
def get_raw(self, sha):
415
"""Get the raw representation of a Git object by SHA1.
417
:param sha: SHA1 of the git object
420
return (obj.type, obj.as_raw_string())
422
def __contains__(self, sha):
423
# See if sha is in map
425
(type, type_data) = self._lookup_git_sha(sha)
427
return self.repository.has_revision(type_data[0])
429
return self.repository.texts.has_version(type_data)
431
return self.repository.has_revision(type_data[1])
433
raise AssertionError("Unknown object type '%s'" % type)
437
def _lookup_git_sha(self, sha):
438
# See if sha is in map
440
return self._cache.idmap.lookup_git_sha(sha)
442
# if not, see if there are any unconverted revisions and add them
443
# to the map, search for sha in map again
444
self._update_sha_map()
445
return self._cache.idmap.lookup_git_sha(sha)
447
def __getitem__(self, sha):
448
if self._cache.content_cache is not None:
450
return self._cache.content_cache[sha]
453
(type, type_data) = self._lookup_git_sha(sha)
454
# convert object to git object
456
(revid, tree_sha) = type_data
458
rev = self.repository.get_revision(revid)
459
except errors.NoSuchRevision:
460
trace.mutter('entry for %s %s in shamap: %r, but not found in '
461
'repository', type, sha, type_data)
463
commit = self._reconstruct_commit(rev, tree_sha)
464
_check_expected_sha(sha, commit)
467
(fileid, revision) = type_data
468
return self._reconstruct_blobs([(fileid, revision, sha)]).next()
470
(fileid, revid) = type_data
472
tree = self.tree_cache.revision_tree(revid)
473
rev = self.repository.get_revision(revid)
474
except errors.NoSuchRevision:
475
trace.mutter('entry for %s %s in shamap: %r, but not found in repository', type, sha, type_data)
477
unusual_modes = extract_unusual_modes(rev)
479
return self._reconstruct_tree(fileid, revid, tree.inventory,
480
unusual_modes, expected_sha=sha)
481
except errors.NoSuchRevision:
484
raise AssertionError("Unknown object type '%s'" % type)
486
def generate_pack_contents(self, have, want, progress=None, get_tagged=None):
487
"""Iterate over the contents of a pack file.
489
:param have: List of SHA1s of objects that should not be sent
490
:param want: List of SHA1s of objects that should be sent
493
for commit_sha in have:
495
(type, (revid, tree_sha)) = self._lookup_git_sha(commit_sha)
499
assert type == "commit"
502
for commit_sha in want:
503
if commit_sha in have:
505
(type, (revid, tree_sha)) = self._lookup_git_sha(commit_sha)
506
assert type == "commit"
510
processed.update(pending)
511
next_map = self.repository.get_parent_map(pending)
513
for item in next_map.iteritems():
515
next_pending.update(p for p in item[1] if p not in processed)
516
pending = next_pending
517
if NULL_REVISION in todo:
518
todo.remove(NULL_REVISION)
519
trace.mutter('sending revisions %r', todo)
521
pb = ui.ui_factory.nested_progress_bar()
523
for i, revid in enumerate(todo):
524
pb.update("generating git objects", i, len(todo))
525
rev = self.repository.get_revision(revid)
526
tree = self.tree_cache.revision_tree(revid)
527
for path, obj, ie in self._revision_to_objects(rev, tree):
528
ret.append((obj, path))
533
def add_thin_pack(self):
536
fd, path = tempfile.mkstemp(suffix=".pack")
537
f = os.fdopen(fd, 'wb')
539
from dulwich.pack import PackData, Pack
540
from bzrlib.plugins.git.fetch import import_git_objects
543
if os.path.getsize(path) == 0:
546
pd.create_index_v2(path[:-5]+".idx", self.object_store.get_raw)
549
self.repository.lock_write()
551
self.repository.start_write_group()
553
import_git_objects(self.repository, self.mapping,
554
p.iterobjects(get_raw=self.get_raw),
557
self.repository.abort_write_group()
560
self.repository.commit_write_group()
562
self.repository.unlock()
565
# The pack isn't kept around anyway, so no point
566
# in treating full packs different from thin packs
567
add_pack = add_thin_pack