/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
0.358.2 by Jelmer Vernooij
Refresh copyright headers, add my email.
1
# Copyright (C) 2008-2018 Jelmer Vernooij <jelmer@jelmer.uk>
0.200.135 by Jelmer Vernooij
Add stub for fetching data.
2
#
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.
7
#
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.
12
#
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
0.358.1 by Jelmer Vernooij
Fix FSF address.
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
0.200.135 by Jelmer Vernooij
Add stub for fetching data.
16
0.358.3 by Jelmer Vernooij
Enable absolute import.
17
"""Fetching from git into bzr."""
18
0.200.1594 by Jelmer Vernooij
Use absolute_import everywhere.
19
from __future__ import absolute_import
20
0.200.261 by Jelmer Vernooij
More formatting fixes.
21
from dulwich.objects import (
22
    Commit,
0.200.303 by Jelmer Vernooij
Cope with tags during fetch.
23
    Tag,
0.200.814 by Jelmer Vernooij
Avoid the use of InventoryDirectory.children. This speeds up
24
    Tree,
0.200.1407 by Jelmer Vernooij
Don't consider submodule modes unusual.
25
    S_IFGITLINK,
0.200.540 by Jelmer Vernooij
Handle submodules explicitly.
26
    S_ISGITLINK,
0.200.1176 by Jelmer Vernooij
Fix fetch return value for inter git fetching.
27
    ZERO_SHA,
0.200.261 by Jelmer Vernooij
More formatting fixes.
28
    )
0.200.883 by Jelmer Vernooij
Add function for verifying reconstruction of objects still works.
29
from dulwich.object_store import (
30
    tree_lookup_path,
31
    )
0.200.819 by Jelmer Vernooij
Avoid decoding basename twice.
32
import posixpath
0.200.352 by Jelmer Vernooij
Simplify mode handling.
33
import stat
0.200.252 by Jelmer Vernooij
Clarify history, copyright.
34
6986.2.1 by Jelmer Vernooij
Move breezy.plugins.git to breezy.git.
35
from .. import (
0.231.2 by Jelmer Vernooij
Add -Dverify flag (not fully implemented yet).
36
    debug,
0.200.1433 by Jelmer Vernooij
Fix fetching between git repositories.
37
    errors,
0.200.252 by Jelmer Vernooij
Clarify history, copyright.
38
    osutils,
0.200.261 by Jelmer Vernooij
More formatting fixes.
39
    trace,
0.200.252 by Jelmer Vernooij
Clarify history, copyright.
40
    )
6986.2.1 by Jelmer Vernooij
Move breezy.plugins.git to breezy.git.
41
from ..errors import (
0.239.5 by Jelmer Vernooij
Print user-understandable error message when encountering submodules.
42
    BzrError,
0.200.252 by Jelmer Vernooij
Clarify history, copyright.
43
    )
6986.2.1 by Jelmer Vernooij
Move breezy.plugins.git to breezy.git.
44
from ..bzr.inventory import (
0.229.2 by Jelmer Vernooij
Initial work relying on inventory deltas.
45
    InventoryDirectory,
46
    InventoryFile,
0.229.3 by Jelmer Vernooij
Use inventory deltas internally so fetch is O(changes) rather than O(tree).
47
    InventoryLink,
0.200.664 by Jelmer Vernooij
Support submodules during fetch.
48
    TreeReference,
0.200.261 by Jelmer Vernooij
More formatting fixes.
49
    )
6986.2.1 by Jelmer Vernooij
Move breezy.plugins.git to breezy.git.
50
from ..revision import (
0.229.3 by Jelmer Vernooij
Use inventory deltas internally so fetch is O(changes) rather than O(tree).
51
    NULL_REVISION,
52
    )
6986.2.1 by Jelmer Vernooij
Move breezy.plugins.git to breezy.git.
53
from ..bzr.inventorytree import InventoryRevisionTree
6986.2.2 by Jelmer Vernooij
Merge trunk.
54
from ..sixish import text_type
6986.2.1 by Jelmer Vernooij
Move breezy.plugins.git to breezy.git.
55
from ..testament import (
0.200.1023 by Jelmer Vernooij
Set and verify testament.
56
    StrictTestament3,
57
    )
6986.2.1 by Jelmer Vernooij
Move breezy.plugins.git to breezy.git.
58
from ..tsort import (
0.200.292 by Jelmer Vernooij
Fix formatting.
59
    topo_sort,
60
    )
6986.2.1 by Jelmer Vernooij
Move breezy.plugins.git to breezy.git.
61
from ..bzr.versionedfile import (
0.200.811 by Jelmer Vernooij
Use ChunkedContentFactory when possible.
62
    ChunkedContentFactory,
0.200.417 by Jelmer Vernooij
use insert_record_stream rather than add_lines.
63
    )
0.200.135 by Jelmer Vernooij
Add stub for fetching data.
64
0.200.1641 by Jelmer Vernooij
Use relative imports where possible.
65
from .mapping import (
0.200.345 by Jelmer Vernooij
Keep track of file modes to use.
66
    DEFAULT_FILE_MODE,
0.200.521 by Jelmer Vernooij
Abstract out kind mapping a bit, initial work on support tree-references.
67
    mode_is_executable,
0.200.820 by Jelmer Vernooij
Avoid relying on InventoryDirectory.children.
68
    mode_kind,
0.200.490 by Jelmer Vernooij
Warn about unusual modes and escaped XML-invalid characters.
69
    warn_unusual_mode,
0.231.2 by Jelmer Vernooij
Add -Dverify flag (not fully implemented yet).
70
    )
0.200.1641 by Jelmer Vernooij
Use relative imports where possible.
71
from .object_store import (
0.200.852 by Jelmer Vernooij
Cache trees rather than inventories.
72
    LRUTreeCache,
0.423.1 by Jelmer Vernooij
Some performance fixes.
73
    _tree_to_objects,
0.200.456 by Jelmer Vernooij
Fix git -> git fetching.
74
    )
0.216.4 by Jelmer Vernooij
Add basic pack fetch infrastructure.
75
76
6964.2.1 by Jelmer Vernooij
Initial work to support brz-git on python3.
77
def import_git_blob(texts, mapping, path, name, hexshas,
7143.15.2 by Jelmer Vernooij
Run autopep8.
78
                    base_bzr_tree, parent_id, revision_id,
79
                    parent_bzr_trees, lookup_object, modes, store_updater,
80
                    lookup_file_id):
