~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: John Arbash Meinel
  • Date: 2008-09-09 15:09:12 UTC
  • mto: This revision was merged to the branch mainline in revision 3699.
  • Revision ID: john@arbash-meinel.com-20080909150912-wyttm8he1zsls2ck
Use the right timing function on win32

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2007, 2008, 2009 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007, 2008 Canonical Ltd
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
from cStringIO import StringIO
16
18
 
17
19
from bzrlib.lazy_import import lazy_import
18
20
lazy_import(globals(), """
19
 
import cStringIO
20
21
import re
21
22
import time
22
23
 
23
24
from bzrlib import (
24
25
    bzrdir,
25
26
    check,
26
 
    chk_map,
27
27
    debug,
28
28
    errors,
29
 
    fifo_cache,
30
29
    generate_ids,
31
30
    gpg,
32
31
    graph,
33
 
    inventory,
34
 
    inventory_delta,
35
32
    lazy_regex,
36
33
    lockable_files,
37
34
    lockdir,
38
35
    lru_cache,
39
36
    osutils,
 
37
    registry,
 
38
    remote,
40
39
    revision as _mod_revision,
41
40
    symbol_versioning,
 
41
    transactions,
42
42
    tsort,
43
43
    ui,
44
 
    versionedfile,
45
44
    )
46
45
from bzrlib.bundle import serializer
47
46
from bzrlib.revisiontree import RevisionTree
48
47
from bzrlib.store.versioned import VersionedFileStore
 
48
from bzrlib.store.text import TextStore
49
49
from bzrlib.testament import Testament
 
50
from bzrlib.util import bencode
50
51
""")
51
52
 
52
53
from bzrlib.decorators import needs_read_lock, needs_write_lock
53
54
from bzrlib.inter import InterObject
54
 
from bzrlib.inventory import (
55
 
    Inventory,
56
 
    InventoryDirectory,
57
 
    ROOT_ID,
58
 
    entry_factory,
59
 
    )
60
 
from bzrlib import registry
61
 
from bzrlib.trace import (
62
 
    log_exception_quietly, note, mutter, mutter_callsite, warning)
 
55
from bzrlib.inventory import Inventory, InventoryDirectory, ROOT_ID
 
56
from bzrlib.symbol_versioning import (
 
57
        deprecated_method,
 
58
        one_one,
 
59
        one_two,
 
60
        one_three,
 
61
        one_six,
 
62
        )
 
63
from bzrlib.trace import mutter, mutter_callsite, note, warning
63
64
 
64
65
 
65
66
# Old formats display a warning, but only once
69
70
class CommitBuilder(object):
70
71
    """Provides an interface to build up a commit.
71
72
 
72
 
    This allows describing a tree to be committed without needing to
 
73
    This allows describing a tree to be committed without needing to 
73
74
    know the internals of the format of the repository.
74
75
    """
75
 
 
 
76
    
76
77
    # all clients should supply tree roots.
77
78
    record_root_entry = True
78
79
    # the default CommitBuilder does not manage trees whose root is versioned.
106
107
 
107
108
        self._revprops = {}
108
109
        if revprops is not None:
109
 
            self._validate_revprops(revprops)
110
110
            self._revprops.update(revprops)
111
111
 
112
112
        if timestamp is None:
121
121
 
122
122
        self._generate_revision_if_needed()
123
123
        self.__heads = graph.HeadsCache(repository.get_graph()).heads
124
 
        self._basis_delta = []
125
 
        # API compatibility, older code that used CommitBuilder did not call
126
 
        # .record_delete(), which means the delta that is computed would not be
127
 
        # valid. Callers that will call record_delete() should call
128
 
        # .will_record_deletes() to indicate that.
129
 
        self._recording_deletes = False
130
 
        # memo'd check for no-op commits.
131
 
        self._any_changes = False
132
 
 
133
 
    def any_changes(self):
134
 
        """Return True if any entries were changed.
135
 
        
136
 
        This includes merge-only changes. It is the core for the --unchanged
137
 
        detection in commit.
138
 
 
139
 
        :return: True if any changes have occured.
140
 
        """
141
 
        return self._any_changes
142
 
 
143
 
    def _validate_unicode_text(self, text, context):
144
 
        """Verify things like commit messages don't have bogus characters."""
145
 
        if '\r' in text:
146
 
            raise ValueError('Invalid value for %s: %r' % (context, text))
147
 
 
148
 
    def _validate_revprops(self, revprops):
149
 
        for key, value in revprops.iteritems():
150
 
            # We know that the XML serializers do not round trip '\r'
151
 
            # correctly, so refuse to accept them
152
 
            if not isinstance(value, basestring):
153
 
                raise ValueError('revision property (%s) is not a valid'
154
 
                                 ' (unicode) string: %r' % (key, value))
155
 
            self._validate_unicode_text(value,
156
 
                                        'revision property (%s)' % (key,))
157
124
 
158
125
    def commit(self, message):
159
126
        """Make the actual commit.
160
127
 
161
128
        :return: The revision id of the recorded revision.
162
129
        """
163
 
        self._validate_unicode_text(message, 'commit message')
164
130
        rev = _mod_revision.Revision(
165
131
                       timestamp=self._timestamp,
166
132
                       timezone=self._timezone,
189
155
        deserializing the inventory, while we already have a copy in
190
156
        memory.
191
157
        """
192
 
        if self.new_inventory is None:
193
 
            self.new_inventory = self.repository.get_inventory(
194
 
                self._new_revision_id)
195
158
        return RevisionTree(self.repository, self.new_inventory,
196
 
            self._new_revision_id)
 
159
                            self._new_revision_id)
197
160
 
198
161
    def finish_inventory(self):
199
 
        """Tell the builder that the inventory is finished.
200
 
 
201
 
        :return: The inventory id in the repository, which can be used with
202
 
            repository.get_inventory.
203
 
        """
204
 
        if self.new_inventory is None:
205
 
            # an inventory delta was accumulated without creating a new
206
 
            # inventory.
207
 
            basis_id = self.basis_delta_revision
208
 
            self.inv_sha1 = self.repository.add_inventory_by_delta(
209
 
                basis_id, self._basis_delta, self._new_revision_id,
210
 
                self.parents)
211
 
        else:
212
 
            if self.new_inventory.root is None:
213
 
                raise AssertionError('Root entry should be supplied to'
214
 
                    ' record_entry_contents, as of bzr 0.10.')
215
 
                self.new_inventory.add(InventoryDirectory(ROOT_ID, '', None))
216
 
            self.new_inventory.revision_id = self._new_revision_id
217
 
            self.inv_sha1 = self.repository.add_inventory(
218
 
                self._new_revision_id,
219
 
                self.new_inventory,
220
 
                self.parents
221
 
                )
222
 
        return self._new_revision_id
 
162
        """Tell the builder that the inventory is finished."""
 
163
        if self.new_inventory.root is None:
 
164
            raise AssertionError('Root entry should be supplied to'
 
165
                ' record_entry_contents, as of bzr 0.10.')
 
166
            self.new_inventory.add(InventoryDirectory(ROOT_ID, '', None))
 
167
        self.new_inventory.revision_id = self._new_revision_id
 
168
        self.inv_sha1 = self.repository.add_inventory(
 
169
            self._new_revision_id,
 
170
            self.new_inventory,
 
171
            self.parents
 
172
            )
223
173
 
224
174
    def _gen_revision_id(self):
225
175
        """Return new revision-id."""
228
178
 
229
179
    def _generate_revision_if_needed(self):
230
180
        """Create a revision id if None was supplied.
231
 
 
 
181
        
232
182
        If the repository can not support user-specified revision ids
233
183
        they should override this function and raise CannotSetRevisionId
234
184
        if _new_revision_id is not None.
262
212
        # _new_revision_id
263
213
        ie.revision = self._new_revision_id
264
214
 
265
 
    def _require_root_change(self, tree):
266
 
        """Enforce an appropriate root object change.
267
 
 
268
 
        This is called once when record_iter_changes is called, if and only if
269
 
        the root was not in the delta calculated by record_iter_changes.
270
 
 
271
 
        :param tree: The tree which is being committed.
272
 
        """
273
 
        # NB: if there are no parents then this method is not called, so no
274
 
        # need to guard on parents having length.
275
 
        entry = entry_factory['directory'](tree.path2id(''), '',
276
 
            None)
277
 
        entry.revision = self._new_revision_id
278
 
        self._basis_delta.append(('', '', entry.file_id, entry))
279
 
 
280
215
    def _get_delta(self, ie, basis_inv, path):
281
216
        """Get a delta against the basis inventory for ie."""
282
217
        if ie.file_id not in basis_inv:
283
218
            # add
284
 
            result = (None, path, ie.file_id, ie)
285
 
            self._basis_delta.append(result)
286
 
            return result
 
219
            return (None, path, ie.file_id, ie)
287
220
        elif ie != basis_inv[ie.file_id]:
288
221
            # common but altered
289
222
            # TODO: avoid tis id2path call.
290
 
            result = (basis_inv.id2path(ie.file_id), path, ie.file_id, ie)
291
 
            self._basis_delta.append(result)
292
 
            return result
 
223
            return (basis_inv.id2path(ie.file_id), path, ie.file_id, ie)
293
224
        else:
294
225
            # common, unaltered
295
226
            return None
296
227
 
297
 
    def get_basis_delta(self):
298
 
        """Return the complete inventory delta versus the basis inventory.
299
 
 
300
 
        This has been built up with the calls to record_delete and
301
 
        record_entry_contents. The client must have already called
302
 
        will_record_deletes() to indicate that they will be generating a
303
 
        complete delta.
304
 
 
305
 
        :return: An inventory delta, suitable for use with apply_delta, or
306
 
            Repository.add_inventory_by_delta, etc.
307
 
        """
308
 
        if not self._recording_deletes:
309
 
            raise AssertionError("recording deletes not activated.")
310
 
        return self._basis_delta
311
 
 
312
 
    def record_delete(self, path, file_id):
313
 
        """Record that a delete occured against a basis tree.
314
 
 
315
 
        This is an optional API - when used it adds items to the basis_delta
316
 
        being accumulated by the commit builder. It cannot be called unless the
317
 
        method will_record_deletes() has been called to inform the builder that
318
 
        a delta is being supplied.
319
 
 
320
 
        :param path: The path of the thing deleted.
321
 
        :param file_id: The file id that was deleted.
322
 
        """
323
 
        if not self._recording_deletes:
324
 
            raise AssertionError("recording deletes not activated.")
325
 
        delta = (path, None, file_id, None)
326
 
        self._basis_delta.append(delta)
327
 
        self._any_changes = True
328
 
        return delta
329
 
 
330
 
    def will_record_deletes(self):
331
 
        """Tell the commit builder that deletes are being notified.
332
 
 
333
 
        This enables the accumulation of an inventory delta; for the resulting
334
 
        commit to be valid, deletes against the basis MUST be recorded via
335
 
        builder.record_delete().
336
 
        """
337
 
        self._recording_deletes = True
338
 
        try:
339
 
            basis_id = self.parents[0]
340
 
        except IndexError:
341
 
            basis_id = _mod_revision.NULL_REVISION
342
 
        self.basis_delta_revision = basis_id
343
 
 
344
228
    def record_entry_contents(self, ie, parent_invs, path, tree,
345
229
        content_summary):
346
230
        """Record the content of ie from tree into the commit if needed.
351
235
        :param parent_invs: The inventories of the parent revisions of the
352
236
            commit.
353
237
        :param path: The path the entry is at in the tree.
354
 
        :param tree: The tree which contains this entry and should be used to
 
238
        :param tree: The tree which contains this entry and should be used to 
355
239
            obtain content.
356
240
        :param content_summary: Summary data from the tree about the paths
357
241
            content - stat, length, exec, sha/link target. This is only
358
242
            accessed when the entry has a revision of None - that is when it is
359
243
            a candidate to commit.
360
 
        :return: A tuple (change_delta, version_recorded, fs_hash).
361
 
            change_delta is an inventory_delta change for this entry against
362
 
            the basis tree of the commit, or None if no change occured against
363
 
            the basis tree.
 
244
        :return: A tuple (change_delta, version_recorded). change_delta is 
 
245
            an inventory_delta change for this entry against the basis tree of
 
246
            the commit, or None if no change occured against the basis tree.
364
247
            version_recorded is True if a new version of the entry has been
365
248
            recorded. For instance, committing a merge where a file was only
366
249
            changed on the other side will return (delta, False).
367
 
            fs_hash is either None, or the hash details for the path (currently
368
 
            a tuple of the contents sha1 and the statvalue returned by
369
 
            tree.get_file_with_stat()).
370
250
        """
371
251
        if self.new_inventory.root is None:
372
252
            if ie.parent_id is not None:
398
278
        if ie.revision is not None:
399
279
            if not self._versioned_root and path == '':
400
280
                # repositories that do not version the root set the root's
401
 
                # revision to the new commit even when no change occurs (more
402
 
                # specifically, they do not record a revision on the root; and
403
 
                # the rev id is assigned to the root during deserialisation -
404
 
                # this masks when a change may have occurred against the basis.
405
 
                # To match this we always issue a delta, because the revision
406
 
                # of the root will always be changing.
 
281
                # revision to the new commit even when no change occurs, and
 
282
                # this masks when a change may have occurred against the basis,
 
283
                # so calculate if one happened.
407
284
                if ie.file_id in basis_inv:
408
285
                    delta = (basis_inv.id2path(ie.file_id), path,
409
286
                        ie.file_id, ie)
410
287
                else:
411
288
                    # add
412
289
                    delta = (None, path, ie.file_id, ie)
413
 
                self._basis_delta.append(delta)
414
 
                return delta, False, None
 
290
                return delta, False
415
291
            else:
416
292
                # we don't need to commit this, because the caller already
417
293
                # determined that an existing revision of this file is
422
298
                    raise AssertionError("Impossible situation, a skipped "
423
299
                        "inventory entry (%r) claims to be modified in this "
424
300
                        "commit (%r).", (ie, self._new_revision_id))
425
 
                return None, False, None
 
301
                return None, False
426
302
        # XXX: Friction: parent_candidates should return a list not a dict
427
303
        #      so that we don't have to walk the inventories again.
428
304
        parent_candiate_entries = ie.parent_candidates(parent_invs)
458
334
            # if the kind changed the content obviously has
459
335
            if kind != parent_entry.kind:
460
336
                store = True
461
 
        # Stat cache fingerprint feedback for the caller - None as we usually
462
 
        # don't generate one.
463
 
        fingerprint = None
464
337
        if kind == 'file':
465
338
            if content_summary[2] is None:
466
339
                raise ValueError("Files must not have executable = None")
477
350
                    ie.text_size = parent_entry.text_size
478
351
                    ie.text_sha1 = parent_entry.text_sha1
479
352
                    ie.executable = parent_entry.executable
480
 
                    return self._get_delta(ie, basis_inv, path), False, None
 
353
                    return self._get_delta(ie, basis_inv, path), False
481
354
                else:
482
355
                    # Either there is only a hash change(no hash cache entry,
483
356
                    # or same size content change), or there is no change on
490
363
                # absence of a content change in the file.
491
364
                nostore_sha = None
492
365
            ie.executable = content_summary[2]
493
 
            file_obj, stat_value = tree.get_file_with_stat(ie.file_id, path)
494
 
            try:
495
 
                text = file_obj.read()
496
 
            finally:
497
 
                file_obj.close()
 
366
            lines = tree.get_file(ie.file_id, path).readlines()
498
367
            try:
499
368
                ie.text_sha1, ie.text_size = self._add_text_to_weave(
500
 
                    ie.file_id, text, heads, nostore_sha)
501
 
                # Let the caller know we generated a stat fingerprint.
502
 
                fingerprint = (ie.text_sha1, stat_value)
 
369
                    ie.file_id, lines, heads, nostore_sha)
503
370
            except errors.ExistingContent:
504
371
                # Turns out that the file content was unchanged, and we were
505
372
                # only going to store a new node if it was changed. Carry over
508
375
                ie.text_size = parent_entry.text_size
509
376
                ie.text_sha1 = parent_entry.text_sha1
510
377
                ie.executable = parent_entry.executable
511
 
                return self._get_delta(ie, basis_inv, path), False, None
 
378
                return self._get_delta(ie, basis_inv, path), False
512
379
        elif kind == 'directory':
513
380
            if not store:
514
381
                # all data is meta here, nothing specific to directory, so
515
382
                # carry over:
516
383
                ie.revision = parent_entry.revision
517
 
                return self._get_delta(ie, basis_inv, path), False, None
518
 
            self._add_text_to_weave(ie.file_id, '', heads, None)
 
384
                return self._get_delta(ie, basis_inv, path), False
 
385
            lines = []
 
386
            self._add_text_to_weave(ie.file_id, lines, heads, None)
519
387
        elif kind == 'symlink':
520
388
            current_link_target = content_summary[3]
521
389
            if not store:
527
395
                # unchanged, carry over.
528
396
                ie.revision = parent_entry.revision
529
397
                ie.symlink_target = parent_entry.symlink_target
530
 
                return self._get_delta(ie, basis_inv, path), False, None
 
398
                return self._get_delta(ie, basis_inv, path), False
531
399
            ie.symlink_target = current_link_target
532
 
            self._add_text_to_weave(ie.file_id, '', heads, None)
 
400
            lines = []
 
401
            self._add_text_to_weave(ie.file_id, lines, heads, None)
533
402
        elif kind == 'tree-reference':
534
403
            if not store:
535
404
                if content_summary[3] != parent_entry.reference_revision:
538
407
                # unchanged, carry over.
539
408
                ie.reference_revision = parent_entry.reference_revision
540
409
                ie.revision = parent_entry.revision
541
 
                return self._get_delta(ie, basis_inv, path), False, None
 
410
                return self._get_delta(ie, basis_inv, path), False
542
411
            ie.reference_revision = content_summary[3]
543
 
            self._add_text_to_weave(ie.file_id, '', heads, None)
 
412
            lines = []
 
413
            self._add_text_to_weave(ie.file_id, lines, heads, None)
544
414
        else:
545
415
            raise NotImplementedError('unknown kind')
546
416
        ie.revision = self._new_revision_id
547
 
        self._any_changes = True
548
 
        return self._get_delta(ie, basis_inv, path), True, fingerprint
549
 
 
550
 
    def record_iter_changes(self, tree, basis_revision_id, iter_changes,
551
 
        _entry_factory=entry_factory):
552
 
        """Record a new tree via iter_changes.
553
 
 
554
 
        :param tree: The tree to obtain text contents from for changed objects.
555
 
        :param basis_revision_id: The revision id of the tree the iter_changes
556
 
            has been generated against. Currently assumed to be the same
557
 
            as self.parents[0] - if it is not, errors may occur.
558
 
        :param iter_changes: An iter_changes iterator with the changes to apply
559
 
            to basis_revision_id. The iterator must not include any items with
560
 
            a current kind of None - missing items must be either filtered out
561
 
            or errored-on beefore record_iter_changes sees the item.
562
 
        :param _entry_factory: Private method to bind entry_factory locally for
563
 
            performance.
564
 
        :return: A generator of (file_id, relpath, fs_hash) tuples for use with
565
 
            tree._observed_sha1.
566
 
        """
567
 
        # Create an inventory delta based on deltas between all the parents and
568
 
        # deltas between all the parent inventories. We use inventory delta's 
569
 
        # between the inventory objects because iter_changes masks
570
 
        # last-changed-field only changes.
571
 
        # Working data:
572
 
        # file_id -> change map, change is fileid, paths, changed, versioneds,
573
 
        # parents, names, kinds, executables
574
 
        merged_ids = {}
575
 
        # {file_id -> revision_id -> inventory entry, for entries in parent
576
 
        # trees that are not parents[0]
577
 
        parent_entries = {}
578
 
        ghost_basis = False
579
 
        try:
580
 
            revtrees = list(self.repository.revision_trees(self.parents))
581
 
        except errors.NoSuchRevision:
582
 
            # one or more ghosts, slow path.
583
 
            revtrees = []
584
 
            for revision_id in self.parents:
585
 
                try:
586
 
                    revtrees.append(self.repository.revision_tree(revision_id))
587
 
                except errors.NoSuchRevision:
588
 
                    if not revtrees:
589
 
                        basis_revision_id = _mod_revision.NULL_REVISION
590
 
                        ghost_basis = True
591
 
                    revtrees.append(self.repository.revision_tree(
592
 
                        _mod_revision.NULL_REVISION))
593
 
        # The basis inventory from a repository 
594
 
        if revtrees:
595
 
            basis_inv = revtrees[0].inventory
596
 
        else:
597
 
            basis_inv = self.repository.revision_tree(
598
 
                _mod_revision.NULL_REVISION).inventory
599
 
        if len(self.parents) > 0:
600
 
            if basis_revision_id != self.parents[0] and not ghost_basis:
601
 
                raise Exception(
602
 
                    "arbitrary basis parents not yet supported with merges")
603
 
            for revtree in revtrees[1:]:
604
 
                for change in revtree.inventory._make_delta(basis_inv):
605
 
                    if change[1] is None:
606
 
                        # Not present in this parent.
607
 
                        continue
608
 
                    if change[2] not in merged_ids:
609
 
                        if change[0] is not None:
610
 
                            basis_entry = basis_inv[change[2]]
611
 
                            merged_ids[change[2]] = [
612
 
                                # basis revid
613
 
                                basis_entry.revision,
614
 
                                # new tree revid
615
 
                                change[3].revision]
616
 
                            parent_entries[change[2]] = {
617
 
                                # basis parent
618
 
                                basis_entry.revision:basis_entry,
619
 
                                # this parent 
620
 
                                change[3].revision:change[3],
621
 
                                }
622
 
                        else:
623
 
                            merged_ids[change[2]] = [change[3].revision]
624
 
                            parent_entries[change[2]] = {change[3].revision:change[3]}
625
 
                    else:
626
 
                        merged_ids[change[2]].append(change[3].revision)
627
 
                        parent_entries[change[2]][change[3].revision] = change[3]
628
 
        else:
629
 
            merged_ids = {}
630
 
        # Setup the changes from the tree:
631
 
        # changes maps file_id -> (change, [parent revision_ids])
632
 
        changes= {}
633
 
        for change in iter_changes:
634
 
            # This probably looks up in basis_inv way to much.
635
 
            if change[1][0] is not None:
636
 
                head_candidate = [basis_inv[change[0]].revision]
637
 
            else:
638
 
                head_candidate = []
639
 
            changes[change[0]] = change, merged_ids.get(change[0],
640
 
                head_candidate)
641
 
        unchanged_merged = set(merged_ids) - set(changes)
642
 
        # Extend the changes dict with synthetic changes to record merges of
643
 
        # texts.
644
 
        for file_id in unchanged_merged:
645
 
            # Record a merged version of these items that did not change vs the
646
 
            # basis. This can be either identical parallel changes, or a revert
647
 
            # of a specific file after a merge. The recorded content will be
648
 
            # that of the current tree (which is the same as the basis), but
649
 
            # the per-file graph will reflect a merge.
650
 
            # NB:XXX: We are reconstructing path information we had, this
651
 
            # should be preserved instead.
652
 
            # inv delta  change: (file_id, (path_in_source, path_in_target),
653
 
            #   changed_content, versioned, parent, name, kind,
654
 
            #   executable)
655
 
            try:
656
 
                basis_entry = basis_inv[file_id]
657
 
            except errors.NoSuchId:
658
 
                # a change from basis->some_parents but file_id isn't in basis
659
 
                # so was new in the merge, which means it must have changed
660
 
                # from basis -> current, and as it hasn't the add was reverted
661
 
                # by the user. So we discard this change.
662
 
                pass
663
 
            else:
