~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/vf_repository.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-08-17 18:13:57 UTC
  • mfrom: (5268.7.29 transport-segments)
  • Revision ID: pqm@pqm.ubuntu.com-20110817181357-y5q5eth1hk8bl3om
(jelmer) Allow specifying the colocated branch to use in the branch URL,
 and retrieving the branch name using ControlDir._get_selected_branch.
 (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Repository formats built around versioned files."""
18
18
 
19
 
from __future__ import absolute_import
20
 
 
21
19
 
22
20
from bzrlib.lazy_import import lazy_import
23
21
lazy_import(globals(), """
25
23
 
26
24
from bzrlib import (
27
25
    check,
28
 
    config as _mod_config,
29
26
    debug,
30
27
    fetch as _mod_fetch,
31
28
    fifo_cache,
41
38
    tsort,
42
39
    ui,
43
40
    versionedfile,
44
 
    vf_search,
45
41
    )
46
42
 
47
43
from bzrlib.recordcounter import RecordCounter
48
44
from bzrlib.revisiontree import InventoryRevisionTree
49
45
from bzrlib.testament import Testament
50
 
from bzrlib.i18n import gettext
51
46
""")
52
47
 
53
48
from bzrlib import (
69
64
    CommitBuilder,
70
65
    InterRepository,
71
66
    MetaDirRepository,
72
 
    RepositoryFormatMetaDir,
 
67
    MetaDirRepositoryFormat,
73
68
    Repository,
74
69
    RepositoryFormat,
75
70
    )
76
71
 
77
72
from bzrlib.trace import (
78
 
    mutter
 
73
    mutter,
79
74
    )
80
75
 
81
76
 
84
79
 
85
80
    supports_full_versioned_files = True
86
81
    supports_versioned_directories = True
87
 
    supports_unreferenced_revisions = True
88
82
 
89
83
    # Should commit add an inventory, or an inventory delta to the repository.
90
84
    _commit_inv_deltas = True
109
103
    # the default CommitBuilder does not manage trees whose root is versioned.
110
104
    _versioned_root = False
111
105
 
112
 
    def __init__(self, repository, parents, config_stack, timestamp=None,
 
106
    def __init__(self, repository, parents, config, timestamp=None,
113
107
                 timezone=None, committer=None, revprops=None,
114
108
                 revision_id=None, lossy=False):
115
109
        super(VersionedFileCommitBuilder, self).__init__(repository,
116
 
            parents, config_stack, timestamp, timezone, committer, revprops,
 
110
            parents, config, timestamp, timezone, committer, revprops,
117
111
            revision_id, lossy)
118
112
        try:
119
113
            basis_id = self.parents[0]
200
194
                       revision_id=self._new_revision_id,
201
195
                       properties=self._revprops)
202
196
        rev.parent_ids = self.parents
203
 
        if self._config_stack.get('create_signatures') == _mod_config.SIGN_ALWAYS:
204
 
            testament = Testament(rev, self.revision_tree())
205
 
            plaintext = testament.as_short_text()
206
 
            self.repository.store_revision_signature(
207
 
                gpg.GPGStrategy(self._config_stack), plaintext,
208
 
                self._new_revision_id)
209
 
        self.repository._add_revision(rev)
 
197
        self.repository.add_revision(self._new_revision_id, rev,
 
198
            self.new_inventory, self._config)
210
199
        self._ensure_fallback_inventories()
211
200
        self.repository.commit_write_group()
212
201
        return self._new_revision_id
430
419
                return None, False, None
431
420
        # XXX: Friction: parent_candidates should return a list not a dict
432
421
        #      so that we don't have to walk the inventories again.
433
 
        parent_candidate_entries = ie.parent_candidates(parent_invs)
434
 
        head_set = self._heads(ie.file_id, parent_candidate_entries.keys())
 
422
        parent_candiate_entries = ie.parent_candidates(parent_invs)
 
423
        head_set = self._heads(ie.file_id, parent_candiate_entries.keys())
435
424
        heads = []
436
425
        for inv in parent_invs:
437
426
            if inv.has_id(ie.file_id):
452
441
            store = True
453
442
        if not store:
454
443
            # There is a single head, look it up for comparison
455
 
            parent_entry = parent_candidate_entries[heads[0]]
 
444
            parent_entry = parent_candiate_entries[heads[0]]
456
445
            # if the non-content specific data has changed, we'll be writing a
457
446
            # node:
458
447
            if (parent_entry.parent_id != ie.parent_id or
570
559
        :param iter_changes: An iter_changes iterator with the changes to apply
571
560
            to basis_revision_id. The iterator must not include any items with
572
561
            a current kind of None - missing items must be either filtered out
573
 
            or errored-on before record_iter_changes sees the item.
 
562
            or errored-on beefore record_iter_changes sees the item.
574
563
        :param _entry_factory: Private method to bind entry_factory locally for
575
564
            performance.
576
565
        :return: A generator of (file_id, relpath, fs_hash) tuples for use with
604
593
                        _mod_revision.NULL_REVISION))
605
594
        # The basis inventory from a repository 
606
595
        if revtrees:
607
 
            basis_tree = revtrees[0]
 
596
            basis_inv = revtrees[0].inventory
608
597
        else:
609
 
            basis_tree = self.repository.revision_tree(
610
 
                _mod_revision.NULL_REVISION)
611
 
        basis_inv = basis_tree.root_inventory
 
598
            basis_inv = self.repository.revision_tree(
 
599
                _mod_revision.NULL_REVISION).inventory
612
600
        if len(self.parents) > 0:
613
601
            if basis_revision_id != self.parents[0] and not ghost_basis:
614
602
                raise Exception(
615
603
                    "arbitrary basis parents not yet supported with merges")
616
604
            for revtree in revtrees[1:]:
617
 
                for change in revtree.root_inventory._make_delta(basis_inv):
 
605
                for change in revtree.inventory._make_delta(basis_inv):
618
606
                    if change[1] is None:
619
607
                        # Not present in this parent.
620
608
                        continue
930
918
        """
931
919
        if not self._format.supports_external_lookups:
932
920
            raise errors.UnstackableRepositoryFormat(self._format, self.base)
933
 
        # This can raise an exception, so should be done before we lock the
934
 
        # fallback repository.
935
 
        self._check_fallback_repository(repository)
936
921
        if self.is_locked():
937
922
            # This repository will call fallback.unlock() when we transition to
938
923
            # the unlocked state, so we make sure to increment the lock count
939
924
            repository.lock_read()
 
925
        self._check_fallback_repository(repository)
940
926
        self._fallback_repositories.append(repository)
941
927
        self.texts.add_fallback_versioned_files(repository.texts)
942
928
        self.inventories.add_fallback_versioned_files(repository.inventories)
1022
1008
            # return a new inventory, but as there is no revision tree cache in
1023
1009
            # repository this is safe for now - RBC 20081013
1024
1010
            if basis_inv is None:
1025
 
                basis_inv = basis_tree.root_inventory
 
1011
                basis_inv = basis_tree.inventory
1026
1012
            basis_inv.apply_delta(delta)
1027
1013
            basis_inv.revision_id = new_revision_id
1028
1014
            return (self.add_inventory(new_revision_id, basis_inv, parents),
1039
1025
        self.inventories._access.flush()
1040
1026
        return result
1041
1027
 
1042
 
    def add_revision(self, revision_id, rev, inv=None):
 
1028
    def add_revision(self, revision_id, rev, inv=None, config=None):
1043
1029
        """Add rev to the revision store as revision_id.
1044
1030
 
1045
1031
        :param revision_id: the revision id to use.
1046
1032
        :param rev: The revision object.
1047
1033
        :param inv: The inventory for the revision. if None, it will be looked
1048
1034
                    up in the inventory storer
 
1035
        :param config: If None no digital signature will be created.
 
1036
                       If supplied its signature_needed method will be used
 
1037
                       to determine if a signature should be made.
1049
1038
        """
1050
1039
        # TODO: jam 20070210 Shouldn't we check rev.revision_id and
1051
1040
        #       rev.parent_ids?
1052
1041
        _mod_revision.check_not_reserved_id(revision_id)
 
1042
        if config is not None and config.signature_needed():
 
1043
            if inv is None:
 
1044
                inv = self.get_inventory(revision_id)
 
1045
            tree = InventoryRevisionTree(self, inv, revision_id)
 
1046
            testament = Testament(rev, tree)
 
1047
            plaintext = testament.as_short_text()
 
1048
            self.store_revision_signature(
 
1049
                gpg.GPGStrategy(config), plaintext, revision_id)
1053
1050
        # check inventory present
1054
1051
        if not self.inventories.get_parent_map([(revision_id,)]):
1055
1052
            if inv is None:
1088
1085
        keys = {'chk_bytes':set(), 'inventories':set(), 'texts':set()}
1089
1086
        kinds = ['chk_bytes', 'texts']
1090
1087
        count = len(checker.pending_keys)
1091
 
        bar.update(gettext("inventories"), 0, 2)
 
1088
        bar.update("inventories", 0, 2)
1092
1089
        current_keys = checker.pending_keys
1093
1090
        checker.pending_keys = {}
1094
1091
        # Accumulate current checks.
1114
1111
            del keys['inventories']
1115
1112
        else:
1116
1113
            return
1117
 
        bar.update(gettext("texts"), 1)
 
1114
        bar.update("texts", 1)
1118
1115
        while (checker.pending_keys or keys['chk_bytes']
1119
1116
            or keys['texts']):
1120
1117
            # Something to check.
1199
1196
        """Instantiate a VersionedFileRepository.
1200
1197
 
1201
1198
        :param _format: The format of the repository on disk.
1202
 
        :param controldir: The ControlDir of the repository.
 
1199
        :param a_bzrdir: The BzrDir of the repository.
1203
1200
        :param control_files: Control files to use for locking, etc.
1204
1201
        """
1205
1202
        # In the future we will have a single api for all stores for
1207
1204
        # this construct will accept instances of those things.
1208
1205
        super(VersionedFileRepository, self).__init__(_format, a_bzrdir,
1209
1206
            control_files)
1210
 
        self._transport = control_files._transport
1211
 
        self.base = self._transport.base
1212
1207
        # for tests
1213
1208
        self._reconcile_does_inventory_gc = True
1214
1209
        self._reconcile_fixes_text_parents = False
1219
1214
        # rather copying them?
1220
1215
        self._safe_to_return_from_cache = False
1221
1216
 
1222
 
    def fetch(self, source, revision_id=None, find_ghosts=False,
1223
 
            fetch_spec=None):
1224
 
        """Fetch the content required to construct revision_id from source.
1225
 
 
1226
 
        If revision_id is None and fetch_spec is None, then all content is
1227
 
        copied.
1228
 
 
1229
 
        fetch() may not be used when the repository is in a write group -
1230
 
        either finish the current write group before using fetch, or use
1231
 
        fetch before starting the write group.
1232
 
 
1233
 
        :param find_ghosts: Find and copy revisions in the source that are
1234
 
            ghosts in the target (and not reachable directly by walking out to
1235
 
            the first-present revision in target from revision_id).
1236
 
        :param revision_id: If specified, all the content needed for this
1237
 
            revision ID will be copied to the target.  Fetch will determine for
1238
 
            itself which content needs to be copied.
1239
 
        :param fetch_spec: If specified, a SearchResult or
1240
 
            PendingAncestryResult that describes which revisions to copy.  This
1241
 
            allows copying multiple heads at once.  Mutually exclusive with
1242
 
            revision_id.
1243
 
        """
1244
 
        if fetch_spec is not None and revision_id is not None:
1245
 
            raise AssertionError(
1246
 
                "fetch_spec and revision_id are mutually exclusive.")
1247
 
        if self.is_in_write_group():
1248
 
            raise errors.InternalBzrError(
1249
 
                "May not fetch while in a write group.")
1250
 
        # fast path same-url fetch operations
1251
 
        # TODO: lift out to somewhere common with RemoteRepository
1252
 
        # <https://bugs.launchpad.net/bzr/+bug/401646>
1253
 
        if (self.has_same_location(source)
1254
 
            and fetch_spec is None
1255
 
            and self._has_same_fallbacks(source)):
1256
 
            # check that last_revision is in 'from' and then return a
1257
 
            # no-operation.
1258
 
            if (revision_id is not None and
1259
 
                not _mod_revision.is_null(revision_id)):
1260
 
                self.get_revision(revision_id)
1261
 
            return 0, []
1262
 
        inter = InterRepository.get(source, self)
1263
 
        if (fetch_spec is not None and
1264
 
            not getattr(inter, "supports_fetch_spec", False)):
1265
 
            raise errors.UnsupportedOperation(
1266
 
                "fetch_spec not supported for %r" % inter)
1267
 
        return inter.fetch(revision_id=revision_id,
1268
 
            find_ghosts=find_ghosts, fetch_spec=fetch_spec)
1269
 
 
1270
1217
    @needs_read_lock
1271
1218
    def gather_stats(self, revid=None, committers=None):
1272
1219
        """See Repository.gather_stats()."""
1281
1228
            # result['size'] = t
1282
1229
        return result
1283
1230
 
1284
 
    def get_commit_builder(self, branch, parents, config_stack, timestamp=None,
 
1231
    def get_commit_builder(self, branch, parents, config, timestamp=None,
1285
1232
                           timezone=None, committer=None, revprops=None,
1286
1233
                           revision_id=None, lossy=False):
1287
1234
        """Obtain a CommitBuilder for this repository.
1288
1235
 
1289
1236
        :param branch: Branch to commit to.
1290
1237
        :param parents: Revision ids of the parents of the new revision.
1291
 
        :param config_stack: Configuration stack to use.
 
1238
        :param config: Configuration to use.
1292
1239
        :param timestamp: Optional timestamp recorded for commit.
1293
1240
        :param timezone: Optional timezone for timestamp.
1294
1241
        :param committer: Optional committer to set for commit.
1301
1248
            raise errors.BzrError("Cannot commit directly to a stacked branch"
1302
1249
                " in pre-2a formats. See "
1303
1250
                "https://bugs.launchpad.net/bzr/+bug/375013 for details.")
1304
 
        result = self._commit_builder_class(self, parents, config_stack,
 
1251
        result = self._commit_builder_class(self, parents, config,
1305
1252
            timestamp, timezone, committer, revprops, revision_id,
1306
1253
            lossy)
1307
1254
        self.start_write_group()
1563
1510
            text_keys[(file_id, revision_id)] = callable_data
1564
1511
        for record in self.texts.get_record_stream(text_keys, 'unordered', True):
1565
1512
            if record.storage_kind == 'absent':
1566
 
                raise errors.RevisionNotPresent(record.key[1], record.key[0])
 
1513
                raise errors.RevisionNotPresent(record.key, self)
1567
1514
            yield text_keys[record.key], record.get_bytes_as('chunked')
1568
1515
 
1569
1516
    def _generate_text_key_index(self, text_key_references=None,
1619
1566
        batch_size = 10 # should be ~150MB on a 55K path tree
1620
1567
        batch_count = len(revision_order) / batch_size + 1
1621
1568
        processed_texts = 0
1622
 
        pb.update(gettext("Calculating text parents"), processed_texts, text_count)
 
1569
        pb.update("Calculating text parents", processed_texts, text_count)
1623
1570
        for offset in xrange(batch_count):
1624
1571
            to_query = revision_order[offset * batch_size:(offset + 1) *
1625
1572
                batch_size]
1628
1575
            for revision_id in to_query:
1629
1576
                parent_ids = ancestors[revision_id]
1630
1577
                for text_key in revision_keys[revision_id]:
1631
 
                    pb.update(gettext("Calculating text parents"), processed_texts)
 
1578
                    pb.update("Calculating text parents", processed_texts)
1632
1579
                    processed_texts += 1
1633
1580
                    candidate_parents = []
1634
1581
                    for parent_id in parent_ids:
1648
1595
                            try:
1649
1596
                                inv = inventory_cache[parent_id]
1650
1597
                            except KeyError:
1651
 
                                inv = self.revision_tree(parent_id).root_inventory
 
1598
                                inv = self.revision_tree(parent_id).inventory
1652
1599
                                inventory_cache[parent_id] = inv
1653
1600
                            try:
1654
1601
                                parent_entry = inv[text_key[0]]
1704
1651
        num_file_ids = len(file_ids)
1705
1652
        for file_id, altered_versions in file_ids.iteritems():
1706
1653
            if pb is not None:
1707
 
                pb.update(gettext("Fetch texts"), count, num_file_ids)
 
1654
                pb.update("Fetch texts", count, num_file_ids)
1708
1655
            count += 1
1709
1656
            yield ("file", file_id, altered_versions)
1710
1657
 
1747
1694
        if ((None in revision_ids)
1748
1695
            or (_mod_revision.NULL_REVISION in revision_ids)):
1749
1696
            raise ValueError('cannot get null revision inventory')
1750
 
        for inv, revid in self._iter_inventories(revision_ids, ordering):
1751
 
            if inv is None:
1752
 
                raise errors.NoSuchRevision(self, revid)
1753
 
            yield inv
 
1697
        return self._iter_inventories(revision_ids, ordering)
1754
1698
 
1755
1699
    def _iter_inventories(self, revision_ids, ordering):
1756
1700
        """single-document based inventory iteration."""
1757
1701
        inv_xmls = self._iter_inventory_xmls(revision_ids, ordering)
1758
1702
        for text, revision_id in inv_xmls:
1759
 
            if text is None:
1760
 
                yield None, revision_id
1761
 
            else:
1762
 
                yield self._deserialise_inventory(revision_id, text), revision_id
 
1703
            yield self._deserialise_inventory(revision_id, text)
1763
1704
 
1764
1705
    def _iter_inventory_xmls(self, revision_ids, ordering):
1765
1706
        if ordering is None:
1783
1724
                else:
1784
1725
                    yield ''.join(chunks), record.key[-1]
1785
1726
            else:
1786
 
                yield None, record.key[-1]
 
1727
                raise errors.NoSuchRevision(self, record.key)
1787
1728
            if order_as_requested:
1788
1729
                # Yield as many results as we can while preserving order.
1789
1730
                while next_key in text_chunks:
1818
1759
    def _get_inventory_xml(self, revision_id):
1819
1760
        """Get serialized inventory as a string."""
1820
1761
        texts = self._iter_inventory_xmls([revision_id], 'unordered')
1821
 
        text, revision_id = texts.next()
1822
 
        if text is None:
1823
 
            raise errors.NoSuchRevision(self, revision_id)
 
1762
        try:
 
1763
            text, revision_id = texts.next()
 
1764
        except StopIteration:
 
1765
            raise errors.HistoryMissing(self, 'inventory', revision_id)
1824
1766
        return text
1825
1767
 
1826
1768
    @needs_read_lock
1901
1843
        """Return the graph walker for text revisions."""
1902
1844
        return graph.Graph(self.texts)
1903
1845
 
1904
 
    def revision_ids_to_search_result(self, result_set):
1905
 
        """Convert a set of revision ids to a graph SearchResult."""
1906
 
        result_parents = set()
1907
 
        for parents in self.get_graph().get_parent_map(
1908
 
            result_set).itervalues():
1909
 
            result_parents.update(parents)
1910
 
        included_keys = result_set.intersection(result_parents)
1911
 
        start_keys = result_set.difference(included_keys)
1912
 
        exclude_keys = result_parents.difference(result_set)
1913
 
        result = vf_search.SearchResult(start_keys, exclude_keys,
1914
 
            len(result_set), result_set)
1915
 
        return result
1916
 
 
1917
1846
    def _get_versioned_file_checker(self, text_key_references=None,
1918
1847
        ancestors=None):
1919
1848
        """Return an object suitable for checking versioned files.
2004
1933
            control_files)
2005
1934
 
2006
1935
 
2007
 
class MetaDirVersionedFileRepositoryFormat(RepositoryFormatMetaDir,
 
1936
class MetaDirVersionedFileRepositoryFormat(MetaDirRepositoryFormat,
2008
1937
        VersionedFileRepositoryFormat):
2009
1938
    """Base class for repository formats using versioned files in metadirs."""
2010
1939
 
2442
2371
        invs_sent_so_far = set([_mod_revision.NULL_REVISION])
2443
2372
        inventory_cache = lru_cache.LRUCache(50)
2444
2373
        null_inventory = from_repo.revision_tree(
2445
 
            _mod_revision.NULL_REVISION).root_inventory
 
2374
            _mod_revision.NULL_REVISION).inventory
2446
2375
        # XXX: ideally the rich-root/tree-refs flags would be per-revision, not
2447
2376
        # per-repo (e.g.  streaming a non-rich-root revision out of a rich-root
2448
2377
        # repo back into a non-rich-root repo ought to be allowed)
2533
2462
            self.text_index.iterkeys()])