0.200.151 by Jelmer Vernooij
Support converting git objects to bzr objects.
81
    """Import a git blob object into a bzr repository.
82
0.200.261 by Jelmer Vernooij
More formatting fixes.
83
    :param texts: VersionedFiles to add to
0.200.151 by Jelmer Vernooij
Support converting git objects to bzr objects.
84
    :param path: Path in the tree
85
    :param blob: A git blob
0.229.1 by Jelmer Vernooij
Start working with inventory deltas.
86
    :return: Inventory delta for this file
0.200.151 by Jelmer Vernooij
Support converting git objects to bzr objects.
87
    """
7027.4.8 by Jelmer Vernooij
Fix tests, drop broken tests.
88
    if not isinstance(path, bytes):
89
        raise TypeError(path)
90
    decoded_path = path.decode('utf-8')
6964.2.1 by Jelmer Vernooij
Initial work to support brz-git on python3.
91
    (base_mode, mode) = modes
92
    (base_hexsha, hexsha) = hexshas
0.200.1752 by Jelmer Vernooij
Don't traverse nested trees in WorkingTree.smart_add.
93
    if mapping.is_special_file(path):
0.252.28 by Jelmer Vernooij
Don't import control files.
94
        return []
0.200.816 by Jelmer Vernooij
Leave mode handling for blobs to import_git_blob.
95
    if base_hexsha == hexsha and base_mode == mode:
96
        # If nothing has changed since the base revision, we're done
0.200.839 by Jelmer Vernooij
Add convenience object for updating the object store caching layer.
97
        return []
7027.4.8 by Jelmer Vernooij
Fix tests, drop broken tests.
98
    file_id = lookup_file_id(decoded_path)
0.200.816 by Jelmer Vernooij
Leave mode handling for blobs to import_git_blob.
99
    if stat.S_ISLNK(mode):
0.200.320 by Jelmer Vernooij
Handle lightweight checkouts.
100
        cls = InventoryLink
101
    else:
102
        cls = InventoryFile
0.200.821 by Jelmer Vernooij
Remove last references to ID.children.
103
    ie = cls(file_id, name.decode("utf-8"), parent_id)
0.200.995 by Jelmer Vernooij
Support newer versions of bzr where only some InventoryFile/InventoryLink attributes are writable.
104
    if ie.kind == "file":
105
        ie.executable = mode_is_executable(mode)
0.200.821 by Jelmer Vernooij
Remove last references to ID.children.
106
    if base_hexsha == hexsha and mode_kind(base_mode) == mode_kind(mode):
7027.4.8 by Jelmer Vernooij
Fix tests, drop broken tests.
107
        base_exec = base_bzr_tree.is_executable(decoded_path)
0.200.995 by Jelmer Vernooij
Support newer versions of bzr where only some InventoryFile/InventoryLink attributes are writable.
108
        if ie.kind == "symlink":
7027.4.8 by Jelmer Vernooij
Fix tests, drop broken tests.
109
            ie.symlink_target = base_bzr_tree.get_symlink_target(decoded_path)
0.275.3 by Jelmer Vernooij
Avoid inventories in a few more places.
110
        else:
7027.4.8 by Jelmer Vernooij
Fix tests, drop broken tests.
111
            ie.text_size = base_bzr_tree.get_file_size(decoded_path)
112
            ie.text_sha1 = base_bzr_tree.get_file_sha1(decoded_path)
0.275.3 by Jelmer Vernooij
Avoid inventories in a few more places.
113
        if ie.kind == "symlink" or ie.executable == base_exec:
7027.4.8 by Jelmer Vernooij
Fix tests, drop broken tests.
114
            ie.revision = base_bzr_tree.get_file_revision(decoded_path)
0.200.537 by Jelmer Vernooij
Fix handling of not-executable files becoming executable without any other changes.
115
        else:
116
            blob = lookup_object(hexsha)
0.200.304 by Jelmer Vernooij
Try a bit harder to avoid fetching objects we don't need.
117
    else:
118
        blob = lookup_object(hexsha)
0.200.320 by Jelmer Vernooij
Handle lightweight checkouts.
119
        if ie.kind == "symlink":
0.200.551 by Jelmer Vernooij
Properly set InventoryEntry revision when changing symlink targets.
120
            ie.revision = None
0.200.1344 by Jelmer Vernooij
Unicode symlinks should be unicode in inventory entries.
121
            ie.symlink_target = blob.data.decode("utf-8")
0.200.320 by Jelmer Vernooij
Handle lightweight checkouts.
122
        else:
6964.2.1 by Jelmer Vernooij
Initial work to support brz-git on python3.
123
            ie.text_size = sum(map(len, blob.chunked))
0.200.830 by Jelmer Vernooij
Bump minimum dulwich version.
124
            ie.text_sha1 = osutils.sha_strings(blob.chunked)
0.229.3 by Jelmer Vernooij
Use inventory deltas internally so fetch is O(changes) rather than O(tree).
125
    # Check what revision we should store
0.200.283 by Jelmer Vernooij
Avoid storing repeated texts for blobs.
126
    parent_keys = []
0.275.3 by Jelmer Vernooij
Avoid inventories in a few more places.
127
    for ptree in parent_bzr_trees:
0.200.1576 by Jelmer Vernooij
Merge a bunch of fixes from store-roundtrip-info.
128
        try:
7069.1.1 by Jelmer Vernooij
Remove incorrect use of find_related_paths_across_trees.
129
            ppath = ptree.id2path(file_id)
130
        except errors.NoSuchId:
0.200.829 by Jelmer Vernooij
Cope with the fact that _type is gone in upstream dulwich.
131
            continue
0.285.1 by Jelmer Vernooij
Swap arguments for tree methods.
132
        pkind = ptree.kind(ppath, file_id)
7143.15.2 by Jelmer Vernooij
Run autopep8.
133
        if (pkind == ie.kind
134
            and ((pkind == "symlink" and ptree.get_symlink_target(ppath, file_id) == ie.symlink_target) or
0.285.1 by Jelmer Vernooij
Swap arguments for tree methods.
135
             (pkind == "file" and ptree.get_file_sha1(ppath, file_id) == ie.text_sha1 and
7143.15.2 by Jelmer Vernooij
Run autopep8.
136
                  ptree.is_executable(ppath, file_id) == ie.executable))):
