/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/git/fetch.py

  • Committer: Jelmer Vernooij
  • Date: 2020-02-07 02:14:30 UTC
  • mto: This revision was merged to the branch mainline in revision 7492.
  • Revision ID: jelmer@jelmer.uk-20200207021430-m49iq3x4x8xlib6x
Drop python2 support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2008-2010 Jelmer Vernooij <jelmer@samba.org>
 
1
# Copyright (C) 2008-2018 Jelmer Vernooij <jelmer@jelmer.uk>
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
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
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
"""Fetching from git into bzr."""
 
18
 
 
19
from __future__ import absolute_import
16
20
 
17
21
from dulwich.objects import (
18
22
    Commit,
19
23
    Tag,
20
24
    Tree,
 
25
    S_IFGITLINK,
21
26
    S_ISGITLINK,
 
27
    ZERO_SHA,
22
28
    )
23
29
from dulwich.object_store import (
24
30
    tree_lookup_path,
25
31
    )
26
 
from itertools import (
27
 
    imap,
28
 
    )
29
32
import posixpath
30
 
import re
31
33
import stat
32
34
 
33
 
from bzrlib import (
 
35
from .. import (
34
36
    debug,
 
37
    errors,
35
38
    osutils,
36
39
    trace,
37
 
    ui,
38
40
    )
39
 
from bzrlib.errors import (
 
41
from ..errors import (
40
42
    BzrError,
41
 
    NoSuchId,
42
43
    )
43
 
from bzrlib.inventory import (
44
 
    Inventory,
 
44
from ..bzr.inventory import (
45
45
    InventoryDirectory,
46
46
    InventoryFile,
47
47
    InventoryLink,
48
48
    TreeReference,
49
49
    )
50
 
from bzrlib.repository import (
51
 
    InterRepository,
52
 
    )
53
 
from bzrlib.revision import (
 
50
from ..revision import (
54
51
    NULL_REVISION,
55
52
    )
56
 
from bzrlib.revisiontree import (
57
 
    RevisionTree,
58
 
    )
59
 
from bzrlib.testament import (
 
53
from ..bzr.inventorytree import InventoryRevisionTree
 
54
from ..bzr.testament import (
60
55
    StrictTestament3,
61
56
    )
62
 
from bzrlib.tsort import (
 
57
from ..tree import find_previous_path
 
58
from ..tsort import (
63
59
    topo_sort,
64
60
    )
65
 
from bzrlib.versionedfile import (
 
61
from ..bzr.versionedfile import (
66
62
    ChunkedContentFactory,
67
63
    )
68
64
 
69
 
from bzrlib.plugins.git.mapping import (
 
65
from .mapping import (
70
66
    DEFAULT_FILE_MODE,
71
67
    mode_is_executable,
72
68
    mode_kind,
73
69
    warn_unusual_mode,
74
70
    )
75
 
from bzrlib.plugins.git.object_store import (
76
 
    BazaarObjectStore,
 
71
from .object_store import (
77
72
    LRUTreeCache,
78
73
    _tree_to_objects,
79
74
    )
80
 
from bzrlib.plugins.git.remote import (
81
 
    RemoteGitRepository,
82
 
    )
83
 
from bzrlib.plugins.git.repository import (
84
 
    GitRepository,
85
 
    GitRepositoryFormat,
86
 
    LocalGitRepository,
87
 
    )
88
 
 
89
 
 
90
 
def import_git_blob(texts, mapping, path, name, (base_hexsha, hexsha), 
91
 
        base_inv, parent_id, revision_id,
92
 
        parent_invs, lookup_object, (base_mode, mode), store_updater,
93
 
        lookup_file_id):
 
75
 
 
76
 
 
77
def import_git_blob(texts, mapping, path, name, hexshas,
 
78
                    base_bzr_tree, parent_id, revision_id,
 
79
                    parent_bzr_trees, lookup_object, modes, store_updater,
 
80
                    lookup_file_id):
94
81
    """Import a git blob object into a bzr repository.
95
82
 
96
83
    :param texts: VersionedFiles to add to
98
85
    :param blob: A git blob
99
86
    :return: Inventory delta for this file
100
87
    """
101
 
    if mapping.is_control_file(path):
 
88
    if not isinstance(path, bytes):
 
89
        raise TypeError(path)
 
90
    decoded_path = path.decode('utf-8')
 
91
    (base_mode, mode) = modes
 
92
    (base_hexsha, hexsha) = hexshas
 
93
    if mapping.is_special_file(path):
102
94
        return []
103
95
    if base_hexsha == hexsha and base_mode == mode:
104
96
        # If nothing has changed since the base revision, we're done
105
97
        return []
106
 
    file_id = lookup_file_id(path)
 
98
    file_id = lookup_file_id(decoded_path)
107
99
    if stat.S_ISLNK(mode):
108
100
        cls = InventoryLink
109
101
    else:
112
104
    if ie.kind == "file":
113
105
        ie.executable = mode_is_executable(mode)
114
106
    if base_hexsha == hexsha and mode_kind(base_mode) == mode_kind(mode):
115
 
        base_ie = base_inv[base_inv.path2id(path)]
116
 
        ie.text_size = base_ie.text_size
117
 
        ie.text_sha1 = base_ie.text_sha1
 
107
        base_exec = base_bzr_tree.is_executable(decoded_path)
118
108
        if ie.kind == "symlink":
119
 
            ie.symlink_target = base_ie.symlink_target
120
 
        if ie.executable == base_ie.executable:
121
 
            ie.revision = base_ie.revision
 
109
            ie.symlink_target = base_bzr_tree.get_symlink_target(decoded_path)
 
110
        else:
 
111
            ie.text_size = base_bzr_tree.get_file_size(decoded_path)
 
112
            ie.text_sha1 = base_bzr_tree.get_file_sha1(decoded_path)
 
113
        if ie.kind == "symlink" or ie.executable == base_exec:
 
114
            ie.revision = base_bzr_tree.get_file_revision(decoded_path)
122
115
        else:
123
116
            blob = lookup_object(hexsha)
124
117
    else:
125
118
        blob = lookup_object(hexsha)
126
119
        if ie.kind == "symlink":
127
120
            ie.revision = None
128
 
            ie.symlink_target = blob.data
 
121
            ie.symlink_target = blob.data.decode("utf-8")
129
122
        else:
130
 
            ie.text_size = sum(imap(len, blob.chunked))
 
123
            ie.text_size = sum(map(len, blob.chunked))
131
124
            ie.text_sha1 = osutils.sha_strings(blob.chunked)
132
125
    # Check what revision we should store
133
126
    parent_keys = []
134
 
    for pinv in parent_invs:
135
 
        try:
136
 
            pie = pinv[file_id]
137
 
        except NoSuchId:
 
127
    for ptree in parent_bzr_trees:
 
128
        ppath = find_previous_path(base_bzr_tree, ptree, decoded_path, file_id, recurse='none')
 
129
        if ppath is None:
138
130
            continue
139
 
        if (pie.text_sha1 == ie.text_sha1 and
140
 
            pie.executable == ie.executable and
141
 
            pie.symlink_target == ie.symlink_target):
 
131
        pkind = ptree.kind(ppath)
 
132
        if (pkind == ie.kind and
 
133
            ((pkind == "symlink" and ptree.get_symlink_target(ppath) == ie.symlink_target) or
 
134
             (pkind == "file" and ptree.get_file_sha1(ppath) == ie.text_sha1 and
 
135
                ptree.is_executable(ppath) == ie.executable))):
142
136
            # found a revision in one of the parents to use
143
 
            ie.revision = pie.revision
 
137
            ie.revision = ptree.get_file_revision(ppath)
144
138
            break
145
 
        parent_key = (file_id, pie.revision)
146
 
        if not parent_key in parent_keys:
 
139
        parent_key = (file_id, ptree.get_file_revision(ppath))
 
140
        if parent_key not in parent_keys:
147
141
            parent_keys.append(parent_key)
148
142
    if ie.revision is None:
149
143
        # Need to store a new revision
150
144
        ie.revision = revision_id
151
 
        assert ie.revision is not None
 
145
        if ie.revision is None:
 
146
            raise ValueError("no file revision set")
152
147
        if ie.kind == 'symlink':
153
148
            chunks = []
154
 
        else: 
 
149
        else:
155
150
            chunks = blob.chunked
156
151
        texts.insert_record_stream([
157
152
            ChunkedContentFactory((file_id, ie.revision),
158
 
                tuple(parent_keys), ie.text_sha1, chunks)])
 
153
                                  tuple(parent_keys), ie.text_sha1, chunks)])
159
154
    invdelta = []
160
155
    if base_hexsha is not None:
161
 
        old_path = path.decode("utf-8") # Renames are not supported yet
 
156
        old_path = decoded_path  # Renames are not supported yet
162
157
        if stat.S_ISDIR(base_mode):
163
 
            invdelta.extend(remove_disappeared_children(base_inv, old_path,
164
 
                lookup_object(base_hexsha), [], lookup_object))
 
158
            invdelta.extend(remove_disappeared_children(
 
159
                base_bzr_tree, old_path, lookup_object(base_hexsha), [],
 
160
                lookup_object))
165
161
    else:
166
162
        old_path = None
167
 
    new_path = path.decode("utf-8")
168
 
    invdelta.append((old_path, new_path, file_id, ie))
 
163
    invdelta.append((old_path, decoded_path, file_id, ie))
169
164
    if base_hexsha != hexsha:
170
 
        store_updater.add_object(blob, ie, path)
 
165
        store_updater.add_object(blob, (ie.file_id, ie.revision), path)
171
166
    return invdelta
172
167
 
173
168
 
174
169
class SubmodulesRequireSubtrees(BzrError):
175
 
    _fmt = """The repository you are fetching from contains submodules. To continue, upgrade your Bazaar repository to a format that supports nested trees, such as 'development-subtree'."""
 
170
    _fmt = ("The repository you are fetching from contains submodules, "
 
171
            "which require a Bazaar format that supports tree references.")
176
172
    internal = False
177
173
 
178
174
 
179
 
def import_git_submodule(texts, mapping, path, name, (base_hexsha, hexsha),
180
 
    base_inv, parent_id, revision_id, parent_invs, lookup_object,
181
 
    (base_mode, mode), store_updater, lookup_file_id):
 
175
def import_git_submodule(texts, mapping, path, name, hexshas,
 
176
                         base_bzr_tree, parent_id, revision_id,
 
177
                         parent_bzr_trees, lookup_object,
 
178
                         modes, store_updater, lookup_file_id):
 
179
    """Import a git submodule."""
 
180
    (base_hexsha, hexsha) = hexshas
 
181
    (base_mode, mode) = modes
182
182
    if base_hexsha == hexsha and base_mode == mode:
183
183
        return [], {}
 
184
    path = path.decode('utf-8')
184
185
    file_id = lookup_file_id(path)
 
186
    invdelta = []
185
187
    ie = TreeReference(file_id, name.decode("utf-8"), parent_id)
186
188
    ie.revision = revision_id
187
 
    if base_hexsha is None:
188
 
        oldpath = None
 
189
    if base_hexsha is not None:
 
190
        old_path = path  # Renames are not supported yet
 
191
        if stat.S_ISDIR(base_mode):
 
192
            invdelta.extend(remove_disappeared_children(
 
193
                base_bzr_tree, old_path, lookup_object(base_hexsha), [],
 
194
                lookup_object))
189
195
    else:
190
 
        oldpath = path
 
196
        old_path = None
191
197
    ie.reference_revision = mapping.revision_id_foreign_to_bzr(hexsha)
192
198
    texts.insert_record_stream([
193
199
        ChunkedContentFactory((file_id, ie.revision), (), None, [])])
194
 
    invdelta = [(oldpath, path, file_id, ie)]
 
200
    invdelta.append((old_path, path, file_id, ie))
195
201
    return invdelta, {}
196
202
 
197
203
 
198
 
def remove_disappeared_children(base_inv, path, base_tree, existing_children,
199
 
        lookup_object):
 
204
def remove_disappeared_children(base_bzr_tree, path, base_tree,
 
205
                                existing_children, lookup_object):
200
206
    """Generate an inventory delta for removed children.
201
207
 
202
 
    :param base_inv: Base inventory against which to generate the 
 
208
    :param base_bzr_tree: Base bzr tree against which to generate the
203
209
        inventory delta.
204
210
    :param path: Path to process (unicode)
205
211
    :param base_tree: Git Tree base object
207
213
    :param lookup_object: Lookup a git object by its SHA1
208
214
    :return: Inventory delta, as list
209
215
    """
210
 
    assert type(path) is unicode
 
216
    if not isinstance(path, str):
 
217
        raise TypeError(path)
211
218
    ret = []
212
219
    for name, mode, hexsha in base_tree.iteritems():
213
220
        if name in existing_children:
214
221
            continue
215
222
        c_path = posixpath.join(path, name.decode("utf-8"))
216
 
        file_id = base_inv.path2id(c_path)
217
 
        assert file_id is not None
 
223
        file_id = base_bzr_tree.path2id(c_path)
 
224
        if file_id is None:
 
225
            raise TypeError(file_id)
218
226
        ret.append((c_path, None, file_id, None))
219
227
        if stat.S_ISDIR(mode):
220
228
            ret.extend(remove_disappeared_children(
221
 
                base_inv, c_path, lookup_object(hexsha), [], lookup_object))
 
229
                base_bzr_tree, c_path, lookup_object(hexsha), [],
 
230
                lookup_object))
222
231
    return ret
223
232
 
224
233
 
225
 
def import_git_tree(texts, mapping, path, name, (base_hexsha, hexsha),
226
 
        base_inv, parent_id, revision_id, parent_invs,
227
 
        lookup_object, (base_mode, mode), store_updater,
228
 
        lookup_file_id, allow_submodules=False):
 
234
def import_git_tree(texts, mapping, path, name, hexshas,
 
235
                    base_bzr_tree, parent_id, revision_id, parent_bzr_trees,
 
236
                    lookup_object, modes, store_updater,
 
237
                    lookup_file_id, allow_submodules=False):
229
238
    """Import a git tree object into a bzr repository.
230
239
 
231
240
    :param texts: VersionedFiles object to add to
232
241
    :param path: Path in the tree (str)
233
242
    :param name: Name of the tree (str)
234
243
    :param tree: A git tree object
235
 
    :param base_inv: Base inventory against which to return inventory delta
 
244
    :param base_bzr_tree: Base inventory against which to return inventory
 
245
        delta
236
246
    :return: Inventory delta for this subtree
237
247
    """
238
 
    assert type(path) is str
239
 
    assert type(name) is str
 
248
    (base_hexsha, hexsha) = hexshas
 
249
    (base_mode, mode) = modes
 
250
    if not isinstance(path, bytes):
 
251
        raise TypeError(path)
 
252
    if not isinstance(name, bytes):
 
253
        raise TypeError(name)
240
254
    if base_hexsha == hexsha and base_mode == mode:
241
255
        # If nothing has changed since the base revision, we're done
242
256
        return [], {}
243
257
    invdelta = []
244
 
    file_id = lookup_file_id(path)
 
258
    file_id = lookup_file_id(osutils.safe_unicode(path))
245
259
    # We just have to hope this is indeed utf-8:
246
260
    ie = InventoryDirectory(file_id, name.decode("utf-8"), parent_id)
247
261
    tree = lookup_object(hexsha)
248
262
    if base_hexsha is None:
249
263
        base_tree = None
250
 
        old_path = None # Newly appeared here
 
264
        old_path = None  # Newly appeared here
251
265
    else:
252
266
        base_tree = lookup_object(base_hexsha)
253
 
        old_path = path.decode("utf-8") # Renames aren't supported yet
 
267
        old_path = path.decode("utf-8")  # Renames aren't supported yet
254
268
    new_path = path.decode("utf-8")
255
269
    if base_tree is None or type(base_tree) is not Tree:
256
270
        ie.revision = revision_id
260
274
    # Remember for next time
261
275
    existing_children = set()
262
276
    child_modes = {}
263
 
    for child_mode, name, child_hexsha in tree.entries():
 
277
    for name, child_mode, child_hexsha in tree.iteritems():
264
278
        existing_children.add(name)
265
279
        child_path = posixpath.join(path, name)
266
280
        if type(base_tree) is Tree:
273
287
            child_base_hexsha = None
274
288
            child_base_mode = 0
275
289
        if stat.S_ISDIR(child_mode):
276
 
            subinvdelta, grandchildmodes = import_git_tree(texts, mapping,
277
 
                child_path, name, (child_base_hexsha, child_hexsha), base_inv,
278
 
                file_id, revision_id, parent_invs, lookup_object, 
 
290
            subinvdelta, grandchildmodes = import_git_tree(
 
291
                texts, mapping, child_path, name,
 
292
                (child_base_hexsha, child_hexsha), base_bzr_tree, file_id,
 
293
                revision_id, parent_bzr_trees, lookup_object,
279
294
                (child_base_mode, child_mode), store_updater, lookup_file_id,
280
295
                allow_submodules=allow_submodules)
281
 
        elif S_ISGITLINK(child_mode): # submodule
 
296
        elif S_ISGITLINK(child_mode):  # submodule
282
297
            if not allow_submodules:
283
298
                raise SubmodulesRequireSubtrees()
284
 
            subinvdelta, grandchildmodes = import_git_submodule(texts, mapping,
285
 
                child_path, name, (child_base_hexsha, child_hexsha), base_inv,
286
 
                file_id, revision_id, parent_invs, lookup_object,
287
 
                (child_base_mode, child_mode), store_updater, lookup_file_id)
 
299
            subinvdelta, grandchildmodes = import_git_submodule(
 
300
                texts, mapping, child_path, name,
 
301
                (child_base_hexsha, child_hexsha),
 
302
                base_bzr_tree, file_id, revision_id, parent_bzr_trees,
 
303
                lookup_object, (child_base_mode, child_mode), store_updater,
 
304
                lookup_file_id)
288
305
        else:
289
 
            subinvdelta = import_git_blob(texts, mapping, child_path, name,
290
 
                (child_base_hexsha, child_hexsha), base_inv, file_id,
291
 
                revision_id, parent_invs, lookup_object,
292
 
                (child_base_mode, child_mode), store_updater, lookup_file_id)
 
306
            if not mapping.is_special_file(name):
 
307
                subinvdelta = import_git_blob(
 
308
                    texts, mapping, child_path, name,
 
309
                    (child_base_hexsha, child_hexsha), base_bzr_tree, file_id,
 
310
                    revision_id, parent_bzr_trees, lookup_object,
 
311
                    (child_base_mode, child_mode), store_updater,
 
312
                    lookup_file_id)
 
313
            else:
 
314
                subinvdelta = []
293
315
            grandchildmodes = {}
294
316
        child_modes.update(grandchildmodes)
295
317
        invdelta.extend(subinvdelta)
296
318
        if child_mode not in (stat.S_IFDIR, DEFAULT_FILE_MODE,
297
 
                        stat.S_IFLNK, DEFAULT_FILE_MODE|0111):
 
319
                              stat.S_IFLNK, DEFAULT_FILE_MODE | 0o111,
 
320
                              S_IFGITLINK):
298
321
            child_modes[child_path] = child_mode
299
322
    # Remove any children that have disappeared
300
323
    if base_tree is not None and type(base_tree) is Tree:
301
 
        invdelta.extend(remove_disappeared_children(base_inv, old_path,
302
 
            base_tree, existing_children, lookup_object))
303
 
    store_updater.add_object(tree, ie, path)
 
324
        invdelta.extend(remove_disappeared_children(
 
325
            base_bzr_tree, old_path, base_tree, existing_children,
 
326
            lookup_object))
 
327
    store_updater.add_object(tree, (file_id, revision_id), path)
304
328
    return invdelta, child_modes
305
329
 
306
330
 
307
331
def verify_commit_reconstruction(target_git_object_retriever, lookup_object,
308
 
    o, rev, ret_tree, parent_trees, mapping, unusual_modes):
 
332
                                 o, rev, ret_tree, parent_trees, mapping,
 
333
                                 unusual_modes, verifiers):
309
334
    new_unusual_modes = mapping.export_unusual_file_modes(rev)
310
335
    if new_unusual_modes != unusual_modes:
311
336
        raise AssertionError("unusual modes don't match: %r != %r" % (
312
337
            unusual_modes, new_unusual_modes))
313
338
    # Verify that we can reconstruct the commit properly
314
 
    rec_o = target_git_object_retriever._reconstruct_commit(rev, o.tree, True)
 
339
    rec_o = target_git_object_retriever._reconstruct_commit(rev, o.tree, True,
 
340
                                                            verifiers)
315
341
    if rec_o != o:
316
342
        raise AssertionError("Reconstructed commit differs: %r != %r" % (
317
343
            rec_o, o))
318
344
    diff = []
319
345
    new_objs = {}
320
 
    for path, obj, ie in _tree_to_objects(ret_tree, parent_trees,
321
 
        target_git_object_retriever._cache.idmap, unusual_modes, mapping.BZR_DUMMY_FILE):
 
346
    for path, obj, ie in _tree_to_objects(
 
347
            ret_tree, parent_trees, target_git_object_retriever._cache.idmap,
 
348
            unusual_modes, mapping.BZR_DUMMY_FILE):
322
349
        old_obj_id = tree_lookup_path(lookup_object, o.tree, path)[1]
323
350
        new_objs[path] = obj
324
351
        if obj.id != old_obj_id:
325
352
            diff.append((path, lookup_object(old_obj_id), obj))
326
353
    for (path, old_obj, new_obj) in diff:
327
 
        while (old_obj.type_name == "tree" and
328
 
               new_obj.type_name == "tree" and
329
 
               sorted(old_obj) == sorted(new_obj)):
 
354
        while (old_obj.type_name == "tree"
 
355
               and new_obj.type_name == "tree"
 
356
               and sorted(old_obj) == sorted(new_obj)):
330
357
            for name in old_obj:
331
358
                if old_obj[name][0] != new_obj[name][0]:
332
 
                    raise AssertionError("Modes for %s differ: %o != %o" %
 
359
                    raise AssertionError(
 
360
                        "Modes for %s differ: %o != %o" %
333
361
                        (path, old_obj[name][0], new_obj[name][0]))
334
362
                if old_obj[name][1] != new_obj[name][1]:
335
363
                    # Found a differing child, delve deeper
337
365
                    old_obj = lookup_object(old_obj[name][1])
338
366
                    new_obj = new_objs[path]
339
367
                    break
340
 
        raise AssertionError("objects differ for %s: %r != %r" % (path,
341
 
            old_obj, new_obj))
 
368
        raise AssertionError(
 
369
            "objects differ for %s: %r != %r" % (path, old_obj, new_obj))
 
370
 
 
371
 
 
372
def ensure_inventories_in_repo(repo, trees):
 
373
    real_inv_vf = repo.inventories.without_fallbacks()
 
374
    for t in trees:
 
375
        revid = t.get_revision_id()
 
376
        if not real_inv_vf.get_parent_map([(revid, )]):
 
377
            repo.add_inventory(revid, t.root_inventory, t.get_parent_ids())
342
378
 
343
379
 
344
380
def import_git_commit(repo, mapping, head, lookup_object,
345
 
                      target_git_object_retriever, trees_cache):
 
381
                      target_git_object_retriever, trees_cache, strict):
346
382
    o = lookup_object(head)
347
 
    rev, roundtrip_revid, verifiers = mapping.import_commit(o,
348
 
            lambda x: target_git_object_retriever.lookup_git_sha(x)[1][0])
 
383
    # Note that this uses mapping.revision_id_foreign_to_bzr. If the parents
 
384
    # were bzr roundtripped revisions they would be specified in the
 
385
    # roundtrip data.
 
386
    rev, roundtrip_revid, verifiers = mapping.import_commit(
 
387
        o, mapping.revision_id_foreign_to_bzr, strict)
 
388
    if roundtrip_revid is not None:
 
389
        original_revid = rev.revision_id
 
390
        rev.revision_id = roundtrip_revid
349
391
    # We have to do this here, since we have to walk the tree and
350
392
    # we need to make sure to import the blobs / trees with the right
351
393
    # path; this may involve adding them more than once.
352
394
    parent_trees = trees_cache.revision_trees(rev.parent_ids)
 
395
    ensure_inventories_in_repo(repo, parent_trees)
353
396
    if parent_trees == []:
354
 
        base_inv = Inventory(root_id=None)
 
397
        base_bzr_tree = trees_cache.revision_tree(NULL_REVISION)
355
398
        base_tree = None
356
399
        base_mode = None
357
400
    else:
358
 
        base_inv = parent_trees[0].inventory
 
401
        base_bzr_tree = parent_trees[0]
359
402
        base_tree = lookup_object(o.parents[0]).tree
360
403
        base_mode = stat.S_IFDIR
361
404
    store_updater = target_git_object_retriever._get_updater(rev)
362
 
    fileid_map = mapping.get_fileid_map(lookup_object, o.tree)
363
 
    inv_delta, unusual_modes = import_git_tree(repo.texts,
364
 
            mapping, "", "", (base_tree, o.tree), base_inv,
365
 
            None, rev.revision_id, [p.inventory for p in parent_trees],
366
 
            lookup_object, (base_mode, stat.S_IFDIR), store_updater,
367
 
            fileid_map.lookup_file_id,
368
 
            allow_submodules=getattr(repo._format, "supports_tree_reference", False))
 
405
    inv_delta, unusual_modes = import_git_tree(
 
406
        repo.texts, mapping, b"", b"", (base_tree, o.tree), base_bzr_tree,
 
407
        None, rev.revision_id, parent_trees, lookup_object,
 
408
        (base_mode, stat.S_IFDIR), store_updater,
 
409
        mapping.generate_file_id,
 
410
        allow_submodules=repo._format.supports_tree_reference)
369
411
    if unusual_modes != {}:
370
412
        for path, mode in unusual_modes.iteritems():
371
413
            warn_unusual_mode(rev.foreign_revid, path, mode)
374
416
        basis_id = rev.parent_ids[0]
375
417
    except IndexError:
376
418
        basis_id = NULL_REVISION
377
 
        base_inv = None
378
 
    rev.inventory_sha1, inv = repo.add_inventory_by_delta(basis_id,
379
 
              inv_delta, rev.revision_id, rev.parent_ids, base_inv)
380
 
    # FIXME: Check verifiers
381
 
    testament = StrictTestament3(rev, inv)
382
 
    calculated_verifiers = { "testament3-sha1": testament.as_sha1() }
383
 
    if roundtrip_revid is not None:
384
 
        original_revid = rev.revision_id
385
 
        rev.revision_id = roundtrip_revid
 
419
        base_bzr_inventory = None
 
420
    else:
 
421
        base_bzr_inventory = base_bzr_tree.root_inventory
 
422
    rev.inventory_sha1, inv = repo.add_inventory_by_delta(
 
423
        basis_id, inv_delta, rev.revision_id, rev.parent_ids,
 
424
        base_bzr_inventory)
 
425
    ret_tree = InventoryRevisionTree(repo, inv, rev.revision_id)
 
426
    # Check verifiers
 
427
    if verifiers and roundtrip_revid is not None:
 
428
        testament = StrictTestament3(rev, ret_tree)
 
429
        calculated_verifiers = {"testament3-sha1": testament.as_sha1()}
386
430
        if calculated_verifiers != verifiers:
387
431
            trace.mutter("Testament SHA1 %r for %r did not match %r.",
388
432
                         calculated_verifiers["testament3-sha1"],
389
433
                         rev.revision_id, verifiers["testament3-sha1"])
390
434
            rev.revision_id = original_revid
 
435
            rev.inventory_sha1, inv = repo.add_inventory_by_delta(
 
436
                basis_id, inv_delta, rev.revision_id, rev.parent_ids,
 
437
                base_bzr_tree)
 
438
            ret_tree = InventoryRevisionTree(repo, inv, rev.revision_id)
 
439
    else:
 
440
        calculated_verifiers = {}
391
441
    store_updater.add_object(o, calculated_verifiers, None)
392
442
    store_updater.finish()
393
 
    ret_tree = RevisionTree(repo, inv, rev.revision_id)
394
443
    trees_cache.add(ret_tree)
395
444
    repo.add_revision(rev.revision_id, rev)
396
445
    if "verify" in debug.debug_flags:
397
 
        verify_commit_reconstruction(target_git_object_retriever, 
398
 
            lookup_object, o, rev, ret_tree, parent_trees, mapping,
399
 
            unusual_modes)
 
446
        verify_commit_reconstruction(
 
447
            target_git_object_retriever, lookup_object, o, rev, ret_tree,
 
448
            parent_trees, mapping, unusual_modes, verifiers)
400
449
 
401
450
 
402
451
def import_git_objects(repo, mapping, object_iter,
403
 
    target_git_object_retriever, heads, pb=None, limit=None):
 
452
                       target_git_object_retriever, heads, pb=None,
 
453
                       limit=None):
404
454
    """Import a set of git objects into a bzr repository.
405
455
 
406
456
    :param repo: Target Bazaar repository
422
472
        if pb is not None:
423
473
            pb.update("finding revisions to fetch", len(graph), None)
424
474
        head = heads.pop()
425
 
        assert isinstance(head, str)
 
475
        if head == ZERO_SHA:
 
476
            continue
 
477
        if not isinstance(head, bytes):
 
478
            raise TypeError(head)
426
479
        try:
427
480
            o = lookup_object(head)
428
481
        except KeyError:
429
482
            continue
430
483
        if isinstance(o, Commit):
431
 
            rev, roundtrip_revid, verifiers = mapping.import_commit(o,
432
 
                lambda x: None)
433
 
            if (repo.has_revision(rev.revision_id) or
434
 
                (roundtrip_revid and repo.has_revision(roundtrip_revid))):
 
484
            rev, roundtrip_revid, verifiers = mapping.import_commit(
 
485
                o, mapping.revision_id_foreign_to_bzr, strict=True)
 
486
            if (repo.has_revision(rev.revision_id)
 
487
                    or (roundtrip_revid and
 
488
                        repo.has_revision(roundtrip_revid))):
435
489
                continue
436
490
            graph.append((o.id, o.parents))
437
491
            heads.extend([p for p in o.parents if p not in checked])
451
505
        revision_ids = revision_ids[:limit]
452
506
    last_imported = None
453
507
    for offset in range(0, len(revision_ids), batch_size):
454
 
        target_git_object_retriever.start_write_group() 
 
508
        target_git_object_retriever.start_write_group()
455
509
        try:
456
510
            repo.start_write_group()
457
511
            try:
458
512
                for i, head in enumerate(
459
 
                    revision_ids[offset:offset+batch_size]):
 
513
                        revision_ids[offset:offset + batch_size]):
460
514
                    if pb is not None:
461
 
                        pb.update("fetching revisions", offset+i,
 
515
                        pb.update("fetching revisions", offset + i,
462
516
                                  len(revision_ids))
463
517
                    import_git_commit(repo, mapping, head, lookup_object,
464
 
                        target_git_object_retriever, trees_cache)
 
518
                                      target_git_object_retriever, trees_cache,
 
519
                                      strict=True)
465
520
                    last_imported = head
466
 
            except:
 
521
            except BaseException:
467
522
                repo.abort_write_group()
468
523
                raise
469
524
            else:
470
525
                hint = repo.commit_write_group()
471
526
                if hint is not None:
472
527
                    pack_hints.extend(hint)
473
 
        except:
 
528
        except BaseException:
474
529
            target_git_object_retriever.abort_write_group()
475
530
            raise
476
531
        else:
478
533
    return pack_hints, last_imported
479
534
 
480
535
 
481
 
class InterGitRepository(InterRepository):
482
 
 
483
 
    _matching_repo_format = GitRepositoryFormat()
484
 
 
485
 
    @staticmethod
486
 
    def _get_repo_format_to_test():
487
 
        return None
488
 
 
489
 
    def copy_content(self, revision_id=None, pb=None):
490
 
        """See InterRepository.copy_content."""
491
 
        self.fetch(revision_id, pb, find_ghosts=False)
492
 
 
493
 
 
494
 
class InterGitNonGitRepository(InterGitRepository):
495
 
    """Base InterRepository that copies revisions from a Git into a non-Git
496
 
    repository."""
497
 
 
498
 
    def fetch_objects(self, determine_wants, mapping, pb=None, limit=None):
499
 
        """Fetch objects from a remote server.
500
 
 
501
 
        :param determine_wants: determine_wants callback
502
 
        :param mapping: BzrGitMapping to use
503
 
        :param pb: Optional progress bar
504
 
        :param limit: Maximum number of commits to import.
505
 
        :return: Tuple with pack hint, last imported revision id and remote refs
506
 
        """
507
 
        raise NotImplementedError(self.fetch_objects)
508
 
 
509
 
    def fetch(self, revision_id=None, pb=None, find_ghosts=False,
510
 
              mapping=None, fetch_spec=None):
511
 
        if mapping is None:
512
 
            mapping = self.source.get_mapping()
513
 
        if revision_id is not None:
514
 
            interesting_heads = [revision_id]
515
 
        elif fetch_spec is not None:
516
 
            interesting_heads = fetch_spec.heads
517
 
        else:
518
 
            interesting_heads = None
519
 
        def determine_wants(refs):
520
 
            if interesting_heads is None:
521
 
                ret = [sha for (ref, sha) in refs.iteritems() if not ref.endswith("^{}")]
522
 
            else:
523
 
                ret = [self.source.lookup_bzr_revision_id(revid)[0] for revid in interesting_heads if revid not in (None, NULL_REVISION)]
524
 
            return [rev for rev in ret if not self.target.has_revision(self.source.lookup_foreign_revision_id(rev))]
525
 
        (pack_hint, _, remote_refs) = self.fetch_objects(determine_wants, mapping, pb)
526
 
        if pack_hint is not None and self.target._format.pack_compresses:
527
 
            self.target.pack(hint=pack_hint)
528
 
        return remote_refs
529
 
 
530
 
 
531
 
_GIT_PROGRESS_RE = re.compile(r"(.*?): +(\d+)% \((\d+)/(\d+)\)")
532
 
def report_git_progress(pb, text):
533
 
    text = text.rstrip("\r\n")
534
 
    g = _GIT_PROGRESS_RE.match(text)
535
 
    if g is not None:
536
 
        (text, pct, current, total) = g.groups()
537
 
        pb.update(text, int(current), int(total))
538
 
    else:
539
 
        pb.update(text, 0, 0)
540
 
 
541
 
 
542
536
class DetermineWantsRecorder(object):
543
537
 
544
538
    def __init__(self, actual):
547
541
        self.remote_refs = {}
548
542
 
549
543
    def __call__(self, refs):
 
544
        if type(refs) is not dict:
 
545
            raise TypeError(refs)
550
546
        self.remote_refs = refs
551
547
        self.wants = self.actual(refs)
552
548
        return self.wants
553
 
 
554
 
 
555
 
class InterRemoteGitNonGitRepository(InterGitNonGitRepository):
556
 
    """InterRepository that copies revisions from a remote Git into a non-Git
557
 
    repository."""
558
 
 
559
 
    def get_target_heads(self):
560
 
        # FIXME: This should be more efficient
561
 
        all_revs = self.target.all_revision_ids()
562
 
        parent_map = self.target.get_parent_map(all_revs)
563
 
        all_parents = set()
564
 
        map(all_parents.update, parent_map.itervalues())
565
 
        return set(all_revs) - all_parents
566
 
 
567
 
    def fetch_objects(self, determine_wants, mapping, pb=None, limit=None):
568
 
        """See `InterGitNonGitRepository`."""
569
 
        def progress(text):
570
 
            report_git_progress(pb, text)
571
 
        store = BazaarObjectStore(self.target, mapping)
572
 
        self.target.lock_write()
573
 
        try:
574
 
            heads = self.get_target_heads()
575
 
            graph_walker = store.get_graph_walker(
576
 
                    [store._lookup_revision_sha1(head) for head in heads])
577
 
            wants_recorder = DetermineWantsRecorder(determine_wants)
578
 
 
579
 
            create_pb = None
580
 
            if pb is None:
581
 
                create_pb = pb = ui.ui_factory.nested_progress_bar()
582
 
            try:
583
 
                objects_iter = self.source.fetch_objects(
584
 
                    wants_recorder, graph_walker, store.get_raw,
585
 
                    progress)
586
 
                (pack_hint, last_rev) = import_git_objects(self.target, mapping,
587
 
                    objects_iter, store, wants_recorder.wants, pb, limit)
588
 
                return (pack_hint, last_rev, wants_recorder.remote_refs)
589
 
            finally:
590
 
                if create_pb:
591
 
                    create_pb.finished()
592
 
        finally:
593
 
            self.target.unlock()
594
 
 
595
 
    @staticmethod
596
 
    def is_compatible(source, target):
597
 
        """Be compatible with GitRepository."""
598
 
        return (isinstance(source, RemoteGitRepository) and
599
 
                target.supports_rich_root() and
600
 
                not isinstance(target, GitRepository) and
601
 
                target.texts is not None)
602
 
 
603
 
 
604
 
class InterLocalGitNonGitRepository(InterGitNonGitRepository):
605
 
    """InterRepository that copies revisions from a local Git into a non-Git
606
 
    repository."""
607
 
 
608
 
    def fetch_objects(self, determine_wants, mapping, pb=None, limit=None):
609
 
        """See `InterGitNonGitRepository`."""
610
 
        remote_refs = self.source._git.get_refs()
611
 
        wants = determine_wants(remote_refs)
612
 
        create_pb = None
613
 
        if pb is None:
614
 
            create_pb = pb = ui.ui_factory.nested_progress_bar()
615
 
        target_git_object_retriever = BazaarObjectStore(self.target, mapping)
616
 
        try:
617
 
            self.target.lock_write()
618
 
            try:
619
 
                (pack_hint, last_rev) = import_git_objects(self.target, mapping,
620
 
                    self.source._git.object_store,
621
 
                    target_git_object_retriever, wants, pb, limit)
622
 
                return (pack_hint, last_rev, remote_refs)
623
 
            finally:
624
 
                self.target.unlock()
625
 
        finally:
626
 
            if create_pb:
627
 
                create_pb.finished()
628
 
 
629
 
    @staticmethod
630
 
    def is_compatible(source, target):
631
 
        """Be compatible with GitRepository."""
632
 
        return (isinstance(source, LocalGitRepository) and
633
 
                target.supports_rich_root() and
634
 
                not isinstance(target, GitRepository) and
635
 
                target.texts is not None)
636
 
 
637
 
 
638
 
class InterGitGitRepository(InterGitRepository):
639
 
    """InterRepository that copies between Git repositories."""
640
 
 
641
 
    def fetch_objects(self, determine_wants, mapping, pb=None):
642
 
        def progress(text):
643
 
            trace.note("git: %s", text)
644
 
        graphwalker = self.target._git.get_graph_walker()
645
 
        if (isinstance(self.source, LocalGitRepository) and
646
 
            isinstance(self.target, LocalGitRepository)):
647
 
            refs = self.source._git.fetch(self.target._git, determine_wants,
648
 
                progress)
649
 
            return (None, None, refs)
650
 
        elif (isinstance(self.source, LocalGitRepository) and
651
 
              isinstance(self.target, RemoteGitRepository)):
652
 
            raise NotImplementedError
653
 
        elif (isinstance(self.source, RemoteGitRepository) and
654
 
              isinstance(self.target, LocalGitRepository)):
655
 
            f, commit = self.target._git.object_store.add_thin_pack()
656
 
            try:
657
 
                refs = self.source.bzrdir.root_transport.fetch_pack(
658
 
                    determine_wants, graphwalker, f.write, progress)
659
 
                commit()
660
 
                return (None, None, refs)
661
 
            except:
662
 
                f.close()
663
 
                raise
664
 
        else:
665
 
            raise AssertionError
666
 
 
667
 
    def fetch(self, revision_id=None, pb=None, find_ghosts=False,
668
 
              mapping=None, fetch_spec=None, branches=None):
669
 
        if mapping is None:
670
 
            mapping = self.source.get_mapping()
671
 
        r = self.target._git
672
 
        if revision_id is not None:
673
 
            args = [mapping.revision_id_bzr_to_foreign(revision_id)[0]]
674
 
        elif fetch_spec is not None:
675
 
            args = [mapping.revision_id_bzr_to_foreign(revid)[0] for revid in fetch_spec.heads]
676
 
        if branches is not None:
677
 
            determine_wants = lambda x: [x[y] for y in branches if not x[y] in r.object_store]
678
 
        elif fetch_spec is None and revision_id is None:
679
 
            determine_wants = r.object_store.determine_wants_all
680
 
        else:
681
 
            determine_wants = lambda x: [y for y in args if not y in r.object_store]
682
 
        self.fetch_objects(determine_wants, mapping)
683
 
 
684
 
    @staticmethod
685
 
    def is_compatible(source, target):
686
 
        """Be compatible with GitRepository."""
687
 
        return (isinstance(source, GitRepository) and
688
 
                isinstance(target, GitRepository))