14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
from bzrlib import osutils
18
17
from bzrlib.errors import InvalidRevisionId
19
from bzrlib.inventory import Inventory
20
18
from bzrlib.repository import InterRepository
21
19
from bzrlib.trace import info
23
from bzrlib.plugins.git import git
24
21
from bzrlib.plugins.git.repository import LocalGitRepository, GitRepository, GitFormat
25
22
from bzrlib.plugins.git.remote import RemoteGitRepository
27
from dulwich.objects import Commit
29
24
from cStringIO import StringIO
67
def import_git_blob(repo, mapping, path, blob):
68
"""Import a git blob object into a bzr repository.
70
:param repo: bzr repository
71
:param path: Path in the tree
72
:param blob: A git blob
74
file_id = mapping.generate_file_id(path)
75
repo.texts.add_lines((file_id, blob.id),
77
osutils.split_lines(blob.data))
78
inv.add_path(path, "file", file_id)
81
def import_git_tree(repo, mapping, path, tree, inv, lookup_object):
82
"""Import a git tree object into a bzr repository.
84
:param repo: A Bzr repository object
85
:param path: Path in the tree
86
:param tree: A git tree object
87
:param inv: Inventory object
89
file_id = mapping.generate_file_id(path)
90
repo.texts.add_lines((file_id, tree.id),
93
inv.add_path(path, "directory", file_id)
94
for mode, name, hexsha in tree.entries():
95
entry_kind = (mode & 0700000) / 0100000
96
basename = name.decode("utf-8")
100
child_path = urlutils.join(path, name)
102
import_git_tree(repo, mapping, child_path, lookup_object, inv)
103
elif entry_kind == 1:
104
import_git_blob(repo, mapping, child_path, lookup_object, inv)
106
raise AssertionError("Unknown blob kind, perms=%r." % (mode,))
109
def import_git_objects(repo, mapping, object_iter):
110
"""Import a set of git objects into a bzr repository.
112
:param repo: Bazaar repository
113
:param mapping: Mapping to use
114
:param object_iter: Iterator over Git objects.
116
# TODO: a more (memory-)efficient implementation of this
118
for o in object_iter:
121
# Find and convert commit objects
122
for o in objects.iterkeys():
123
if isinstance(o, Commit):
124
rev = mapping.import_commit(o)
125
root_trees[rev] = objects[o.tree_sha]
126
# Create the inventory objects
127
for rev, root_tree in root_trees.iteritems():
128
# We have to do this here, since we have to walk the tree and
129
# we need to make sure to import the blobs / trees with the riht
130
# path; this may involve adding them more than once.
132
def lookup_object(sha):
135
return reconstruct_git_object(repo, mapping, sha)
136
import_git_tree(repo, mapping, "", tree, inv, lookup_object)
137
repo.add_revision(rev.revision_id, rev, inv)
140
def reconstruct_git_commit(repo, rev):
141
raise NotImplementedError(self.reconstruct_git_commit)
144
def reconstruct_git_object(repo, mapping, sha):
146
revid = mapping.revision_id_foreign_to_bzr(sha)
148
rev = repo.get_revision(revid)
149
except NoSuchRevision:
152
return reconstruct_git_commit(rev)
156
raise KeyError("No such object %s" % sha)
62
def import_git_object(repo, object):
63
raise NotImplementedError(import_git_object)
159
66
class InterGitRepository(InterRepository):