0.229.3 by Jelmer Vernooij
Use inventory deltas internally so fetch is O(changes) rather than O(tree).
137
            # found a revision in one of the parents to use
0.285.1 by Jelmer Vernooij
Swap arguments for tree methods.
138
            ie.revision = ptree.get_file_revision(ppath, file_id)
0.229.3 by Jelmer Vernooij
Use inventory deltas internally so fetch is O(changes) rather than O(tree).
139
            break
0.285.1 by Jelmer Vernooij
Swap arguments for tree methods.
140
        parent_key = (file_id, ptree.get_file_revision(ppath, file_id))
0.200.904 by Jelmer Vernooij
Fix inconsistent parents.
141
        if not parent_key in parent_keys:
142
            parent_keys.append(parent_key)
0.229.3 by Jelmer Vernooij
Use inventory deltas internally so fetch is O(changes) rather than O(tree).
143
    if ie.revision is None:
144
        # Need to store a new revision
145
        ie.revision = revision_id
0.361.1 by Jelmer Vernooij
Don't use assert.
146
        if ie.revision is None:
147
            raise ValueError("no file revision set")
0.200.698 by Jelmer Vernooij
Merge fixes for SHA1s of symlinks.
148
        if ie.kind == 'symlink':
0.200.811 by Jelmer Vernooij
Use ChunkedContentFactory when possible.
149
            chunks = []
0.200.1292 by Jelmer Vernooij
Fix repeeling objects when determining what to send.
150
        else:
0.200.830 by Jelmer Vernooij
Bump minimum dulwich version.
151
            chunks = blob.chunked
0.252.25 by Jelmer Vernooij
Reformatting.
152
        texts.insert_record_stream([
153
            ChunkedContentFactory((file_id, ie.revision),
7143.15.2 by Jelmer Vernooij
Run autopep8.
154
                                  tuple(parent_keys), ie.text_sha1, chunks)])
0.200.572 by Jelmer Vernooij
Avoid some extra path lookups.
155
    invdelta = []
0.200.820 by Jelmer Vernooij
Avoid relying on InventoryDirectory.children.
156
    if base_hexsha is not None:
7143.15.2 by Jelmer Vernooij
Run autopep8.
157
        old_path = decoded_path  # Renames are not supported yet
0.200.820 by Jelmer Vernooij
Avoid relying on InventoryDirectory.children.
158
        if stat.S_ISDIR(base_mode):
0.275.3 by Jelmer Vernooij
Avoid inventories in a few more places.
159
            invdelta.extend(remove_disappeared_children(base_bzr_tree, old_path,
7143.15.2 by Jelmer Vernooij
Run autopep8.
160
                                                        lookup_object(base_hexsha), [], lookup_object))
0.229.3 by Jelmer Vernooij
Use inventory deltas internally so fetch is O(changes) rather than O(tree).
161
    else:
162
        old_path = None
7027.4.8 by Jelmer Vernooij
Fix tests, drop broken tests.
163
    invdelta.append((old_path, decoded_path, file_id, ie))
0.200.839 by Jelmer Vernooij
Add convenience object for updating the object store caching layer.
164
    if base_hexsha != hexsha:
0.275.2 by Jelmer Vernooij
Pass tuples around for cache entries, rather than inventory entries.
165
        store_updater.add_object(blob, (ie.file_id, ie.revision), path)
0.200.839 by Jelmer Vernooij
Add convenience object for updating the object store caching layer.
166
    return invdelta
0.200.261 by Jelmer Vernooij
More formatting fixes.
167
168
0.200.664 by Jelmer Vernooij
Support submodules during fetch.
169
class SubmodulesRequireSubtrees(BzrError):
0.200.1596 by Jelmer Vernooij
Don't mention development-subtree when submodules are encountered.
170
    _fmt = ("The repository you are fetching from contains submodules, "
0.404.2 by Jelmer Vernooij
Clarify error message about nested trees.
171
            "which require a Bazaar format that supports tree references.")
0.239.5 by Jelmer Vernooij
Print user-understandable error message when encountering submodules.
172
    internal = False
173
174
6964.2.1 by Jelmer Vernooij
Initial work to support brz-git on python3.
175
def import_git_submodule(texts, mapping, path, name, hexshas,
7143.15.2 by Jelmer Vernooij
Run autopep8.
176
                         base_bzr_tree, parent_id, revision_id, parent_bzr_trees, lookup_object,
177
                         modes, store_updater, lookup_file_id):
0.200.1309 by Jelmer Vernooij
Break some more long lines.
178
    """Import a git submodule."""
6964.2.1 by Jelmer Vernooij
Initial work to support brz-git on python3.
179
    (base_hexsha, hexsha) = hexshas
180
    (base_mode, mode) = modes
0.200.817 by Jelmer Vernooij
Deal with all modes locally.
181
    if base_hexsha == hexsha and base_mode == mode:
0.200.839 by Jelmer Vernooij
Add convenience object for updating the object store caching layer.
182
        return [], {}
0.200.896 by Jelmer Vernooij
Add separate function for looking up file ids.
183
    file_id = lookup_file_id(path)
0.200.1408 by Jelmer Vernooij
Remove old ie children when converting directory into tree reference.
184
    invdelta = []
0.200.821 by Jelmer Vernooij
Remove last references to ID.children.
185
    ie = TreeReference(file_id, name.decode("utf-8"), parent_id)
0.200.664 by Jelmer Vernooij
Support submodules during fetch.
186
    ie.revision = revision_id
0.200.1408 by Jelmer Vernooij
Remove old ie children when converting directory into tree reference.
187
    if base_hexsha is not None:
7143.15.2 by Jelmer Vernooij
Run autopep8.
188
        old_path = path.decode("utf-8")  # Renames are not supported yet
0.200.1408 by Jelmer Vernooij
Remove old ie children when converting directory into tree reference.
189
        if stat.S_ISDIR(base_mode):
0.275.3 by Jelmer Vernooij
Avoid inventories in a few more places.
190
            invdelta.extend(remove_disappeared_children(base_bzr_tree, old_path,
7143.15.2 by Jelmer Vernooij
Run autopep8.
191
                                                        lookup_object(base_hexsha), [], lookup_object))
0.200.664 by Jelmer Vernooij
Support submodules during fetch.
192
    else:
