1
# Copyright (C) 2008 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
from cStringIO import StringIO
19
from dulwich.client import (
20
SimpleFetchGraphWalker,
22
from dulwich.objects import (
32
from bzrlib.errors import (
36
from bzrlib.inventory import (
39
from bzrlib.repository import (
42
from bzrlib.tsort import topo_sort
44
from bzrlib.plugins.git.converter import (
47
from bzrlib.plugins.git.repository import (
52
from bzrlib.plugins.git.remote import (
57
class BzrFetchGraphWalker(object):
58
"""GraphWalker implementation that uses a Bazaar repository."""
60
def __init__(self, repository, mapping):
61
self.repository = repository
62
self.mapping = mapping
64
self.heads = set(repository.all_revision_ids())
68
return iter(self.next, None)
71
revid = self.mapping.revision_id_foreign_to_bzr(sha)
74
def remove(self, revid):
76
if revid in self.heads:
77
self.heads.remove(revid)
78
if revid in self.parents:
79
for p in self.parents[revid]:
84
ret = self.heads.pop()
85
ps = self.repository.get_parent_map([ret])[ret]
86
self.parents[ret] = ps
87
self.heads.update([p for p in ps if not p in self.done])
90
return self.mapping.revision_id_bzr_to_foreign(ret)[0]
91
except InvalidRevisionId:
96
def import_git_blob(texts, mapping, path, blob, inv, parent_invs, shagitmap,
98
"""Import a git blob object into a bzr repository.
100
:param texts: VersionedFiles to add to
101
:param path: Path in the tree
102
:param blob: A git blob
103
:return: Inventory entry
105
file_id = mapping.generate_file_id(path)
106
ie = inv.add_path(path, "file", file_id)
107
ie.text_size = len(blob.data)
108
ie.text_sha1 = osutils.sha_string(blob.data)
109
ie.executable = executable
110
# See if this is the same revision as one of the parents unchanged
112
for pinv in parent_invs:
113
if not file_id in pinv:
115
if pinv[file_id].text_sha1 == ie.text_sha1:
116
ie.revision = pinv[file_id].revision
118
parent_keys.append((file_id, pinv[file_id].revision))
119
ie.revision = inv.revision_id
120
assert file_id is not None
121
assert ie.revision is not None
122
texts.add_lines((file_id, ie.revision), parent_keys,
123
osutils.split_lines(blob.data))
124
shagitmap.add_entry(blob.sha().hexdigest(), "blob",
125
(ie.file_id, ie.revision))
129
def import_git_tree(texts, mapping, path, tree, inv, parent_invs, shagitmap,
131
"""Import a git tree object into a bzr repository.
133
:param texts: VersionedFiles object to add to
134
:param path: Path in the tree
135
:param tree: A git tree object
136
:param inv: Inventory object
138
file_id = mapping.generate_file_id(path)
139
ie = inv.add_path(path, "directory", file_id)
142
for pinv in parent_invs:
143
if not file_id in pinv:
146
tree_sha = shagitmap.lookup_tree(path, pinv[file_id].revision)
150
if tree_sha == tree.id:
151
ie.revision = pinv[file_id].revision
153
parent_keys.append((file_id, pinv[file_id].revision))
154
if ie.revision is None:
155
ie.revision = inv.revision_id
156
texts.add_lines((file_id, ie.revision), parent_keys, [])
157
shagitmap.add_entry(tree.id, "tree", (file_id, ie.revision))
158
for mode, name, hexsha in tree.entries():
159
entry_kind = (mode & 0700000) / 0100000
160
basename = name.decode("utf-8")
164
child_path = urlutils.join(path, name)
165
obj = lookup_object(hexsha)
167
import_git_tree(texts, mapping, child_path, obj, inv, parent_invs,
168
shagitmap, lookup_object)
169
elif entry_kind == 1:
170
fs_mode = mode & 0777
171
import_git_blob(texts, mapping, child_path, obj, inv, parent_invs,
172
shagitmap, bool(fs_mode & 0111))
174
raise AssertionError("Unknown blob kind, perms=%r." % (mode,))
178
def import_git_objects(repo, mapping, object_iter, target_git_object_retriever,
180
"""Import a set of git objects into a bzr repository.
182
:param repo: Bazaar repository
183
:param mapping: Mapping to use
184
:param object_iter: Iterator over Git objects.
186
# TODO: a more (memory-)efficient implementation of this
190
# Find and convert commit objects
191
for o in object_iter.iterobjects():
192
if isinstance(o, Commit):
193
rev = mapping.import_commit(o)
194
root_trees[rev.revision_id] = object_iter[o.tree]
195
revisions[rev.revision_id] = rev
196
graph.append((rev.revision_id, rev.parent_ids))
197
target_git_object_retriever._idmap.add_entry(o.sha().hexdigest(),
198
"commit", (rev.revision_id, o._tree))
199
# Order the revisions
200
# Create the inventory objects
201
for i, revid in enumerate(topo_sort(graph)):
203
pb.update("fetching revisions", i, len(graph))
204
root_tree = root_trees[revid]
205
rev = revisions[revid]
206
# We have to do this here, since we have to walk the tree and
207
# we need to make sure to import the blobs / trees with the riht
208
# path; this may involve adding them more than once.
210
inv.revision_id = rev.revision_id
211
def lookup_object(sha):
212
if sha in object_iter:
213
return object_iter[sha]
214
return target_git_object_retriever[sha]
215
parent_invs = [repo.get_inventory(r) for r in rev.parent_ids]
216
import_git_tree(repo.texts, mapping, "", root_tree, inv, parent_invs,
217
target_git_object_retriever._idmap, lookup_object)
218
repo.add_revision(rev.revision_id, rev, inv)
219
target_git_object_retriever._idmap.commit()
222
class InterGitNonGitRepository(InterRepository):
224
_matching_repo_format = GitRepositoryFormat()
227
def _get_repo_format_to_test():
230
def copy_content(self, revision_id=None, pb=None):
231
"""See InterRepository.copy_content."""
232
self.fetch(revision_id, pb, find_ghosts=False)
234
def fetch_objects(self, determine_wants, mapping, pb=None):
236
pb.update("git: %s" % text.rstrip("\r\n"), 0, 0)
237
graph_walker = BzrFetchGraphWalker(self.target, mapping)
240
create_pb = pb = ui.ui_factory.nested_progress_bar()
241
target_git_object_retriever = GitObjectConverter(self.target, mapping)
244
self.target.lock_write()
246
self.target.start_write_group()
248
objects_iter = self.source.fetch_objects(determine_wants,
250
target_git_object_retriever.__getitem__,
252
import_git_objects(self.target, mapping, objects_iter,
253
target_git_object_retriever, pb)
255
self.target.commit_write_group()
262
def fetch(self, revision_id=None, pb=None, find_ghosts=False,
263
mapping=None, fetch_spec=None):
264
self.fetch_refs(revision_id=revision_id, pb=pb, find_ghosts=find_ghosts,
265
mapping=mapping, fetch_spec=fetch_spec)
267
def fetch_refs(self, revision_id=None, pb=None, find_ghosts=False,
268
mapping=None, fetch_spec=None):
270
mapping = self.source.get_mapping()
271
if revision_id is not None:
272
interesting_heads = [revision_id]
273
elif fetch_spec is not None:
274
interesting_heads = fetch_spec.heads
276
interesting_heads = None
278
def determine_wants(refs):
280
if interesting_heads is None:
281
ret = [sha for (ref, sha) in refs.iteritems() if not ref.endswith("^{}")]
283
ret = [mapping.revision_id_bzr_to_foreign(revid)[0] for revid in interesting_heads]
284
return [rev for rev in ret if not self.target.has_revision(mapping.revision_id_foreign_to_bzr(rev))]
285
self.fetch_objects(determine_wants, mapping, pb)
289
def is_compatible(source, target):
290
"""Be compatible with GitRepository."""
291
# FIXME: Also check target uses VersionedFile
292
return (isinstance(source, GitRepository) and
293
target.supports_rich_root() and
294
not isinstance(target, GitRepository))
297
class InterGitRepository(InterRepository):
299
_matching_repo_format = GitRepositoryFormat()
302
def _get_repo_format_to_test():
305
def copy_content(self, revision_id=None, pb=None):
306
"""See InterRepository.copy_content."""
307
self.fetch(revision_id, pb, find_ghosts=False)
309
def fetch(self, revision_id=None, pb=None, find_ghosts=False,
310
mapping=None, fetch_spec=None):
312
mapping = self.source.get_mapping()
314
trace.info("git: %s", text)
316
if revision_id is not None:
317
args = [mapping.revision_id_bzr_to_foreign(revision_id)[0]]
318
elif fetch_spec is not None:
319
args = [mapping.revision_id_bzr_to_foreign(revid)[0] for revid in fetch_spec.heads]
320
if fetch_spec is None and revision_id is None:
321
determine_wants = r.object_store.determine_wants_all
323
determine_wants = lambda x: [y for y in args if not y in r.object_store]
325
graphwalker = SimpleFetchGraphWalker(r.heads().values(), r.get_parents)
326
f, commit = r.object_store.add_pack()
328
self.source._git.fetch_pack(path, determine_wants, graphwalker, f.write, progress)
336
def is_compatible(source, target):
337
"""Be compatible with GitRepository."""
338
return (isinstance(source, GitRepository) and
339
isinstance(target, GitRepository))