2534
2463
        # text keys is now grouped by file_id
2535
2464
        n_versions = len(self.text_index)
2536
 
        progress_bar.update(gettext('loading text store'), 0, n_versions)
 
2465
        progress_bar.update('loading text store', 0, n_versions)
2537
2466
        parent_map = self.repository.texts.get_parent_map(self.text_index)
2538
2467
        # On unlistable transports this could well be empty/error...
2539
2468
        text_keys = self.repository.texts.keys()
2540
2469
        unused_keys = frozenset(text_keys) - set(self.text_index)
2541
2470
        for num, key in enumerate(self.text_index.iterkeys()):
2542
 
            progress_bar.update(gettext('checking text graph'), num, n_versions)
 
2471
            progress_bar.update('checking text graph', num, n_versions)
2543
2472
            correct_parents = self.calculate_file_version_parents(key)
2544
2473
            try:
2545
2474
                knit_parents = parent_map[key]
2555
2484
 
2556
2485
    _walk_to_common_revisions_batch_size = 50
2557
2486
 
2558
 
    supports_fetch_spec = True
2559
 
 
2560
2487
    @needs_write_lock
2561
2488
    def fetch(self, revision_id=None, find_ghosts=False,
2562
2489
            fetch_spec=None):
2638
2565
                searcher.stop_searching_any(stop_revs)