0.200.1408 by Jelmer Vernooij
Remove old ie children when converting directory into tree reference.
193
        old_path = None
0.200.664 by Jelmer Vernooij
Support submodules during fetch.
194
    ie.reference_revision = mapping.revision_id_foreign_to_bzr(hexsha)
0.252.25 by Jelmer Vernooij
Reformatting.
195
    texts.insert_record_stream([
196
        ChunkedContentFactory((file_id, ie.revision), (), None, [])])
0.200.1408 by Jelmer Vernooij
Remove old ie children when converting directory into tree reference.
197
    invdelta.append((old_path, path, file_id, ie))
0.200.839 by Jelmer Vernooij
Add convenience object for updating the object store caching layer.
198
    return invdelta, {}
0.200.540 by Jelmer Vernooij
Handle submodules explicitly.
199
200
0.275.3 by Jelmer Vernooij
Avoid inventories in a few more places.
201
def remove_disappeared_children(base_bzr_tree, path, base_tree, existing_children,
7143.15.2 by Jelmer Vernooij
Run autopep8.
202
                                lookup_object):
0.200.930 by Jelmer Vernooij
Add assert demonstrating 571055 and triggering it for all target formats.
203
    """Generate an inventory delta for removed children.
204
0.200.1636 by Jelmer Vernooij
Some formatting fixes.
205
    :param base_bzr_tree: Base bzr tree against which to generate the
0.200.930 by Jelmer Vernooij
Add assert demonstrating 571055 and triggering it for all target formats.
206
        inventory delta.
0.200.984 by Jelmer Vernooij
Handle non-ascii characters in filenames.
207
    :param path: Path to process (unicode)
0.200.930 by Jelmer Vernooij
Add assert demonstrating 571055 and triggering it for all target formats.
208
    :param base_tree: Git Tree base object
209
    :param existing_children: Children that still exist
210
    :param lookup_object: Lookup a git object by its SHA1
211
    :return: Inventory delta, as list
212
    """
6973.6.2 by Jelmer Vernooij
Fix more tests.
213
    if not isinstance(path, text_type):
0.361.1 by Jelmer Vernooij
Don't use assert.
214
        raise TypeError(path)
0.200.552 by Jelmer Vernooij
Cope with directories becoming symlinks.
215
    ret = []
0.200.820 by Jelmer Vernooij
Avoid relying on InventoryDirectory.children.
216
    for name, mode, hexsha in base_tree.iteritems():
217
        if name in existing_children:
218
            continue
219
        c_path = posixpath.join(path, name.decode("utf-8"))
0.275.3 by Jelmer Vernooij
Avoid inventories in a few more places.
220
        file_id = base_bzr_tree.path2id(c_path)
0.361.1 by Jelmer Vernooij
Don't use assert.
221
        if file_id is None:
222
            raise TypeError(file_id)
0.200.930 by Jelmer Vernooij
Add assert demonstrating 571055 and triggering it for all target formats.
223
        ret.append((c_path, None, file_id, None))
0.200.820 by Jelmer Vernooij
Avoid relying on InventoryDirectory.children.
224
        if stat.S_ISDIR(mode):
225
            ret.extend(remove_disappeared_children(
0.275.3 by Jelmer Vernooij
Avoid inventories in a few more places.
226
                base_bzr_tree, c_path, lookup_object(hexsha), [], lookup_object))
0.200.552 by Jelmer Vernooij
Cope with directories becoming symlinks.
227
    return ret
228
229
6964.2.1 by Jelmer Vernooij
Initial work to support brz-git on python3.
230
def import_git_tree(texts, mapping, path, name, hexshas,
7143.15.2 by Jelmer Vernooij
Run autopep8.
231
                    base_bzr_tree, parent_id, revision_id, parent_bzr_trees,
232
                    lookup_object, modes, store_updater,
233
                    lookup_file_id, allow_submodules=False):
0.200.151 by Jelmer Vernooij
Support converting git objects to bzr objects.
234
    """Import a git tree object into a bzr repository.
235
0.200.261 by Jelmer Vernooij
More formatting fixes.
236
    :param texts: VersionedFiles object to add to
0.200.984 by Jelmer Vernooij
Handle non-ascii characters in filenames.
237
    :param path: Path in the tree (str)
238
    :param name: Name of the tree (str)
0.200.151 by Jelmer Vernooij
Support converting git objects to bzr objects.
239
    :param tree: A git tree object
0.275.3 by Jelmer Vernooij
Avoid inventories in a few more places.
240
    :param base_bzr_tree: Base inventory against which to return inventory delta
0.229.1 by Jelmer Vernooij
Start working with inventory deltas.
241
    :return: Inventory delta for this subtree
0.200.151 by Jelmer Vernooij
Support converting git objects to bzr objects.
242
    """
6964.2.1 by Jelmer Vernooij
Initial work to support brz-git on python3.
243
    (base_hexsha, hexsha) = hexshas
244
    (base_mode, mode) = modes
7018.3.7 by Jelmer Vernooij
Fix remaining git tests.
245
    if not isinstance(path, bytes):
0.361.1 by Jelmer Vernooij
Don't use assert.
246
        raise TypeError(path)
7018.3.7 by Jelmer Vernooij
Fix remaining git tests.
247
    if not isinstance(name, bytes):
0.361.1 by Jelmer Vernooij
Don't use assert.
248
        raise TypeError(name)
0.200.817 by Jelmer Vernooij
Deal with all modes locally.
249
    if base_hexsha == hexsha and base_mode == mode:
250
        # If nothing has changed since the base revision, we're done
0.200.839 by Jelmer Vernooij
Add convenience object for updating the object store caching layer.
251
        return [], {}
0.200.344 by Jelmer Vernooij
Clarify names, use convenience function
252
    invdelta = []
7018.3.2 by Jelmer Vernooij
Fix some git tests.
253
    file_id = lookup_file_id(osutils.safe_unicode(path))
0.200.297 by Jelmer Vernooij
Cope with non-ascii characters in filenames (needs a test..).
254
    # We just have to hope this is indeed utf-8:
0.200.821 by Jelmer Vernooij
Remove last references to ID.children.
255
    ie = InventoryDirectory(file_id, name.decode("utf-8"), parent_id)
0.200.817 by Jelmer Vernooij
Deal with all modes locally.
256
    tree = lookup_object(hexsha)