664
 
                change = (file_id,
665
 
                    (basis_inv.id2path(file_id), tree.id2path(file_id)),
666
 
                    False, (True, True),
667
 
                    (basis_entry.parent_id, basis_entry.parent_id),
668
 
                    (basis_entry.name, basis_entry.name),
669
 
                    (basis_entry.kind, basis_entry.kind),
670
 
                    (basis_entry.executable, basis_entry.executable))
671
 
                changes[file_id] = (change, merged_ids[file_id])
672
 
        # changes contains tuples with the change and a set of inventory
673
 
        # candidates for the file.
674
 
        # inv delta is:
675
 
        # old_path, new_path, file_id, new_inventory_entry
676
 
        seen_root = False # Is the root in the basis delta?
677
 
        inv_delta = self._basis_delta
678
 
        modified_rev = self._new_revision_id
679
 
        for change, head_candidates in changes.values():
680
 
            if change[3][1]: # versioned in target.
681
 
                # Several things may be happening here:
682
 
                # We may have a fork in the per-file graph
683
 
                #  - record a change with the content from tree
684
 
                # We may have a change against < all trees  
685
 
                #  - carry over the tree that hasn't changed
686
 
                # We may have a change against all trees
687
 
                #  - record the change with the content from tree
688
 
                kind = change[6][1]
689
 
                file_id = change[0]
690
 
                entry = _entry_factory[kind](file_id, change[5][1],
691
 
                    change[4][1])
692
 
                head_set = self._heads(change[0], set(head_candidates))
693
 
                heads = []
694
 
                # Preserve ordering.
695
 
                for head_candidate in head_candidates:
696
 
                    if head_candidate in head_set:
697
 
                        heads.append(head_candidate)
698
 
                        head_set.remove(head_candidate)
699
 
                carried_over = False
700
 
                if len(heads) == 1:
701
 
                    # Could be a carry-over situation:
702
 
                    parent_entry_revs = parent_entries.get(file_id, None)
703
 
                    if parent_entry_revs:
704
 
                        parent_entry = parent_entry_revs.get(heads[0], None)
705
 
                    else:
706
 
                        parent_entry = None
707
 
                    if parent_entry is None:
708
 
                        # The parent iter_changes was called against is the one
709
 
                        # that is the per-file head, so any change is relevant
710
 
                        # iter_changes is valid.
711
 
                        carry_over_possible = False
712
 
                    else:
713
 
                        # could be a carry over situation
714
 
                        # A change against the basis may just indicate a merge,
715
 
                        # we need to check the content against the source of the
716
 
                        # merge to determine if it was changed after the merge
717
 
                        # or carried over.
718
 
                        if (parent_entry.kind != entry.kind or
719
 
                            parent_entry.parent_id != entry.parent_id or
720
 
                            parent_entry.name != entry.name):
721
 
                            # Metadata common to all entries has changed
722
 
                            # against per-file parent
723
 
                            carry_over_possible = False
724
 
                        else:
725
 
                            carry_over_possible = True
726
 
                        # per-type checks for changes against the parent_entry
727
 
                        # are done below.
728
 
                else:
729
 
                    # Cannot be a carry-over situation
730
 
                    carry_over_possible = False
731
 
                # Populate the entry in the delta
732
 
                if kind == 'file':
733
 
                    # XXX: There is still a small race here: If someone reverts the content of a file
734
 
                    # after iter_changes examines and decides it has changed,
735
 
                    # we will unconditionally record a new version even if some
736
 
                    # other process reverts it while commit is running (with
737
 
                    # the revert happening after iter_changes did it's
738
 
                    # examination).
739
 
                    if change[7][1]:
740
 
                        entry.executable = True
741
 
                    else:
742
 
                        entry.executable = False
743
 
                    if (carry_over_possible and
744
 
                        parent_entry.executable == entry.executable):
745
 
                            # Check the file length, content hash after reading
746
 
                            # the file.
747
 
                            nostore_sha = parent_entry.text_sha1
748
 
                    else:
749
 
                        nostore_sha = None
750
 
                    file_obj, stat_value = tree.get_file_with_stat(file_id, change[1][1])
751
 
                    try:
752
 
                        text = file_obj.read()
753
 
                    finally:
754
 
                        file_obj.close()
755
 
                    try:
756
 
                        entry.text_sha1, entry.text_size = self._add_text_to_weave(
757
 
                            file_id, text, heads, nostore_sha)
758
 
                        yield file_id, change[1][1], (entry.text_sha1, stat_value)
759
 
                    except errors.ExistingContent:
760
 
                        # No content change against a carry_over parent
761
 
                        # Perhaps this should also yield a fs hash update?
762
 
                        carried_over = True
763
 
                        entry.text_size = parent_entry.text_size
764
 
                        entry.text_sha1 = parent_entry.text_sha1
765
 
                elif kind == 'symlink':
766
 
                    # Wants a path hint?
767
 
                    entry.symlink_target = tree.get_symlink_target(file_id)
768
 
                    if (carry_over_possible and
769
 
                        parent_entry.symlink_target == entry.symlink_target):
770
 
                        carried_over = True
771
 
                    else:
772
 
                        self._add_text_to_weave(change[0], '', heads, None)
773
 
                elif kind == 'directory':
774
 
                    if carry_over_possible:
775
 
                        carried_over = True
776
 
                    else:
777
 
                        # Nothing to set on the entry.
778
 
                        # XXX: split into the Root and nonRoot versions.
779
 
                        if change[1][1] != '' or self.repository.supports_rich_root():
780
 
                            self._add_text_to_weave(change[0], '', heads, None)
781
 
                elif kind == 'tree-reference':
782
 
                    if not self.repository._format.supports_tree_reference:
783
 
                        # This isn't quite sane as an error, but we shouldn't
784
 
                        # ever see this code path in practice: tree's don't
785
 
                        # permit references when the repo doesn't support tree
786
 
                        # references.
787
 
                        raise errors.UnsupportedOperation(tree.add_reference,
788
 
                            self.repository)
789
 
                    reference_revision = tree.get_reference_revision(change[0])
790
 
                    entry.reference_revision = reference_revision
791
 
                    if (carry_over_possible and
792
 
                        parent_entry.reference_revision == reference_revision):
793
 
                        carried_over = True
794
 
                    else:
795
 
                        self._add_text_to_weave(change[0], '', heads, None)
796
 
                else:
797
 
                    raise AssertionError('unknown kind %r' % kind)
798
 
                if not carried_over:
799
 
                    entry.revision = modified_rev
800
 
                else:
801
 
                    entry.revision = parent_entry.revision
802
 
            else:
803
 
                entry = None
804
 
            new_path = change[1][1]
805
 
            inv_delta.append((change[1][0], new_path, change[0], entry))
806
 
            if new_path == '':
807
 
                seen_root = True
808
 
        self.new_inventory = None
809
 
        if len(inv_delta):
810
 
            # This should perhaps be guarded by a check that the basis we
811
 
            # commit against is the basis for the commit and if not do a delta
812
 
            # against the basis.
813
 
            self._any_changes = True
814
 
        if not seen_root:
815
 
            # housekeeping root entry changes do not affect no-change commits.
816
 
            self._require_root_change(tree)
817
 
        self.basis_delta_revision = basis_revision_id
818
 
 
819
 
    def _add_text_to_weave(self, file_id, new_text, parents, nostore_sha):
820
 
        parent_keys = tuple([(file_id, parent) for parent in parents])
821
 
        return self.repository.texts._add_text(
822
 
            (file_id, self._new_revision_id), parent_keys, new_text,
823
 
            nostore_sha=nostore_sha, random_id=self.random_revid)[0:2]
 
417
        return self._get_delta(ie, basis_inv, path), True
 
418
 
 
419
    def _add_text_to_weave(self, file_id, new_lines, parents, nostore_sha):
 
420
        # Note: as we read the content directly from the tree, we know its not
 
421
        # been turned into unicode or badly split - but a broken tree
 
422
        # implementation could give us bad output from readlines() so this is
 
423
        # not a guarantee of safety. What would be better is always checking
 
424
        # the content during test suite execution. RBC 20070912
 
425
        parent_keys = tuple((file_id, parent) for parent in parents)
 
426
        return self.repository.texts.add_lines(
 
427
            (file_id, self._new_revision_id), parent_keys, new_lines,
 
428
            nostore_sha=nostore_sha, random_id=self.random_revid,
 
429
            check_content=False)[0:2]
824
430
 
825
431
 
826
432
class RootCommitBuilder(CommitBuilder):
827
433
    """This commitbuilder actually records the root id"""
828
 
 
 
434
    
829
435
    # the root entry gets versioned properly by this builder.
830
436
    _versioned_root = True
831
437
 
838
444
        :param tree: The tree that is being committed.
839
445
        """
840
446
 
841
 
    def _require_root_change(self, tree):
842
 
        """Enforce an appropriate root object change.
843
 
 
844
 
        This is called once when record_iter_changes is called, if and only if
845
 
        the root was not in the delta calculated by record_iter_changes.
846
 
 
847
 
        :param tree: The tree which is being committed.
848
 
        """
849
 
        # versioned roots do not change unless the tree found a change.
850
 
 
851
447
 
852
448
######################################################################
853
449
# Repositories
854
450
 
855
 
 
856
451
class Repository(object):
857
452
    """Repository holding history for one or more branches.
858
453
 
861
456
    which views a particular line of development through that history.
862
457
 
863
458
    The Repository builds on top of some byte storage facilies (the revisions,
864
 
    signatures, inventories, texts and chk_bytes attributes) and a Transport,
865
 
    which respectively provide byte storage and a means to access the (possibly
 
459
    signatures, inventories and texts attributes) and a Transport, which
 
460
    respectively provide byte storage and a means to access the (possibly
866
461
    remote) disk.
867
462
 
868
463
    The byte storage facilities are addressed via tuples, which we refer to
869
464
    as 'keys' throughout the code base. Revision_keys, inventory_keys and
870
465
    signature_keys are all 1-tuples: (revision_id,). text_keys are two-tuples:
871
 
    (file_id, revision_id). chk_bytes uses CHK keys - a 1-tuple with a single
872
 
    byte string made up of a hash identifier and a hash value.
873
 
    We use this interface because it allows low friction with the underlying
874
 
    code that implements disk indices, network encoding and other parts of
875
 
    bzrlib.
 
466
    (file_id, revision_id). We use this interface because it allows low
 
467
    friction with the underlying code that implements disk indices, network
 
468
    encoding and other parts of bzrlib.
876
469
 
877
470
    :ivar revisions: A bzrlib.versionedfile.VersionedFiles instance containing
878
471
        the serialised revisions for the repository. This can be used to obtain
897
490
        The result of trying to insert data into the repository via this store
898
491
        is undefined: it should be considered read-only except for implementors
899
492
        of repositories.
900
 
    :ivar chk_bytes: A bzrlib.versionedfile.VersionedFiles instance containing
901
 
        any data the repository chooses to store or have indexed by its hash.
902
 
        The result of trying to insert data into the repository via this store
903
 
        is undefined: it should be considered read-only except for implementors
904
 
        of repositories.
905
493
    :ivar _transport: Transport for file access to repository, typically
906
494
        pointing to .bzr/repository.
907
495
    """
917
505
        r'.* revision="(?P<revision_id>[^"]+)"'
918
506
        )
919
507
 
920
 
    def abort_write_group(self, suppress_errors=False):
 
508
    def abort_write_group(self):
921
509
        """Commit the contents accrued within the current write group.
922
510
 
923
 
        :param suppress_errors: if true, abort_write_group will catch and log
924
 
            unexpected errors that happen during the abort, rather than
925
 
            allowing them to propagate.  Defaults to False.
926
 
 
927
511
        :seealso: start_write_group.
928
512
        """
929
513
        if self._write_group is not self.get_transaction():
930
514
            # has an unlock or relock occured ?
931
 
            if suppress_errors:
932
 
                mutter(
933
 
                '(suppressed) mismatched lock context and write group. %r, %r',
934
 
                self._write_group, self.get_transaction())
935
 
                return
936
 
            raise errors.BzrError(
937
 
                'mismatched lock context and write group. %r, %r' %
938
 
                (self._write_group, self.get_transaction()))
939
 
        try:
940
 
            self._abort_write_group()
941
 
        except Exception, exc:
942
 
            self._write_group = None
943
 
            if not suppress_errors:
944
 
                raise
945
 
            mutter('abort_write_group failed')
946
 
            log_exception_quietly()
947
 
            note('bzr: ERROR (ignored): %s', exc)
 
515
            raise errors.BzrError('mismatched lock context and write group.')
 
516
        self._abort_write_group()
948
517
        self._write_group = None
949
518
 
950
519
    def _abort_write_group(self):
951
520
        """Template method for per-repository write group cleanup.
952
 
 
953
 
        This is called during abort before the write group is considered to be
 
521
        
 
522
        This is called during abort before the write group is considered to be 
954
523
        finished and should cleanup any internal state accrued during the write
955
524
        group. There is no requirement that data handed to the repository be
956
525
        *not* made available - this is not a rollback - but neither should any
962
531
 
963
532
    def add_fallback_repository(self, repository):
964
533
        """Add a repository to use for looking up data not held locally.
965
 
 
 
534
        
966
535
        :param repository: A repository.
967
536
        """
968
537
        if not self._format.supports_external_lookups:
969
538
            raise errors.UnstackableRepositoryFormat(self._format, self.base)
970
 
        if self.is_locked():
971
 
            # This repository will call fallback.unlock() when we transition to
972
 
            # the unlocked state, so we make sure to increment the lock count
973
 
            repository.lock_read()
974
539
        self._check_fallback_repository(repository)
975
540
        self._fallback_repositories.append(repository)
976
541
        self.texts.add_fallback_versioned_files(repository.texts)
977
542
        self.inventories.add_fallback_versioned_files(repository.inventories)
978
543
        self.revisions.add_fallback_versioned_files(repository.revisions)
979
544
        self.signatures.add_fallback_versioned_files(repository.signatures)
980
 
        if self.chk_bytes is not None:
981
 
            self.chk_bytes.add_fallback_versioned_files(repository.chk_bytes)
982
545
 
983
546
    def _check_fallback_repository(self, repository):
984
547
        """Check that this repository can fallback to repository safely.
985
548
 
986
549
        Raise an error if not.
987
 
 
 
550
        
988
551
        :param repository: A repository to fallback to.
989
552
        """
990
553
        return InterRepository._assert_same_model(self, repository)
991
554
 
992
555
    def add_inventory(self, revision_id, inv, parents):
993
556
        """Add the inventory inv to the repository as revision_id.
994
 
 
 
557
        
995
558
        :param parents: The revision ids of the parents that revision_id
996
559
                        is known to have and are in the repository already.
997
560
 
1008
571
                % (inv.revision_id, revision_id))
1009
572
        if inv.root is None:
1010
573
            raise AssertionError()
1011
 
        return self._add_inventory_checked(revision_id, inv, parents)
1012
 
 
1013
 
    def _add_inventory_checked(self, revision_id, inv, parents):
1014
 
        """Add inv to the repository after checking the inputs.
1015
 
 
1016
 
        This function can be overridden to allow different inventory styles.
1017
 
 
1018
 
        :seealso: add_inventory, for the contract.
1019
 
        """
1020
574
        inv_lines = self._serialise_inventory_to_lines(inv)
1021
575
        return self._inventory_add_lines(revision_id, parents,
1022
576
            inv_lines, check_content=False)
1023
577
 
1024
 
    def add_inventory_by_delta(self, basis_revision_id, delta, new_revision_id,
1025
 
                               parents, basis_inv=None, propagate_caches=False):
1026
 
        """Add a new inventory expressed as a delta against another revision.
1027
 
 
1028
 
        See the inventory developers documentation for the theory behind
1029
 
        inventory deltas.
1030
 
 
1031
 
        :param basis_revision_id: The inventory id the delta was created
1032
 
            against. (This does not have to be a direct parent.)
1033
 
        :param delta: The inventory delta (see Inventory.apply_delta for
1034
 
            details).
1035
 
        :param new_revision_id: The revision id that the inventory is being
1036
 
            added for.
1037
 
        :param parents: The revision ids of the parents that revision_id is
1038
 
            known to have and are in the repository already. These are supplied
1039
 
            for repositories that depend on the inventory graph for revision
1040
 
            graph access, as well as for those that pun ancestry with delta
1041
 
            compression.
1042
 
        :param basis_inv: The basis inventory if it is already known,
1043
 
            otherwise None.
1044
 
        :param propagate_caches: If True, the caches for this inventory are
1045
 
          copied to and updated for the result if possible.
1046
 
 
1047
 
        :returns: (validator, new_inv)
1048
 
            The validator(which is a sha1 digest, though what is sha'd is
1049
 
            repository format specific) of the serialized inventory, and the
1050
 
            resulting inventory.
1051
 
        """
1052
 
        if not self.is_in_write_group():
1053
 
            raise AssertionError("%r not in write group" % (self,))
1054
 
        _mod_revision.check_not_reserved_id(new_revision_id)
1055
 
        basis_tree = self.revision_tree(basis_revision_id)
1056
 
        basis_tree.lock_read()
1057
 
        try:
1058
 
            # Note that this mutates the inventory of basis_tree, which not all
1059
 
            # inventory implementations may support: A better idiom would be to
1060
 
            # return a new inventory, but as there is no revision tree cache in
1061
 
            # repository this is safe for now - RBC 20081013
1062
 
            if basis_inv is None:
1063
 
                basis_inv = basis_tree.inventory
1064
 
            basis_inv.apply_delta(delta)
1065
 
            basis_inv.revision_id = new_revision_id
1066
 
            return (self.add_inventory(new_revision_id, basis_inv, parents),
1067
 
                    basis_inv)
1068
 
        finally:
1069
 
            basis_tree.unlock()
1070
 
 
1071
578
    def _inventory_add_lines(self, revision_id, parents, lines,
1072
579
        check_content=True):
1073
580
        """Store lines in inv_vf and return the sha1 of the inventory."""
1074
581
        parents = [(parent,) for parent in parents]
1075
 
        result = self.inventories.add_lines((revision_id,), parents, lines,
 
582
        return self.inventories.add_lines((revision_id,), parents, lines,
1076
583
            check_content=check_content)[0]
1077
 
        self.inventories._access.flush()
1078
 
        return result
1079
584
 
1080
585
    def add_revision(self, revision_id, rev, inv=None, config=None):
1081
586
        """Add rev to the revision store as revision_id.
1118
623
        self.revisions.add_lines(key, parents, osutils.split_lines(text))
1119
624
 
1120
625
    def all_revision_ids(self):
1121
 
        """Returns a list of all the revision ids in the repository.
 
626
        """Returns a list of all the revision ids in the repository. 
1122
627
 
1123
628
        This is conceptually deprecated because code should generally work on
1124
629
        the graph reachable from a particular revision, and ignore any other
1130
635
        return self._all_revision_ids()
1131
636
 
1132
637
    def _all_revision_ids(self):
1133
 
        """Returns a list of all the revision ids in the repository.
 
638
        """Returns a list of all the revision ids in the repository. 
1134
639
 
1135
 
        These are in as much topological order as the underlying store can
 
640
        These are in as much topological order as the underlying store can 
1136
641
        present.
1137
642
        """
1138
643
        raise NotImplementedError(self._all_revision_ids)
1157
662
        # The old API returned a list, should this actually be a set?
1158
663
        return parent_map.keys()
1159
664
 
1160
 
    def _check_inventories(self, checker):
1161
 
        """Check the inventories found from the revision scan.
1162
 
        
1163
 
        This is responsible for verifying the sha1 of inventories and
1164
 
        creating a pending_keys set that covers data referenced by inventories.
1165
 
        """
1166
 
        bar = ui.ui_factory.nested_progress_bar()
1167
 
        try:
1168
 
            self._do_check_inventories(checker, bar)
1169
 
        finally:
1170
 
            bar.finished()
1171
 
 
1172
 
    def _do_check_inventories(self, checker, bar):
1173
 
        """Helper for _check_inventories."""
1174
 
        revno = 0
1175
 
        keys = {'chk_bytes':set(), 'inventories':set(), 'texts':set()}
1176
 
        kinds = ['chk_bytes', 'texts']
1177
 
        count = len(checker.pending_keys)
1178
 
        bar.update("inventories", 0, 2)
1179
 
        current_keys = checker.pending_keys
1180
 
        checker.pending_keys = {}
1181
 
        # Accumulate current checks.
1182
 
        for key in current_keys:
1183
 
            if key[0] != 'inventories' and key[0] not in kinds:
1184
 
                checker._report_items.append('unknown key type %r' % (key,))
1185
 
            keys[key[0]].add(key[1:])
1186
 
        if keys['inventories']:
1187
 
            # NB: output order *should* be roughly sorted - topo or
1188
 
            # inverse topo depending on repository - either way decent
1189
 
            # to just delta against. However, pre-CHK formats didn't
1190
 
            # try to optimise inventory layout on disk. As such the
1191
 
            # pre-CHK code path does not use inventory deltas.
1192
 
            last_object = None
1193
 
            for record in self.inventories.check(keys=keys['inventories']):
1194
 
                if record.storage_kind == 'absent':
1195
 
                    checker._report_items.append(
1196
 
                        'Missing inventory {%s}' % (record.key,))
1197
 
                else:
1198
 
                    last_object = self._check_record('inventories', record,
1199
 
                        checker, last_object,
1200
 
                        current_keys[('inventories',) + record.key])
1201
 
            del keys['inventories']
1202
 
        else:
1203
 
            return
1204
 
        bar.update("texts", 1)
1205
 
        while (checker.pending_keys or keys['chk_bytes']
1206
 
            or keys['texts']):
1207
 
            # Something to check.
1208
 
            current_keys = checker.pending_keys
1209
 
            checker.pending_keys = {}
1210
 
            # Accumulate current checks.
1211
 
            for key in current_keys:
1212
 
                if key[0] not in kinds:
1213
 
                    checker._report_items.append('unknown key type %r' % (key,))
1214
 
                keys[key[0]].add(key[1:])
1215
 
            # Check the outermost kind only - inventories || chk_bytes || texts
1216
 
            for kind in kinds:
1217
 
                if keys[kind]:
1218
 
                    last_object = None
1219
 
                    for record in getattr(self, kind).check(keys=keys[kind]):
1220
 
                        if record.storage_kind == 'absent':
1221
 
                            checker._report_items.append(
1222
 
                                'Missing inventory {%s}' % (record.key,))
1223
 
                        else:
1224
 
                            last_object = self._check_record(kind, record,
1225
 
                                checker, last_object, current_keys[(kind,) + record.key])
1226
 
                    keys[kind] = set()
1227
 
                    break
1228
 
 
1229
 
    def _check_record(self, kind, record, checker, last_object, item_data):
1230
 
        """Check a single text from this repository."""
1231
 
        if kind == 'inventories':
1232
 
            rev_id = record.key[0]
1233
 
            inv = self.deserialise_inventory(rev_id,
1234
 
                record.get_bytes_as('fulltext'))
1235
 
            if last_object is not None:
1236
 
                delta = inv._make_delta(last_object)
1237
 
                for old_path, path, file_id, ie in delta:
1238
 
                    if ie is None:
1239
 
                        continue
1240
 
                    ie.check(checker, rev_id, inv)
1241
 
            else:
1242
 
                for path, ie in inv.iter_entries():
1243
 
                    ie.check(checker, rev_id, inv)
1244
 
            if self._format.fast_deltas:
1245
 
                return inv
1246
 
        elif kind == 'chk_bytes':
1247
 
            # No code written to check chk_bytes for this repo format.
1248
 
            checker._report_items.append(
1249
 
                'unsupported key type chk_bytes for %s' % (record.key,))
1250
 
        elif kind == 'texts':
1251
 
            self._check_text(record, checker, item_data)
1252
 
        else:
1253
 
            checker._report_items.append(
1254
 
                'unknown key type %s for %s' % (kind, record.key))
1255
 
 
1256
 
    def _check_text(self, record, checker, item_data):
1257
 
        """Check a single text."""
1258
 
        # Check it is extractable.
1259
 
        # TODO: check length.
1260
 
        if record.storage_kind == 'chunked':
1261
 
            chunks = record.get_bytes_as(record.storage_kind)
1262
 
            sha1 = osutils.sha_strings(chunks)
1263
 
            length = sum(map(len, chunks))
1264
 
        else:
1265
 
            content = record.get_bytes_as('fulltext')
1266
 
            sha1 = osutils.sha_string(content)
1267
 
            length = len(content)
1268
 
        if item_data and sha1 != item_data[1]:
1269
 
            checker._report_items.append(
1270
 
                'sha1 mismatch: %s has sha1 %s expected %s referenced by %s' %
1271
 
                (record.key, sha1, item_data[1], item_data[2]))
1272
 
 
1273
665
    @staticmethod
1274
666
    def create(a_bzrdir):
1275
667
        """Construct the current default format repository in a_bzrdir."""
1296
688
        self._reconcile_does_inventory_gc = True
1297
689
        self._reconcile_fixes_text_parents = False
1298
690
        self._reconcile_backsup_inventory = True
1299
 
        # not right yet - should be more semantically clear ?
1300
 
        #
 
691
        # not right yet - should be more semantically clear ? 
 
692
        # 
1301
693
        # TODO: make sure to construct the right store classes, etc, depending
1302
694
        # on whether escaping is required.
1303
695
        self._warn_if_deprecated()
1304
696
        self._write_group = None
1305
697
        # Additional places to query for data.
1306
698
        self._fallback_repositories = []
1307
 
        # An InventoryEntry cache, used during deserialization
1308
 
        self._inventory_entry_cache = fifo_cache.FIFOCache(10*1024)
 
699
        # What order should fetch operations request streams in?
 
700
        # The default is unordered as that is the cheapest for an origin to
 
701
        # provide.
 
702
        self._fetch_order = 'unordered'
 
703
        # Does this repository use deltas that can be fetched as-deltas ?
 
704
        # (E.g. knits, where the knit deltas can be transplanted intact.
 
705
        # We default to False, which will ensure that enough data to get
 
706
        # a full text out of any fetch stream will be grabbed.
 
707
        self._fetch_uses_deltas = False
 
708
        # Should fetch trigger a reconcile after the fetch? Only needed for
 
709
        # some repository formats that can suffer internal inconsistencies.
 
710
        self._fetch_reconcile = False
1309
711
 
1310
712
    def __repr__(self):
1311
 
        if self._fallback_repositories:
1312
 
            return '%s(%r, fallback_repositories=%r)' % (
1313
 
                self.__class__.__name__,
1314
 
                self.base,
1315
 
                self._fallback_repositories)
1316
 
        else:
1317
 
            return '%s(%r)' % (self.__class__.__name__,
1318
 
                               self.base)
1319
 
 
1320
 
    def _has_same_fallbacks(self, other_repo):
1321
 
        """Returns true if the repositories have the same fallbacks."""
1322
 
        my_fb = self._fallback_repositories
1323
 
        other_fb = other_repo._fallback_repositories
1324
 
        if len(my_fb) != len(other_fb):
1325
 
            return False
1326
 
        for f, g in zip(my_fb, other_fb):
1327
 
            if not f.has_same_location(g):
1328
 
                return False
1329
 
        return True
 
713
        return '%s(%r)' % (self.__class__.__name__,
 
714
                           self.base)
1330
715
 
1331
716
    def has_same_location(self, other):
1332
717
        """Returns a boolean indicating if this repository is at the same