2639
2566
            if searcher_exhausted:
2640
2567
                break
2641
 
        (started_keys, excludes, included_keys) = searcher.get_state()
2642
 
        return vf_search.SearchResult(started_keys, excludes,
2643
 
            len(included_keys), included_keys)
 
2568
        return searcher.get_result()
2644
2569
 
2645
2570
    @needs_read_lock
2646
2571
    def search_missing_revision_ids(self,
2795
2720
        """
2796
2721
        deltas = []
2797
2722
        # Generate deltas against each tree, to find the shortest.
2798
 
        # FIXME: Support nested trees
2799
2723
        texts_possibly_new_in_tree = set()
2800
2724
        for basis_id, basis_tree in possible_trees:
2801
 
            delta = tree.root_inventory._make_delta(basis_tree.root_inventory)
 
2725
            delta = tree.inventory._make_delta(basis_tree.inventory)
2802
2726
            for old_path, new_path, file_id, new_entry in delta:
2803
2727
                if new_path is None:
2804
2728
                    # This file_id isn't present in the new rev, so we don't
2841
2765
            parents_parents = [key[-1] for key in parents_parents_keys]
2842
2766
            basis_id = _mod_revision.NULL_REVISION
2843
2767
            basis_tree = self.source.revision_tree(basis_id)
2844
 
            delta = parent_tree.root_inventory._make_delta(
2845
 
                basis_tree.root_inventory)
 
2768
            delta = parent_tree.inventory._make_delta(basis_tree.inventory)
2846
2769
            self.target.add_inventory_by_delta(
2847
2770
                basis_id, delta, current_revision_id, parents_parents)
2848
2771
            cache[current_revision_id] = parent_tree
2907
2830
                kind = entry.kind
2908
2831
                texts_possibly_new_in_tree.add((file_id, entry.revision))
2909
2832
            for basis_id, basis_tree in possible_trees:
2910
 
                basis_inv = basis_tree.root_inventory
 
2833
                basis_inv = basis_tree.inventory
2911
2834
                for file_key in list(texts_possibly_new_in_tree):
2912
2835
                    file_id, file_revision = file_key
2913
2836
                    try:
2995
2918
        for offset in range(0, len(revision_ids), batch_size):
2996
2919
            self.target.start_write_group()
2997
2920
            try:
2998
 
                pb.update(gettext('Transferring revisions'), offset,
 
2921
                pb.update('Transferring revisions', offset,
2999
2922
                          len(revision_ids))
3000
2923
                batch = revision_ids[offset:offset+batch_size]
3001
2924
                basis_id = self._fetch_batch(batch, basis_id, cache)
3009
2932
                    hints.extend(hint)
3010
2933
        if hints and self.target._format.pack_compresses:
3011
2934
            self.target.pack(hint=hints)
3012
 
        pb.update(gettext('Transferring revisions'), len(revision_ids),
 
2935
        pb.update('Transferring revisions', len(revision_ids),
3013
2936
                  len(revision_ids))
3014
2937
 
3015
2938
    @needs_write_lock
3124
3047
            _install_revision(repository, revision, revision_tree, signature,
3125
3048
                inventory_cache)
3126
3049
            if pb is not None:
3127
 
                pb.update(gettext('Transferring revisions'), n + 1, num_revisions)
 
3050
                pb.update('Transferring revisions', n + 1, num_revisions)
3128
3051
    except:
3129
3052
        repository.abort_write_group()
3130
3053
        raise
3145
3068
            parent_trees[p_id] = repository.revision_tree(
3146
3069
                                     _mod_revision.NULL_REVISION)
3147
3070
 
3148
 
    # FIXME: Support nested trees
3149
 
    inv = revision_tree.root_inventory
 
3071
    inv = revision_tree.inventory
3150
3072
    entries = inv.iter_entries()
3151
3073
    # backwards compatibility hack: skip the root id.
3152
3074
    if not repository.supports_rich_root():