257
    if base_hexsha is None:
258
        base_tree = None
7143.15.2 by Jelmer Vernooij
Run autopep8.
259
        old_path = None  # Newly appeared here
0.200.817 by Jelmer Vernooij
Deal with all modes locally.
260
    else:
261
        base_tree = lookup_object(base_hexsha)
7143.15.2 by Jelmer Vernooij
Run autopep8.
262
        old_path = path.decode("utf-8")  # Renames aren't supported yet
0.200.984 by Jelmer Vernooij
Handle non-ascii characters in filenames.
263
    new_path = path.decode("utf-8")
0.200.823 by Jelmer Vernooij
Simplify logic in import_git_tree a bit.
264
    if base_tree is None or type(base_tree) is not Tree:
265
        ie.revision = revision_id
0.200.984 by Jelmer Vernooij
Handle non-ascii characters in filenames.
266
        invdelta.append((old_path, new_path, ie.file_id, ie))
0.252.24 by Jelmer Vernooij
Support reading fileid map.
267
        texts.insert_record_stream([
268
            ChunkedContentFactory((ie.file_id, ie.revision), (), None, [])])
0.229.3 by Jelmer Vernooij
Use inventory deltas internally so fetch is O(changes) rather than O(tree).
269
    # Remember for next time
0.200.300 by Jelmer Vernooij
Fix recursive deletion of dirs.
270
    existing_children = set()
0.200.345 by Jelmer Vernooij
Keep track of file modes to use.
271
    child_modes = {}
0.200.1147 by Jelmer Vernooij
Use Tree.items() rather than Tree.entries().
272
    for name, child_mode, child_hexsha in tree.iteritems():
0.200.820 by Jelmer Vernooij
Avoid relying on InventoryDirectory.children.
273
        existing_children.add(name)
0.200.819 by Jelmer Vernooij
Avoid decoding basename twice.
274
        child_path = posixpath.join(path, name)
0.200.814 by Jelmer Vernooij
Avoid the use of InventoryDirectory.children. This speeds up
275
        if type(base_tree) is Tree:
276
            try:
277
                child_base_mode, child_base_hexsha = base_tree[name]
278
            except KeyError:
279
                child_base_hexsha = None
280
                child_base_mode = 0
281
        else:
282
            child_base_hexsha = None
283
            child_base_mode = 0
0.200.816 by Jelmer Vernooij
Leave mode handling for blobs to import_git_blob.
284
        if stat.S_ISDIR(child_mode):
0.252.25 by Jelmer Vernooij
Reformatting.
285
            subinvdelta, grandchildmodes = import_git_tree(texts, mapping,
7143.15.2 by Jelmer Vernooij
Run autopep8.
286
                                                           child_path, name, (
287
                                                               child_base_hexsha, child_hexsha),
288
                                                           base_bzr_tree, file_id, revision_id, parent_bzr_trees,
289
                                                           lookup_object, (
290
                                                               child_base_mode, child_mode), store_updater,
291
                                                           lookup_file_id, allow_submodules=allow_submodules)
292
        elif S_ISGITLINK(child_mode):  # submodule
0.200.666 by Jelmer Vernooij
Refuse to add tree references to non-subtree formats.
293
            if not allow_submodules:
294
                raise SubmodulesRequireSubtrees()
0.252.25 by Jelmer Vernooij
Reformatting.
295
            subinvdelta, grandchildmodes = import_git_submodule(texts, mapping,
7143.15.2 by Jelmer Vernooij
Run autopep8.
296
                                                                child_path, name, (
297
                                                                    child_base_hexsha, child_hexsha),
298
                                                                base_bzr_tree, file_id, revision_id, parent_bzr_trees,
299
                                                                lookup_object, (
300
                                                                    child_base_mode, child_mode), store_updater,
301
                                                                lookup_file_id)
0.200.352 by Jelmer Vernooij
Simplify mode handling.
302
        else:
0.200.1328 by Jelmer Vernooij
More test fixes.
303
            if not mapping.is_special_file(name):
304
                subinvdelta = import_git_blob(texts, mapping, child_path, name,
7143.15.2 by Jelmer Vernooij
Run autopep8.
305
                                              (child_base_hexsha,
306
                                               child_hexsha), base_bzr_tree, file_id,
307
                                              revision_id, parent_bzr_trees, lookup_object,
308
                                              (child_base_mode, child_mode), store_updater, lookup_file_id)
0.200.1328 by Jelmer Vernooij
More test fixes.
309
            else:
310
                subinvdelta = []
0.200.757 by Jelmer Vernooij
Use inventory deltas.
311
            grandchildmodes = {}
312
        child_modes.update(grandchildmodes)
313
        invdelta.extend(subinvdelta)
0.200.816 by Jelmer Vernooij
Leave mode handling for blobs to import_git_blob.
314
        if child_mode not in (stat.S_IFDIR, DEFAULT_FILE_MODE,
7143.15.2 by Jelmer Vernooij
Run autopep8.
315
                              stat.S_IFLNK, DEFAULT_FILE_MODE | 0o111,
316
                              S_IFGITLINK):
0.200.879 by Jelmer Vernooij
Fix unusual modes.
317
            child_modes[child_path] = child_mode
0.229.3 by Jelmer Vernooij
Use inventory deltas internally so fetch is O(changes) rather than O(tree).
318
    # Remove any children that have disappeared
0.200.817 by Jelmer Vernooij
Deal with all modes locally.
319
    if base_tree is not None and type(base_tree) is Tree:
0.275.3 by Jelmer Vernooij
Avoid inventories in a few more places.
320
        invdelta.extend(remove_disappeared_children(base_bzr_tree, old_path,
7143.15.2 by Jelmer Vernooij
Run autopep8.
321
                                                    base_tree, existing_children, lookup_object))
0.421.6 by Jelmer Vernooij
Some more simplifications.
322
    store_updater.add_object(tree, (file_id, revision_id), path)
0.200.839 by Jelmer Vernooij
Add convenience object for updating the object store caching layer.
323
    return invdelta, child_modes
0.200.151 by Jelmer Vernooij
Support converting git objects to bzr objects.
324
325
0.200.883 by Jelmer Vernooij
Add function for verifying reconstruction of objects still works.
326
def verify_commit_reconstruction(target_git_object_retriever, lookup_object,
7143.15.2 by Jelmer Vernooij
Run autopep8.
327
                                 o, rev, ret_tree, parent_trees, mapping, unusual_modes, verifiers):