1359
744
        This causes caching within the repository obejct to start accumlating
1360
745
        data during reads, and allows a 'write_group' to be obtained. Write
1361
746
        groups must be used for actual data insertion.
1362
 
 
 
747
        
1363
748
        :param token: if this is already locked, then lock_write will fail
1364
749
            unless the token matches the existing lock.
1365
750
        :returns: a token if this instance supports tokens, otherwise None.
1375
760
 
1376
761
        XXX: this docstring is duplicated in many places, e.g. lockable_files.py
1377
762
        """
1378
 
        locked = self.is_locked()
1379
763
        result = self.control_files.lock_write(token=token)
1380
 
        if not locked:
1381
 
            for repo in self._fallback_repositories:
1382
 
                # Writes don't affect fallback repos
1383
 
                repo.lock_read()
1384
 
            self._refresh_data()
 
764
        for repo in self._fallback_repositories:
 
765
            # Writes don't affect fallback repos
 
766
            repo.lock_read()
 
767
        self._refresh_data()
1385
768
        return result
1386
769
 
1387
770
    def lock_read(self):
1388
 
        locked = self.is_locked()
1389
771
        self.control_files.lock_read()
1390
 
        if not locked:
1391
 
            for repo in self._fallback_repositories:
1392
 
                repo.lock_read()
1393
 
            self._refresh_data()
 
772
        for repo in self._fallback_repositories:
 
773
            repo.lock_read()
 
774
        self._refresh_data()
1394
775
 
1395
776
    def get_physical_lock_status(self):
1396
777
        return self.control_files.get_physical_lock_status()
1398
779
    def leave_lock_in_place(self):
1399
780
        """Tell this repository not to release the physical lock when this
1400
781
        object is unlocked.
1401
 
 
 
782
        
1402
783
        If lock_write doesn't return a token, then this method is not supported.
1403
784
        """
1404
785
        self.control_files.leave_in_place()
1510
891
    @needs_read_lock
1511
892
    def search_missing_revision_ids(self, other, revision_id=None, find_ghosts=True):
1512
893
        """Return the revision ids that other has that this does not.
1513
 
 
 
894
        
1514
895
        These are returned in topological order.
1515
896
 
1516
897
        revision_id: only return revision ids included by revision_id.
1518
899
        return InterRepository.get(other, self).search_missing_revision_ids(
1519
900
            revision_id, find_ghosts)
1520
901
 
 
902
    @deprecated_method(one_two)
 
903
    @needs_read_lock
 
904
    def missing_revision_ids(self, other, revision_id=None, find_ghosts=True):
 
905
        """Return the revision ids that other has that this does not.
 
906
        
 
907
        These are returned in topological order.
 
908
 
 
909
        revision_id: only return revision ids included by revision_id.
 
910
        """
 
911
        keys =  self.search_missing_revision_ids(
 
912
            other, revision_id, find_ghosts).get_keys()
 
913
        other.lock_read()
 
914
        try:
 
915
            parents = other.get_graph().get_parent_map(keys)
 
916
        finally:
 
917
            other.unlock()
 
918
        return tsort.topo_sort(parents)
 
919
 
1521
920
    @staticmethod
1522
921
    def open(base):
1523
922
        """Open the repository rooted at base.
1530
929
 
1531
930
    def copy_content_into(self, destination, revision_id=None):
1532
931
        """Make a complete copy of the content in self into destination.
1533
 
 
1534
 
        This is a destructive operation! Do not use it on existing
 
932
        
 
933
        This is a destructive operation! Do not use it on existing 
1535
934
        repositories.
1536
935
        """
1537
936
        return InterRepository.get(self, destination).copy_content(revision_id)
1540
939
        """Commit the contents accrued within the current write group.
1541
940
 
1542
941
        :seealso: start_write_group.
1543
 
        
1544
 
        :return: it may return an opaque hint that can be passed to 'pack'.
1545
942
        """
1546
943
        if self._write_group is not self.get_transaction():
1547
944
            # has an unlock or relock occured ?
1548
945
            raise errors.BzrError('mismatched lock context %r and '
1549
946
                'write group %r.' %
1550
947
                (self.get_transaction(), self._write_group))
1551
 
        result = self._commit_write_group()
 
948
        self._commit_write_group()
1552
949
        self._write_group = None
1553
 
        return result
1554
950
 
1555
951
    def _commit_write_group(self):
1556
952
        """Template method for per-repository write group cleanup.
1557
 
 
1558
 
        This is called before the write group is considered to be
 
953
        
 
954
        This is called before the write group is considered to be 
1559
955
        finished and should ensure that all data handed to the repository