0.200.883 by Jelmer Vernooij
Add function for verifying reconstruction of objects still works.
328
    new_unusual_modes = mapping.export_unusual_file_modes(rev)
329
    if new_unusual_modes != unusual_modes:
330
        raise AssertionError("unusual modes don't match: %r != %r" % (
331
            unusual_modes, new_unusual_modes))
332
    # Verify that we can reconstruct the commit properly
0.200.1047 by Jelmer Vernooij
Fix -Dverify.
333
    rec_o = target_git_object_retriever._reconstruct_commit(rev, o.tree, True,
7143.15.2 by Jelmer Vernooij
Run autopep8.
334
                                                            verifiers)
0.200.883 by Jelmer Vernooij
Add function for verifying reconstruction of objects still works.
335
    if rec_o != o:
336
        raise AssertionError("Reconstructed commit differs: %r != %r" % (
337
            rec_o, o))
338
    diff = []
339
    new_objs = {}
340
    for path, obj, ie in _tree_to_objects(ret_tree, parent_trees,
7143.15.2 by Jelmer Vernooij
Run autopep8.
341
                                          target_git_object_retriever._cache.idmap, unusual_modes,
342
                                          mapping.BZR_DUMMY_FILE):
0.200.883 by Jelmer Vernooij
Add function for verifying reconstruction of objects still works.
343
        old_obj_id = tree_lookup_path(lookup_object, o.tree, path)[1]
344
        new_objs[path] = obj
345
        if obj.id != old_obj_id:
346
            diff.append((path, lookup_object(old_obj_id), obj))
347
    for (path, old_obj, new_obj) in diff:
7143.15.2 by Jelmer Vernooij
Run autopep8.
348
        while (old_obj.type_name == "tree"
349
               and new_obj.type_name == "tree"
350
               and sorted(old_obj) == sorted(new_obj)):
0.200.883 by Jelmer Vernooij
Add function for verifying reconstruction of objects still works.
351
            for name in old_obj:
352
                if old_obj[name][0] != new_obj[name][0]:
0.252.25 by Jelmer Vernooij
Reformatting.
353
                    raise AssertionError("Modes for %s differ: %o != %o" %
7143.15.2 by Jelmer Vernooij
Run autopep8.
354
                                         (path, old_obj[name][0], new_obj[name][0]))
0.200.883 by Jelmer Vernooij
Add function for verifying reconstruction of objects still works.
355
                if old_obj[name][1] != new_obj[name][1]:
356
                    # Found a differing child, delve deeper
357
                    path = posixpath.join(path, name)
358
                    old_obj = lookup_object(old_obj[name][1])
359
                    new_obj = new_objs[path]
360
                    break
361
        raise AssertionError("objects differ for %s: %r != %r" % (path,
7143.15.2 by Jelmer Vernooij
Run autopep8.
362
                                                                  old_obj, new_obj))
0.200.883 by Jelmer Vernooij
Add function for verifying reconstruction of objects still works.
363
364
0.200.1409 by Jelmer Vernooij
Support fetching into repositories that are stacked.
365
def ensure_inventories_in_repo(repo, trees):
366
    real_inv_vf = repo.inventories.without_fallbacks()
367
    for t in trees:
368
        revid = t.get_revision_id()
369
        if not real_inv_vf.get_parent_map([(revid, )]):
6989.2.2 by Jelmer Vernooij
Fix a few tests against git repositories.
370
            repo.add_inventory(revid, t.root_inventory, t.get_parent_ids())
0.200.1409 by Jelmer Vernooij
Support fetching into repositories that are stacked.
371
372
0.200.679 by Jelmer Vernooij
Moving commit import functionality to a separate function.
373
def import_git_commit(repo, mapping, head, lookup_object,
0.200.852 by Jelmer Vernooij
Cache trees rather than inventories.
374
                      target_git_object_retriever, trees_cache):
0.200.679 by Jelmer Vernooij
Moving commit import functionality to a separate function.
375
    o = lookup_object(head)
0.261.5 by Jelmer Vernooij
Fix looking up of parents during fetch.
376
    # Note that this uses mapping.revision_id_foreign_to_bzr. If the parents
377
    # were bzr roundtripped revisions they would be specified in the
378
    # roundtrip data.
0.261.4 by Jelmer Vernooij
Fix tests.
379
    rev, roundtrip_revid, verifiers = mapping.import_commit(
0.261.5 by Jelmer Vernooij
Fix looking up of parents during fetch.
380
        o, mapping.revision_id_foreign_to_bzr)
0.200.1329 by Jelmer Vernooij
Fix more tests.
381
    if roundtrip_revid is not None:
382
        original_revid = rev.revision_id
383
        rev.revision_id = roundtrip_revid
0.200.679 by Jelmer Vernooij
Moving commit import functionality to a separate function.
384
    # We have to do this here, since we have to walk the tree and
385
    # we need to make sure to import the blobs / trees with the right
386
    # path; this may involve adding them more than once.
0.200.852 by Jelmer Vernooij
Cache trees rather than inventories.
387
    parent_trees = trees_cache.revision_trees(rev.parent_ids)
0.200.1409 by Jelmer Vernooij
Support fetching into repositories that are stacked.
388
    ensure_inventories_in_repo(repo, parent_trees)
0.200.852 by Jelmer Vernooij
Cache trees rather than inventories.
389
    if parent_trees == []:
0.275.3 by Jelmer Vernooij
Avoid inventories in a few more places.
390
        base_bzr_tree = trees_cache.revision_tree(NULL_REVISION)
0.200.814 by Jelmer Vernooij
Avoid the use of InventoryDirectory.children. This speeds up
391
        base_tree = None
0.200.817 by Jelmer Vernooij
Deal with all modes locally.
392
        base_mode = None
0.200.679 by Jelmer Vernooij
Moving commit import functionality to a separate function.
393
    else:
0.275.3 by Jelmer Vernooij
Avoid inventories in a few more places.
394
        base_bzr_tree = parent_trees[0]
0.200.814 by Jelmer Vernooij
Avoid the use of InventoryDirectory.children. This speeds up
395
        base_tree = lookup_object(o.parents[0]).tree
0.200.817 by Jelmer Vernooij
Deal with all modes locally.
396
        base_mode = stat.S_IFDIR
0.200.839 by Jelmer Vernooij
Add convenience object for updating the object store caching layer.
397
    store_updater = target_git_object_retriever._get_updater(rev)
0.200.1324 by Jelmer Vernooij
More work on roundtripping support.
398
    tree_supplement = mapping.get_fileid_map(lookup_object, o.tree)
0.200.839 by Jelmer Vernooij
Add convenience object for updating the object store caching layer.
399
    inv_delta, unusual_modes = import_git_tree(repo.texts,
7143.15.2 by Jelmer Vernooij
Run autopep8.
400
                                               mapping, b"", b"", (base_tree,
401
                                                                   o.tree), base_bzr_tree,
402
                                               None, rev.revision_id, parent_trees,
403
                                               lookup_object, (base_mode,
404
                                                               stat.S_IFDIR), store_updater,
405
                                               tree_supplement.lookup_file_id,
406
                                               allow_submodules=repo._format.supports_tree_reference)
0.200.679 by Jelmer Vernooij
Moving commit import functionality to a separate function.
407
    if unusual_modes != {}:
408
        for path, mode in unusual_modes.iteritems():
409
            warn_unusual_mode(rev.foreign_revid, path, mode)
410
        mapping.import_unusual_file_modes(rev, unusual_modes)
411
    try:
412
        basis_id = rev.parent_ids[0]
413
    except IndexError:
414
        basis_id = NULL_REVISION
0.275.3 by Jelmer Vernooij
Avoid inventories in a few more places.
415
        base_bzr_inventory = None
416
    else:
6989.2.2 by Jelmer Vernooij
Fix a few tests against git repositories.
417
        base_bzr_inventory = base_bzr_tree.root_inventory
0.200.679 by Jelmer Vernooij
Moving commit import functionality to a separate function.
418
    rev.inventory_sha1, inv = repo.add_inventory_by_delta(basis_id,
7143.15.2 by Jelmer Vernooij
Run autopep8.
419
                                                          inv_delta, rev.revision_id, rev.parent_ids,
420
                                                          base_bzr_inventory)
0.200.1195 by Jelmer Vernooij
Cope with new StrictTestament3 arguments.
421
    ret_tree = InventoryRevisionTree(repo, inv, rev.revision_id)
0.200.1329 by Jelmer Vernooij
Fix more tests.
422
    # Check verifiers
423
    if verifiers and roundtrip_revid is not None:
0.200.1559 by Jelmer Vernooij
Fix compatibility with bzr 2.5.
424
        testament = StrictTestament3(rev, ret_tree)
7143.15.2 by Jelmer Vernooij
Run autopep8.
425
        calculated_verifiers = {"testament3-sha1": testament.as_sha1()}
0.200.1329 by Jelmer Vernooij
Fix more tests.
426
        if calculated_verifiers != verifiers:
427
            trace.mutter("Testament SHA1 %r for %r did not match %r.",
428
                         calculated_verifiers["testament3-sha1"],
429
                         rev.revision_id, verifiers["testament3-sha1"])
430
            rev.revision_id = original_revid
431
            rev.inventory_sha1, inv = repo.add_inventory_by_delta(basis_id,
7143.15.2 by Jelmer Vernooij
Run autopep8.
432
                                                                  inv_delta, rev.revision_id, rev.parent_ids, base_bzr_tree)
0.200.1329 by Jelmer Vernooij
Fix more tests.
433
            ret_tree = InventoryRevisionTree(repo, inv, rev.revision_id)
0.200.1179 by Jelmer Vernooij
Avoid using verifiers for natively imported revisions, save a lot of time.
434
    else:
435
        calculated_verifiers = {}
0.200.1029 by Jelmer Vernooij
Use dictionary with verifiers rather than requiring testament3-sha1 everywhere.
436
    store_updater.add_object(o, calculated_verifiers, None)
437
    store_updater.finish()
0.200.883 by Jelmer Vernooij
Add function for verifying reconstruction of objects still works.
438
    trees_cache.add(ret_tree)
0.200.679 by Jelmer Vernooij
Moving commit import functionality to a separate function.
439
    repo.add_revision(rev.revision_id, rev)
440
    if "verify" in debug.debug_flags:
0.200.1636 by Jelmer Vernooij
Some formatting fixes.
441
        verify_commit_reconstruction(target_git_object_retriever,
7143.15.2 by Jelmer Vernooij
Run autopep8.
442
                                     lookup_object, o, rev, ret_tree, parent_trees, mapping,
443
                                     unusual_modes, verifiers)
0.200.679 by Jelmer Vernooij
Moving commit import functionality to a separate function.
444
445
0.248.5 by Jelmer Vernooij
Reformatting, fix dpush.
446
def import_git_objects(repo, mapping, object_iter,
7143.15.2 by Jelmer Vernooij
Run autopep8.
447
                       target_git_object_retriever, heads, pb=None, limit=None):
0.200.151 by Jelmer Vernooij
Support converting git objects to bzr objects.
448
    """Import a set of git objects into a bzr repository.
449
0.200.483 by Jelmer Vernooij
Add NEWS entry about sha map.
450
    :param repo: Target Bazaar repository
0.200.151 by Jelmer Vernooij
Support converting git objects to bzr objects.
451
    :param mapping: Mapping to use
452
    :param object_iter: Iterator over Git objects.
0.248.5 by Jelmer Vernooij
Reformatting, fix dpush.
453
    :return: Tuple with pack hints and last imported revision id
0.200.151 by Jelmer Vernooij
Support converting git objects to bzr objects.
454
    """
0.200.469 by Jelmer Vernooij
Fix fetch when revisions are already present locally, just only mapped.
455
    def lookup_object(sha):
456
        try:
457
            return object_iter[sha]
458
        except KeyError:
459
            return target_git_object_retriever[sha]
0.200.158 by Jelmer Vernooij
fetch works \o/
460
    graph = []
0.200.296 by Jelmer Vernooij
Avoid iterating over all objects just to find the *Commits* to retrieve.
461
    checked = set()
0.200.734 by Jelmer Vernooij
Don't import head revision twice when pulling from Git.
462
    heads = list(set(heads))
0.200.852 by Jelmer Vernooij
Cache trees rather than inventories.
463
    trees_cache = LRUTreeCache(repo)