1560
 
        for writing during the write group is safely committed (to the
 
956
        for writing during the write group is safely committed (to the 
1561
957
        extent possible considering file system caching etc).
1562
958
        """
1563
959
 
1564
 
    def suspend_write_group(self):
1565
 
        raise errors.UnsuspendableWriteGroup(self)
1566
 
 
1567
 
    def get_missing_parent_inventories(self, check_for_missing_texts=True):
1568
 
        """Return the keys of missing inventory parents for revisions added in
1569
 
        this write group.
1570
 
 
1571
 
        A revision is not complete if the inventory delta for that revision
1572
 
        cannot be calculated.  Therefore if the parent inventories of a
1573
 
        revision are not present, the revision is incomplete, and e.g. cannot
1574
 
        be streamed by a smart server.  This method finds missing inventory
1575
 
        parents for revisions added in this write group.
1576
 
        """
1577
 
        if not self._format.supports_external_lookups:
1578
 
            # This is only an issue for stacked repositories
1579
 
            return set()
1580
 
        if not self.is_in_write_group():
1581
 
            raise AssertionError('not in a write group')
1582
 
 
1583
 
        # XXX: We assume that every added revision already has its
1584
 
        # corresponding inventory, so we only check for parent inventories that
1585
 
        # might be missing, rather than all inventories.
1586
 
        parents = set(self.revisions._index.get_missing_parents())
1587
 
        parents.discard(_mod_revision.NULL_REVISION)
1588
 
        unstacked_inventories = self.inventories._index
1589
 
        present_inventories = unstacked_inventories.get_parent_map(
1590
 
            key[-1:] for key in parents)
1591
 
        parents.difference_update(present_inventories)
1592
 
        if len(parents) == 0:
1593
 
            # No missing parent inventories.
1594
 
            return set()
1595
 
        if not check_for_missing_texts:
1596
 
            return set(('inventories', rev_id) for (rev_id,) in parents)
1597
 
        # Ok, now we have a list of missing inventories.  But these only matter
1598
 
        # if the inventories that reference them are missing some texts they
1599
 
        # appear to introduce.
1600
 
        # XXX: Texts referenced by all added inventories need to be present,
1601
 
        # but at the moment we're only checking for texts referenced by
1602
 
        # inventories at the graph's edge.
1603
 
        key_deps = self.revisions._index._key_dependencies
1604
 
        key_deps.add_keys(present_inventories)
1605
 
        referrers = frozenset(r[0] for r in key_deps.get_referrers())
1606
 
        file_ids = self.fileids_altered_by_revision_ids(referrers)
1607
 
        missing_texts = set()
1608
 
        for file_id, version_ids in file_ids.iteritems():
1609
 
            missing_texts.update(
1610
 
                (file_id, version_id) for version_id in version_ids)
1611
 
        present_texts = self.texts.get_parent_map(missing_texts)
1612
 
        missing_texts.difference_update(present_texts)
1613
 
        if not missing_texts:
1614
 
            # No texts are missing, so all revisions and their deltas are
1615
 
            # reconstructable.
1616
 
            return set()
1617
 
        # Alternatively the text versions could be returned as the missing
1618
 
        # keys, but this is likely to be less data.
1619
 
        missing_keys = set(('inventories', rev_id) for (rev_id,) in parents)
1620
 
        return missing_keys
1621
 
 
1622
 
    def refresh_data(self):
1623
 
        """Re-read any data needed to to synchronise with disk.
1624
 
 
1625
 
        This method is intended to be called after another repository instance
1626
 
        (such as one used by a smart server) has inserted data into the
1627
 
        repository. It may not be called during a write group, but may be
1628
 
        called at any other time.
1629
 
        """
1630
 
        if self.is_in_write_group():
1631
 
            raise errors.InternalBzrError(
1632
 
                "May not refresh_data while in a write group.")
1633
 
        self._refresh_data()
1634
 
 
1635
 
    def resume_write_group(self, tokens):
1636
 
        if not self.is_write_locked():
1637
 
            raise errors.NotWriteLocked(self)
1638
 
        if self._write_group:
1639
 
            raise errors.BzrError('already in a write group')
1640
 
        self._resume_write_group(tokens)
1641
 
        # so we can detect unlock/relock - the write group is now entered.
1642
 
        self._write_group = self.get_transaction()
1643
 
 
1644
 
    def _resume_write_group(self, tokens):
1645
 
        raise errors.UnsuspendableWriteGroup(self)
1646
 
 
1647
 
    def fetch(self, source, revision_id=None, pb=None, find_ghosts=False,
1648
 
            fetch_spec=None):
 
960
    def fetch(self, source, revision_id=None, pb=None, find_ghosts=False):
1649
961
        """Fetch the content required to construct revision_id from source.
1650
962
 
1651
 
        If revision_id is None and fetch_spec is None, then all content is
1652
 
        copied.
1653
 
 
1654
 
        fetch() may not be used when the repository is in a write group -
1655
 
        either finish the current write group before using fetch, or use
1656
 
        fetch before starting the write group.
1657
 
 
 
963
        If revision_id is None all content is copied.
1658
964
        :param find_ghosts: Find and copy revisions in the source that are
1659
965
            ghosts in the target (and not reachable directly by walking out to
1660
966
            the first-present revision in target from revision_id).
1661
 
        :param revision_id: If specified, all the content needed for this
1662
 
            revision ID will be copied to the target.  Fetch will determine for
1663
 
            itself which content needs to be copied.
1664
 
        :param fetch_spec: If specified, a SearchResult or
1665
 
            PendingAncestryResult that describes which revisions to copy.  This
1666
 
            allows copying multiple heads at once.  Mutually exclusive with
1667
 
            revision_id.
1668
967
        """
1669
 
        if fetch_spec is not None and revision_id is not None:
1670
 
            raise AssertionError(
1671
 
                "fetch_spec and revision_id are mutually exclusive.")
1672
 
        if self.is_in_write_group():
1673
 
            raise errors.InternalBzrError(
1674
 
                "May not fetch while in a write group.")
1675
968
        # fast path same-url fetch operations
1676
 
        # TODO: lift out to somewhere common with RemoteRepository
1677
 
        # <https://bugs.edge.launchpad.net/bzr/+bug/401646>
1678
 
        if (self.has_same_location(source)
1679
 
            and fetch_spec is None
1680
 
            and self._has_same_fallbacks(source)):
 
969
        if self.has_same_location(source):
1681
970
            # check that last_revision is in 'from' and then return a
1682
971
            # no-operation.
1683
972
            if (revision_id is not None and
1689
978
        # IncompatibleRepositories when asked to fetch.
1690
979
        inter = InterRepository.get(source, self)
1691
980
        return inter.fetch(revision_id=revision_id, pb=pb,
1692
 
            find_ghosts=find_ghosts, fetch_spec=fetch_spec)
 
981
            find_ghosts=find_ghosts)
1693
982
 
1694
983
    def create_bundle(self, target, base, fileobj, format=None):
1695
984
        return serializer.write_bundle(self, target, base, fileobj, format)
1698
987
                           timezone=None, committer=None, revprops=None,
1699
988
                           revision_id=None):
1700
989
        """Obtain a CommitBuilder for this repository.
1701
 
 
 
990
        
1702
991
        :param branch: Branch to commit to.
1703
992
        :param parents: Revision ids of the parents of the new revision.
1704
993
        :param config: Configuration to use.
1708
997
        :param revprops: Optional dictionary of revision properties.
1709
998
        :param revision_id: Optional revision id.
1710
999
        """
1711
 
        if self._fallback_repositories:
1712
 
            raise errors.BzrError("Cannot commit from a lightweight checkout "
1713
 
                "to a stacked branch. See "
1714
 
                "https://bugs.launchpad.net/bzr/+bug/375013 for details.")
1715
1000
        result = self._commit_builder_class(self, parents, config,
1716
1001
            timestamp, timezone, committer, revprops, revision_id)
1717
1002
        self.start_write_group()
1726
1011
                raise errors.BzrError(
1727
1012
                    'Must end write groups before releasing write locks.')
1728
1013
        self.control_files.unlock()
1729
 
        if self.control_files._lock_count == 0:
1730
 
            self._inventory_entry_cache.clear()
1731
 
            for repo in self._fallback_repositories:
1732
 
                repo.unlock()
 
1014
        for repo in self._fallback_repositories:
 
1015
            repo.unlock()
1733
1016
 
1734
1017
    @needs_read_lock
1735
1018
    def clone(self, a_bzrdir, revision_id=None):
1770
1053
 
1771
1054
    def _start_write_group(self):
1772
1055
        """Template method for per-repository write group startup.
1773
 
 
1774
 
        This is called before the write group is considered to be
 
1056
        
 
1057
        This is called before the write group is considered to be 
1775
1058
        entered.
1776
1059
        """
1777
1060
 
1798
1081
                dest_repo = a_bzrdir.open_repository()
1799
1082
        return dest_repo
1800
1083
 
1801
 
    def _get_sink(self):
1802
 
        """Return a sink for streaming into this repository."""
1803
 
        return StreamSink(self)
1804
 
 
1805
 
    def _get_source(self, to_format):
1806
 
        """Return a source for streaming from this repository."""
1807
 
        return StreamSource(self, to_format)
1808
 
 
1809
1084
    @needs_read_lock
1810
1085
    def has_revision(self, revision_id):
1811
1086
        """True if this repository has a copy of the revision."""
1834
1109
    @needs_read_lock
1835
1110
    def get_revision_reconcile(self, revision_id):
1836
1111
        """'reconcile' helper routine that allows access to a revision always.
1837
 
 
 
1112
        
1838
1113
        This variant of get_revision does not cross check the weave graph
1839
1114
        against the revision one as get_revision does: but it should only
1840
1115
        be used by reconcile, or reconcile-alike commands that are correcting
1844
1119
 
1845
1120
    @needs_read_lock
1846
1121
    def get_revisions(self, revision_ids):
1847
 
        """Get many revisions at once.
1848
 
        
1849
 
        Repositories that need to check data on every revision read should 
1850
 
        subclass this method.
1851
 
        """
 
1122
        """Get many revisions at once."""
1852
1123
        return self._get_revisions(revision_ids)
1853
1124
 
1854
1125
    @needs_read_lock
1855
1126
    def _get_revisions(self, revision_ids):
1856
1127
        """Core work logic to get many revisions without sanity checks."""
 
1128
        for rev_id in revision_ids:
 
1129
            if not rev_id or not isinstance(rev_id, basestring):
 
1130
                raise errors.InvalidRevisionId(revision_id=rev_id, branch=self)
 
1131
        keys = [(key,) for key in revision_ids]
 
1132
        stream = self.revisions.get_record_stream(keys, 'unordered', True)
1857
1133
        revs = {}
1858
 
        for revid, rev in self._iter_revisions(revision_ids):
1859
 
            if rev is None:
1860
 
                raise errors.NoSuchRevision(self, revid)
1861
 
            revs[revid] = rev
 
1134
        for record in stream:
 
1135
            if record.storage_kind == 'absent':
 
1136
                raise errors.NoSuchRevision(self, record.key[0])
 
1137
            text = record.get_bytes_as('fulltext')
 
1138
            rev = self._serializer.read_revision_from_string(text)
 
1139
            revs[record.key[0]] = rev
1862
1140
        return [revs[revid] for revid in revision_ids]
1863
1141
 
1864
 
    def _iter_revisions(self, revision_ids):
1865
 
        """Iterate over revision objects.
1866
 
 
1867
 
        :param revision_ids: An iterable of revisions to examine. None may be
1868
 
            passed to request all revisions known to the repository. Note that
1869
 
            not all repositories can find unreferenced revisions; for those
1870
 
            repositories only referenced ones will be returned.
1871
 
        :return: An iterator of (revid, revision) tuples. Absent revisions (
1872
 
            those asked for but not available) are returned as (revid, None).
1873
 
        """
1874
 
        if revision_ids is None:
1875
 
            revision_ids = self.all_revision_ids()
1876
 
        else:
1877
 
            for rev_id in revision_ids:
1878
 
                if not rev_id or not isinstance(rev_id, basestring):
1879
 
                    raise errors.InvalidRevisionId(revision_id=rev_id, branch=self)
1880
 
        keys = [(key,) for key in revision_ids]
1881
 
        stream = self.revisions.get_record_stream(keys, 'unordered', True)
1882
 
        for record in stream:
1883
 
            revid = record.key[0]
1884
 
            if record.storage_kind == 'absent':
1885
 
                yield (revid, None)
1886
 
            else:
1887
 
                text = record.get_bytes_as('fulltext')
1888
 
                rev = self._serializer.read_revision_from_string(text)
1889
 
                yield (revid, rev)
1890
 
 
1891
1142
    @needs_read_lock
1892
1143
    def get_revision_xml(self, revision_id):
1893
1144
        # TODO: jam 20070210 This shouldn't be necessary since get_revision
1894
1145
        #       would have already do it.
1895
1146
        # TODO: jam 20070210 Just use _serializer.write_revision_to_string()
1896
 
        # TODO: this can't just be replaced by:
1897
 
        # return self._serializer.write_revision_to_string(
1898
 
        #     self.get_revision(revision_id))
1899
 
        # as cStringIO preservers the encoding unlike write_revision_to_string
1900
 
        # or some other call down the path.
1901
1147
        rev = self.get_revision(revision_id)
1902
 
        rev_tmp = cStringIO.StringIO()
 
1148
        rev_tmp = StringIO()
1903
1149
        # the current serializer..
1904
1150
        self._serializer.write_revision(rev, rev_tmp)
1905
1151
        rev_tmp.seek(0)
1906
1152
        return rev_tmp.getvalue()
1907
1153
 
1908
 
    def get_deltas_for_revisions(self, revisions, specific_fileids=None):
 
1154
    def get_deltas_for_revisions(self, revisions):
1909
1155
        """Produce a generator of revision deltas.
1910
 
 
 
1156
        
1911
1157
        Note that the input is a sequence of REVISIONS, not revision_ids.
1912
1158
        Trees will be held in memory until the generator exits.
1913
1159
        Each delta is relative to the revision's lefthand predecessor.
1914
 
 
1915
 
        :param specific_fileids: if not None, the result is filtered
1916
 
          so that only those file-ids, their parents and their
1917
 
          children are included.
1918
1160
        """
1919
 
        # Get the revision-ids of interest
1920
1161
        required_trees = set()
1921
1162
        for revision in revisions:
1922
1163
            required_trees.add(revision.revision_id)
1923
1164
            required_trees.update(revision.parent_ids[:1])
1924
 
 
1925
 
        # Get the matching filtered trees. Note that it's more
1926
 
        # efficient to pass filtered trees to changes_from() rather
1927
 
        # than doing the filtering afterwards. changes_from() could
1928
 
        # arguably do the filtering itself but it's path-based, not
1929
 
        # file-id based, so filtering before or afterwards is
1930
 
        # currently easier.
1931
 
        if specific_fileids is None:
1932
 
            trees = dict((t.get_revision_id(), t) for
1933
 
                t in self.revision_trees(required_trees))
1934
 
        else:
1935
 
            trees = dict((t.get_revision_id(), t) for
1936
 
                t in self._filtered_revision_trees(required_trees,
1937
 
                specific_fileids))
1938
 
 
1939
 
        # Calculate the deltas
 
1165
        trees = dict((t.get_revision_id(), t) for 
 
1166
                     t in self.revision_trees(required_trees))
1940
1167
        for revision in revisions:
1941
1168
            if not revision.parent_ids:
1942
1169
                old_tree = self.revision_tree(_mod_revision.NULL_REVISION)
1945
1172
            yield trees[revision.revision_id].changes_from(old_tree)
1946
1173
 
1947
1174
    @needs_read_lock
1948
 
    def get_revision_delta(self, revision_id, specific_fileids=None):
 
1175
    def get_revision_delta(self, revision_id):
1949
1176
        """Return the delta for one revision.
1950
1177
 
1951
1178
        The delta is relative to the left-hand predecessor of the
1952
1179
        revision.
1953
 
 
1954
 
        :param specific_fileids: if not None, the result is filtered
1955
 
          so that only those file-ids, their parents and their
1956
 
          children are included.
1957
1180
        """
1958
1181
        r = self.get_revision(revision_id)
1959
 
        return list(self.get_deltas_for_revisions([r],
1960
 
            specific_fileids=specific_fileids))[0]
 
1182
        return list(self.get_deltas_for_revisions([r]))[0]
1961
1183
 
1962
1184
    @needs_write_lock
1963
1185
    def store_revision_signature(self, gpg_strategy, plaintext, revision_id):
1972
1194
    def find_text_key_references(self):
1973
1195
        """Find the text key references within the repository.
1974
1196
 
 
1197
        :return: a dictionary mapping (file_id, revision_id) tuples to altered file-ids to an iterable of
 
1198
        revision_ids. Each altered file-ids has the exact revision_ids that
 
1199
        altered it listed explicitly.
1975
1200
        :return: A dictionary mapping text keys ((fileid, revision_id) tuples)
1976
1201
            to whether they were referred to by the inventory of the
1977
1202
            revision_id that they contain. The inventory texts from all present
2008
1233
 
2009
1234
        # this code needs to read every new line in every inventory for the
2010
1235
        # inventories [revision_ids]. Seeing a line twice is ok. Seeing a line
2011
 
        # not present in one of those inventories is unnecessary but not
 
1236
        # not present in one of those inventories is unnecessary but not 
2012
1237
        # harmful because we are filtering by the revision id marker in the
2013
 
        # inventory lines : we only select file ids altered in one of those
 
1238
        # inventory lines : we only select file ids altered in one of those  
2014
1239
        # revisions. We don't need to see all lines in the inventory because
2015
1240
        # only those added in an inventory in rev X can contain a revision=X
2016
1241
        # line.
2066
1291
                result[key] = True
2067
1292
        return result
2068
1293
 
2069
 
    def _inventory_xml_lines_for_keys(self, keys):
2070
 
        """Get a line iterator of the sort needed for findind references.
2071
 
 
2072
 
        Not relevant for non-xml inventory repositories.
2073
 
 
2074
 
        Ghosts in revision_keys are ignored.
2075
 
 
2076
 
        :param revision_keys: The revision keys for the inventories to inspect.
2077
 
        :return: An iterator over (inventory line, revid) for the fulltexts of
2078
 
            all of the xml inventories specified by revision_keys.
2079
 
        """
2080
 
        stream = self.inventories.get_record_stream(keys, 'unordered', True)
2081
 
        for record in stream:
2082
 
            if record.storage_kind != 'absent':
2083
 
                chunks = record.get_bytes_as('chunked')
2084
 
                revid = record.key[-1]
2085
 
                lines = osutils.chunks_to_lines(chunks)
2086
 
                for line in lines:
2087
 
                    yield line, revid
2088
 
 
2089
1294
    def _find_file_ids_from_xml_inventory_lines(self, line_iterator,
2090
 
        revision_keys):
 
1295
        revision_ids):
2091
1296
        """Helper routine for fileids_altered_by_revision_ids.
2092
1297
 
2093
1298
        This performs the translation of xml lines to revision ids.
2094
1299
 
2095
1300
        :param line_iterator: An iterator of lines, origin_version_id
2096
 
        :param revision_keys: The revision ids to filter for. This should be a
 
1301
        :param revision_ids: The revision ids to filter for. This should be a
2097
1302
            set or other type which supports efficient __contains__ lookups, as
2098
 
            the revision key from each parsed line will be looked up in the
2099
 
            revision_keys filter.
 
1303
            the revision id from each parsed line will be looked up in the
 
1304
            revision_ids filter.
2100
1305
        :return: a dictionary mapping altered file-ids to an iterable of
2101
1306
        revision_ids. Each altered file-ids has the exact revision_ids that
2102
1307
        altered it listed explicitly.
2103
1308
        """
2104
 
        seen = set(self._find_text_key_references_from_xml_inventory_lines(
2105
 
                line_iterator).iterkeys())
2106
 
        parent_keys = self._find_parent_keys_of_revisions(revision_keys)
2107
 
        parent_seen = set(self._find_text_key_references_from_xml_inventory_lines(
2108
 
            self._inventory_xml_lines_for_keys(parent_keys)))
2109
 
        new_keys = seen - parent_seen
2110
1309
        result = {}
2111
1310
        setdefault = result.setdefault
2112
 
        for key in new_keys:
2113
 
            setdefault(key[0], set()).add(key[-1])
 
1311
        for key in \
 
1312
            self._find_text_key_references_from_xml_inventory_lines(
 
1313
                line_iterator).iterkeys():
 
1314
            # once data is all ensured-consistent; then this is
 
1315
            # if revision_id == version_id
 
1316
            if key[-1:] in revision_ids:
 
1317
                setdefault(key[0], set()).add(key[-1])
2114
1318
        return result
2115
1319
 
2116
 
    def _find_parent_ids_of_revisions(self, revision_ids):
2117
 
        """Find all parent ids that are mentioned in the revision graph.
2118
 
 
2119
 
        :return: set of revisions that are parents of revision_ids which are
2120
 
            not part of revision_ids themselves
2121
 
        """
2122
 
        parent_map = self.get_parent_map(revision_ids)
2123
 
        parent_ids = set()
2124
 
        map(parent_ids.update, parent_map.itervalues())
2125
 
        parent_ids.difference_update(revision_ids)
2126
 
        parent_ids.discard(_mod_revision.NULL_REVISION)
2127
 
        return parent_ids
2128
 
 
2129
 
    def _find_parent_keys_of_revisions(self, revision_keys):
2130
 
        """Similar to _find_parent_ids_of_revisions, but used with keys.
2131
 
 
2132
 
        :param revision_keys: An iterable of revision_keys.
2133
 
        :return: The parents of all revision_keys that are not already in
2134
 
            revision_keys
2135
 
        """
2136
 
        parent_map = self.revisions.get_parent_map(revision_keys)
2137
 
        parent_keys = set()
2138
 
        map(parent_keys.update, parent_map.itervalues())
2139
 
        parent_keys.difference_update(revision_keys)
2140
 
        parent_keys.discard(_mod_revision.NULL_REVISION)
2141
 
        return parent_keys
2142
 
 
2143
1320
    def fileids_altered_by_revision_ids(self, revision_ids, _inv_weave=None):
2144
1321
        """Find the file ids and versions affected by revisions.
2145
1322
 
2180
1357
        :param desired_files: a list of (file_id, revision_id, identifier)
2181
1358
            triples
2182
1359
        """
 
1360
        transaction = self.get_transaction()
2183
1361
        text_keys = {}
2184
1362
        for file_id, revision_id, callable_data in desired_files:
2185
1363
            text_keys[(file_id, revision_id)] = callable_data
2186
1364
        for record in self.texts.get_record_stream(text_keys, 'unordered', True):
2187
1365
            if record.storage_kind == 'absent':
2188
1366
                raise errors.RevisionNotPresent(record.key, self)
2189
 
            yield text_keys[record.key], record.get_bytes_as('chunked')
 
1367
            yield text_keys[record.key], record.get_bytes_as('fulltext')
2190
1368
 
2191
1369
    def _generate_text_key_index(self, text_key_references=None,
2192
1370
        ancestors=None):
2241
1419
        batch_size = 10 # should be ~150MB on a 55K path tree
2242
1420
        batch_count = len(revision_order) / batch_size + 1
2243
1421
        processed_texts = 0
2244
 
        pb.update("Calculating text parents", processed_texts, text_count)
 
1422
        pb.update("Calculating text parents.", processed_texts, text_count)
2245
1423
        for offset in xrange(batch_count):
2246
1424
            to_query = revision_order[offset * batch_size:(offset + 1) *
2247
1425
                batch_size]
2248
1426
            if not to_query:
2249
1427
                break
2250
 
            for revision_id in to_query:
 
1428
            for rev_tree in self.revision_trees(to_query):
 
1429
                revision_id = rev_tree.get_revision_id()
2251
1430
                parent_ids = ancestors[revision_id]
2252
1431
                for text_key in revision_keys[revision_id]:
2253
 
                    pb.update("Calculating text parents", processed_texts)
 
1432
                    pb.update("Calculating text parents.", processed_texts)
2254
1433
                    processed_texts += 1
2255
1434
                    candidate_parents = []
2256
1435
                    for parent_id in parent_ids:
2272
1451
                            except KeyError:
2273
1452
                                inv = self.revision_tree(parent_id).inventory
2274
1453
                                inventory_cache[parent_id] = inv
2275
 
                            try:
2276
 
                                parent_entry = inv[text_key[0]]
2277
 
                            except (KeyError, errors.NoSuchId):
2278
 
                                parent_entry = None
 
1454
                            parent_entry = inv._byid.get(text_key[0], None)
2279
1455
                            if parent_entry is not None:
2280
1456
                                parent_text_key = (
2281
1457
                                    text_key[0], parent_entry.revision)
2306
1482
            versions).  knit-kind is one of 'file', 'inventory', 'signatures',
2307
1483
            'revisions'.  file-id is None unless knit-kind is 'file'.
2308
1484
        """
2309
 
        for result in self._find_file_keys_to_fetch(revision_ids, _files_pb):
2310
 
            yield result
2311
 
        del _files_pb
2312
 
        for result in self._find_non_file_keys_to_fetch(revision_ids):
2313
 
            yield result
2314
 
 
2315
 
    def _find_file_keys_to_fetch(self, revision_ids, pb):
2316
1485
        # XXX: it's a bit weird to control the inventory weave caching in this
2317
1486
        # generator.  Ideally the caching would be done in fetch.py I think.  Or
2318
1487
        # maybe this generator should explicitly have the contract that it
2325
1494
        count = 0
2326
1495
        num_file_ids = len(file_ids)
2327
1496
        for file_id, altered_versions in file_ids.iteritems():
2328
 
            if pb is not None:
2329
 
                pb.update("fetch texts", count, num_file_ids)
 
1497
            if _files_pb is not None:
 
1498
                _files_pb.update("fetch texts", count, num_file_ids)
2330
1499
            count += 1
2331
1500
            yield ("file", file_id, altered_versions)
 
1501
        # We're done with the files_pb.  Note that it finished by the caller,
 
1502
        # just as it was created by the caller.
 
1503
        del _files_pb
2332
1504
 
2333
 
    def _find_non_file_keys_to_fetch(self, revision_ids):
2334
1505
        # inventory
2335
1506
        yield ("inventory", None, revision_ids)
2336
1507
 
2337
1508
        # signatures
2338
 
        # XXX: Note ATM no callers actually pay attention to this return
2339
 
        #      instead they just use the list of revision ids and ignore
2340
 
        #      missing sigs. Consider removing this work entirely
2341
 
        revisions_with_signatures = set(self.signatures.get_parent_map(
2342
 
            [(r,) for r in revision_ids]))
2343
 
        revisions_with_signatures = set(
2344
 
            [r for (r,) in revisions_with_signatures])
2345
 
        revisions_with_signatures.intersection_update(revision_ids)
 
1509
        revisions_with_signatures = set()
 
1510
        for rev_id in revision_ids:
 
1511
            try:
 
1512
                self.get_signature_text(rev_id)
 
1513
            except errors.NoSuchRevision:
 
1514
                # not signed.
 
1515
                pass
 
1516
            else:
 
1517
                revisions_with_signatures.add(rev_id)
2346
1518
        yield ("signatures", None, revisions_with_signatures)
2347
1519
 
2348
1520
        # revisions
2353
1525
        """Get Inventory object by revision id."""
2354
1526
        return self.iter_inventories([revision_id]).next()
2355
1527
 
2356
 
    def iter_inventories(self, revision_ids, ordering=None):
 
1528
    def iter_inventories(self, revision_ids):
2357
1529
        """Get many inventories by revision_ids.
2358
1530
 
2359
1531
        This will buffer some or all of the texts used in constructing the
2360
1532
        inventories in memory, but will only parse a single inventory at a
2361
1533
        time.
2362
1534
 
2363
 
        :param revision_ids: The expected revision ids of the inventories.
2364
 
        :param ordering: optional ordering, e.g. 'topological'.  If not
2365
 
            specified, the order of revision_ids will be preserved (by
2366
 
            buffering if necessary).
2367
1535
        :return: An iterator of inventories.
2368
1536
        """
2369
1537
        if ((None in revision_ids)
2370
1538
            or (_mod_revision.NULL_REVISION in revision_ids)):
2371
1539
            raise ValueError('cannot get null revision inventory')
2372
 
        return self._iter_inventories(revision_ids, ordering)
 
1540
        return self._iter_inventories(revision_ids)
2373
1541
 
2374
 
    def _iter_inventories(self, revision_ids, ordering):
 
1542
    def _iter_inventories(self, revision_ids):
2375
1543
        """single-document based inventory iteration."""
2376
 
        inv_xmls = self._iter_inventory_xmls(revision_ids, ordering)
2377
 
        for text, revision_id in inv_xmls:
 
1544
        for text, revision_id in self._iter_inventory_xmls(revision_ids):
2378
1545
            yield self.deserialise_inventory(revision_id, text)
2379
1546
 
2380
 
    def _iter_inventory_xmls(self, revision_ids, ordering):
2381
 
        if ordering is None:
2382
 
            order_as_requested = True
2383
 
            ordering = 'unordered'
2384
 
        else:
2385
 
            order_as_requested = False
 
1547
    def _iter_inventory_xmls(self, revision_ids):
2386
1548
        keys = [(revision_id,) for revision_id in revision_ids]
2387
 
        if not keys:
2388
 
            return
2389
 
        if order_as_requested:
2390
 
            key_iter = iter(keys)
2391
 
            next_key = key_iter.next()
2392
 
        stream = self.inventories.get_record_stream(keys, ordering, True)
2393
 
        text_chunks = {}
 
1549
        stream = self.inventories.get_record_stream(keys, 'unordered', True)
 
1550
        texts = {}
2394
1551
        for record in stream:
2395
1552
            if record.storage_kind != 'absent':
2396
 
                chunks = record.get_bytes_as('chunked')
2397
 
                if order_as_requested:
2398
 
                    text_chunks[record.key] = chunks
2399
 
                else:
2400
 
                    yield ''.join(chunks), record.key[-1]
 
1553
                texts[record.key] = record.get_bytes_as('fulltext')
2401
1554
            else:
2402
1555
                raise errors.NoSuchRevision(self, record.key)
2403
 
            if order_as_requested:
2404
 
                # Yield as many results as we can while preserving order.
2405
 
                while next_key in text_chunks:
2406
 
                    chunks = text_chunks.pop(next_key)
2407
 
                    yield ''.join(chunks), next_key[-1]
2408
 
                    try:
2409
 
                        next_key = key_iter.next()
2410
 
                    except StopIteration:
2411
 
                        # We still want to fully consume the get_record_stream,
2412
 
                        # just in case it is not actually finished at this point
2413
 
                        next_key = None
2414
 
                        break
 
1556
        for key in keys:
 
1557
            yield texts[key], key[-1]
2415
1558
 
2416
1559
    def deserialise_inventory(self, revision_id, xml):
2417
 
        """Transform the xml into an inventory object.
 
1560
        """Transform the xml into an inventory object. 
2418
1561
 
2419
1562
        :param revision_id: The expected revision id of the inventory.
2420
1563
        :param xml: A serialised inventory.
2421
1564
        """
2422
 
        result = self._serializer.read_inventory_from_string(xml, revision_id,
2423
 
                    entry_cache=self._inventory_entry_cache)
 
1565
        result = self._serializer.read_inventory_from_string(xml, revision_id)
2424
1566
        if result.revision_id != revision_id:
2425
1567
            raise AssertionError('revision id mismatch %s != %s' % (
2426
1568
                result.revision_id, revision_id))
2438
1580
    @needs_read_lock
2439
1581
    def get_inventory_xml(self, revision_id):
2440
1582
        """Get inventory XML as a file object."""
2441
 
        texts = self._iter_inventory_xmls([revision_id], 'unordered')
 
1583
        texts = self._iter_inventory_xmls([revision_id])
2442
1584
        try:
2443
1585
            text, revision_id = texts.next()
2444
1586
        except StopIteration:
2451
1593
        """
2452
1594
        return self.get_revision(revision_id).inventory_sha1
2453
1595
 
2454
 
    def get_rev_id_for_revno(self, revno, known_pair):
2455
 
        """Return the revision id of a revno, given a later (revno, revid)
2456
 
        pair in the same history.
2457
 
 
2458
 
        :return: if found (True, revid).  If the available history ran out
2459
 
            before reaching the revno, then this returns
2460
 
            (False, (closest_revno, closest_revid)).
2461
 
        """
2462
 
        known_revno, known_revid = known_pair
2463
 
        partial_history = [known_revid]
2464
 
        distance_from_known = known_revno - revno
2465
 
        if distance_from_known < 0:
2466
 
            raise ValueError(
2467
 
                'requested revno (%d) is later than given known revno (%d)'
2468
 
                % (revno, known_revno))
2469
 
        try:
2470
 
            _iter_for_revno(
2471
 
                self, partial_history, stop_index=distance_from_known)
2472
 
        except errors.RevisionNotPresent, err:
2473
 
            if err.revision_id == known_revid:
2474
 
                # The start revision (known_revid) wasn't found.
2475
 
                raise
2476
 
            # This is a stacked repository with no fallbacks, or a there's a
2477
 
            # left-hand ghost.  Either way, even though the revision named in
2478
 
            # the error isn't in this repo, we know it's the next step in this
2479
 
            # left-hand history.
2480
 
            partial_history.append(err.revision_id)
2481
 
        if len(partial_history) <= distance_from_known:
2482
 
            # Didn't find enough history to get a revid for the revno.
2483
 
            earliest_revno = known_revno - len(partial_history) + 1
2484
 
            return (False, (earliest_revno, partial_history[-1]))
2485
 
        if len(partial_history) - 1 > distance_from_known:
2486
 
            raise AssertionError('_iter_for_revno returned too much history')
2487
 
        return (True, partial_history[-1])
2488
 
 
2489
1596
    def iter_reverse_revision_history(self, revision_id):
2490
1597
        """Iterate backwards through revision ids in the lefthand history
2491
1598
 
2497
1604
        while True:
2498
1605
            if next_id in (None, _mod_revision.NULL_REVISION):
2499
1606
                return
2500
 
            try:
2501
 
                parents = graph.get_parent_map([next_id])[next_id]
2502
 
            except KeyError:
2503
 
                raise errors.RevisionNotPresent(next_id, self)
2504
1607
            yield next_id
 
1608
            # Note: The following line may raise KeyError in the event of
 
1609
            # truncated history. We decided not to have a try:except:raise
 
1610
            # RevisionNotPresent here until we see a use for it, because of the
 
1611
            # cost in an inner loop that is by its very nature O(history).
 
1612
            # Robert Collins 20080326
 
1613
            parents = graph.get_parent_map([next_id])[next_id]
2505
1614
            if len(parents) == 0:
2506
1615
                return
2507
1616
            else:
2542
1651
        for repositories to maintain loaded indices across multiple locks
2543
1652
        by checking inside their implementation of this method to see
2544
1653
        whether their indices are still valid. This depends of course on
2545
 
        the disk format being validatable in this manner. This method is
2546
 
        also called by the refresh_data() public interface to cause a refresh
2547
 
        to occur while in a write lock so that data inserted by a smart server
2548
 
        push operation is visible on the client's instance of the physical
2549
 
        repository.
 
1654
        the disk format being validatable in this manner.
2550
1655
        """
2551
1656
 
2552
1657
    @needs_read_lock
2559
1664
        # TODO: refactor this to use an existing revision object
2560
1665
        # so we don't need to read it in twice.
2561
1666
        if revision_id == _mod_revision.NULL_REVISION:
2562
 
            return RevisionTree(self, Inventory(root_id=None),
 
1667
            return RevisionTree(self, Inventory(root_id=None), 
2563
1668
                                _mod_revision.NULL_REVISION)
2564
1669
        else:
2565
1670
            inv = self.get_revision_inventory(revision_id)
2566
1671
            return RevisionTree(self, inv, revision_id)
2567
1672
 
2568
1673
    def revision_trees(self, revision_ids):
2569
 
        """Return Trees for revisions in this repository.
 
1674
        """Return Tree for a revision on this branch.
2570
1675
 
2571
 
        :param revision_ids: a sequence of revision-ids;
2572
 
          a revision-id may not be None or 'null:'
2573
 
        """
 
1676
        `revision_id` may not be None or 'null:'"""
2574
1677
        inventories = self.iter_inventories(revision_ids)
2575
1678
        for inv in inventories:
2576
1679
            yield RevisionTree(self, inv, inv.revision_id)
2577
1680
 
2578
 
    def _filtered_revision_trees(self, revision_ids, file_ids):
2579
 
        """Return Tree for a revision on this branch with only some files.
2580
 
 
2581
 
        :param revision_ids: a sequence of revision-ids;
2582
 
          a revision-id may not be None or 'null:'
2583
 
        :param file_ids: if not None, the result is filtered
2584
 
          so that only those file-ids, their parents and their
2585
 
          children are included.
2586
 
        """
2587
 
        inventories = self.iter_inventories(revision_ids)
2588
 
        for inv in inventories:
2589
 
            # Should we introduce a FilteredRevisionTree class rather
2590
 
            # than pre-filter the inventory here?
2591
 
            filtered_inv = inv.filter(file_ids)
2592
 
            yield RevisionTree(self, filtered_inv, filtered_inv.revision_id)
2593
 
 
2594
1681
    @needs_read_lock
2595
1682
    def get_ancestry(self, revision_id, topo_sorted=True):
2596
1683
        """Return a list of revision-ids integrated by a revision.
2597
1684
 
2598
 
        The first element of the list is always None, indicating the origin
2599
 
        revision.  This might change when we have history horizons, or
 
1685
        The first element of the list is always None, indicating the origin 
 
1686
        revision.  This might change when we have history horizons, or 
2600
1687
        perhaps we should have a new API.
2601
 
 
 
1688
        
2602
1689
        This is topologically sorted.
2603
1690
        """
2604
1691
        if _mod_revision.is_null(revision_id):
2621
1708
            keys = tsort.topo_sort(parent_map)
2622
1709
        return [None] + list(keys)
2623
1710
 
2624
 
    def pack(self, hint=None):
 
1711
    def pack(self):
2625
1712
        """Compress the data within the repository.
2626
1713
 
2627
1714
        This operation only makes sense for some repository types. For other
2628
1715
        types it should be a no-op that just returns.
2629
1716
 
2630
1717
        This stub method does not require a lock, but subclasses should use
2631
 
        @needs_write_lock as this is a long running call its reasonable to
 
1718
        @needs_write_lock as this is a long running call its reasonable to 
2632
1719
        implicitly lock for the user.
 
1720
        """
2633
1721
 
2634
 
        :param hint: If not supplied, the whole repository is packed.
2635
 
            If supplied, the repository may use the hint parameter as a
2636
 
            hint for the parts of the repository to pack. A hint can be
2637
 
            obtained from the result of commit_write_group(). Out of
2638
 
            date hints are simply ignored, because concurrent operations
2639
 
            can obsolete them rapidly.
 
1722
    @needs_read_lock
 
1723
    @deprecated_method(one_six)
 
1724
    def print_file(self, file, revision_id):
 
1725
        """Print `file` to stdout.
 
1726
        
 
1727
        FIXME RBC 20060125 as John Meinel points out this is a bad api
 
1728
        - it writes to stdout, it assumes that that is valid etc. Fix
 
1729
        by creating a new more flexible convenience function.
2640
1730
        """
 
1731
        tree = self.revision_tree(revision_id)
 
1732
        # use inventory as it was in that revision
 
1733
        file_id = tree.inventory.path2id(file)
 
1734
        if not file_id:
 
1735
            # TODO: jam 20060427 Write a test for this code path
 
1736
            #       it had a bug in it, and was raising the wrong
 
1737
            #       exception.
 
1738
            raise errors.BzrError("%r is not present in revision %s" % (file, revision_id))
 
1739
        tree.print_file(file_id)
2641
1740
 
2642
1741
    def get_transaction(self):
2643
1742
        return self.control_files.get_transaction()
2644
1743
 
 
1744
    @deprecated_method(one_one)
 
1745
    def get_parents(self, revision_ids):
 
1746
        """See StackedParentsProvider.get_parents"""
 
1747
        parent_map = self.get_parent_map(revision_ids)
 
1748
        return [parent_map.get(r, None) for r in revision_ids]
 
1749
 
2645
1750
    def get_parent_map(self, revision_ids):
2646
 
        """See graph.StackedParentsProvider.get_parent_map"""
 
1751
        """See graph._StackedParentsProvider.get_parent_map"""
2647
1752
        # revisions index works in keys; this just works in revisions
2648
1753
        # therefore wrap and unwrap
2649
1754
        query_keys = []
2672
1777
        parents_provider = self._make_parents_provider()
2673
1778
        if (other_repository is not None and
2674
1779
            not self.has_same_location(other_repository)):
2675
 
            parents_provider = graph.StackedParentsProvider(
 
1780
            parents_provider = graph._StackedParentsProvider(
2676
1781
                [parents_provider, other_repository._make_parents_provider()])
2677
1782
        return graph.Graph(parents_provider)
2678
1783
 
2679
 
    def _get_versioned_file_checker(self, text_key_references=None,
2680
 
        ancestors=None):
2681
 
        """Return an object suitable for checking versioned files.
2682
 
        
2683
 
        :param text_key_references: if non-None, an already built
2684
 
            dictionary mapping text keys ((fileid, revision_id) tuples)
2685
 
            to whether they were referred to by the inventory of the
2686
 
            revision_id that they contain. If None, this will be
2687
 
            calculated.
2688
 
        :param ancestors: Optional result from
2689
 
            self.get_graph().get_parent_map(self.all_revision_ids()) if already
2690
 
            available.
2691
 
        """
2692
 
        return _VersionedFileChecker(self,
2693
 
            text_key_references=text_key_references, ancestors=ancestors)
 
1784
    def _get_versioned_file_checker(self):
 
1785
        """Return an object suitable for checking versioned files."""
 
1786
        return _VersionedFileChecker(self)
2694
1787
 
2695
1788
    def revision_ids_to_search_result(self, result_set):
2696
1789
        """Convert a set of revision ids to a graph SearchResult."""
2716
1809
                          working trees.
2717
1810
        """
2718
1811
        raise NotImplementedError(self.set_make_working_trees)
2719
 
 
 
1812
    
2720
1813
    def make_working_trees(self):
2721
1814
        """Returns the policy for making working trees on new branches."""
2722
1815
        raise NotImplementedError(self.make_working_trees)
2746
1839
        return record.get_bytes_as('fulltext')
2747
1840
 
2748
1841
    @needs_read_lock
2749
 
    def check(self, revision_ids=None, callback_refs=None, check_repo=True):
 
1842
    def check(self, revision_ids=None):
2750
1843
        """Check consistency of all history of given revision_ids.
2751
1844
 
2752
1845
        Different repository implementations should override _check().
2753
1846
 
2754
1847
        :param revision_ids: A non-empty list of revision_ids whose ancestry
2755
1848
             will be checked.  Typically the last revision_id of a branch.
2756
 
        :param callback_refs: A dict of check-refs to resolve and callback
2757
 
            the check/_check method on the items listed as wanting the ref.
2758
 
            see bzrlib.check.
2759
 
        :param check_repo: If False do not check the repository contents, just 
2760
 
            calculate the data callback_refs requires and call them back.
2761
1849
        """
2762
 
        return self._check(revision_ids, callback_refs=callback_refs,
2763
 
            check_repo=check_repo)
 
1850
        return self._check(revision_ids)
2764
1851
 
2765
 
    def _check(self, revision_ids, callback_refs, check_repo):
2766
 
        result = check.Check(self, check_repo=check_repo)
2767
 
        result.check(callback_refs)
 
1852
    def _check(self, revision_ids):
 
1853
        result = check.Check(self)
 
1854
        result.check()
2768
1855
        return result
2769
1856
 
2770
1857
    def _warn_if_deprecated(self):
2793
1880
                    revision_id.decode('ascii')
2794
1881
                except UnicodeDecodeError:
2795
1882
                    raise errors.NonAsciiRevisionId(method, self)
2796
 
 
 
1883
    
2797
1884
    def revision_graph_can_have_wrong_parents(self):
2798
1885
        """Is it possible for this repository to have a revision graph with
2799
1886
        incorrect parents?
2853
1940
    """
2854
1941
    repository.start_write_group()
2855
1942
    try:
2856
 
        inventory_cache = lru_cache.LRUCache(10)
2857
1943
        for n, (revision, revision_tree, signature) in enumerate(iterable):
2858
 
            _install_revision(repository, revision, revision_tree, signature,
2859
 
                inventory_cache)
 
1944
            _install_revision(repository, revision, revision_tree, signature)
2860
1945
            if pb is not None:
2861
1946
                pb.update('Transferring revisions', n + 1, num_revisions)
2862
1947
    except:
2866
1951
        repository.commit_write_group()
2867
1952
 
2868
1953
 
2869
 
def _install_revision(repository, rev, revision_tree, signature,
2870
 
    inventory_cache):
 
1954
def _install_revision(repository, rev, revision_tree, signature):
2871
1955
    """Install all revision data into a repository."""
2872
1956
    present_parents = []
2873
1957
    parent_trees = {}
2910
1994
        repository.texts.add_lines(text_key, text_parents, lines)
2911
1995
    try:
2912
1996
        # install the inventory
2913
 
        if repository._format._commit_inv_deltas and len(rev.parent_ids):
2914
 
            # Cache this inventory
2915
 
            inventory_cache[rev.revision_id] = inv
2916
 
            try:
2917
 
                basis_inv = inventory_cache[rev.parent_ids[0]]
2918
 
            except KeyError:
2919
 
                repository.add_inventory(rev.revision_id, inv, present_parents)
2920
 
            else:
2921
 
                delta = inv._make_delta(basis_inv)
2922
 
                repository.add_inventory_by_delta(rev.parent_ids[0], delta,
2923
 
                    rev.revision_id, present_parents)
2924
 
        else:
2925
 
            repository.add_inventory(rev.revision_id, inv, present_parents)
 
1997
        repository.add_inventory(rev.revision_id, inv, present_parents)
2926
1998
    except errors.RevisionAlreadyPresent:
2927
1999
        pass
2928
2000
    if signature is not None:
2932
2004
 
2933
2005
class MetaDirRepository(Repository):
2934
2006
    """Repositories in the new meta-dir layout.
2935
 
 
 
2007
    
2936
2008
    :ivar _transport: Transport for access to repository control files,
2937
2009
        typically pointing to .bzr/repository.
2938
2010
    """
2963
2035
        else:
2964
2036
            self._transport.put_bytes('no-working-trees', '',
2965
2037
                mode=self.bzrdir._get_file_mode())
2966
 
 
 
2038
    
2967
2039
    def make_working_trees(self):
2968
2040
        """Returns the policy for making working trees on new branches."""
2969
2041
        return not self._transport.has('no-working-trees')
2977
2049
            control_files)
2978
2050
 
2979
2051
 
2980
 
network_format_registry = registry.FormatRegistry()
2981
 
"""Registry of formats indexed by their network name.
2982
 
 
2983
 
The network name for a repository format is an identifier that can be used when
2984
 
referring to formats with smart server operations. See
2985
 
RepositoryFormat.network_name() for more detail.
2986
 
"""
2987
 
 
2988
 
 
2989
 
format_registry = registry.FormatRegistry(network_format_registry)
2990
 
"""Registry of formats, indexed by their BzrDirMetaFormat format string.
 
2052
class RepositoryFormatRegistry(registry.Registry):
 
2053
    """Registry of RepositoryFormats."""
 
2054
 
 
2055
    def get(self, format_string):
 
2056
        r = registry.Registry.get(self, format_string)
 
2057
        if callable(r):
 
2058
            r = r()
 
2059
        return r
 
2060
    
 
2061
 
 
2062
format_registry = RepositoryFormatRegistry()
 
2063
"""Registry of formats, indexed by their identifying format string.
2991
2064
 
2992
2065
This can contain either format instances themselves, or classes/factories that
2993
2066
can be called to obtain one.
3000
2073
class RepositoryFormat(object):
3001
2074
    """A repository format.
3002
2075
 
3003
 
    Formats provide four things:
 
2076
    Formats provide three things:
3004
2077
     * An initialization routine to construct repository data on disk.
3005
 
     * a optional format string which is used when the BzrDir supports
3006
 
       versioned children.
 
2078
     * a format string which is used when the BzrDir supports versioned
 
2079
       children.
3007
2080
     * an open routine which returns a Repository instance.
3008
 
     * A network name for referring to the format in smart server RPC
3009
 
       methods.
3010
2081
 
3011
2082
    There is one and only one Format subclass for each on-disk format. But
3012
2083
    there can be one Repository subclass that is used for several different
3013
2084
    formats. The _format attribute on a Repository instance can be used to
3014
2085
    determine the disk format.
3015
2086
 
3016
 
    Formats are placed in a registry by their format string for reference
3017
 
    during opening. These should be subclasses of RepositoryFormat for
3018
 
    consistency.
 
2087
    Formats are placed in an dict by their format string for reference 
 
2088
    during opening. These should be subclasses of RepositoryFormat
 
2089
    for consistency.
3019
2090
 
3020
2091
    Once a format is deprecated, just deprecate the initialize and open
3021
 
    methods on the format class. Do not deprecate the object, as the
3022
 
    object may be created even when a repository instance hasn't been
3023
 
    created.
 
2092
    methods on the format class. Do not deprecate the object, as the 
 
2093
    object will be created every system load.
3024
2094
 
3025
2095
    Common instance attributes:
3026
2096
    _matchingbzrdir - the bzrdir format that the repository format was
3035
2105
    # Can this repository be given external locations to lookup additional
3036
2106
    # data. Set to True or False in derived classes.
3037
2107
    supports_external_lookups = None
3038
 
    # Does this format support CHK bytestring lookups. Set to True or False in
3039
 
    # derived classes.
3040
 
    supports_chks = None
3041
 
    # Should commit add an inventory, or an inventory delta to the repository.
3042
 
    _commit_inv_deltas = True
3043
 
    # What order should fetch operations request streams in?
3044
 
    # The default is unordered as that is the cheapest for an origin to
3045
 
    # provide.
3046
 
    _fetch_order = 'unordered'
3047
 
    # Does this repository format use deltas that can be fetched as-deltas ?
3048
 
    # (E.g. knits, where the knit deltas can be transplanted intact.
3049
 
    # We default to False, which will ensure that enough data to get
3050
 
    # a full text out of any fetch stream will be grabbed.
3051
 
    _fetch_uses_deltas = False
3052
 
    # Should fetch trigger a reconcile after the fetch? Only needed for
3053
 
    # some repository formats that can suffer internal inconsistencies.
3054
 
    _fetch_reconcile = False
3055
 
    # Does this format have < O(tree_size) delta generation. Used to hint what
3056
 
    # code path for commit, amongst other things.
3057
 
    fast_deltas = None
3058
 
    # Does doing a pack operation compress data? Useful for the pack UI command
3059
 
    # (so if there is one pack, the operation can still proceed because it may
3060
 
    # help), and for fetching when data won't have come from the same
3061
 
    # compressor.
3062
 
    pack_compresses = False
3063
 
    # Does the repository inventory storage understand references to trees?
3064
 
    supports_tree_reference = None
3065
2108
 
3066
2109
    def __str__(self):
3067
2110
        return "<%s>" % self.__class__.__name__
3076
2119
    @classmethod
3077
2120
    def find_format(klass, a_bzrdir):
3078
2121
        """Return the format for the repository object in a_bzrdir.
3079
 
 
 
2122
        
3080
2123
        This is used by bzr native formats that have a "format" file in
3081
 
        the repository.  Other methods may be used by different types of
 
2124
        the repository.  Other methods may be used by different types of 
3082
2125
        control directory.
3083
2126
        """
3084
2127
        try:
3098
2141
    @classmethod
3099
2142
    def unregister_format(klass, format):
3100
2143
        format_registry.remove(format.get_format_string())
3101
 
 
 
2144
    
3102
2145
    @classmethod
3103
2146
    def get_default_format(klass):
3104
2147
        """Return the current default format."""
3107
2150
 
3108
2151
    def get_format_string(self):
3109
2152
        """Return the ASCII format string that identifies this format.
3110
 
 
3111
 
        Note that in pre format ?? repositories the format string is
 
2153
        
 
2154
        Note that in pre format ?? repositories the format string is 
3112
2155
        not permitted nor written to disk.
3113
2156
        """
3114
2157
        raise NotImplementedError(self.get_format_string)
3145
2188
        :param a_bzrdir: The bzrdir to put the new repository in it.
3146
2189
        :param shared: The repository should be initialized as a sharable one.
3147
2190
        :returns: The new repository object.
3148
 
 
 
2191
        
3149
2192
        This may raise UninitializableFormat if shared repository are not
3150
2193
        compatible the a_bzrdir.
3151
2194
        """
3155
2198
        """Is this format supported?
3156
2199
 
3157
2200
        Supported formats must be initializable and openable.
3158
 
        Unsupported formats may not support initialization or committing or
 
2201
        Unsupported formats may not support initialization or committing or 
3159
2202
        some other features depending on the reason for not being supported.
3160
2203
        """
3161
2204
        return True
3162
2205
 
3163
 
    def network_name(self):
3164
 
        """A simple byte string uniquely identifying this format for RPC calls.
3165
 
 
3166
 
        MetaDir repository formats use their disk format string to identify the
3167
 
        repository over the wire. All in one formats such as bzr < 0.8, and
3168
 
        foreign formats like svn/git and hg should use some marker which is
3169
 
        unique and immutable.
3170
 
        """
3171
 
        raise NotImplementedError(self.network_name)
3172
 
 
3173
2206
    def check_conversion_target(self, target_format):
3174
 
        if self.rich_root_data and not target_format.rich_root_data:
3175
 
            raise errors.BadConversionTarget(
3176
 
                'Does not support rich root data.', target_format,
3177
 
                from_format=self)
3178
 
        if (self.supports_tree_reference and 
3179
 
            not getattr(target_format, 'supports_tree_reference', False)):
3180
 
            raise errors.BadConversionTarget(
3181
 
                'Does not support nested trees', target_format,
3182
 
                from_format=self)
 
2207
        raise NotImplementedError(self.check_conversion_target)
3183
2208
 
3184
2209
    def open(self, a_bzrdir, _found=False):
3185
2210
        """Return an instance of this format for the bzrdir a_bzrdir.
3186
 
 
 
2211
        
3187
2212
        _found is a private parameter, do not use it.
3188
2213
        """
3189
2214
        raise NotImplementedError(self.open)
3195
2220
    rich_root_data = False
3196
2221
    supports_tree_reference = False
3197
2222
    supports_external_lookups = False
3198
 
 
3199
 
    @property
3200
 
    def _matchingbzrdir(self):
3201
 
        matching = bzrdir.BzrDirMetaFormat1()
3202
 
        matching.repository_format = self
3203
 
        return matching
 
2223
    _matchingbzrdir = bzrdir.BzrDirMetaFormat1()
3204
2224
 
3205
2225
    def __init__(self):
3206
2226
        super(MetaDirRepositoryFormat, self).__init__()
3233
2253
        finally:
3234
2254
            control_files.unlock()
3235
2255
 
3236
 
    def network_name(self):
3237
 
        """Metadir formats have matching disk and network format strings."""
3238
 
        return self.get_format_string()
3239
 
 
3240
 
 
3241
 
# Pre-0.8 formats that don't have a disk format string (because they are
3242
 
# versioned by the matching control directory). We use the control directories
3243
 
# disk format string as a key for the network_name because they meet the
3244
 
# constraints (simple string, unique, immutable).
3245
 
network_format_registry.register_lazy(
3246
 
    "Bazaar-NG branch, format 5\n",
3247
 
    'bzrlib.repofmt.weaverepo',
3248
 
    'RepositoryFormat5',
3249
 
)
3250
 
network_format_registry.register_lazy(
3251
 
    "Bazaar-NG branch, format 6\n",
3252
 
    'bzrlib.repofmt.weaverepo',
3253
 
    'RepositoryFormat6',
3254
 
)
3255
 
 
3256
 
# formats which have no format string are not discoverable or independently
3257
 
# creatable on disk, so are not registered in format_registry.  They're
 
2256
 
 
2257
# formats which have no format string are not discoverable
 
2258
# and not independently creatable, so are not registered.  They're 
3258
2259
# all in bzrlib.repofmt.weaverepo now.  When an instance of one of these is
3259
2260
# needed, it's constructed directly by the BzrDir.  Non-native formats where
3260
2261
# the repository is not separately opened are similar.
3316
2317
    'bzrlib.repofmt.pack_repo',
3317
2318
    'RepositoryFormatKnitPack5RichRootBroken',
3318
2319
    )
3319
 
format_registry.register_lazy(
3320
 
    'Bazaar RepositoryFormatKnitPack6 (bzr 1.9)\n',
3321
 
    'bzrlib.repofmt.pack_repo',
3322
 
    'RepositoryFormatKnitPack6',
3323
 
    )
3324
 
format_registry.register_lazy(
3325
 
    'Bazaar RepositoryFormatKnitPack6RichRoot (bzr 1.9)\n',
3326
 
    'bzrlib.repofmt.pack_repo',
3327
 
    'RepositoryFormatKnitPack6RichRoot',
3328
 
    )
3329
 
 
3330
 
# Development formats.
3331
 
# Obsolete but kept pending a CHK based subtree format.
3332
 
format_registry.register_lazy(
3333
 
    ("Bazaar development format 2 with subtree support "
3334
 
        "(needs bzr.dev from before 1.8)\n"),
3335
 
    'bzrlib.repofmt.pack_repo',
3336
 
    'RepositoryFormatPackDevelopment2Subtree',
3337
 
    )
3338
 
 
3339
 
# 1.14->1.16 go below here
3340
 
format_registry.register_lazy(
3341
 
    'Bazaar development format - group compression and chk inventory'
3342
 
        ' (needs bzr.dev from 1.14)\n',
3343
 
    'bzrlib.repofmt.groupcompress_repo',
3344
 
    'RepositoryFormatCHK1',
3345
 
    )
3346
 
 
3347
 
format_registry.register_lazy(
3348
 
    'Bazaar development format - chk repository with bencode revision '
3349
 
        'serialization (needs bzr.dev from 1.16)\n',
3350
 
    'bzrlib.repofmt.groupcompress_repo',
3351
 
    'RepositoryFormatCHK2',
3352
 
    )
3353
 
format_registry.register_lazy(
3354
 
    'Bazaar repository format 2a (needs bzr 1.16 or later)\n',
3355
 
    'bzrlib.repofmt.groupcompress_repo',
3356
 
    'RepositoryFormat2a',
3357
 
    )
 
2320
 
 
2321
# Development formats. 
 
2322
# 1.5->1.6
 
2323
format_registry.register_lazy(
 
2324
    "Bazaar development format 1 (needs bzr.dev from before 1.6)\n",
 
2325
    'bzrlib.repofmt.pack_repo',
 
2326
    'RepositoryFormatPackDevelopment1',
 
2327
    )
 
2328
format_registry.register_lazy(
 
2329
    ("Bazaar development format 1 with subtree support "
 
2330
        "(needs bzr.dev from before 1.6)\n"),
 
2331
    'bzrlib.repofmt.pack_repo',
 
2332
    'RepositoryFormatPackDevelopment1Subtree',
 
2333
    )
 
2334
# 1.6->1.7 go below here
3358
2335
 
3359
2336
 
3360
2337
class InterRepository(InterObject):
3361
2338
    """This class represents operations taking place between two repositories.
3362
2339
 
3363
2340
    Its instances have methods like copy_content and fetch, and contain
3364
 
    references to the source and target repositories these operations can be
 
2341
    references to the source and target repositories these operations can be 
3365
2342
    carried out on.
3366
2343
 
3367
2344
    Often we will provide convenience methods on 'repository' which carry out
3369
2346
    InterRepository.get(other).method_name(parameters).
3370
2347
    """
3371
2348
 
3372
 
    _walk_to_common_revisions_batch_size = 50
3373
2349
    _optimisers = []
3374
2350
    """The available optimised InterRepository types."""
3375
2351
 
3376
 
    @needs_write_lock
3377
2352
    def copy_content(self, revision_id=None):
3378
 
        """Make a complete copy of the content in self into destination.
3379
 
 
3380
 
        This is a destructive operation! Do not use it on existing
3381
 
        repositories.
3382
 
 
3383
 
        :param revision_id: Only copy the content needed to construct
3384
 
                            revision_id and its parents.
3385
 
        """
3386
 
        try:
3387
 
            self.target.set_make_working_trees(self.source.make_working_trees())
3388
 
        except NotImplementedError:
3389
 
            pass
3390
 
        self.target.fetch(self.source, revision_id=revision_id)
3391
 
 
3392
 
    @needs_write_lock
3393
 
    def fetch(self, revision_id=None, pb=None, find_ghosts=False,
3394
 
            fetch_spec=None):
 
2353
        raise NotImplementedError(self.copy_content)
 
2354
 
 
2355
    def fetch(self, revision_id=None, pb=None, find_ghosts=False):
3395
2356
        """Fetch the content required to construct revision_id.
3396
2357
 
3397
2358
        The content is copied from self.source to self.target.
3400
2361
                            content is copied.
3401
2362
        :param pb: optional progress bar to use for progress reports. If not
3402
2363
                   provided a default one will be created.
3403
 
        :return: None.
 
2364
 
 
2365
        :returns: (copied_revision_count, failures).
3404
2366
        """
3405
 
        from bzrlib.fetch import RepoFetcher
3406
 
        f = RepoFetcher(to_repository=self.target,
3407
 
                               from_repository=self.source,
3408
 
                               last_revision=revision_id,
3409
 
                               fetch_spec=fetch_spec,
3410
 
                               pb=pb, find_ghosts=find_ghosts)
 
2367
        # Normally we should find a specific InterRepository subclass to do
 
2368
        # the fetch; if nothing else then at least InterSameDataRepository.
 
2369
        # If none of them is suitable it looks like fetching is not possible;
 
2370
        # we try to give a good message why.  _assert_same_model will probably
 
2371
        # give a helpful message; otherwise a generic one.
 
2372
        self._assert_same_model(self.source, self.target)
 
2373
        raise errors.IncompatibleRepositories(self.source, self.target,
 
2374
            "no suitableInterRepository found")
3411
2375
 
3412
2376
    def _walk_to_common_revisions(self, revision_ids):
3413
2377
        """Walk out from revision_ids in source to revisions target has.
3417
2381
        """
3418
2382
        target_graph = self.target.get_graph()
3419
2383
        revision_ids = frozenset(revision_ids)
 
2384
        if set(target_graph.get_parent_map(revision_ids)) == revision_ids:
 
2385
            return graph.SearchResult(revision_ids, set(), 0, set())
3420
2386
        missing_revs = set()
3421
2387
        source_graph = self.source.get_graph()
3422
2388
        # ensure we don't pay silly lookup costs.
3423
2389
        searcher = source_graph._make_breadth_first_searcher(revision_ids)
3424
2390
        null_set = frozenset([_mod_revision.NULL_REVISION])
3425
 
        searcher_exhausted = False
3426
2391
        while True:
3427
 
            next_revs = set()
3428
 
            ghosts = set()
3429
 
            # Iterate the searcher until we have enough next_revs
3430
 
            while len(next_revs) < self._walk_to_common_revisions_batch_size:
3431
 
                try:
3432
 
                    next_revs_part, ghosts_part = searcher.next_with_ghosts()
3433
 
                    next_revs.update(next_revs_part)
3434
 
                    ghosts.update(ghosts_part)
3435
 
                except StopIteration:
3436
 
                    searcher_exhausted = True
3437
 
                    break
3438
 
            # If there are ghosts in the source graph, and the caller asked for
3439
 
            # them, make sure that they are present in the target.
3440
 
            # We don't care about other ghosts as we can't fetch them and
 
2392
            try:
 
2393
                next_revs, ghosts = searcher.next_with_ghosts()
 
2394
            except StopIteration:
 
2395
                break
 
2396
            if revision_ids.intersection(ghosts):
 
2397
                absent_ids = set(revision_ids.intersection(ghosts))
 
2398
                # If all absent_ids are present in target, no error is needed.
 
2399
                absent_ids.difference_update(
 
2400
                    set(target_graph.get_parent_map(absent_ids)))
 
2401
                if absent_ids:
 
2402
                    raise errors.NoSuchRevision(self.source, absent_ids.pop())
 
2403
            # we don't care about other ghosts as we can't fetch them and
3441
2404
            # haven't been asked to.
3442
 
            ghosts_to_check = set(revision_ids.intersection(ghosts))
3443
 
            revs_to_get = set(next_revs).union(ghosts_to_check)
3444
 
            if revs_to_get:
3445
 
                have_revs = set(target_graph.get_parent_map(revs_to_get))
3446
 
                # we always have NULL_REVISION present.
3447
 
                have_revs = have_revs.union(null_set)
3448
 
                # Check if the target is missing any ghosts we need.
3449
 
                ghosts_to_check.difference_update(have_revs)
3450
 
                if ghosts_to_check:
3451
 
                    # One of the caller's revision_ids is a ghost in both the
3452
 
                    # source and the target.
3453
 
                    raise errors.NoSuchRevision(
3454
 
                        self.source, ghosts_to_check.pop())
3455
 
                missing_revs.update(next_revs - have_revs)
3456
 
                # Because we may have walked past the original stop point, make
3457
 
                # sure everything is stopped
3458
 
                stop_revs = searcher.find_seen_ancestors(have_revs)
3459
 
                searcher.stop_searching_any(stop_revs)
3460
 
            if searcher_exhausted:
3461
 
                break
 
2405
            next_revs = set(next_revs)
 
2406
            # we always have NULL_REVISION present.
 
2407
            have_revs = set(target_graph.get_parent_map(next_revs)).union(null_set)
 
2408
            missing_revs.update(next_revs - have_revs)
 
2409
            searcher.stop_searching_any(have_revs)
3462
2410
        return searcher.get_result()
 
2411
   
 
2412
    @deprecated_method(one_two)
 
2413
    @needs_read_lock
 
2414
    def missing_revision_ids(self, revision_id=None, find_ghosts=True):
 
2415
        """Return the revision ids that source has that target does not.
 
2416
        
 
2417
        These are returned in topological order.
 
2418
 
 
2419
        :param revision_id: only return revision ids included by this
 
2420
                            revision_id.
 
2421
        :param find_ghosts: If True find missing revisions in deep history
 
2422
            rather than just finding the surface difference.
 
2423
        """
 
2424
        return list(self.search_missing_revision_ids(
 
2425
            revision_id, find_ghosts).get_keys())
3463
2426
 
3464
2427
    @needs_read_lock
3465
2428
    def search_missing_revision_ids(self, revision_id=None, find_ghosts=True):
3466
2429
        """Return the revision ids that source has that target does not.
3467
 
 
 
2430
        
3468
2431
        :param revision_id: only return revision ids included by this
3469
2432
                            revision_id.
3470
2433
        :param find_ghosts: If True find missing revisions in deep history
3489
2452
    @staticmethod
3490
2453
    def _same_model(source, target):
3491
2454
        """True if source and target have the same data representation.
3492
 
 
 
2455
        
3493
2456
        Note: this is always called on the base class; overriding it in a
3494
2457
        subclass will have no effect.
3495
2458
        """
3513
2476
 
3514
2477
class InterSameDataRepository(InterRepository):
3515
2478
    """Code for converting between repositories that represent the same data.
3516
 
 
 
2479
    
3517
2480
    Data format and model must match for this to work.
3518
2481
    """
3519
2482
 
3520
2483
    @classmethod
3521
2484
    def _get_repo_format_to_test(self):
3522
2485
        """Repository format for testing with.
3523
 
 
 
2486
        
3524
2487
        InterSameData can pull from subtree to subtree and from non-subtree to
3525
2488
        non-subtree, so we test this with the richest repository format.
3526
2489
        """
3531
2494
    def is_compatible(source, target):
3532
2495
        return InterRepository._same_model(source, target)
3533
2496
 
 
2497
    @needs_write_lock
 
2498
    def copy_content(self, revision_id=None):
 
2499
        """Make a complete copy of the content in self into destination.
 
2500
 
 
2501
        This copies both the repository's revision data, and configuration information
 
2502
        such as the make_working_trees setting.
 
2503
        
 
2504
        This is a destructive operation! Do not use it on existing 
 
2505
        repositories.
 
2506
 
 
2507
        :param revision_id: Only copy the content needed to construct
 
2508
                            revision_id and its parents.
 
2509
        """
 
2510
        try:
 
2511
            self.target.set_make_working_trees(self.source.make_working_trees())
 
2512
        except NotImplementedError:
 
2513
            pass
 
2514
        # but don't bother fetching if we have the needed data now.
 
2515
        if (revision_id not in (None, _mod_revision.NULL_REVISION) and 
 
2516
            self.target.has_revision(revision_id)):
 
2517
            return
 
2518
        self.target.fetch(self.source, revision_id=revision_id)
 
2519
 
 
2520
    @needs_write_lock
 
2521
    def fetch(self, revision_id=None, pb=None, find_ghosts=False):
 
2522
        """See InterRepository.fetch()."""
 
2523
        from bzrlib.fetch import RepoFetcher
 
2524
        mutter("Using fetch logic to copy between %s(%s) and %s(%s)",
 
2525
               self.source, self.source._format, self.target,
 
2526
               self.target._format)
 
2527
        f = RepoFetcher(to_repository=self.target,
 
2528
                               from_repository=self.source,
 
2529
                               last_revision=revision_id,
 
2530
                               pb=pb, find_ghosts=find_ghosts)
 
2531
        return f.count_copied, f.failed_revisions
 
2532
 
3534
2533
 
3535
2534
class InterWeaveRepo(InterSameDataRepository):
3536
2535
    """Optimised code paths between Weave based repositories.
3537
 
 
 
2536
    
3538
2537
    This should be in bzrlib/repofmt/weaverepo.py but we have not yet
3539
2538
    implemented lazy inter-object optimisation.
3540
2539
    """
3547
2546
    @staticmethod
3548
2547
    def is_compatible(source, target):
3549
2548
        """Be compatible with known Weave formats.
3550
 
 
 
2549
        
3551
2550
        We don't test for the stores being of specific types because that
3552
 
        could lead to confusing results, and there is no need to be
 
2551
        could lead to confusing results, and there is no need to be 
3553
2552
        overly general.
3554
2553
        """
3555
2554
        from bzrlib.repofmt.weaverepo import (
3566
2565
                                                RepositoryFormat7)))
3567
2566
        except AttributeError:
3568
2567
            return False
3569
 
 
 
2568
    
3570
2569
    @needs_write_lock
3571
2570
    def copy_content(self, revision_id=None):
3572
2571
        """See InterRepository.copy_content()."""
3599
2598
        else:
3600
2599
            self.target.fetch(self.source, revision_id=revision_id)
3601
2600
 
 
2601
    @needs_write_lock
 
2602
    def fetch(self, revision_id=None, pb=None, find_ghosts=False):
 
2603
        """See InterRepository.fetch()."""
 
2604
        from bzrlib.fetch import RepoFetcher
 
2605
        mutter("Using fetch logic to copy between %s(%s) and %s(%s)",
 
2606
               self.source, self.source._format, self.target, self.target._format)
 
2607
        f = RepoFetcher(to_repository=self.target,
 
2608
                               from_repository=self.source,
 
2609
                               last_revision=revision_id,
 
2610
                               pb=pb, find_ghosts=find_ghosts)
 
2611
        return f.count_copied, f.failed_revisions
 
2612
 
3602
2613
    @needs_read_lock
3603
2614
    def search_missing_revision_ids(self, revision_id=None, find_ghosts=True):
3604
2615
        """See InterRepository.missing_revision_ids()."""
3605
2616
        # we want all revisions to satisfy revision_id in source.
3606
2617
        # but we don't want to stat every file here and there.
3607
 
        # we want then, all revisions other needs to satisfy revision_id
 
2618
        # we want then, all revisions other needs to satisfy revision_id 
3608
2619
        # checked, but not those that we have locally.
3609
 
        # so the first thing is to get a subset of the revisions to
 
2620
        # so the first thing is to get a subset of the revisions to 
3610
2621
        # satisfy revision_id in source, and then eliminate those that
3611
 
        # we do already have.
3612
 
        # this is slow on high latency connection to self, but as this
3613
 
        # disk format scales terribly for push anyway due to rewriting
 
2622
        # we do already have. 
 
2623
        # this is slow on high latency connection to self, but as as this
 
2624
        # disk format scales terribly for push anyway due to rewriting 
3614
2625
        # inventory.weave, this is considered acceptable.
3615
2626
        # - RBC 20060209
3616
2627
        if revision_id is not None:
3636
2647
            # and the tip revision was validated by get_ancestry.
3637
2648
            result_set = required_revisions
3638
2649
        else:
3639
 
            # if we just grabbed the possibly available ids, then
 
2650
            # if we just grabbed the possibly available ids, then 
3640
2651
            # we only have an estimate of whats available and need to validate
3641
2652
            # that against the revision records.
3642
2653
            result_set = set(
3655
2666
    @staticmethod
3656
2667
    def is_compatible(source, target):
3657
2668
        """Be compatible with known Knit formats.
3658
 
 
 
2669
        
3659
2670
        We don't test for the stores being of specific types because that
3660
 
        could lead to confusing results, and there is no need to be
 
2671
        could lead to confusing results, and there is no need to be 
3661
2672
        overly general.
3662
2673
        """
3663
2674
        from bzrlib.repofmt.knitrepo import RepositoryFormatKnit
3668
2679
            return False
3669
2680
        return are_knits and InterRepository._same_model(source, target)
3670
2681
 
 
2682
    @needs_write_lock
 
2683
    def fetch(self, revision_id=None, pb=None, find_ghosts=False):
 
2684
        """See InterRepository.fetch()."""
 
2685
        from bzrlib.fetch import RepoFetcher
 
2686
        mutter("Using fetch logic to copy between %s(%s) and %s(%s)",
 
2687
               self.source, self.source._format, self.target, self.target._format)
 
2688
        f = RepoFetcher(to_repository=self.target,
 
2689
                            from_repository=self.source,
 
2690
                            last_revision=revision_id,
 
2691
                            pb=pb, find_ghosts=find_ghosts)
 
2692
        return f.count_copied, f.failed_revisions
 
2693
 
3671
2694
    @needs_read_lock
3672
2695
    def search_missing_revision_ids(self, revision_id=None, find_ghosts=True):
3673
2696
        """See InterRepository.missing_revision_ids()."""
3694
2717
            # and the tip revision was validated by get_ancestry.
3695
2718
            result_set = required_revisions
3696
2719
        else:
3697
 
            # if we just grabbed the possibly available ids, then
 
2720
            # if we just grabbed the possibly available ids, then 
3698
2721
            # we only have an estimate of whats available and need to validate
3699
2722
            # that against the revision records.
3700
2723
            result_set = set(
3702
2725
        return self.source.revision_ids_to_search_result(result_set)
3703
2726
 
3704
2727
 
3705
 
class InterDifferingSerializer(InterRepository):
 
2728
class InterPackRepo(InterSameDataRepository):
 
2729
    """Optimised code paths between Pack based repositories."""
 
2730
 
 
2731
    @classmethod
 
2732
    def _get_repo_format_to_test(self):
 
2733
        from bzrlib.repofmt import pack_repo
 
2734
        return pack_repo.RepositoryFormatKnitPack1()
 
2735
 
 
2736
    @staticmethod
 
2737
    def is_compatible(source, target):
 
2738
        """Be compatible with known Pack formats.
 
2739
        
 
2740
        We don't test for the stores being of specific types because that
 
2741
        could lead to confusing results, and there is no need to be 
 
2742
        overly general.
 
2743
        """
 
2744
        from bzrlib.repofmt.pack_repo import RepositoryFormatPack
 
2745
        try:
 
2746
            are_packs = (isinstance(source._format, RepositoryFormatPack) and
 
2747
                isinstance(target._format, RepositoryFormatPack))
 
2748
        except AttributeError:
 
2749
            return False
 
2750
        return are_packs and InterRepository._same_model(source, target)
 
2751
 
 
2752
    @needs_write_lock
 
2753
    def fetch(self, revision_id=None, pb=None, find_ghosts=False):
 
2754
        """See InterRepository.fetch()."""
 
2755
        if (len(self.source._fallback_repositories) > 0 or
 
2756
            len(self.target._fallback_repositories) > 0):
 
2757
            # The pack layer is not aware of fallback repositories, so when
 
2758
            # fetching from a stacked repository or into a stacked repository
 
2759
            # we use the generic fetch logic which uses the VersionedFiles
 
2760
            # attributes on repository.
 
2761
            from bzrlib.fetch import RepoFetcher
 
2762
            fetcher = RepoFetcher(self.target, self.source, revision_id,
 
2763
                                  pb, find_ghosts)
 
2764
            return fetcher.count_copied, fetcher.failed_revisions
 
2765
        from bzrlib.repofmt.pack_repo import Packer
 
2766
        mutter("Using fetch logic to copy between %s(%s) and %s(%s)",
 
2767
               self.source, self.source._format, self.target, self.target._format)
 
2768
        self.count_copied = 0
 
2769
        if revision_id is None:
 
2770
            # TODO:
 
2771
            # everything to do - use pack logic
 
2772
            # to fetch from all packs to one without
 
2773
            # inventory parsing etc, IFF nothing to be copied is in the target.
 
2774
            # till then:
 
2775
            source_revision_ids = frozenset(self.source.all_revision_ids())
 
2776
            revision_ids = source_revision_ids - \
 
2777
                frozenset(self.target.get_parent_map(source_revision_ids))
 
2778
            revision_keys = [(revid,) for revid in revision_ids]
 
2779
            index = self.target._pack_collection.revision_index.combined_index
 
2780
            present_revision_ids = set(item[1][0] for item in
 
2781
                index.iter_entries(revision_keys))
 
2782
            revision_ids = set(revision_ids) - present_revision_ids
 
2783
            # implementing the TODO will involve:
 
2784
            # - detecting when all of a pack is selected
 
2785
            # - avoiding as much as possible pre-selection, so the
 
2786
            # more-core routines such as create_pack_from_packs can filter in
 
2787
            # a just-in-time fashion. (though having a HEADS list on a
 
2788
            # repository might make this a lot easier, because we could
 
2789
            # sensibly detect 'new revisions' without doing a full index scan.
 
2790
        elif _mod_revision.is_null(revision_id):
 
2791
            # nothing to do:
 
2792
            return (0, [])
 
2793
        else:
 
2794
            try:
 
2795
                revision_ids = self.search_missing_revision_ids(revision_id,
 
2796
                    find_ghosts=find_ghosts).get_keys()
 
2797
            except errors.NoSuchRevision:
 
2798
                raise errors.InstallFailed([revision_id])
 
2799
            if len(revision_ids) == 0:
 
2800
                return (0, [])
 
2801
        packs = self.source._pack_collection.all_packs()
 
2802
        pack = Packer(self.target._pack_collection, packs, '.fetch',
 
2803
            revision_ids).pack()
 
2804
        if pack is not None:
 
2805
            self.target._pack_collection._save_pack_names()
 
2806
            # Trigger an autopack. This may duplicate effort as we've just done
 
2807
            # a pack creation, but for now it is simpler to think about as
 
2808
            # 'upload data, then repack if needed'.
 
2809
            self.target._pack_collection.autopack()
 
2810
            return (pack.get_revision_count(), [])
 
2811
        else:
 
2812
            return (0, [])
 
2813
 
 
2814
    @needs_read_lock
 
2815
    def search_missing_revision_ids(self, revision_id=None, find_ghosts=True):
 
2816
        """See InterRepository.missing_revision_ids().
 
2817
        
 
2818
        :param find_ghosts: Find ghosts throughout the ancestry of
 
2819
            revision_id.
 
2820
        """
 
2821
        if not find_ghosts and revision_id is not None:
 
2822
            return self._walk_to_common_revisions([revision_id])
 
2823
        elif revision_id is not None:
 
2824
            # Find ghosts: search for revisions pointing from one repository to
 
2825
            # the other, and vice versa, anywhere in the history of revision_id.
 
2826
            graph = self.target.get_graph(other_repository=self.source)
 
2827
            searcher = graph._make_breadth_first_searcher([revision_id])
 
2828
            found_ids = set()
 
2829
            while True:
 
2830
                try:
 
2831
                    next_revs, ghosts = searcher.next_with_ghosts()
 
2832
                except StopIteration:
 
2833
                    break
 
2834
                if revision_id in ghosts:
 
2835
                    raise errors.NoSuchRevision(self.source, revision_id)
 
2836
                found_ids.update(next_revs)
 
2837
                found_ids.update(ghosts)
 
2838
            found_ids = frozenset(found_ids)
 
2839
            # Double query here: should be able to avoid this by changing the
 
2840
            # graph api further.
 
2841
            result_set = found_ids - frozenset(
 
2842
                self.target.get_parent_map(found_ids))
 
2843
        else:
 
2844
            source_ids = self.source.all_revision_ids()
 
2845
            # source_ids is the worst possible case we may need to pull.
 
2846
            # now we want to filter source_ids against what we actually
 
2847
            # have in target, but don't try to check for existence where we know
 
2848
            # we do not have a revision as that would be pointless.
 
2849
            target_ids = set(self.target.all_revision_ids())
 
2850
            result_set = set(source_ids).difference(target_ids)
 
2851
        return self.source.revision_ids_to_search_result(result_set)
 
2852
 
 
2853
 
 
2854
class InterModel1and2(InterRepository):
 
2855
 
 
2856
    @classmethod
 
2857
    def _get_repo_format_to_test(self):
 
2858
        return None
 
2859
 
 
2860
    @staticmethod
 
2861
    def is_compatible(source, target):
 
2862
        if not source.supports_rich_root() and target.supports_rich_root():
 
2863
            return True
 
2864
        else:
 
2865
            return False
 
2866
 
 
2867
    @needs_write_lock
 
2868
    def fetch(self, revision_id=None, pb=None, find_ghosts=False):
 
2869
        """See InterRepository.fetch()."""
 
2870
        from bzrlib.fetch import Model1toKnit2Fetcher
 
2871
        f = Model1toKnit2Fetcher(to_repository=self.target,
 
2872
                                 from_repository=self.source,
 
2873
                                 last_revision=revision_id,
 
2874
                                 pb=pb, find_ghosts=find_ghosts)
 
2875
        return f.count_copied, f.failed_revisions
 
2876
 
 
2877
    @needs_write_lock
 
2878
    def copy_content(self, revision_id=None):
 
2879
        """Make a complete copy of the content in self into destination.
 
2880
        
 
2881
        This is a destructive operation! Do not use it on existing 
 
2882
        repositories.
 
2883
 
 
2884
        :param revision_id: Only copy the content needed to construct
 
2885
                            revision_id and its parents.
 
2886
        """
 
2887
        try:
 
2888
            self.target.set_make_working_trees(self.source.make_working_trees())
 
2889
        except NotImplementedError:
 
2890
            pass
 
2891
        # but don't bother fetching if we have the needed data now.
 
2892
        if (revision_id not in (None, _mod_revision.NULL_REVISION) and 
 
2893
            self.target.has_revision(revision_id)):
 
2894
            return
 
2895
        self.target.fetch(self.source, revision_id=revision_id)
 
2896
 
 
2897
 
 
2898
class InterKnit1and2(InterKnitRepo):
 
2899
 
 
2900
    @classmethod
 
2901
    def _get_repo_format_to_test(self):
 
2902
        return None
 
2903
 
 
2904
    @staticmethod
 
2905
    def is_compatible(source, target):
 
2906
        """Be compatible with Knit1 source and Knit3 target"""
 
2907
        try:
 
2908
            from bzrlib.repofmt.knitrepo import (
 
2909
                RepositoryFormatKnit1,
 
2910
                RepositoryFormatKnit3,
 
2911
                )
 
2912
            from bzrlib.repofmt.pack_repo import (
 
2913
                RepositoryFormatKnitPack1,
 
2914
                RepositoryFormatKnitPack3,
 
2915
                RepositoryFormatKnitPack4,
 
2916
                RepositoryFormatKnitPack5,
 
2917
                RepositoryFormatKnitPack5RichRoot,
 
2918
                RepositoryFormatPackDevelopment1,
 
2919
                RepositoryFormatPackDevelopment1Subtree,
 
2920
                )
 
2921
            norichroot = (
 
2922
                RepositoryFormatKnit1,            # no rr, no subtree
 
2923
                RepositoryFormatKnitPack1,        # no rr, no subtree
 
2924
                RepositoryFormatPackDevelopment1, # no rr, no subtree
 
2925
                RepositoryFormatKnitPack5,        # no rr, no subtree
 
2926
                )
 
2927
            richroot = (
 
2928
                RepositoryFormatKnit3,            # rr, subtree
 
2929
                RepositoryFormatKnitPack3,        # rr, subtree
 
2930
                RepositoryFormatKnitPack4,        # rr, no subtree
 
2931
                RepositoryFormatKnitPack5RichRoot,# rr, no subtree
 
2932
                RepositoryFormatPackDevelopment1Subtree, # rr, subtree
 
2933
                )
 
2934
            for format in norichroot:
 
2935
                if format.rich_root_data:
 
2936
                    raise AssertionError('Format %s is a rich-root format'
 
2937
                        ' but is included in the non-rich-root list'
 
2938
                        % (format,))
 
2939
            for format in richroot:
 
2940
                if not format.rich_root_data:
 
2941
                    raise AssertionError('Format %s is not a rich-root format'
 
2942
                        ' but is included in the rich-root list'
 
2943
                        % (format,))
 
2944
            # TODO: One alternative is to just check format.rich_root_data,
 
2945
            #       instead of keeping membership lists. However, the formats
 
2946
            #       *also* have to use the same 'Knit' style of storage
 
2947
            #       (line-deltas, fulltexts, etc.)
 
2948
            return (isinstance(source._format, norichroot) and
 
2949
                    isinstance(target._format, richroot))
 
2950
        except AttributeError:
 
2951
            return False
 
2952
 
 
2953
    @needs_write_lock
 
2954
    def fetch(self, revision_id=None, pb=None, find_ghosts=False):
 
2955
        """See InterRepository.fetch()."""
 
2956
        from bzrlib.fetch import Knit1to2Fetcher
 
2957
        mutter("Using fetch logic to copy between %s(%s) and %s(%s)",
 
2958
               self.source, self.source._format, self.target, 
 
2959
               self.target._format)
 
2960
        f = Knit1to2Fetcher(to_repository=self.target,
 
2961
                            from_repository=self.source,
 
2962
                            last_revision=revision_id,
 
2963
                            pb=pb, find_ghosts=find_ghosts)
 
2964
        return f.count_copied, f.failed_revisions
 
2965
 
 
2966
 
 
2967
class InterDifferingSerializer(InterKnitRepo):
3706
2968
 
3707
2969
    @classmethod
3708
2970
    def _get_repo_format_to_test(self):
3711
2973
    @staticmethod
3712
2974
    def is_compatible(source, target):
3713
2975
        """Be compatible with Knit2 source and Knit3 target"""
3714
 
        # This is redundant with format.check_conversion_target(), however that
3715
 
        # raises an exception, and we just want to say "False" as in we won't
3716
 
        # support converting between these formats.
3717
 
        if 'IDS_never' in debug.debug_flags:
3718
 
            return False
3719
 
        if source.supports_rich_root() and not target.supports_rich_root():
3720
 
            return False
3721
 
        if (source._format.supports_tree_reference
3722
 
            and not target._format.supports_tree_reference):
3723
 
            return False
3724
 
        if target._fallback_repositories and target._format.supports_chks:
3725
 
            # IDS doesn't know how to copy CHKs for the parent inventories it
3726
 
            # adds to stacked repos.
3727
 
            return False
3728
 
        if 'IDS_always' in debug.debug_flags:
3729
 
            return True
3730
 
        # Only use this code path for local source and target.  IDS does far
3731
 
        # too much IO (both bandwidth and roundtrips) over a network.
3732
 
        if not source.bzrdir.transport.base.startswith('file:///'):
3733
 
            return False
3734
 
        if not target.bzrdir.transport.base.startswith('file:///'):
 
2976
        if source.supports_rich_root() != target.supports_rich_root():
 
2977
            return False
 
2978
        # Ideally, we'd support fetching if the source had no tree references
 
2979
        # even if it supported them...
 
2980
        if (getattr(source, '_format.supports_tree_reference', False) and
 
2981
            not getattr(target, '_format.supports_tree_reference', False)):
3735
2982
            return False
3736
2983
        return True
3737
2984
 
3738
 
    def _get_trees(self, revision_ids, cache):
3739
 
        possible_trees = []
3740
 
        for rev_id in revision_ids:
3741
 
            if rev_id in cache:
3742
 
                possible_trees.append((rev_id, cache[rev_id]))
3743
 
            else:
3744
 
                # Not cached, but inventory might be present anyway.
3745
 
                try:
3746
 
                    tree = self.source.revision_tree(rev_id)
3747
 
                except errors.NoSuchRevision:
3748
 
                    # Nope, parent is ghost.
3749
 
                    pass
3750
 
                else:
3751
 
                    cache[rev_id] = tree
3752
 
                    possible_trees.append((rev_id, tree))
3753
 
        return possible_trees
3754
 
 
3755
 
    def _get_delta_for_revision(self, tree, parent_ids, possible_trees):
3756
 
        """Get the best delta and base for this revision.
3757
 
 
3758
 
        :return: (basis_id, delta)
3759
 
        """
3760
 
        deltas = []
3761
 
        # Generate deltas against each tree, to find the shortest.
3762
 
        texts_possibly_new_in_tree = set()
3763
 
        for basis_id, basis_tree in possible_trees:
3764
 
            delta = tree.inventory._make_delta(basis_tree.inventory)
3765
 
            for old_path, new_path, file_id, new_entry in delta:
3766
 
                if new_path is None:
3767
 
                    # This file_id isn't present in the new rev, so we don't
3768
 
                    # care about it.
3769
 
                    continue
3770
 
                if not new_path:
3771
 
                    # Rich roots are handled elsewhere...
3772
 
                    continue
3773
 
                kind = new_entry.kind
3774
 
                if kind != 'directory' and kind != 'file':
3775
 
                    # No text record associated with this inventory entry.
3776
 
                    continue
3777
 
                # This is a directory or file that has changed somehow.
3778
 
                texts_possibly_new_in_tree.add((file_id, new_entry.revision))
3779
 
            deltas.append((len(delta), basis_id, delta))
3780
 
        deltas.sort()
3781
 
        return deltas[0][1:]
3782
 
 
3783
 
    def _fetch_parent_invs_for_stacking(self, parent_map, cache):
3784
 
        """Find all parent revisions that are absent, but for which the
3785
 
        inventory is present, and copy those inventories.
3786
 
 
3787
 
        This is necessary to preserve correctness when the source is stacked
3788
 
        without fallbacks configured.  (Note that in cases like upgrade the
3789
 
        source may be not have _fallback_repositories even though it is
3790
 
        stacked.)
3791
 
        """
3792
 
        parent_revs = set()
3793
 
        for parents in parent_map.values():
3794
 
            parent_revs.update(parents)
3795
 
        present_parents = self.source.get_parent_map(parent_revs)
3796
 
        absent_parents = set(parent_revs).difference(present_parents)
3797
 
        parent_invs_keys_for_stacking = self.source.inventories.get_parent_map(
3798
 
            (rev_id,) for rev_id in absent_parents)
3799
 
        parent_inv_ids = [key[-1] for key in parent_invs_keys_for_stacking]
3800
 
        for parent_tree in self.source.revision_trees(parent_inv_ids):
3801
 
            current_revision_id = parent_tree.get_revision_id()
3802
 
            parents_parents_keys = parent_invs_keys_for_stacking[
3803
 
                (current_revision_id,)]
3804
 
            parents_parents = [key[-1] for key in parents_parents_keys]
3805
 
            basis_id = _mod_revision.NULL_REVISION
3806
 
            basis_tree = self.source.revision_tree(basis_id)
3807
 
            delta = parent_tree.inventory._make_delta(basis_tree.inventory)
3808
 
            self.target.add_inventory_by_delta(
3809
 
                basis_id, delta, current_revision_id, parents_parents)
3810
 
            cache[current_revision_id] = parent_tree
3811
 
 
3812
 
    def _fetch_batch(self, revision_ids, basis_id, cache):
3813
 
        """Fetch across a few revisions.
3814
 
 
3815
 
        :param revision_ids: The revisions to copy
3816
 
        :param basis_id: The revision_id of a tree that must be in cache, used
3817
 
            as a basis for delta when no other base is available
3818
 
        :param cache: A cache of RevisionTrees that we can use.
3819
 
        :return: The revision_id of the last converted tree. The RevisionTree
3820
 
            for it will be in cache
3821
 
        """
3822
 
        # Walk though all revisions; get inventory deltas, copy referenced
3823
 
        # texts that delta references, insert the delta, revision and
3824
 
        # signature.
3825
 
        root_keys_to_create = set()
3826
 
        text_keys = set()
3827
 
        pending_deltas = []
3828
 
        pending_revisions = []
3829
 
        parent_map = self.source.get_parent_map(revision_ids)
3830
 
        self._fetch_parent_invs_for_stacking(parent_map, cache)
3831
 
        for tree in self.source.revision_trees(revision_ids):
3832
 
            # Find a inventory delta for this revision.
3833
 
            # Find text entries that need to be copied, too.
3834
 
            current_revision_id = tree.get_revision_id()
3835
 
            parent_ids = parent_map.get(current_revision_id, ())
3836
 
            parent_trees = self._get_trees(parent_ids, cache)
3837
 
            possible_trees = list(parent_trees)
3838
 
            if len(possible_trees) == 0:
3839
 
                # There either aren't any parents, or the parents are ghosts,
3840
 
                # so just use the last converted tree.
3841
 
                possible_trees.append((basis_id, cache[basis_id]))
3842
 
            basis_id, delta = self._get_delta_for_revision(tree, parent_ids,
3843
 
                                                           possible_trees)
3844
 
            if self._converting_to_rich_root:
3845
 
                self._revision_id_to_root_id[current_revision_id] = \
3846
 
                    tree.get_root_id()
3847
 
            # Determine which texts are in present in this revision but not in
3848
 
            # any of the available parents.
3849
 
            texts_possibly_new_in_tree = set()
3850
 
            for old_path, new_path, file_id, entry in delta:
3851
 
                if new_path is None:
3852
 
                    # This file_id isn't present in the new rev
3853
 
                    continue
3854
 
                if not new_path:
3855
 
                    # This is the root
3856
 
                    if not self.target.supports_rich_root():
3857
 
                        # The target doesn't support rich root, so we don't
3858
 
                        # copy
3859
 
                        continue
3860
 
                    if self._converting_to_rich_root:
3861
 
                        # This can't be copied normally, we have to insert
3862
 
                        # it specially
3863
 
                        root_keys_to_create.add((file_id, entry.revision))
3864
 
                        continue
3865
 
                kind = entry.kind
3866
 
                texts_possibly_new_in_tree.add((file_id, entry.revision))
3867
 
            for basis_id, basis_tree in possible_trees:
3868
 
                basis_inv = basis_tree.inventory
3869
 
                for file_key in list(texts_possibly_new_in_tree):
3870
 
                    file_id, file_revision = file_key
3871
 
                    try:
3872
 
                        entry = basis_inv[file_id]
3873
 
                    except errors.NoSuchId:
3874
 
                        continue
3875
 
                    if entry.revision == file_revision:
3876
 
                        texts_possibly_new_in_tree.remove(file_key)
3877
 
            text_keys.update(texts_possibly_new_in_tree)
3878
 
            revision = self.source.get_revision(current_revision_id)
3879
 
            pending_deltas.append((basis_id, delta,
3880
 
                current_revision_id, revision.parent_ids))
3881
 
            pending_revisions.append(revision)
3882
 
            cache[current_revision_id] = tree
3883
 
            basis_id = current_revision_id
3884
 
        # Copy file texts
3885
 
        from_texts = self.source.texts
3886
 
        to_texts = self.target.texts
3887
 
        if root_keys_to_create:
3888
 
            from bzrlib.fetch import _new_root_data_stream
3889
 
            root_stream = _new_root_data_stream(
3890
 
                root_keys_to_create, self._revision_id_to_root_id, parent_map,
3891
 
                self.source)
3892
 
            to_texts.insert_record_stream(root_stream)
3893
 
        to_texts.insert_record_stream(from_texts.get_record_stream(
3894
 
            text_keys, self.target._format._fetch_order,
3895
 
            not self.target._format._fetch_uses_deltas))
3896
 
        # insert inventory deltas
3897
 
        for delta in pending_deltas:
3898
 
            self.target.add_inventory_by_delta(*delta)
3899
 
        if self.target._fallback_repositories:
3900
 
            # Make sure this stacked repository has all the parent inventories
3901
 
            # for the new revisions that we are about to insert.  We do this
3902
 
            # before adding the revisions so that no revision is added until
3903
 
            # all the inventories it may depend on are added.
3904
 
            # Note that this is overzealous, as we may have fetched these in an
3905
 
            # earlier batch.
3906
 
            parent_ids = set()
3907
 
            revision_ids = set()
3908
 
            for revision in pending_revisions:
3909
 
                revision_ids.add(revision.revision_id)
3910
 
                parent_ids.update(revision.parent_ids)
3911
 
            parent_ids.difference_update(revision_ids)
3912
 
            parent_ids.discard(_mod_revision.NULL_REVISION)
3913
 
            parent_map = self.source.get_parent_map(parent_ids)
3914
 
            # we iterate over parent_map and not parent_ids because we don't
3915
 
            # want to try copying any revision which is a ghost
3916
 
            for parent_tree in self.source.revision_trees(parent_map):
3917
 
                current_revision_id = parent_tree.get_revision_id()
3918
 
                parents_parents = parent_map[current_revision_id]
3919
 
                possible_trees = self._get_trees(parents_parents, cache)
3920
 
                if len(possible_trees) == 0:
3921
 
                    # There either aren't any parents, or the parents are
3922
 
                    # ghosts, so just use the last converted tree.
3923
 
                    possible_trees.append((basis_id, cache[basis_id]))
3924
 
                basis_id, delta = self._get_delta_for_revision(parent_tree,
3925
 
                    parents_parents, possible_trees)
3926
 
                self.target.add_inventory_by_delta(
3927
 
                    basis_id, delta, current_revision_id, parents_parents)
3928
 
        # insert signatures and revisions
3929
 
        for revision in pending_revisions:
3930
 
            try:
3931
 
                signature = self.source.get_signature_text(
3932
 
                    revision.revision_id)
3933
 
                self.target.add_signature_text(revision.revision_id,
3934
 
                    signature)
3935
 
            except errors.NoSuchRevision:
3936
 
                pass
3937
 
            self.target.add_revision(revision.revision_id, revision)
3938
 
        return basis_id
3939
 
 
3940
 
    def _fetch_all_revisions(self, revision_ids, pb):
3941
 
        """Fetch everything for the list of revisions.
3942
 
 
3943
 
        :param revision_ids: The list of revisions to fetch. Must be in
3944
 
            topological order.
3945
 
        :param pb: A ProgressTask
3946
 
        :return: None
3947
 
        """
3948
 
        basis_id, basis_tree = self._get_basis(revision_ids[0])
3949
 
        batch_size = 100
3950
 
        cache = lru_cache.LRUCache(100)
3951
 
        cache[basis_id] = basis_tree
3952
 
        del basis_tree # We don't want to hang on to it here
3953
 
        hints = []
3954
 
        for offset in range(0, len(revision_ids), batch_size):
3955
 
            self.target.start_write_group()
3956
 
            try:
3957
 
                pb.update('Transferring revisions', offset,
3958
 
                          len(revision_ids))
3959
 
                batch = revision_ids[offset:offset+batch_size]
3960
 
                basis_id = self._fetch_batch(batch, basis_id, cache)
3961
 
            except:
3962
 
                self.target.abort_write_group()
3963
 
                raise
3964
 
            else:
3965
 
                hint = self.target.commit_write_group()
3966
 
                if hint:
3967
 
                    hints.extend(hint)
3968
 
        if hints and self.target._format.pack_compresses:
3969
 
            self.target.pack(hint=hints)
3970
 
        pb.update('Transferring revisions', len(revision_ids),
3971
 
                  len(revision_ids))
3972
 
 
3973
2985
    @needs_write_lock
3974
 
    def fetch(self, revision_id=None, pb=None, find_ghosts=False,
3975
 
            fetch_spec=None):
 
2986
    def fetch(self, revision_id=None, pb=None, find_ghosts=False):
3976
2987
        """See InterRepository.fetch()."""
3977
 
        if fetch_spec is not None:
3978
 
            raise AssertionError("Not implemented yet...")
3979
 
        if (not self.source.supports_rich_root()
3980
 
            and self.target.supports_rich_root()):
3981
 
            self._converting_to_rich_root = True
3982
 
            self._revision_id_to_root_id = {}
3983
 
        else:
3984
 
            self._converting_to_rich_root = False
3985
2988
        revision_ids = self.target.search_missing_revision_ids(self.source,
3986
2989
            revision_id, find_ghosts=find_ghosts).get_keys()
3987
 
        if not revision_ids:
3988
 
            return 0, 0
3989
2990
        revision_ids = tsort.topo_sort(
3990
2991
            self.source.get_graph().get_parent_map(revision_ids))
3991
 
        if not revision_ids:
3992
 
            return 0, 0
3993
 
        # Walk though all revisions; get inventory deltas, copy referenced
3994
 
        # texts that delta references, insert the delta, revision and
3995
 
        # signature.
 
2992
        def revisions_iterator():
 
2993
            for current_revision_id in revision_ids:
 
2994
                revision = self.source.get_revision(current_revision_id)
 
2995
                tree = self.source.revision_tree(current_revision_id)
 
2996
                try:
 
2997
                    signature = self.source.get_signature_text(
 
2998
                        current_revision_id)
 
2999
                except errors.NoSuchRevision:
 
3000
                    signature = None
 
3001
                yield revision, tree, signature
3996
3002
        if pb is None:
3997
3003
            my_pb = ui.ui_factory.nested_progress_bar()
3998
3004
            pb = my_pb
3999
3005
        else:
4000
 
            symbol_versioning.warn(
4001
 
                symbol_versioning.deprecated_in((1, 14, 0))
4002
 
                % "pb parameter to fetch()")
4003
3006
            my_pb = None
4004
3007
        try:
4005
 
            self._fetch_all_revisions(revision_ids, pb)
 
3008
            install_revisions(self.target, revisions_iterator(),
 
3009
                              len(revision_ids), pb)
4006
3010
        finally:
4007
3011
            if my_pb is not None:
4008
3012
                my_pb.finished()
4009
3013
        return len(revision_ids), 0
4010
3014
 
4011
 
    def _get_basis(self, first_revision_id):
4012
 
        """Get a revision and tree which exists in the target.
4013
 
 
4014
 
        This assumes that first_revision_id is selected for transmission
4015
 
        because all other ancestors are already present. If we can't find an
4016
 
        ancestor we fall back to NULL_REVISION since we know that is safe.
4017
 
 
4018
 
        :return: (basis_id, basis_tree)
4019
 
        """
4020
 
        first_rev = self.source.get_revision(first_revision_id)
4021
 
        try:
4022
 
            basis_id = first_rev.parent_ids[0]
4023
 
            # only valid as a basis if the target has it
4024
 
            self.target.get_revision(basis_id)
4025
 
            # Try to get a basis tree - if its a ghost it will hit the
4026
 
            # NoSuchRevision case.
4027
 
            basis_tree = self.source.revision_tree(basis_id)
4028
 
        except (IndexError, errors.NoSuchRevision):
4029
 
            basis_id = _mod_revision.NULL_REVISION
4030
 
            basis_tree = self.source.revision_tree(basis_id)
4031
 
        return basis_id, basis_tree
 
3015
 
 
3016
class InterOtherToRemote(InterRepository):
 
3017
 
 
3018
    def __init__(self, source, target):
 
3019
        InterRepository.__init__(self, source, target)
 
3020
        self._real_inter = None
 
3021
 
 
3022
    @staticmethod
 
3023
    def is_compatible(source, target):
 
3024
        if isinstance(target, remote.RemoteRepository):
 
3025
            return True
 
3026
        return False
 
3027
 
 
3028
    def _ensure_real_inter(self):
 
3029
        if self._real_inter is None:
 
3030
            self.target._ensure_real()
 
3031
            real_target = self.target._real_repository
 
3032
            self._real_inter = InterRepository.get(self.source, real_target)
 
3033
    
 
3034
    def copy_content(self, revision_id=None):
 
3035
        self._ensure_real_inter()
 
3036
        self._real_inter.copy_content(revision_id=revision_id)
 
3037
 
 
3038
    def fetch(self, revision_id=None, pb=None, find_ghosts=False):
 
3039
        self._ensure_real_inter()
 
3040
        return self._real_inter.fetch(revision_id=revision_id, pb=pb,
 
3041
            find_ghosts=find_ghosts)
 
3042
 
 
3043
    @classmethod
 
3044
    def _get_repo_format_to_test(self):
 
3045
        return None
 
3046
 
 
3047
 
 
3048
class InterRemoteToOther(InterRepository):
 
3049
 
 
3050
    def __init__(self, source, target):
 
3051
        InterRepository.__init__(self, source, target)
 
3052
        self._real_inter = None
 
3053
 
 
3054
    @staticmethod
 
3055
    def is_compatible(source, target):
 
3056
        if not isinstance(source, remote.RemoteRepository):
 
3057
            return False
 
3058
        # Is source's model compatible with target's model?
 
3059
        source._ensure_real()
 
3060
        real_source = source._real_repository
 
3061
        if isinstance(real_source, remote.RemoteRepository):
 
3062
            raise NotImplementedError(
 
3063
                "We don't support remote repos backed by remote repos yet.")
 
3064
        return InterRepository._same_model(real_source, target)
 
3065
 
 
3066
    def _ensure_real_inter(self):
 
3067
        if self._real_inter is None:
 
3068
            self.source._ensure_real()
 
3069
            real_source = self.source._real_repository
 
3070
            self._real_inter = InterRepository.get(real_source, self.target)
 
3071
    
 
3072
    def fetch(self, revision_id=None, pb=None, find_ghosts=False):
 
3073
        self._ensure_real_inter()
 
3074
        return self._real_inter.fetch(revision_id=revision_id, pb=pb,
 
3075
            find_ghosts=find_ghosts)
 
3076
 
 
3077
    def copy_content(self, revision_id=None):
 
3078
        self._ensure_real_inter()
 
3079
        self._real_inter.copy_content(revision_id=revision_id)
 
3080
 
 
3081
    @classmethod
 
3082
    def _get_repo_format_to_test(self):
 
3083
        return None
 
3084
 
4032
3085
 
4033
3086
 
4034
3087
InterRepository.register_optimiser(InterDifferingSerializer)
4035
3088
InterRepository.register_optimiser(InterSameDataRepository)
4036
3089
InterRepository.register_optimiser(InterWeaveRepo)
4037
3090
InterRepository.register_optimiser(InterKnitRepo)
 
3091
InterRepository.register_optimiser(InterModel1and2)
 
3092
InterRepository.register_optimiser(InterKnit1and2)
 
3093
InterRepository.register_optimiser(InterPackRepo)
 
3094
InterRepository.register_optimiser(InterOtherToRemote)
 
3095
InterRepository.register_optimiser(InterRemoteToOther)
4038
3096
 
4039
3097
 
4040
3098
class CopyConverter(object):
4041
3099
    """A repository conversion tool which just performs a copy of the content.
4042
 
 
 
3100
    
4043
3101
    This is slow but quite reliable.
4044
3102
    """
4045
3103
 
4049
3107
        :param target_format: The format the resulting repository should be.
4050
3108
        """
4051
3109
        self.target_format = target_format
4052
 
 
 
3110
        
4053
3111
    def convert(self, repo, pb):
4054
3112
        """Perform the conversion of to_convert, giving feedback via pb.
4055
3113
 
4121
3179
 
4122
3180
class _VersionedFileChecker(object):
4123
3181
 
4124
 
    def __init__(self, repository, text_key_references=None, ancestors=None):
 
3182
    def __init__(self, repository):
4125
3183
        self.repository = repository
4126
 
        self.text_index = self.repository._generate_text_key_index(
4127
 
            text_key_references=text_key_references, ancestors=ancestors)
4128
 
 
 
3184
        self.text_index = self.repository._generate_text_key_index()
 
3185
    
4129
3186
    def calculate_file_version_parents(self, text_key):
4130
3187
        """Calculate the correct parents for a file version according to
4131
3188
        the inventories.
4148
3205
            revision_id) tuples for versions that are present in this versioned
4149
3206
            file, but not used by the corresponding inventory.
4150
3207
        """
4151
 
        local_progress = None
4152
 
        if progress_bar is None:
4153
 
            local_progress = ui.ui_factory.nested_progress_bar()
4154
 
            progress_bar = local_progress
4155
 
        try:
4156
 
            return self._check_file_version_parents(texts, progress_bar)
4157
 
        finally:
4158
 
            if local_progress:
4159
 
                local_progress.finished()
4160
 
 
4161
 
    def _check_file_version_parents(self, texts, progress_bar):
4162
 
        """See check_file_version_parents."""
4163
3208
        wrong_parents = {}
4164
3209
        self.file_ids = set([file_id for file_id, _ in
4165
3210
            self.text_index.iterkeys()])
4166
3211
        # text keys is now grouped by file_id
 
3212
        n_weaves = len(self.file_ids)
 
3213
        files_in_revisions = {}
 
3214
        revisions_of_files = {}
4167
3215
        n_versions = len(self.text_index)
4168
3216
        progress_bar.update('loading text store', 0, n_versions)
4169
3217
        parent_map = self.repository.texts.get_parent_map(self.text_index)
4171
3219
        text_keys = self.repository.texts.keys()
4172
3220
        unused_keys = frozenset(text_keys) - set(self.text_index)
4173
3221
        for num, key in enumerate(self.text_index.iterkeys()):
4174
 
            progress_bar.update('checking text graph', num, n_versions)
 
3222
            if progress_bar is not None:
 
3223
                progress_bar.update('checking text graph', num, n_versions)
4175
3224
            correct_parents = self.calculate_file_version_parents(key)
4176
3225
            try:
4177
3226
                knit_parents = parent_map[key]
4200
3249
        revision_graph[key] = tuple(parent for parent in parents if parent
4201
3250
            in revision_graph)
4202
3251
    return revision_graph
4203
 
 
4204
 
 
4205
 
class StreamSink(object):
4206
 
    """An object that can insert a stream into a repository.
4207
 
 
4208
 
    This interface handles the complexity of reserialising inventories and
4209
 
    revisions from different formats, and allows unidirectional insertion into
4210
 
    stacked repositories without looking for the missing basis parents
4211
 
    beforehand.
4212
 
    """
4213
 
 
4214
 
    def __init__(self, target_repo):
4215
 
        self.target_repo = target_repo
4216
 
 
4217
 
    def insert_stream(self, stream, src_format, resume_tokens):
4218
 
        """Insert a stream's content into the target repository.
4219
 
 
4220
 
        :param src_format: a bzr repository format.
4221
 
 
4222
 
        :return: a list of resume tokens and an  iterable of keys additional
4223
 
            items required before the insertion can be completed.
4224
 
        """
4225
 
        self.target_repo.lock_write()
4226
 
        try:
4227
 
            if resume_tokens:
4228
 
                self.target_repo.resume_write_group(resume_tokens)
4229
 
                is_resume = True
4230
 
            else:
4231
 
                self.target_repo.start_write_group()
4232
 
                is_resume = False
4233
 
            try:
4234
 
                # locked_insert_stream performs a commit|suspend.
4235
 
                return self._locked_insert_stream(stream, src_format, is_resume)
4236
 
            except:
4237
 
                self.target_repo.abort_write_group(suppress_errors=True)
4238
 
                raise
4239
 
        finally:
4240
 
            self.target_repo.unlock()
4241
 
 
4242
 
    def _locked_insert_stream(self, stream, src_format, is_resume):
4243
 
        to_serializer = self.target_repo._format._serializer
4244
 
        src_serializer = src_format._serializer
4245
 
        new_pack = None
4246
 
        if to_serializer == src_serializer:
4247
 
            # If serializers match and the target is a pack repository, set the
4248
 
            # write cache size on the new pack.  This avoids poor performance
4249
 
            # on transports where append is unbuffered (such as
4250
 
            # RemoteTransport).  This is safe to do because nothing should read
4251
 
            # back from the target repository while a stream with matching
4252
 
            # serialization is being inserted.
4253
 
            # The exception is that a delta record from the source that should
4254
 
            # be a fulltext may need to be expanded by the target (see
4255
 
            # test_fetch_revisions_with_deltas_into_pack); but we take care to
4256
 
            # explicitly flush any buffered writes first in that rare case.
4257
 
            try:
4258
 
                new_pack = self.target_repo._pack_collection._new_pack
4259
 
            except AttributeError:
4260
 
                # Not a pack repository
4261
 
                pass
4262
 
            else:
4263
 
                new_pack.set_write_cache_size(1024*1024)
4264
 
        for substream_type, substream in stream:
4265
 
            if 'stream' in debug.debug_flags:
4266
 
                mutter('inserting substream: %s', substream_type)
4267
 
            if substream_type == 'texts':
4268
 
                self.target_repo.texts.insert_record_stream(substream)
4269
 
            elif substream_type == 'inventories':
4270
 
                if src_serializer == to_serializer:
4271
 
                    self.target_repo.inventories.insert_record_stream(
4272
 
                        substream)
4273
 
                else:
4274
 
                    self._extract_and_insert_inventories(
4275
 
                        substream, src_serializer)
4276
 
            elif substream_type == 'inventory-deltas':
4277
 
                self._extract_and_insert_inventory_deltas(
4278
 
                    substream, src_serializer)
4279
 
            elif substream_type == 'chk_bytes':
4280
 
                # XXX: This doesn't support conversions, as it assumes the
4281
 
                #      conversion was done in the fetch code.
4282
 
                self.target_repo.chk_bytes.insert_record_stream(substream)
4283
 
            elif substream_type == 'revisions':
4284
 
                # This may fallback to extract-and-insert more often than
4285
 
                # required if the serializers are different only in terms of
4286
 
                # the inventory.
4287
 
                if src_serializer == to_serializer:
4288
 
                    self.target_repo.revisions.insert_record_stream(
4289
 
                        substream)
4290
 
                else:
4291
 
                    self._extract_and_insert_revisions(substream,
4292
 
                        src_serializer)
4293
 
            elif substream_type == 'signatures':
4294
 
                self.target_repo.signatures.insert_record_stream(substream)
4295
 
            else:
4296
 
                raise AssertionError('kaboom! %s' % (substream_type,))
4297
 
        # Done inserting data, and the missing_keys calculations will try to
4298
 
        # read back from the inserted data, so flush the writes to the new pack
4299
 
        # (if this is pack format).
4300
 
        if new_pack is not None:
4301
 
            new_pack._write_data('', flush=True)
4302
 
        # Find all the new revisions (including ones from resume_tokens)
4303
 
        missing_keys = self.target_repo.get_missing_parent_inventories(
4304
 
            check_for_missing_texts=is_resume)
4305
 
        try:
4306
 
            for prefix, versioned_file in (
4307
 
                ('texts', self.target_repo.texts),
4308
 
                ('inventories', self.target_repo.inventories),
4309
 
                ('revisions', self.target_repo.revisions),
4310
 
                ('signatures', self.target_repo.signatures),
4311
 
                ('chk_bytes', self.target_repo.chk_bytes),
4312
 
                ):
4313
 
                if versioned_file is None:
4314
 
                    continue
4315
 
                missing_keys.update((prefix,) + key for key in
4316
 
                    versioned_file.get_missing_compression_parent_keys())
4317
 
        except NotImplementedError:
4318
 
            # cannot even attempt suspending, and missing would have failed
4319
 
            # during stream insertion.
4320
 
            missing_keys = set()
4321
 
        else:
4322
 
            if missing_keys:
4323
 
                # suspend the write group and tell the caller what we is
4324
 
                # missing. We know we can suspend or else we would not have
4325
 
                # entered this code path. (All repositories that can handle
4326
 
                # missing keys can handle suspending a write group).
4327
 
                write_group_tokens = self.target_repo.suspend_write_group()
4328
 
                return write_group_tokens, missing_keys
4329
 
        hint = self.target_repo.commit_write_group()
4330
 
        if (to_serializer != src_serializer and
4331
 
            self.target_repo._format.pack_compresses):
4332
 
            self.target_repo.pack(hint=hint)
4333
 
        return [], set()
4334
 
 
4335
 
    def _extract_and_insert_inventory_deltas(self, substream, serializer):
4336
 
        target_rich_root = self.target_repo._format.rich_root_data
4337
 
        target_tree_refs = self.target_repo._format.supports_tree_reference
4338
 
        for record in substream:
4339
 
            # Insert the delta directly
4340
 
            inventory_delta_bytes = record.get_bytes_as('fulltext')
4341
 
            deserialiser = inventory_delta.InventoryDeltaDeserializer()
4342
 
            try:
4343
 
                parse_result = deserialiser.parse_text_bytes(
4344
 
                    inventory_delta_bytes)
4345
 
            except inventory_delta.IncompatibleInventoryDelta, err:
4346
 
                trace.mutter("Incompatible delta: %s", err.msg)
4347
 
                raise errors.IncompatibleRevision(self.target_repo._format)
4348
 
            basis_id, new_id, rich_root, tree_refs, inv_delta = parse_result
4349
 
            revision_id = new_id
4350
 
            parents = [key[0] for key in record.parents]
4351
 
            self.target_repo.add_inventory_by_delta(
4352
 
                basis_id, inv_delta, revision_id, parents)
4353
 
 
4354
 
    def _extract_and_insert_inventories(self, substream, serializer,
4355
 
            parse_delta=None):
4356
 
        """Generate a new inventory versionedfile in target, converting data.
4357
 
 
4358
 
        The inventory is retrieved from the source, (deserializing it), and
4359
 
        stored in the target (reserializing it in a different format).
4360
 
        """
4361
 
        target_rich_root = self.target_repo._format.rich_root_data
4362
 
        target_tree_refs = self.target_repo._format.supports_tree_reference
4363
 
        for record in substream:
4364
 
            # It's not a delta, so it must be a fulltext in the source
4365
 
            # serializer's format.
4366
 
            bytes = record.get_bytes_as('fulltext')
4367
 
            revision_id = record.key[0]
4368
 
            inv = serializer.read_inventory_from_string(bytes, revision_id)
4369
 
            parents = [key[0] for key in record.parents]
4370
 
            self.target_repo.add_inventory(revision_id, inv, parents)
4371
 
            # No need to keep holding this full inv in memory when the rest of
4372
 
            # the substream is likely to be all deltas.
4373
 
            del inv
4374
 
 
4375
 
    def _extract_and_insert_revisions(self, substream, serializer):
4376
 
        for record in substream:
4377
 
            bytes = record.get_bytes_as('fulltext')
4378
 
            revision_id = record.key[0]
4379
 
            rev = serializer.read_revision_from_string(bytes)
4380
 
            if rev.revision_id != revision_id:
4381
 
                raise AssertionError('wtf: %s != %s' % (rev, revision_id))
4382
 
            self.target_repo.add_revision(revision_id, rev)
4383
 
 
4384
 
    def finished(self):
4385
 
        if self.target_repo._format._fetch_reconcile:
4386
 
            self.target_repo.reconcile()
4387
 
 
4388
 
 
4389
 
class StreamSource(object):
4390
 
    """A source of a stream for fetching between repositories."""
4391
 
 
4392
 
    def __init__(self, from_repository, to_format):
4393
 
        """Create a StreamSource streaming from from_repository."""
4394
 
        self.from_repository = from_repository
4395
 
        self.to_format = to_format
4396
 
 
4397
 
    def delta_on_metadata(self):
4398
 
        """Return True if delta's are permitted on metadata streams.
4399
 
 
4400
 
        That is on revisions and signatures.
4401
 
        """
4402
 
        src_serializer = self.from_repository._format._serializer
4403
 
        target_serializer = self.to_format._serializer
4404
 
        return (self.to_format._fetch_uses_deltas and
4405
 
            src_serializer == target_serializer)
4406
 
 
4407
 
    def _fetch_revision_texts(self, revs):
4408
 
        # fetch signatures first and then the revision texts
4409
 
        # may need to be a InterRevisionStore call here.
4410
 
        from_sf = self.from_repository.signatures
4411
 
        # A missing signature is just skipped.
4412
 
        keys = [(rev_id,) for rev_id in revs]
4413
 
        signatures = versionedfile.filter_absent(from_sf.get_record_stream(
4414
 
            keys,
4415
 
            self.to_format._fetch_order,
4416
 
            not self.to_format._fetch_uses_deltas))
4417
 
        # If a revision has a delta, this is actually expanded inside the
4418
 
        # insert_record_stream code now, which is an alternate fix for
4419
 
        # bug #261339
4420
 
        from_rf = self.from_repository.revisions
4421
 
        revisions = from_rf.get_record_stream(
4422
 
            keys,
4423
 
            self.to_format._fetch_order,
4424
 
            not self.delta_on_metadata())
4425
 
        return [('signatures', signatures), ('revisions', revisions)]
4426
 
 
4427
 
    def _generate_root_texts(self, revs):
4428
 
        """This will be called by get_stream between fetching weave texts and
4429
 
        fetching the inventory weave.
4430
 
        """
4431
 
        if self._rich_root_upgrade():
4432
 
            import bzrlib.fetch
4433
 
            return bzrlib.fetch.Inter1and2Helper(
4434
 
                self.from_repository).generate_root_texts(revs)
4435
 
        else:
4436
 
            return []
4437
 
 
4438
 
    def get_stream(self, search):
4439
 
        phase = 'file'
4440
 
        revs = search.get_keys()
4441
 
        graph = self.from_repository.get_graph()
4442
 
        revs = tsort.topo_sort(graph.get_parent_map(revs))
4443
 
        data_to_fetch = self.from_repository.item_keys_introduced_by(revs)
4444
 
        text_keys = []
4445
 
        for knit_kind, file_id, revisions in data_to_fetch:
4446
 
            if knit_kind != phase:
4447
 
                phase = knit_kind
4448
 
                # Make a new progress bar for this phase
4449
 
            if knit_kind == "file":
4450
 
                # Accumulate file texts
4451
 
                text_keys.extend([(file_id, revision) for revision in
4452
 
                    revisions])
4453
 
            elif knit_kind == "inventory":
4454
 
                # Now copy the file texts.
4455
 
                from_texts = self.from_repository.texts
4456
 
                yield ('texts', from_texts.get_record_stream(
4457
 
                    text_keys, self.to_format._fetch_order,
4458
 
                    not self.to_format._fetch_uses_deltas))
4459
 
                # Cause an error if a text occurs after we have done the
4460
 
                # copy.
4461
 
                text_keys = None
4462
 
                # Before we process the inventory we generate the root
4463
 
                # texts (if necessary) so that the inventories references
4464
 
                # will be valid.
4465
 
                for _ in self._generate_root_texts(revs):
4466
 
                    yield _
4467
 
                # we fetch only the referenced inventories because we do not
4468
 
                # know for unselected inventories whether all their required
4469
 
                # texts are present in the other repository - it could be
4470
 
                # corrupt.
4471
 
                for info in self._get_inventory_stream(revs):
4472
 
                    yield info
4473
 
            elif knit_kind == "signatures":
4474
 
                # Nothing to do here; this will be taken care of when
4475
 
                # _fetch_revision_texts happens.
4476
 
                pass
4477
 
            elif knit_kind == "revisions":
4478
 
                for record in self._fetch_revision_texts(revs):
4479
 
                    yield record
4480
 
            else:
4481
 
                raise AssertionError("Unknown knit kind %r" % knit_kind)
4482
 
 
4483
 
    def get_stream_for_missing_keys(self, missing_keys):
4484
 
        # missing keys can only occur when we are byte copying and not
4485
 
        # translating (because translation means we don't send
4486
 
        # unreconstructable deltas ever).
4487
 
        keys = {}
4488
 
        keys['texts'] = set()
4489
 
        keys['revisions'] = set()
4490
 
        keys['inventories'] = set()
4491
 
        keys['chk_bytes'] = set()
4492
 
        keys['signatures'] = set()
4493
 
        for key in missing_keys:
4494
 
            keys[key[0]].add(key[1:])
4495
 
        if len(keys['revisions']):
4496
 
            # If we allowed copying revisions at this point, we could end up
4497
 
            # copying a revision without copying its required texts: a
4498
 
            # violation of the requirements for repository integrity.
4499
 
            raise AssertionError(
4500
 
                'cannot copy revisions to fill in missing deltas %s' % (
4501
 
                    keys['revisions'],))
4502
 
        for substream_kind, keys in keys.iteritems():
4503
 
            vf = getattr(self.from_repository, substream_kind)
4504
 
            if vf is None and keys:
4505
 
                    raise AssertionError(
4506
 
                        "cannot fill in keys for a versioned file we don't"
4507
 
                        " have: %s needs %s" % (substream_kind, keys))
4508
 
            if not keys:
4509
 
                # No need to stream something we don't have
4510
 
                continue
4511
 
            if substream_kind == 'inventories':
4512
 
                # Some missing keys are genuinely ghosts, filter those out.
4513
 
                present = self.from_repository.inventories.get_parent_map(keys)
4514
 
                revs = [key[0] for key in present]
4515
 
                # Get the inventory stream more-or-less as we do for the
4516
 
                # original stream; there's no reason to assume that records
4517
 
                # direct from the source will be suitable for the sink.  (Think
4518
 
                # e.g. 2a -> 1.9-rich-root).
4519
 
                for info in self._get_inventory_stream(revs, missing=True):
4520
 
                    yield info
4521
 
                continue
4522
 
 
4523
 
            # Ask for full texts always so that we don't need more round trips
4524
 
            # after this stream.
4525
 
            # Some of the missing keys are genuinely ghosts, so filter absent
4526
 
            # records. The Sink is responsible for doing another check to
4527
 
            # ensure that ghosts don't introduce missing data for future
4528
 
            # fetches.
4529
 
            stream = versionedfile.filter_absent(vf.get_record_stream(keys,
4530
 
                self.to_format._fetch_order, True))
4531
 
            yield substream_kind, stream
4532
 
 
4533
 
    def inventory_fetch_order(self):
4534
 
        if self._rich_root_upgrade():
4535
 
            return 'topological'
4536
 
        else:
4537
 
            return self.to_format._fetch_order
4538
 
 
4539
 
    def _rich_root_upgrade(self):
4540
 
        return (not self.from_repository._format.rich_root_data and
4541
 
            self.to_format.rich_root_data)
4542
 
 
4543
 
    def _get_inventory_stream(self, revision_ids, missing=False):
4544
 
        from_format = self.from_repository._format
4545
 
        if (from_format.supports_chks and self.to_format.supports_chks and
4546
 
            from_format.network_name() == self.to_format.network_name()):
4547
 
            raise AssertionError(
4548
 
                "this case should be handled by GroupCHKStreamSource")
4549
 
        elif 'forceinvdeltas' in debug.debug_flags:
4550
 
            return self._get_convertable_inventory_stream(revision_ids,
4551
 
                    delta_versus_null=missing)
4552
 
        elif from_format.network_name() == self.to_format.network_name():
4553
 
            # Same format.
4554
 
            return self._get_simple_inventory_stream(revision_ids,
4555
 
                    missing=missing)
4556
 
        elif (not from_format.supports_chks and not self.to_format.supports_chks
4557
 
                and from_format._serializer == self.to_format._serializer):
4558
 
            # Essentially the same format.
4559
 
            return self._get_simple_inventory_stream(revision_ids,
4560
 
                    missing=missing)
4561
 
        else:
4562
 
            # Any time we switch serializations, we want to use an
4563
 
            # inventory-delta based approach.
4564
 
            return self._get_convertable_inventory_stream(revision_ids,
4565
 
                    delta_versus_null=missing)
4566
 
 
4567
 
    def _get_simple_inventory_stream(self, revision_ids, missing=False):
4568
 
        # NB: This currently reopens the inventory weave in source;
4569
 
        # using a single stream interface instead would avoid this.
4570
 
        from_weave = self.from_repository.inventories
4571
 
        if missing:
4572
 
            delta_closure = True
4573
 
        else:
4574
 
            delta_closure = not self.delta_on_metadata()
4575
 
        yield ('inventories', from_weave.get_record_stream(
4576
 
            [(rev_id,) for rev_id in revision_ids],
4577
 
            self.inventory_fetch_order(), delta_closure))
4578
 
 
4579
 
    def _get_convertable_inventory_stream(self, revision_ids,
4580
 
                                          delta_versus_null=False):
4581
 
        # The source is using CHKs, but the target either doesn't or it has a
4582
 
        # different serializer.  The StreamSink code expects to be able to
4583
 
        # convert on the target, so we need to put bytes-on-the-wire that can
4584
 
        # be converted.  That means inventory deltas (if the remote is <1.19,
4585
 
        # RemoteStreamSink will fallback to VFS to insert the deltas).
4586
 
        yield ('inventory-deltas',
4587
 
           self._stream_invs_as_deltas(revision_ids,
4588
 
                                       delta_versus_null=delta_versus_null))
4589
 
 
4590
 
    def _stream_invs_as_deltas(self, revision_ids, delta_versus_null=False):
4591
 
        """Return a stream of inventory-deltas for the given rev ids.
4592
 
 
4593
 
        :param revision_ids: The list of inventories to transmit
4594
 
        :param delta_versus_null: Don't try to find a minimal delta for this
4595
 
            entry, instead compute the delta versus the NULL_REVISION. This
4596
 
            effectively streams a complete inventory. Used for stuff like
4597
 
            filling in missing parents, etc.
4598
 
        """
4599
 
        from_repo = self.from_repository
4600
 
        revision_keys = [(rev_id,) for rev_id in revision_ids]
4601
 
        parent_map = from_repo.inventories.get_parent_map(revision_keys)
4602
 
        # XXX: possibly repos could implement a more efficient iter_inv_deltas
4603
 
        # method...
4604
 
        inventories = self.from_repository.iter_inventories(
4605
 
            revision_ids, 'topological')
4606
 
        format = from_repo._format
4607
 
        invs_sent_so_far = set([_mod_revision.NULL_REVISION])
4608
 
        inventory_cache = lru_cache.LRUCache(50)
4609
 
        null_inventory = from_repo.revision_tree(
4610
 
            _mod_revision.NULL_REVISION).inventory
4611
 
        # XXX: ideally the rich-root/tree-refs flags would be per-revision, not
4612
 
        # per-repo (e.g.  streaming a non-rich-root revision out of a rich-root
4613
 
        # repo back into a non-rich-root repo ought to be allowed)
4614
 
        serializer = inventory_delta.InventoryDeltaSerializer(
4615
 
            versioned_root=format.rich_root_data,
4616
 
            tree_references=format.supports_tree_reference)
4617
 
        for inv in inventories:
4618
 
            key = (inv.revision_id,)
4619
 
            parent_keys = parent_map.get(key, ())
4620
 
            delta = None
4621
 
            if not delta_versus_null and parent_keys:
4622
 
                # The caller did not ask for complete inventories and we have
4623
 
                # some parents that we can delta against.  Make a delta against
4624
 
                # each parent so that we can find the smallest.
4625
 
                parent_ids = [parent_key[0] for parent_key in parent_keys]
4626
 
                for parent_id in parent_ids:
4627
 
                    if parent_id not in invs_sent_so_far:
4628
 
                        # We don't know that the remote side has this basis, so
4629
 
                        # we can't use it.
4630
 
                        continue
4631
 
                    if parent_id == _mod_revision.NULL_REVISION:
4632
 
                        parent_inv = null_inventory
4633
 
                    else:
4634
 
                        parent_inv = inventory_cache.get(parent_id, None)
4635
 
                        if parent_inv is None:
4636
 
                            parent_inv = from_repo.get_inventory(parent_id)
4637
 
                    candidate_delta = inv._make_delta(parent_inv)
4638
 
                    if (delta is None or
4639
 
                        len(delta) > len(candidate_delta)):
4640
 
                        delta = candidate_delta
4641
 
                        basis_id = parent_id
4642
 
            if delta is None:
4643
 
                # Either none of the parents ended up being suitable, or we
4644
 
                # were asked to delta against NULL
4645
 
                basis_id = _mod_revision.NULL_REVISION
4646
 
                delta = inv._make_delta(null_inventory)
4647
 
            invs_sent_so_far.add(inv.revision_id)
4648
 
            inventory_cache[inv.revision_id] = inv
4649
 
            delta_serialized = ''.join(
4650
 
                serializer.delta_to_lines(basis_id, key[-1], delta))
4651
 
            yield versionedfile.FulltextContentFactory(
4652
 
                key, parent_keys, None, delta_serialized)
4653
 
 
4654
 
 
4655
 
def _iter_for_revno(repo, partial_history_cache, stop_index=None,
4656
 
                    stop_revision=None):
4657
 
    """Extend the partial history to include a given index
4658
 
 
4659
 
    If a stop_index is supplied, stop when that index has been reached.
4660
 
    If a stop_revision is supplied, stop when that revision is
4661
 
    encountered.  Otherwise, stop when the beginning of history is
4662
 
    reached.
4663
 
 
4664
 
    :param stop_index: The index which should be present.  When it is
4665
 
        present, history extension will stop.
4666
 
    :param stop_revision: The revision id which should be present.  When
4667
 
        it is encountered, history extension will stop.
4668
 
    """
4669
 
    start_revision = partial_history_cache[-1]
4670
 
    iterator = repo.iter_reverse_revision_history(start_revision)
4671
 
    try:
4672
 
        #skip the last revision in the list
4673
 
        iterator.next()
4674
 
        while True:
4675
 
            if (stop_index is not None and
4676
 
                len(partial_history_cache) > stop_index):
4677
 
                break
4678
 
            if partial_history_cache[-1] == stop_revision:
4679
 
                break
4680
 
            revision_id = iterator.next()
4681
 
            partial_history_cache.append(revision_id)
4682
 
    except StopIteration:
4683
 
        # No more history
4684
 
        return
4685