0.200.151 by Jelmer Vernooij
Support converting git objects to bzr objects.
464
    # Find and convert commit objects
0.200.296 by Jelmer Vernooij
Avoid iterating over all objects just to find the *Commits* to retrieve.
465
    while heads:
466
        if pb is not None:
467
            pb.update("finding revisions to fetch", len(graph), None)
468
        head = heads.pop()
0.200.1350 by Jelmer Vernooij
Implement search_missing_revision_ids.
469
        if head == ZERO_SHA:
470
            continue
7018.3.7 by Jelmer Vernooij
Fix remaining git tests.
471
        if not isinstance(head, bytes):
0.361.1 by Jelmer Vernooij
Don't use assert.
472
            raise TypeError(head)
0.200.310 by Jelmer Vernooij
Fix pull from remote branches.
473
        try:
0.248.5 by Jelmer Vernooij
Reformatting, fix dpush.
474
            o = lookup_object(head)
0.200.310 by Jelmer Vernooij
Fix pull from remote branches.
475
        except KeyError:
476
            continue
0.200.151 by Jelmer Vernooij
Support converting git objects to bzr objects.
477
        if isinstance(o, Commit):
0.200.1029 by Jelmer Vernooij
Use dictionary with verifiers rather than requiring testament3-sha1 everywhere.
478
            rev, roundtrip_revid, verifiers = mapping.import_commit(o,
7143.15.2 by Jelmer Vernooij
Run autopep8.
479
                                                                    mapping.revision_id_foreign_to_bzr)
480
            if (repo.has_revision(rev.revision_id)
481
                    or (roundtrip_revid and repo.has_revision(roundtrip_revid))):
0.200.295 by Jelmer Vernooij
Don't re-import revisions already fetched.
482
                continue
0.200.668 by Jelmer Vernooij
Fix some places where we were way too much memory for repositories with a large number of entries in the inventory and a large number of revisions.
483
            graph.append((o.id, o.parents))
0.200.296 by Jelmer Vernooij
Avoid iterating over all objects just to find the *Commits* to retrieve.
484
            heads.extend([p for p in o.parents if p not in checked])
0.200.303 by Jelmer Vernooij
Cope with tags during fetch.
485
        elif isinstance(o, Tag):
0.200.734 by Jelmer Vernooij
Don't import head revision twice when pulling from Git.
486
            if o.object[1] not in checked:
487
                heads.append(o.object[1])
0.200.296 by Jelmer Vernooij
Avoid iterating over all objects just to find the *Commits* to retrieve.
488
        else:
489
            trace.warning("Unable to import head object %r" % o)
0.200.668 by Jelmer Vernooij
Fix some places where we were way too much memory for repositories with a large number of entries in the inventory and a large number of revisions.
490
        checked.add(o.id)
491
    del checked
0.200.158 by Jelmer Vernooij
fetch works \o/
492
    # Order the revisions
0.200.151 by Jelmer Vernooij
Support converting git objects to bzr objects.
493
    # Create the inventory objects
0.200.821 by Jelmer Vernooij
Remove last references to ID.children.
494
    batch_size = 1000
0.200.680 by Jelmer Vernooij
fetch revisions in batches
495
    revision_ids = topo_sort(graph)
496
    pack_hints = []
0.247.2 by Michael Hudson
this works for my tests, but i'm pretty sure it's wrong in general
497
    if limit is not None:
498
        revision_ids = revision_ids[:limit]
0.247.3 by Michael Hudson
oh, so it wasn't (particularly) wrong, but it was a bit obscure
499
    last_imported = None
0.200.680 by Jelmer Vernooij
fetch revisions in batches
500
    for offset in range(0, len(revision_ids), batch_size):
0.200.1636 by Jelmer Vernooij
Some formatting fixes.
501
        target_git_object_retriever.start_write_group()
0.200.680 by Jelmer Vernooij
fetch revisions in batches
502
        try:
0.254.33 by Jelmer Vernooij
Merge trunk.
503
            repo.start_write_group()
504
            try:
0.200.824 by Jelmer Vernooij
Commit cache data in batches as well.
505
                for i, head in enumerate(
7143.15.2 by Jelmer Vernooij
Run autopep8.
506
                        revision_ids[offset:offset + batch_size]):
0.254.33 by Jelmer Vernooij
Merge trunk.
507
                    if pb is not None:
7143.15.2 by Jelmer Vernooij
Run autopep8.
508
                        pb.update("fetching revisions", offset + i,
0.200.824 by Jelmer Vernooij
Commit cache data in batches as well.
509
                                  len(revision_ids))
0.254.33 by Jelmer Vernooij
Merge trunk.
510
                    import_git_commit(repo, mapping, head, lookup_object,
7143.15.2 by Jelmer Vernooij
Run autopep8.
511
                                      target_git_object_retriever, trees_cache)
0.254.33 by Jelmer Vernooij
Merge trunk.
512
                    last_imported = head
513
            except:
514
                repo.abort_write_group()
515
                raise
516
            else:
517
                hint = repo.commit_write_group()
518
                if hint is not None:
519
                    pack_hints.extend(hint)
0.200.680 by Jelmer Vernooij
fetch revisions in batches
520
        except:
0.254.33 by Jelmer Vernooij
Merge trunk.
521
            target_git_object_retriever.abort_write_group()
0.200.680 by Jelmer Vernooij
fetch revisions in batches
522
            raise
523
        else:
0.254.33 by Jelmer Vernooij
Merge trunk.
524
            target_git_object_retriever.commit_write_group()
0.247.2 by Michael Hudson
this works for my tests, but i'm pretty sure it's wrong in general
525
    return pack_hints, last_imported
0.200.141 by Jelmer Vernooij
Separate out local and remote fetching.
526
527
0.200.1001 by Jelmer Vernooij
Simplify handling of determine wants, add stub for fetch_objects().
528
class DetermineWantsRecorder(object):
529
530
    def __init__(self, actual):
531
        self.actual = actual
532
        self.wants = []
533
        self.remote_refs = {}
534
535
    def __call__(self, refs):
0.361.1 by Jelmer Vernooij
Don't use assert.
536
        if type(refs) is not dict:
537
            raise TypeError(refs)
0.200.1001 by Jelmer Vernooij
Simplify handling of determine wants, add stub for fetch_objects().
538
        self.remote_refs = refs
539
        self.wants = self.actual(refs)
540
        return self.wants