/brz/remove-bazaar

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

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Jelmer Vernooij
  • Date: 2010-02-15 20:50:06 UTC
  • mto: This revision was merged to the branch mainline in revision 5044.
  • Revision ID: jelmer@samba.org-20100215205006-weqh2ybmadjwdr44
Remove unused serialization methods on Repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005-2010 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
from bzrlib.lazy_import import lazy_import
 
18
lazy_import(globals(), """
 
19
import cStringIO
 
20
import re
 
21
import time
 
22
 
 
23
from bzrlib import (
 
24
    bzrdir,
 
25
    check,
 
26
    chk_map,
 
27
    config,
 
28
    debug,
 
29
    errors,
 
30
    fetch as _mod_fetch,
 
31
    fifo_cache,
 
32
    generate_ids,
 
33
    gpg,
 
34
    graph,
 
35
    inventory,
 
36
    inventory_delta,
 
37
    lazy_regex,
 
38
    lockable_files,
 
39
    lockdir,
 
40
    lru_cache,
 
41
    osutils,
 
42
    revision as _mod_revision,
 
43
    symbol_versioning,
 
44
    trace,
 
45
    tsort,
 
46
    ui,
 
47
    versionedfile,
 
48
    )
 
49
from bzrlib.bundle import serializer
 
50
from bzrlib.revisiontree import RevisionTree
 
51
from bzrlib.store.versioned import VersionedFileStore
 
52
from bzrlib.testament import Testament
 
53
""")
 
54
 
 
55
from bzrlib.decorators import needs_read_lock, needs_write_lock, only_raises
 
56
from bzrlib.inter import InterObject
 
57
from bzrlib.inventory import (
 
58
    Inventory,
 
59
    InventoryDirectory,
 
60
    ROOT_ID,
 
61
    entry_factory,
 
62
    )
 
63
from bzrlib.lock import _RelockDebugMixin
 
64
from bzrlib import registry
 
65
from bzrlib.trace import (
 
66
    log_exception_quietly, note, mutter, mutter_callsite, warning)
 
67
 
 
68
 
 
69
# Old formats display a warning, but only once
 
70
_deprecation_warning_done = False
 
71
 
 
72
 
 
73
class CommitBuilder(object):
 
74
    """Provides an interface to build up a commit.
 
75
 
 
76
    This allows describing a tree to be committed without needing to
 
77
    know the internals of the format of the repository.
 
78
    """
 
79
 
 
80
    # all clients should supply tree roots.
 
81
    record_root_entry = True
 
82
    # the default CommitBuilder does not manage trees whose root is versioned.
 
83
    _versioned_root = False
 
84
 
 
85
    def __init__(self, repository, parents, config, timestamp=None,
 
86
                 timezone=None, committer=None, revprops=None,
 
87
                 revision_id=None):
 
88
        """Initiate a CommitBuilder.
 
89
 
 
90
        :param repository: Repository to commit to.
 
91
        :param parents: Revision ids of the parents of the new revision.
 
92
        :param config: Configuration to use.
 
93
        :param timestamp: Optional timestamp recorded for commit.
 
94
        :param timezone: Optional timezone for timestamp.
 
95
        :param committer: Optional committer to set for commit.
 
96
        :param revprops: Optional dictionary of revision properties.
 
97
        :param revision_id: Optional revision id.
 
98
        """
 
99
        self._config = config
 
100
 
 
101
        if committer is None:
 
102
            self._committer = self._config.username()
 
103
        else:
 
104
            self._committer = committer
 
105
 
 
106
        self.new_inventory = Inventory(None)
 
107
        self._new_revision_id = revision_id
 
108
        self.parents = parents
 
109
        self.repository = repository
 
110
 
 
111
        self._revprops = {}
 
112
        if revprops is not None:
 
113
            self._validate_revprops(revprops)
 
114
            self._revprops.update(revprops)
 
115
 
 
116
        if timestamp is None:
 
117
            timestamp = time.time()
 
118
        # Restrict resolution to 1ms
 
119
        self._timestamp = round(timestamp, 3)
 
120
 
 
121
        if timezone is None:
 
122
            self._timezone = osutils.local_time_offset()
 
123
        else:
 
124
            self._timezone = int(timezone)
 
125
 
 
126
        self._generate_revision_if_needed()
 
127
        self.__heads = graph.HeadsCache(repository.get_graph()).heads
 
128
        self._basis_delta = []
 
129
        # API compatibility, older code that used CommitBuilder did not call
 
130
        # .record_delete(), which means the delta that is computed would not be
 
131
        # valid. Callers that will call record_delete() should call
 
132
        # .will_record_deletes() to indicate that.
 
133
        self._recording_deletes = False
 
134
        # memo'd check for no-op commits.
 
135
        self._any_changes = False
 
136
 
 
137
    def any_changes(self):
 
138
        """Return True if any entries were changed.
 
139
        
 
140
        This includes merge-only changes. It is the core for the --unchanged
 
141
        detection in commit.
 
142
 
 
143
        :return: True if any changes have occured.
 
144
        """
 
145
        return self._any_changes
 
146
 
 
147
    def _validate_unicode_text(self, text, context):
 
148
        """Verify things like commit messages don't have bogus characters."""
 
149
        if '\r' in text:
 
150
            raise ValueError('Invalid value for %s: %r' % (context, text))
 
151
 
 
152
    def _validate_revprops(self, revprops):
 
153
        for key, value in revprops.iteritems():
 
154
            # We know that the XML serializers do not round trip '\r'
 
155
            # correctly, so refuse to accept them
 
156
            if not isinstance(value, basestring):
 
157
                raise ValueError('revision property (%s) is not a valid'
 
158
                                 ' (unicode) string: %r' % (key, value))
 
159
            self._validate_unicode_text(value,
 
160
                                        'revision property (%s)' % (key,))
 
161
 
 
162
    def commit(self, message):
 
163
        """Make the actual commit.
 
164
 
 
165
        :return: The revision id of the recorded revision.
 
166
        """
 
167
        self._validate_unicode_text(message, 'commit message')
 
168
        rev = _mod_revision.Revision(
 
169
                       timestamp=self._timestamp,
 
170
                       timezone=self._timezone,
 
171
                       committer=self._committer,
 
172
                       message=message,
 
173
                       inventory_sha1=self.inv_sha1,
 
174
                       revision_id=self._new_revision_id,
 
175
                       properties=self._revprops)
 
176
        rev.parent_ids = self.parents
 
177
        self.repository.add_revision(self._new_revision_id, rev,
 
178
            self.new_inventory, self._config)
 
179
        self.repository.commit_write_group()
 
180
        return self._new_revision_id
 
181
 
 
182
    def abort(self):
 
183
        """Abort the commit that is being built.
 
184
        """
 
185
        self.repository.abort_write_group()
 
186
 
 
187
    def revision_tree(self):
 
188
        """Return the tree that was just committed.
 
189
 
 
190
        After calling commit() this can be called to get a RevisionTree
 
191
        representing the newly committed tree. This is preferred to
 
192
        calling Repository.revision_tree() because that may require
 
193
        deserializing the inventory, while we already have a copy in
 
194
        memory.
 
195
        """
 
196
        if self.new_inventory is None:
 
197
            self.new_inventory = self.repository.get_inventory(
 
198
                self._new_revision_id)
 
199
        return RevisionTree(self.repository, self.new_inventory,
 
200
            self._new_revision_id)
 
201
 
 
202
    def finish_inventory(self):
 
203
        """Tell the builder that the inventory is finished.
 
204
 
 
205
        :return: The inventory id in the repository, which can be used with
 
206
            repository.get_inventory.
 
207
        """
 
208
        if self.new_inventory is None:
 
209
            # an inventory delta was accumulated without creating a new
 
210
            # inventory.
 
211
            basis_id = self.basis_delta_revision
 
212
            # We ignore the 'inventory' returned by add_inventory_by_delta
 
213
            # because self.new_inventory is used to hint to the rest of the
 
214
            # system what code path was taken
 
215
            self.inv_sha1, _ = self.repository.add_inventory_by_delta(
 
216
                basis_id, self._basis_delta, self._new_revision_id,
 
217
                self.parents)
 
218
        else:
 
219
            if self.new_inventory.root is None:
 
220
                raise AssertionError('Root entry should be supplied to'
 
221
                    ' record_entry_contents, as of bzr 0.10.')
 
222
                self.new_inventory.add(InventoryDirectory(ROOT_ID, '', None))
 
223
            self.new_inventory.revision_id = self._new_revision_id
 
224
            self.inv_sha1 = self.repository.add_inventory(
 
225
                self._new_revision_id,
 
226
                self.new_inventory,
 
227
                self.parents
 
228
                )
 
229
        return self._new_revision_id
 
230
 
 
231
    def _gen_revision_id(self):
 
232
        """Return new revision-id."""
 
233
        return generate_ids.gen_revision_id(self._config.username(),
 
234
                                            self._timestamp)
 
235
 
 
236
    def _generate_revision_if_needed(self):
 
237
        """Create a revision id if None was supplied.
 
238
 
 
239
        If the repository can not support user-specified revision ids
 
240
        they should override this function and raise CannotSetRevisionId
 
241
        if _new_revision_id is not None.
 
242
 
 
243
        :raises: CannotSetRevisionId
 
244
        """
 
245
        if self._new_revision_id is None:
 
246
            self._new_revision_id = self._gen_revision_id()
 
247
            self.random_revid = True
 
248
        else:
 
249
            self.random_revid = False
 
250
 
 
251
    def _heads(self, file_id, revision_ids):
 
252
        """Calculate the graph heads for revision_ids in the graph of file_id.
 
253
 
 
254
        This can use either a per-file graph or a global revision graph as we
 
255
        have an identity relationship between the two graphs.
 
256
        """
 
257
        return self.__heads(revision_ids)
 
258
 
 
259
    def _check_root(self, ie, parent_invs, tree):
 
260
        """Helper for record_entry_contents.
 
261
 
 
262
        :param ie: An entry being added.
 
263
        :param parent_invs: The inventories of the parent revisions of the
 
264
            commit.
 
265
        :param tree: The tree that is being committed.
 
266
        """
 
267
        # In this revision format, root entries have no knit or weave When
 
268
        # serializing out to disk and back in root.revision is always
 
269
        # _new_revision_id
 
270
        ie.revision = self._new_revision_id
 
271
 
 
272
    def _require_root_change(self, tree):
 
273
        """Enforce an appropriate root object change.
 
274
 
 
275
        This is called once when record_iter_changes is called, if and only if
 
276
        the root was not in the delta calculated by record_iter_changes.
 
277
 
 
278
        :param tree: The tree which is being committed.
 
279
        """
 
280
        # NB: if there are no parents then this method is not called, so no
 
281
        # need to guard on parents having length.
 
282
        entry = entry_factory['directory'](tree.path2id(''), '',
 
283
            None)
 
284
        entry.revision = self._new_revision_id
 
285
        self._basis_delta.append(('', '', entry.file_id, entry))
 
286
 
 
287
    def _get_delta(self, ie, basis_inv, path):
 
288
        """Get a delta against the basis inventory for ie."""
 
289
        if ie.file_id not in basis_inv:
 
290
            # add
 
291
            result = (None, path, ie.file_id, ie)
 
292
            self._basis_delta.append(result)
 
293
            return result
 
294
        elif ie != basis_inv[ie.file_id]:
 
295
            # common but altered
 
296
            # TODO: avoid tis id2path call.
 
297
            result = (basis_inv.id2path(ie.file_id), path, ie.file_id, ie)
 
298
            self._basis_delta.append(result)
 
299
            return result
 
300
        else:
 
301
            # common, unaltered
 
302
            return None
 
303
 
 
304
    def get_basis_delta(self):
 
305
        """Return the complete inventory delta versus the basis inventory.
 
306
 
 
307
        This has been built up with the calls to record_delete and
 
308
        record_entry_contents. The client must have already called
 
309
        will_record_deletes() to indicate that they will be generating a
 
310
        complete delta.
 
311
 
 
312
        :return: An inventory delta, suitable for use with apply_delta, or
 
313
            Repository.add_inventory_by_delta, etc.
 
314
        """
 
315
        if not self._recording_deletes:
 
316
            raise AssertionError("recording deletes not activated.")
 
317
        return self._basis_delta
 
318
 
 
319
    def record_delete(self, path, file_id):
 
320
        """Record that a delete occured against a basis tree.
 
321
 
 
322
        This is an optional API - when used it adds items to the basis_delta
 
323
        being accumulated by the commit builder. It cannot be called unless the
 
324
        method will_record_deletes() has been called to inform the builder that
 
325
        a delta is being supplied.
 
326
 
 
327
        :param path: The path of the thing deleted.
 
328
        :param file_id: The file id that was deleted.
 
329
        """
 
330
        if not self._recording_deletes:
 
331
            raise AssertionError("recording deletes not activated.")
 
332
        delta = (path, None, file_id, None)
 
333
        self._basis_delta.append(delta)
 
334
        self._any_changes = True
 
335
        return delta
 
336
 
 
337
    def will_record_deletes(self):
 
338
        """Tell the commit builder that deletes are being notified.
 
339
 
 
340
        This enables the accumulation of an inventory delta; for the resulting
 
341
        commit to be valid, deletes against the basis MUST be recorded via
 
342
        builder.record_delete().
 
343
        """
 
344
        self._recording_deletes = True
 
345
        try:
 
346
            basis_id = self.parents[0]
 
347
        except IndexError:
 
348
            basis_id = _mod_revision.NULL_REVISION
 
349
        self.basis_delta_revision = basis_id
 
350
 
 
351
    def record_entry_contents(self, ie, parent_invs, path, tree,
 
352
        content_summary):
 
353
        """Record the content of ie from tree into the commit if needed.
 
354
 
 
355
        Side effect: sets ie.revision when unchanged
 
356
 
 
357
        :param ie: An inventory entry present in the commit.
 
358
        :param parent_invs: The inventories of the parent revisions of the
 
359
            commit.
 
360
        :param path: The path the entry is at in the tree.
 
361
        :param tree: The tree which contains this entry and should be used to
 
362
            obtain content.
 
363
        :param content_summary: Summary data from the tree about the paths
 
364
            content - stat, length, exec, sha/link target. This is only
 
365
            accessed when the entry has a revision of None - that is when it is
 
366
            a candidate to commit.
 
367
        :return: A tuple (change_delta, version_recorded, fs_hash).
 
368
            change_delta is an inventory_delta change for this entry against
 
369
            the basis tree of the commit, or None if no change occured against
 
370
            the basis tree.
 
371
            version_recorded is True if a new version of the entry has been
 
372
            recorded. For instance, committing a merge where a file was only
 
373
            changed on the other side will return (delta, False).
 
374
            fs_hash is either None, or the hash details for the path (currently
 
375
            a tuple of the contents sha1 and the statvalue returned by
 
376
            tree.get_file_with_stat()).
 
377
        """
 
378
        if self.new_inventory.root is None:
 
379
            if ie.parent_id is not None:
 
380
                raise errors.RootMissing()
 
381
            self._check_root(ie, parent_invs, tree)
 
382
        if ie.revision is None:
 
383
            kind = content_summary[0]
 
384
        else:
 
385
            # ie is carried over from a prior commit
 
386
            kind = ie.kind
 
387
        # XXX: repository specific check for nested tree support goes here - if
 
388
        # the repo doesn't want nested trees we skip it ?
 
389
        if (kind == 'tree-reference' and
 
390
            not self.repository._format.supports_tree_reference):
 
391
            # mismatch between commit builder logic and repository:
 
392
            # this needs the entry creation pushed down into the builder.
 
393
            raise NotImplementedError('Missing repository subtree support.')
 
394
        self.new_inventory.add(ie)
 
395
 
 
396
        # TODO: slow, take it out of the inner loop.
 
397
        try:
 
398
            basis_inv = parent_invs[0]
 
399
        except IndexError:
 
400
            basis_inv = Inventory(root_id=None)
 
401
 
 
402
        # ie.revision is always None if the InventoryEntry is considered
 
403
        # for committing. We may record the previous parents revision if the
 
404
        # content is actually unchanged against a sole head.
 
405
        if ie.revision is not None:
 
406
            if not self._versioned_root and path == '':
 
407
                # repositories that do not version the root set the root's
 
408
                # revision to the new commit even when no change occurs (more
 
409
                # specifically, they do not record a revision on the root; and
 
410
                # the rev id is assigned to the root during deserialisation -
 
411
                # this masks when a change may have occurred against the basis.
 
412
                # To match this we always issue a delta, because the revision
 
413
                # of the root will always be changing.
 
414
                if ie.file_id in basis_inv:
 
415
                    delta = (basis_inv.id2path(ie.file_id), path,
 
416
                        ie.file_id, ie)
 
417
                else:
 
418
                    # add
 
419
                    delta = (None, path, ie.file_id, ie)
 
420
                self._basis_delta.append(delta)
 
421
                return delta, False, None
 
422
            else:
 
423
                # we don't need to commit this, because the caller already
 
424
                # determined that an existing revision of this file is
 
425
                # appropriate. If its not being considered for committing then
 
426
                # it and all its parents to the root must be unaltered so
 
427
                # no-change against the basis.
 
428
                if ie.revision == self._new_revision_id:
 
429
                    raise AssertionError("Impossible situation, a skipped "
 
430
                        "inventory entry (%r) claims to be modified in this "
 
431
                        "commit (%r).", (ie, self._new_revision_id))
 
432
                return None, False, None
 
433
        # XXX: Friction: parent_candidates should return a list not a dict
 
434
        #      so that we don't have to walk the inventories again.
 
435
        parent_candiate_entries = ie.parent_candidates(parent_invs)
 
436
        head_set = self._heads(ie.file_id, parent_candiate_entries.keys())
 
437
        heads = []
 
438
        for inv in parent_invs:
 
439
            if ie.file_id in inv:
 
440
                old_rev = inv[ie.file_id].revision
 
441
                if old_rev in head_set:
 
442
                    heads.append(inv[ie.file_id].revision)
 
443
                    head_set.remove(inv[ie.file_id].revision)
 
444
 
 
445
        store = False
 
446
        # now we check to see if we need to write a new record to the
 
447
        # file-graph.
 
448
        # We write a new entry unless there is one head to the ancestors, and
 
449
        # the kind-derived content is unchanged.
 
450
 
 
451
        # Cheapest check first: no ancestors, or more the one head in the
 
452
        # ancestors, we write a new node.
 
453
        if len(heads) != 1:
 
454
            store = True
 
455
        if not store:
 
456
            # There is a single head, look it up for comparison
 
457
            parent_entry = parent_candiate_entries[heads[0]]
 
458
            # if the non-content specific data has changed, we'll be writing a
 
459
            # node:
 
460
            if (parent_entry.parent_id != ie.parent_id or
 
461
                parent_entry.name != ie.name):
 
462
                store = True
 
463
        # now we need to do content specific checks:
 
464
        if not store:
 
465
            # if the kind changed the content obviously has
 
466
            if kind != parent_entry.kind:
 
467
                store = True
 
468
        # Stat cache fingerprint feedback for the caller - None as we usually
 
469
        # don't generate one.
 
470
        fingerprint = None
 
471
        if kind == 'file':
 
472
            if content_summary[2] is None:
 
473
                raise ValueError("Files must not have executable = None")
 
474
            if not store:
 
475
                # We can't trust a check of the file length because of content
 
476
                # filtering...
 
477
                if (# if the exec bit has changed we have to store:
 
478
                    parent_entry.executable != content_summary[2]):
 
479
                    store = True
 
480
                elif parent_entry.text_sha1 == content_summary[3]:
 
481
                    # all meta and content is unchanged (using a hash cache
 
482
                    # hit to check the sha)
 
483
                    ie.revision = parent_entry.revision
 
484
                    ie.text_size = parent_entry.text_size
 
485
                    ie.text_sha1 = parent_entry.text_sha1
 
486
                    ie.executable = parent_entry.executable
 
487
                    return self._get_delta(ie, basis_inv, path), False, None
 
488
                else:
 
489
                    # Either there is only a hash change(no hash cache entry,
 
490
                    # or same size content change), or there is no change on
 
491
                    # this file at all.
 
492
                    # Provide the parent's hash to the store layer, so that the
 
493
                    # content is unchanged we will not store a new node.
 
494
                    nostore_sha = parent_entry.text_sha1
 
495
            if store:
 
496
                # We want to record a new node regardless of the presence or
 
497
                # absence of a content change in the file.
 
498
                nostore_sha = None
 
499
            ie.executable = content_summary[2]
 
500
            file_obj, stat_value = tree.get_file_with_stat(ie.file_id, path)
 
501
            try:
 
502
                text = file_obj.read()
 
503
            finally:
 
504
                file_obj.close()
 
505
            try:
 
506
                ie.text_sha1, ie.text_size = self._add_text_to_weave(
 
507
                    ie.file_id, text, heads, nostore_sha)
 
508
                # Let the caller know we generated a stat fingerprint.
 
509
                fingerprint = (ie.text_sha1, stat_value)
 
510
            except errors.ExistingContent:
 
511
                # Turns out that the file content was unchanged, and we were
 
512
                # only going to store a new node if it was changed. Carry over
 
513
                # the entry.
 
514
                ie.revision = parent_entry.revision
 
515
                ie.text_size = parent_entry.text_size
 
516
                ie.text_sha1 = parent_entry.text_sha1
 
517
                ie.executable = parent_entry.executable
 
518
                return self._get_delta(ie, basis_inv, path), False, None
 
519
        elif kind == 'directory':
 
520
            if not store:
 
521
                # all data is meta here, nothing specific to directory, so
 
522
                # carry over:
 
523
                ie.revision = parent_entry.revision
 
524
                return self._get_delta(ie, basis_inv, path), False, None
 
525
            self._add_text_to_weave(ie.file_id, '', heads, None)
 
526
        elif kind == 'symlink':
 
527
            current_link_target = content_summary[3]
 
528
            if not store:
 
529
                # symlink target is not generic metadata, check if it has
 
530
                # changed.
 
531
                if current_link_target != parent_entry.symlink_target:
 
532
                    store = True
 
533
            if not store:
 
534
                # unchanged, carry over.
 
535
                ie.revision = parent_entry.revision
 
536
                ie.symlink_target = parent_entry.symlink_target
 
537
                return self._get_delta(ie, basis_inv, path), False, None
 
538
            ie.symlink_target = current_link_target
 
539
            self._add_text_to_weave(ie.file_id, '', heads, None)
 
540
        elif kind == 'tree-reference':
 
541
            if not store:
 
542
                if content_summary[3] != parent_entry.reference_revision:
 
543
                    store = True
 
544
            if not store:
 
545
                # unchanged, carry over.
 
546
                ie.reference_revision = parent_entry.reference_revision
 
547
                ie.revision = parent_entry.revision
 
548
                return self._get_delta(ie, basis_inv, path), False, None
 
549
            ie.reference_revision = content_summary[3]
 
550
            if ie.reference_revision is None:
 
551
                raise AssertionError("invalid content_summary for nested tree: %r"
 
552
                    % (content_summary,))
 
553
            self._add_text_to_weave(ie.file_id, '', heads, None)
 
554
        else:
 
555
            raise NotImplementedError('unknown kind')
 
556
        ie.revision = self._new_revision_id
 
557
        self._any_changes = True
 
558
        return self._get_delta(ie, basis_inv, path), True, fingerprint
 
559
 
 
560
    def record_iter_changes(self, tree, basis_revision_id, iter_changes,
 
561
        _entry_factory=entry_factory):
 
562
        """Record a new tree via iter_changes.
 
563
 
 
564
        :param tree: The tree to obtain text contents from for changed objects.
 
565
        :param basis_revision_id: The revision id of the tree the iter_changes
 
566
            has been generated against. Currently assumed to be the same
 
567
            as self.parents[0] - if it is not, errors may occur.
 
568
        :param iter_changes: An iter_changes iterator with the changes to apply
 
569
            to basis_revision_id. The iterator must not include any items with
 
570
            a current kind of None - missing items must be either filtered out
 
571
            or errored-on beefore record_iter_changes sees the item.
 
572
        :param _entry_factory: Private method to bind entry_factory locally for
 
573
            performance.
 
574
        :return: A generator of (file_id, relpath, fs_hash) tuples for use with
 
575
            tree._observed_sha1.
 
576
        """
 
577
        # Create an inventory delta based on deltas between all the parents and
 
578
        # deltas between all the parent inventories. We use inventory delta's 
 
579
        # between the inventory objects because iter_changes masks
 
580
        # last-changed-field only changes.
 
581
        # Working data:
 
582
        # file_id -> change map, change is fileid, paths, changed, versioneds,
 
583
        # parents, names, kinds, executables
 
584
        merged_ids = {}
 
585
        # {file_id -> revision_id -> inventory entry, for entries in parent
 
586
        # trees that are not parents[0]
 
587
        parent_entries = {}
 
588
        ghost_basis = False
 
589
        try:
 
590
            revtrees = list(self.repository.revision_trees(self.parents))
 
591
        except errors.NoSuchRevision:
 
592
            # one or more ghosts, slow path.
 
593
            revtrees = []
 
594
            for revision_id in self.parents:
 
595
                try:
 
596
                    revtrees.append(self.repository.revision_tree(revision_id))
 
597
                except errors.NoSuchRevision:
 
598
                    if not revtrees:
 
599
                        basis_revision_id = _mod_revision.NULL_REVISION
 
600
                        ghost_basis = True
 
601
                    revtrees.append(self.repository.revision_tree(
 
602
                        _mod_revision.NULL_REVISION))
 
603
        # The basis inventory from a repository 
 
604
        if revtrees:
 
605
            basis_inv = revtrees[0].inventory
 
606
        else:
 
607
            basis_inv = self.repository.revision_tree(
 
608
                _mod_revision.NULL_REVISION).inventory
 
609
        if len(self.parents) > 0:
 
610
            if basis_revision_id != self.parents[0] and not ghost_basis:
 
611
                raise Exception(
 
612
                    "arbitrary basis parents not yet supported with merges")
 
613
            for revtree in revtrees[1:]:
 
614
                for change in revtree.inventory._make_delta(basis_inv):
 
615
                    if change[1] is None:
 
616
                        # Not present in this parent.
 
617
                        continue
 
618
                    if change[2] not in merged_ids:
 
619
                        if change[0] is not None:
 
620
                            basis_entry = basis_inv[change[2]]
 
621
                            merged_ids[change[2]] = [
 
622
                                # basis revid
 
623
                                basis_entry.revision,
 
624
                                # new tree revid
 
625
                                change[3].revision]
 
626
                            parent_entries[change[2]] = {
 
627
                                # basis parent
 
628
                                basis_entry.revision:basis_entry,
 
629
                                # this parent 
 
630
                                change[3].revision:change[3],
 
631
                                }
 
632
                        else:
 
633
                            merged_ids[change[2]] = [change[3].revision]
 
634
                            parent_entries[change[2]] = {change[3].revision:change[3]}
 
635
                    else:
 
636
                        merged_ids[change[2]].append(change[3].revision)
 
637
                        parent_entries[change[2]][change[3].revision] = change[3]
 
638
        else:
 
639
            merged_ids = {}
 
640
        # Setup the changes from the tree:
 
641
        # changes maps file_id -> (change, [parent revision_ids])
 
642
        changes= {}
 
643
        for change in iter_changes:
 
644
            # This probably looks up in basis_inv way to much.
 
645
            if change[1][0] is not None:
 
646
                head_candidate = [basis_inv[change[0]].revision]
 
647
            else:
 
648
                head_candidate = []
 
649
            changes[change[0]] = change, merged_ids.get(change[0],
 
650
                head_candidate)
 
651
        unchanged_merged = set(merged_ids) - set(changes)
 
652
        # Extend the changes dict with synthetic changes to record merges of
 
653
        # texts.
 
654
        for file_id in unchanged_merged:
 
655
            # Record a merged version of these items that did not change vs the
 
656
            # basis. This can be either identical parallel changes, or a revert
 
657
            # of a specific file after a merge. The recorded content will be
 
658
            # that of the current tree (which is the same as the basis), but
 
659
            # the per-file graph will reflect a merge.
 
660
            # NB:XXX: We are reconstructing path information we had, this
 
661
            # should be preserved instead.
 
662
            # inv delta  change: (file_id, (path_in_source, path_in_target),
 
663
            #   changed_content, versioned, parent, name, kind,
 
664
            #   executable)
 
665
            try:
 
666
                basis_entry = basis_inv[file_id]
 
667
            except errors.NoSuchId:
 
668
                # a change from basis->some_parents but file_id isn't in basis
 
669
                # so was new in the merge, which means it must have changed
 
670
                # from basis -> current, and as it hasn't the add was reverted
 
671
                # by the user. So we discard this change.
 
672
                pass
 
673
            else:
 
674
                change = (file_id,
 
675
                    (basis_inv.id2path(file_id), tree.id2path(file_id)),
 
676
                    False, (True, True),
 
677
                    (basis_entry.parent_id, basis_entry.parent_id),
 
678
                    (basis_entry.name, basis_entry.name),
 
679
                    (basis_entry.kind, basis_entry.kind),
 
680
                    (basis_entry.executable, basis_entry.executable))
 
681
                changes[file_id] = (change, merged_ids[file_id])
 
682
        # changes contains tuples with the change and a set of inventory
 
683
        # candidates for the file.
 
684
        # inv delta is:
 
685
        # old_path, new_path, file_id, new_inventory_entry
 
686
        seen_root = False # Is the root in the basis delta?
 
687
        inv_delta = self._basis_delta
 
688
        modified_rev = self._new_revision_id
 
689
        for change, head_candidates in changes.values():
 
690
            if change[3][1]: # versioned in target.
 
691
                # Several things may be happening here:
 
692
                # We may have a fork in the per-file graph
 
693
                #  - record a change with the content from tree
 
694
                # We may have a change against < all trees  
 
695
                #  - carry over the tree that hasn't changed
 
696
                # We may have a change against all trees
 
697
                #  - record the change with the content from tree
 
698
                kind = change[6][1]
 
699
                file_id = change[0]
 
700
                entry = _entry_factory[kind](file_id, change[5][1],
 
701
                    change[4][1])
 
702
                head_set = self._heads(change[0], set(head_candidates))
 
703
                heads = []
 
704
                # Preserve ordering.
 
705
                for head_candidate in head_candidates:
 
706
                    if head_candidate in head_set:
 
707
                        heads.append(head_candidate)
 
708
                        head_set.remove(head_candidate)
 
709
                carried_over = False
 
710
                if len(heads) == 1:
 
711
                    # Could be a carry-over situation:
 
712
                    parent_entry_revs = parent_entries.get(file_id, None)
 
713
                    if parent_entry_revs:
 
714
                        parent_entry = parent_entry_revs.get(heads[0], None)
 
715
                    else:
 
716
                        parent_entry = None
 
717
                    if parent_entry is None:
 
718
                        # The parent iter_changes was called against is the one
 
719
                        # that is the per-file head, so any change is relevant
 
720
                        # iter_changes is valid.
 
721
                        carry_over_possible = False
 
722
                    else:
 
723
                        # could be a carry over situation
 
724
                        # A change against the basis may just indicate a merge,
 
725
                        # we need to check the content against the source of the
 
726
                        # merge to determine if it was changed after the merge
 
727
                        # or carried over.
 
728
                        if (parent_entry.kind != entry.kind or
 
729
                            parent_entry.parent_id != entry.parent_id or
 
730
                            parent_entry.name != entry.name):
 
731
                            # Metadata common to all entries has changed
 
732
                            # against per-file parent
 
733
                            carry_over_possible = False
 
734
                        else:
 
735
                            carry_over_possible = True
 
736
                        # per-type checks for changes against the parent_entry
 
737
                        # are done below.
 
738
                else:
 
739
                    # Cannot be a carry-over situation
 
740
                    carry_over_possible = False
 
741
                # Populate the entry in the delta
 
742
                if kind == 'file':
 
743
                    # XXX: There is still a small race here: If someone reverts the content of a file
 
744
                    # after iter_changes examines and decides it has changed,
 
745
                    # we will unconditionally record a new version even if some
 
746
                    # other process reverts it while commit is running (with
 
747
                    # the revert happening after iter_changes did it's
 
748
                    # examination).
 
749
                    if change[7][1]:
 
750
                        entry.executable = True
 
751
                    else:
 
752
                        entry.executable = False
 
753
                    if (carry_over_possible and
 
754
                        parent_entry.executable == entry.executable):
 
755
                            # Check the file length, content hash after reading
 
756
                            # the file.
 
757
                            nostore_sha = parent_entry.text_sha1
 
758
                    else:
 
759
                        nostore_sha = None
 
760
                    file_obj, stat_value = tree.get_file_with_stat(file_id, change[1][1])
 
761
                    try:
 
762
                        text = file_obj.read()
 
763
                    finally:
 
764
                        file_obj.close()
 
765
                    try:
 
766
                        entry.text_sha1, entry.text_size = self._add_text_to_weave(
 
767
                            file_id, text, heads, nostore_sha)
 
768
                        yield file_id, change[1][1], (entry.text_sha1, stat_value)
 
769
                    except errors.ExistingContent:
 
770
                        # No content change against a carry_over parent
 
771
                        # Perhaps this should also yield a fs hash update?
 
772
                        carried_over = True
 
773
                        entry.text_size = parent_entry.text_size
 
774
                        entry.text_sha1 = parent_entry.text_sha1
 
775
                elif kind == 'symlink':
 
776
                    # Wants a path hint?
 
777
                    entry.symlink_target = tree.get_symlink_target(file_id)
 
778
                    if (carry_over_possible and
 
779
                        parent_entry.symlink_target == entry.symlink_target):
 
780
                        carried_over = True
 
781
                    else:
 
782
                        self._add_text_to_weave(change[0], '', heads, None)
 
783
                elif kind == 'directory':
 
784
                    if carry_over_possible:
 
785
                        carried_over = True
 
786
                    else:
 
787
                        # Nothing to set on the entry.
 
788
                        # XXX: split into the Root and nonRoot versions.
 
789
                        if change[1][1] != '' or self.repository.supports_rich_root():
 
790
                            self._add_text_to_weave(change[0], '', heads, None)
 
791
                elif kind == 'tree-reference':
 
792
                    if not self.repository._format.supports_tree_reference:
 
793
                        # This isn't quite sane as an error, but we shouldn't
 
794
                        # ever see this code path in practice: tree's don't
 
795
                        # permit references when the repo doesn't support tree
 
796
                        # references.
 
797
                        raise errors.UnsupportedOperation(tree.add_reference,
 
798
                            self.repository)
 
799
                    reference_revision = tree.get_reference_revision(change[0])
 
800
                    entry.reference_revision = reference_revision
 
801
                    if (carry_over_possible and
 
802
                        parent_entry.reference_revision == reference_revision):
 
803
                        carried_over = True
 
804
                    else:
 
805
                        self._add_text_to_weave(change[0], '', heads, None)
 
806
                else:
 
807
                    raise AssertionError('unknown kind %r' % kind)
 
808
                if not carried_over:
 
809
                    entry.revision = modified_rev
 
810
                else:
 
811
                    entry.revision = parent_entry.revision
 
812
            else:
 
813
                entry = None
 
814
            new_path = change[1][1]
 
815
            inv_delta.append((change[1][0], new_path, change[0], entry))
 
816
            if new_path == '':
 
817
                seen_root = True
 
818
        self.new_inventory = None
 
819
        if len(inv_delta):
 
820
            # This should perhaps be guarded by a check that the basis we
 
821
            # commit against is the basis for the commit and if not do a delta
 
822
            # against the basis.
 
823
            self._any_changes = True
 
824
        if not seen_root:
 
825
            # housekeeping root entry changes do not affect no-change commits.
 
826
            self._require_root_change(tree)
 
827
        self.basis_delta_revision = basis_revision_id
 
828
 
 
829
    def _add_text_to_weave(self, file_id, new_text, parents, nostore_sha):
 
830
        parent_keys = tuple([(file_id, parent) for parent in parents])
 
831
        return self.repository.texts._add_text(
 
832
            (file_id, self._new_revision_id), parent_keys, new_text,
 
833
            nostore_sha=nostore_sha, random_id=self.random_revid)[0:2]
 
834
 
 
835
 
 
836
class RootCommitBuilder(CommitBuilder):
 
837
    """This commitbuilder actually records the root id"""
 
838
 
 
839
    # the root entry gets versioned properly by this builder.
 
840
    _versioned_root = True
 
841
 
 
842
    def _check_root(self, ie, parent_invs, tree):
 
843
        """Helper for record_entry_contents.
 
844
 
 
845
        :param ie: An entry being added.
 
846
        :param parent_invs: The inventories of the parent revisions of the
 
847
            commit.
 
848
        :param tree: The tree that is being committed.
 
849
        """
 
850
 
 
851
    def _require_root_change(self, tree):
 
852
        """Enforce an appropriate root object change.
 
853
 
 
854
        This is called once when record_iter_changes is called, if and only if
 
855
        the root was not in the delta calculated by record_iter_changes.
 
856
 
 
857
        :param tree: The tree which is being committed.
 
858
        """
 
859
        # versioned roots do not change unless the tree found a change.
 
860
 
 
861
 
 
862
######################################################################
 
863
# Repositories
 
864
 
 
865
 
 
866
class Repository(_RelockDebugMixin):
 
867
    """Repository holding history for one or more branches.
 
868
 
 
869
    The repository holds and retrieves historical information including
 
870
    revisions and file history.  It's normally accessed only by the Branch,
 
871
    which views a particular line of development through that history.
 
872
 
 
873
    The Repository builds on top of some byte storage facilies (the revisions,
 
874
    signatures, inventories, texts and chk_bytes attributes) and a Transport,
 
875
    which respectively provide byte storage and a means to access the (possibly
 
876
    remote) disk.
 
877
 
 
878
    The byte storage facilities are addressed via tuples, which we refer to
 
879
    as 'keys' throughout the code base. Revision_keys, inventory_keys and
 
880
    signature_keys are all 1-tuples: (revision_id,). text_keys are two-tuples:
 
881
    (file_id, revision_id). chk_bytes uses CHK keys - a 1-tuple with a single
 
882
    byte string made up of a hash identifier and a hash value.
 
883
    We use this interface because it allows low friction with the underlying
 
884
    code that implements disk indices, network encoding and other parts of
 
885
    bzrlib.
 
886
 
 
887
    :ivar revisions: A bzrlib.versionedfile.VersionedFiles instance containing
 
888
        the serialised revisions for the repository. This can be used to obtain
 
889
        revision graph information or to access raw serialised revisions.
 
890
        The result of trying to insert data into the repository via this store
 
891
        is undefined: it should be considered read-only except for implementors
 
892
        of repositories.
 
893
    :ivar signatures: A bzrlib.versionedfile.VersionedFiles instance containing
 
894
        the serialised signatures for the repository. This can be used to
 
895
        obtain access to raw serialised signatures.  The result of trying to
 
896
        insert data into the repository via this store is undefined: it should
 
897
        be considered read-only except for implementors of repositories.
 
898
    :ivar inventories: A bzrlib.versionedfile.VersionedFiles instance containing
 
899
        the serialised inventories for the repository. This can be used to
 
900
        obtain unserialised inventories.  The result of trying to insert data
 
901
        into the repository via this store is undefined: it should be
 
902
        considered read-only except for implementors of repositories.
 
903
    :ivar texts: A bzrlib.versionedfile.VersionedFiles instance containing the
 
904
        texts of files and directories for the repository. This can be used to
 
905
        obtain file texts or file graphs. Note that Repository.iter_file_bytes
 
906
        is usually a better interface for accessing file texts.
 
907
        The result of trying to insert data into the repository via this store
 
908
        is undefined: it should be considered read-only except for implementors
 
909
        of repositories.
 
910
    :ivar chk_bytes: A bzrlib.versionedfile.VersionedFiles instance containing
 
911
        any data the repository chooses to store or have indexed by its hash.
 
912
        The result of trying to insert data into the repository via this store
 
913
        is undefined: it should be considered read-only except for implementors
 
914
        of repositories.
 
915
    :ivar _transport: Transport for file access to repository, typically
 
916
        pointing to .bzr/repository.
 
917
    """
 
918
 
 
919
    # What class to use for a CommitBuilder. Often its simpler to change this
 
920
    # in a Repository class subclass rather than to override
 
921
    # get_commit_builder.
 
922
    _commit_builder_class = CommitBuilder
 
923
    # The search regex used by xml based repositories to determine what things
 
924
    # where changed in a single commit.
 
925
    _file_ids_altered_regex = lazy_regex.lazy_compile(
 
926
        r'file_id="(?P<file_id>[^"]+)"'
 
927
        r'.* revision="(?P<revision_id>[^"]+)"'
 
928
        )
 
929
 
 
930
    def abort_write_group(self, suppress_errors=False):
 
931
        """Commit the contents accrued within the current write group.
 
932
 
 
933
        :param suppress_errors: if true, abort_write_group will catch and log
 
934
            unexpected errors that happen during the abort, rather than
 
935
            allowing them to propagate.  Defaults to False.
 
936
 
 
937
        :seealso: start_write_group.
 
938
        """
 
939
        if self._write_group is not self.get_transaction():
 
940
            # has an unlock or relock occured ?
 
941
            if suppress_errors:
 
942
                mutter(
 
943
                '(suppressed) mismatched lock context and write group. %r, %r',
 
944
                self._write_group, self.get_transaction())
 
945
                return
 
946
            raise errors.BzrError(
 
947
                'mismatched lock context and write group. %r, %r' %
 
948
                (self._write_group, self.get_transaction()))
 
949
        try:
 
950
            self._abort_write_group()
 
951
        except Exception, exc:
 
952
            self._write_group = None
 
953
            if not suppress_errors:
 
954
                raise
 
955
            mutter('abort_write_group failed')
 
956
            log_exception_quietly()
 
957
            note('bzr: ERROR (ignored): %s', exc)
 
958
        self._write_group = None
 
959
 
 
960
    def _abort_write_group(self):
 
961
        """Template method for per-repository write group cleanup.
 
962
 
 
963
        This is called during abort before the write group is considered to be
 
964
        finished and should cleanup any internal state accrued during the write
 
965
        group. There is no requirement that data handed to the repository be
 
966
        *not* made available - this is not a rollback - but neither should any
 
967
        attempt be made to ensure that data added is fully commited. Abort is
 
968
        invoked when an error has occured so futher disk or network operations
 
969
        may not be possible or may error and if possible should not be
 
970
        attempted.
 
971
        """
 
972
 
 
973
    def add_fallback_repository(self, repository):
 
974
        """Add a repository to use for looking up data not held locally.
 
975
 
 
976
        :param repository: A repository.
 
977
        """
 
978
        if not self._format.supports_external_lookups:
 
979
            raise errors.UnstackableRepositoryFormat(self._format, self.base)
 
980
        if self.is_locked():
 
981
            # This repository will call fallback.unlock() when we transition to
 
982
            # the unlocked state, so we make sure to increment the lock count
 
983
            repository.lock_read()
 
984
        self._check_fallback_repository(repository)
 
985
        self._fallback_repositories.append(repository)
 
986
        self.texts.add_fallback_versioned_files(repository.texts)
 
987
        self.inventories.add_fallback_versioned_files(repository.inventories)
 
988
        self.revisions.add_fallback_versioned_files(repository.revisions)
 
989
        self.signatures.add_fallback_versioned_files(repository.signatures)
 
990
        if self.chk_bytes is not None:
 
991
            self.chk_bytes.add_fallback_versioned_files(repository.chk_bytes)
 
992
 
 
993
    def _check_fallback_repository(self, repository):
 
994
        """Check that this repository can fallback to repository safely.
 
995
 
 
996
        Raise an error if not.
 
997
 
 
998
        :param repository: A repository to fallback to.
 
999
        """
 
1000
        return InterRepository._assert_same_model(self, repository)
 
1001
 
 
1002
    def add_inventory(self, revision_id, inv, parents):
 
1003
        """Add the inventory inv to the repository as revision_id.
 
1004
 
 
1005
        :param parents: The revision ids of the parents that revision_id
 
1006
                        is known to have and are in the repository already.
 
1007
 
 
1008
        :returns: The validator(which is a sha1 digest, though what is sha'd is
 
1009
            repository format specific) of the serialized inventory.
 
1010
        """
 
1011
        if not self.is_in_write_group():
 
1012
            raise AssertionError("%r not in write group" % (self,))
 
1013
        _mod_revision.check_not_reserved_id(revision_id)
 
1014
        if not (inv.revision_id is None or inv.revision_id == revision_id):
 
1015
            raise AssertionError(
 
1016
                "Mismatch between inventory revision"
 
1017
                " id and insertion revid (%r, %r)"
 
1018
                % (inv.revision_id, revision_id))
 
1019
        if inv.root is None:
 
1020
            raise AssertionError()
 
1021
        return self._add_inventory_checked(revision_id, inv, parents)
 
1022
 
 
1023
    def _add_inventory_checked(self, revision_id, inv, parents):
 
1024
        """Add inv to the repository after checking the inputs.
 
1025
 
 
1026
        This function can be overridden to allow different inventory styles.
 
1027
 
 
1028
        :seealso: add_inventory, for the contract.
 
1029
        """
 
1030
        inv_lines = self._serializer.write_inventory_to_string(inv)
 
1031
        return self._inventory_add_lines(revision_id, parents,
 
1032
            inv_lines, check_content=False)
 
1033
 
 
1034
    def add_inventory_by_delta(self, basis_revision_id, delta, new_revision_id,
 
1035
                               parents, basis_inv=None, propagate_caches=False):
 
1036
        """Add a new inventory expressed as a delta against another revision.
 
1037
 
 
1038
        See the inventory developers documentation for the theory behind
 
1039
        inventory deltas.
 
1040
 
 
1041
        :param basis_revision_id: The inventory id the delta was created
 
1042
            against. (This does not have to be a direct parent.)
 
1043
        :param delta: The inventory delta (see Inventory.apply_delta for
 
1044
            details).
 
1045
        :param new_revision_id: The revision id that the inventory is being
 
1046
            added for.
 
1047
        :param parents: The revision ids of the parents that revision_id is
 
1048
            known to have and are in the repository already. These are supplied
 
1049
            for repositories that depend on the inventory graph for revision
 
1050
            graph access, as well as for those that pun ancestry with delta
 
1051
            compression.
 
1052
        :param basis_inv: The basis inventory if it is already known,
 
1053
            otherwise None.
 
1054
        :param propagate_caches: If True, the caches for this inventory are
 
1055
          copied to and updated for the result if possible.
 
1056
 
 
1057
        :returns: (validator, new_inv)
 
1058
            The validator(which is a sha1 digest, though what is sha'd is
 
1059
            repository format specific) of the serialized inventory, and the
 
1060
            resulting inventory.
 
1061
        """
 
1062
        if not self.is_in_write_group():
 
1063
            raise AssertionError("%r not in write group" % (self,))
 
1064
        _mod_revision.check_not_reserved_id(new_revision_id)
 
1065
        basis_tree = self.revision_tree(basis_revision_id)
 
1066
        basis_tree.lock_read()
 
1067
        try:
 
1068
            # Note that this mutates the inventory of basis_tree, which not all
 
1069
            # inventory implementations may support: A better idiom would be to
 
1070
            # return a new inventory, but as there is no revision tree cache in
 
1071
            # repository this is safe for now - RBC 20081013
 
1072
            if basis_inv is None:
 
1073
                basis_inv = basis_tree.inventory
 
1074
            basis_inv.apply_delta(delta)
 
1075
            basis_inv.revision_id = new_revision_id
 
1076
            return (self.add_inventory(new_revision_id, basis_inv, parents),
 
1077
                    basis_inv)
 
1078
        finally:
 
1079
            basis_tree.unlock()
 
1080
 
 
1081
    def _inventory_add_lines(self, revision_id, parents, lines,
 
1082
        check_content=True):
 
1083
        """Store lines in inv_vf and return the sha1 of the inventory."""
 
1084
        parents = [(parent,) for parent in parents]
 
1085
        result = self.inventories.add_lines((revision_id,), parents, lines,
 
1086
            check_content=check_content)[0]
 
1087
        self.inventories._access.flush()
 
1088
        return result
 
1089
 
 
1090
    def add_revision(self, revision_id, rev, inv=None, config=None):
 
1091
        """Add rev to the revision store as revision_id.
 
1092
 
 
1093
        :param revision_id: the revision id to use.
 
1094
        :param rev: The revision object.
 
1095
        :param inv: The inventory for the revision. if None, it will be looked
 
1096
                    up in the inventory storer
 
1097
        :param config: If None no digital signature will be created.
 
1098
                       If supplied its signature_needed method will be used
 
1099
                       to determine if a signature should be made.
 
1100
        """
 
1101
        # TODO: jam 20070210 Shouldn't we check rev.revision_id and
 
1102
        #       rev.parent_ids?
 
1103
        _mod_revision.check_not_reserved_id(revision_id)
 
1104
        if config is not None and config.signature_needed():
 
1105
            if inv is None:
 
1106
                inv = self.get_inventory(revision_id)
 
1107
            plaintext = Testament(rev, inv).as_short_text()
 
1108
            self.store_revision_signature(
 
1109
                gpg.GPGStrategy(config), plaintext, revision_id)
 
1110
        # check inventory present
 
1111
        if not self.inventories.get_parent_map([(revision_id,)]):
 
1112
            if inv is None:
 
1113
                raise errors.WeaveRevisionNotPresent(revision_id,
 
1114
                                                     self.inventories)
 
1115
            else:
 
1116
                # yes, this is not suitable for adding with ghosts.
 
1117
                rev.inventory_sha1 = self.add_inventory(revision_id, inv,
 
1118
                                                        rev.parent_ids)
 
1119
        else:
 
1120
            key = (revision_id,)
 
1121
            rev.inventory_sha1 = self.inventories.get_sha1s([key])[key]
 
1122
        self._add_revision(rev)
 
1123
 
 
1124
    def _add_revision(self, revision):
 
1125
        text = self._serializer.write_revision_to_string(revision)
 
1126
        key = (revision.revision_id,)
 
1127
        parents = tuple((parent,) for parent in revision.parent_ids)
 
1128
        self.revisions.add_lines(key, parents, osutils.split_lines(text))
 
1129
 
 
1130
    def all_revision_ids(self):
 
1131
        """Returns a list of all the revision ids in the repository.
 
1132
 
 
1133
        This is conceptually deprecated because code should generally work on
 
1134
        the graph reachable from a particular revision, and ignore any other
 
1135
        revisions that might be present.  There is no direct replacement
 
1136
        method.
 
1137
        """
 
1138
        if 'evil' in debug.debug_flags:
 
1139
            mutter_callsite(2, "all_revision_ids is linear with history.")
 
1140
        return self._all_revision_ids()
 
1141
 
 
1142
    def _all_revision_ids(self):
 
1143
        """Returns a list of all the revision ids in the repository.
 
1144
 
 
1145
        These are in as much topological order as the underlying store can
 
1146
        present.
 
1147
        """
 
1148
        raise NotImplementedError(self._all_revision_ids)
 
1149
 
 
1150
    def break_lock(self):
 
1151
        """Break a lock if one is present from another instance.
 
1152
 
 
1153
        Uses the ui factory to ask for confirmation if the lock may be from
 
1154
        an active process.
 
1155
        """
 
1156
        self.control_files.break_lock()
 
1157
 
 
1158
    @needs_read_lock
 
1159
    def _eliminate_revisions_not_present(self, revision_ids):
 
1160
        """Check every revision id in revision_ids to see if we have it.
 
1161
 
 
1162
        Returns a set of the present revisions.
 
1163
        """
 
1164
        result = []
 
1165
        graph = self.get_graph()
 
1166
        parent_map = graph.get_parent_map(revision_ids)
 
1167
        # The old API returned a list, should this actually be a set?
 
1168
        return parent_map.keys()
 
1169
 
 
1170
    def _check_inventories(self, checker):
 
1171
        """Check the inventories found from the revision scan.
 
1172
        
 
1173
        This is responsible for verifying the sha1 of inventories and
 
1174
        creating a pending_keys set that covers data referenced by inventories.
 
1175
        """
 
1176
        bar = ui.ui_factory.nested_progress_bar()
 
1177
        try:
 
1178
            self._do_check_inventories(checker, bar)
 
1179
        finally:
 
1180
            bar.finished()
 
1181
 
 
1182
    def _do_check_inventories(self, checker, bar):
 
1183
        """Helper for _check_inventories."""
 
1184
        revno = 0
 
1185
        keys = {'chk_bytes':set(), 'inventories':set(), 'texts':set()}
 
1186
        kinds = ['chk_bytes', 'texts']
 
1187
        count = len(checker.pending_keys)
 
1188
        bar.update("inventories", 0, 2)
 
1189
        current_keys = checker.pending_keys
 
1190
        checker.pending_keys = {}
 
1191
        # Accumulate current checks.
 
1192
        for key in current_keys:
 
1193
            if key[0] != 'inventories' and key[0] not in kinds:
 
1194
                checker._report_items.append('unknown key type %r' % (key,))
 
1195
            keys[key[0]].add(key[1:])
 
1196
        if keys['inventories']:
 
1197
            # NB: output order *should* be roughly sorted - topo or
 
1198
            # inverse topo depending on repository - either way decent
 
1199
            # to just delta against. However, pre-CHK formats didn't
 
1200
            # try to optimise inventory layout on disk. As such the
 
1201
            # pre-CHK code path does not use inventory deltas.
 
1202
            last_object = None
 
1203
            for record in self.inventories.check(keys=keys['inventories']):
 
1204
                if record.storage_kind == 'absent':
 
1205
                    checker._report_items.append(
 
1206
                        'Missing inventory {%s}' % (record.key,))
 
1207
                else:
 
1208
                    last_object = self._check_record('inventories', record,
 
1209
                        checker, last_object,
 
1210
                        current_keys[('inventories',) + record.key])
 
1211
            del keys['inventories']
 
1212
        else:
 
1213
            return
 
1214
        bar.update("texts", 1)
 
1215
        while (checker.pending_keys or keys['chk_bytes']
 
1216
            or keys['texts']):
 
1217
            # Something to check.
 
1218
            current_keys = checker.pending_keys
 
1219
            checker.pending_keys = {}
 
1220
            # Accumulate current checks.
 
1221
            for key in current_keys:
 
1222
                if key[0] not in kinds:
 
1223
                    checker._report_items.append('unknown key type %r' % (key,))
 
1224
                keys[key[0]].add(key[1:])
 
1225
            # Check the outermost kind only - inventories || chk_bytes || texts
 
1226
            for kind in kinds:
 
1227
                if keys[kind]:
 
1228
                    last_object = None
 
1229
                    for record in getattr(self, kind).check(keys=keys[kind]):
 
1230
                        if record.storage_kind == 'absent':
 
1231
                            checker._report_items.append(
 
1232
                                'Missing %s {%s}' % (kind, record.key,))
 
1233
                        else:
 
1234
                            last_object = self._check_record(kind, record,
 
1235
                                checker, last_object, current_keys[(kind,) + record.key])
 
1236
                    keys[kind] = set()
 
1237
                    break
 
1238
 
 
1239
    def _check_record(self, kind, record, checker, last_object, item_data):
 
1240
        """Check a single text from this repository."""
 
1241
        if kind == 'inventories':
 
1242
            rev_id = record.key[0]
 
1243
            inv = self._deserialise_inventory(rev_id,
 
1244
                record.get_bytes_as('fulltext'))
 
1245
            if last_object is not None:
 
1246
                delta = inv._make_delta(last_object)
 
1247
                for old_path, path, file_id, ie in delta:
 
1248
                    if ie is None:
 
1249
                        continue
 
1250
                    ie.check(checker, rev_id, inv)
 
1251
            else:
 
1252
                for path, ie in inv.iter_entries():
 
1253
                    ie.check(checker, rev_id, inv)
 
1254
            if self._format.fast_deltas:
 
1255
                return inv
 
1256
        elif kind == 'chk_bytes':
 
1257
            # No code written to check chk_bytes for this repo format.
 
1258
            checker._report_items.append(
 
1259
                'unsupported key type chk_bytes for %s' % (record.key,))
 
1260
        elif kind == 'texts':
 
1261
            self._check_text(record, checker, item_data)
 
1262
        else:
 
1263
            checker._report_items.append(
 
1264
                'unknown key type %s for %s' % (kind, record.key))
 
1265
 
 
1266
    def _check_text(self, record, checker, item_data):
 
1267
        """Check a single text."""
 
1268
        # Check it is extractable.
 
1269
        # TODO: check length.
 
1270
        if record.storage_kind == 'chunked':
 
1271
            chunks = record.get_bytes_as(record.storage_kind)
 
1272
            sha1 = osutils.sha_strings(chunks)
 
1273
            length = sum(map(len, chunks))
 
1274
        else:
 
1275
            content = record.get_bytes_as('fulltext')
 
1276
            sha1 = osutils.sha_string(content)
 
1277
            length = len(content)
 
1278
        if item_data and sha1 != item_data[1]:
 
1279
            checker._report_items.append(
 
1280
                'sha1 mismatch: %s has sha1 %s expected %s referenced by %s' %
 
1281
                (record.key, sha1, item_data[1], item_data[2]))
 
1282
 
 
1283
    @staticmethod
 
1284
    def create(a_bzrdir):
 
1285
        """Construct the current default format repository in a_bzrdir."""
 
1286
        return RepositoryFormat.get_default_format().initialize(a_bzrdir)
 
1287
 
 
1288
    def __init__(self, _format, a_bzrdir, control_files):
 
1289
        """instantiate a Repository.
 
1290
 
 
1291
        :param _format: The format of the repository on disk.
 
1292
        :param a_bzrdir: The BzrDir of the repository.
 
1293
 
 
1294
        In the future we will have a single api for all stores for
 
1295
        getting file texts, inventories and revisions, then
 
1296
        this construct will accept instances of those things.
 
1297
        """
 
1298
        super(Repository, self).__init__()
 
1299
        self._format = _format
 
1300
        # the following are part of the public API for Repository:
 
1301
        self.bzrdir = a_bzrdir
 
1302
        self.control_files = control_files
 
1303
        self._transport = control_files._transport
 
1304
        self.base = self._transport.base
 
1305
        # for tests
 
1306
        self._reconcile_does_inventory_gc = True
 
1307
        self._reconcile_fixes_text_parents = False
 
1308
        self._reconcile_backsup_inventory = True
 
1309
        self._write_group = None
 
1310
        # Additional places to query for data.
 
1311
        self._fallback_repositories = []
 
1312
        # An InventoryEntry cache, used during deserialization
 
1313
        self._inventory_entry_cache = fifo_cache.FIFOCache(10*1024)
 
1314
        # Is it safe to return inventory entries directly from the entry cache,
 
1315
        # rather copying them?
 
1316
        self._safe_to_return_from_cache = False
 
1317
 
 
1318
    def __repr__(self):
 
1319
        if self._fallback_repositories:
 
1320
            return '%s(%r, fallback_repositories=%r)' % (
 
1321
                self.__class__.__name__,
 
1322
                self.base,
 
1323
                self._fallback_repositories)
 
1324
        else:
 
1325
            return '%s(%r)' % (self.__class__.__name__,
 
1326
                               self.base)
 
1327
 
 
1328
    def _has_same_fallbacks(self, other_repo):
 
1329
        """Returns true if the repositories have the same fallbacks."""
 
1330
        my_fb = self._fallback_repositories
 
1331
        other_fb = other_repo._fallback_repositories
 
1332
        if len(my_fb) != len(other_fb):
 
1333
            return False
 
1334
        for f, g in zip(my_fb, other_fb):
 
1335
            if not f.has_same_location(g):
 
1336
                return False
 
1337
        return True
 
1338
 
 
1339
    def has_same_location(self, other):
 
1340
        """Returns a boolean indicating if this repository is at the same
 
1341
        location as another repository.
 
1342
 
 
1343
        This might return False even when two repository objects are accessing
 
1344
        the same physical repository via different URLs.
 
1345
        """
 
1346
        if self.__class__ is not other.__class__:
 
1347
            return False
 
1348
        return (self._transport.base == other._transport.base)
 
1349
 
 
1350
    def is_in_write_group(self):
 
1351
        """Return True if there is an open write group.
 
1352
 
 
1353
        :seealso: start_write_group.
 
1354
        """
 
1355
        return self._write_group is not None
 
1356
 
 
1357
    def is_locked(self):
 
1358
        return self.control_files.is_locked()
 
1359
 
 
1360
    def is_write_locked(self):
 
1361
        """Return True if this object is write locked."""
 
1362
        return self.is_locked() and self.control_files._lock_mode == 'w'
 
1363
 
 
1364
    def lock_write(self, token=None):
 
1365
        """Lock this repository for writing.
 
1366
 
 
1367
        This causes caching within the repository obejct to start accumlating
 
1368
        data during reads, and allows a 'write_group' to be obtained. Write
 
1369
        groups must be used for actual data insertion.
 
1370
 
 
1371
        :param token: if this is already locked, then lock_write will fail
 
1372
            unless the token matches the existing lock.
 
1373
        :returns: a token if this instance supports tokens, otherwise None.
 
1374
        :raises TokenLockingNotSupported: when a token is given but this
 
1375
            instance doesn't support using token locks.
 
1376
        :raises MismatchedToken: if the specified token doesn't match the token
 
1377
            of the existing lock.
 
1378
        :seealso: start_write_group.
 
1379
 
 
1380
        A token should be passed in if you know that you have locked the object
 
1381
        some other way, and need to synchronise this object's state with that
 
1382
        fact.
 
1383
 
 
1384
        XXX: this docstring is duplicated in many places, e.g. lockable_files.py
 
1385
        """
 
1386
        locked = self.is_locked()
 
1387
        result = self.control_files.lock_write(token=token)
 
1388
        if not locked:
 
1389
            self._warn_if_deprecated()
 
1390
            self._note_lock('w')
 
1391
            for repo in self._fallback_repositories:
 
1392
                # Writes don't affect fallback repos
 
1393
                repo.lock_read()
 
1394
            self._refresh_data()
 
1395
        return result
 
1396
 
 
1397
    def lock_read(self):
 
1398
        locked = self.is_locked()
 
1399
        self.control_files.lock_read()
 
1400
        if not locked:
 
1401
            self._warn_if_deprecated()
 
1402
            self._note_lock('r')
 
1403
            for repo in self._fallback_repositories:
 
1404
                repo.lock_read()
 
1405
            self._refresh_data()
 
1406
 
 
1407
    def get_physical_lock_status(self):
 
1408
        return self.control_files.get_physical_lock_status()
 
1409
 
 
1410
    def leave_lock_in_place(self):
 
1411
        """Tell this repository not to release the physical lock when this
 
1412
        object is unlocked.
 
1413
 
 
1414
        If lock_write doesn't return a token, then this method is not supported.
 
1415
        """
 
1416
        self.control_files.leave_in_place()
 
1417
 
 
1418
    def dont_leave_lock_in_place(self):
 
1419
        """Tell this repository to release the physical lock when this
 
1420
        object is unlocked, even if it didn't originally acquire it.
 
1421
 
 
1422
        If lock_write doesn't return a token, then this method is not supported.
 
1423
        """
 
1424
        self.control_files.dont_leave_in_place()
 
1425
 
 
1426
    @needs_read_lock
 
1427
    def gather_stats(self, revid=None, committers=None):
 
1428
        """Gather statistics from a revision id.
 
1429
 
 
1430
        :param revid: The revision id to gather statistics from, if None, then
 
1431
            no revision specific statistics are gathered.
 
1432
        :param committers: Optional parameter controlling whether to grab
 
1433
            a count of committers from the revision specific statistics.
 
1434
        :return: A dictionary of statistics. Currently this contains:
 
1435
            committers: The number of committers if requested.
 
1436
            firstrev: A tuple with timestamp, timezone for the penultimate left
 
1437
                most ancestor of revid, if revid is not the NULL_REVISION.
 
1438
            latestrev: A tuple with timestamp, timezone for revid, if revid is
 
1439
                not the NULL_REVISION.
 
1440
            revisions: The total revision count in the repository.
 
1441
            size: An estimate disk size of the repository in bytes.
 
1442
        """
 
1443
        result = {}
 
1444
        if revid and committers:
 
1445
            result['committers'] = 0
 
1446
        if revid and revid != _mod_revision.NULL_REVISION:
 
1447
            if committers:
 
1448
                all_committers = set()
 
1449
            revisions = self.get_ancestry(revid)
 
1450
            # pop the leading None
 
1451
            revisions.pop(0)
 
1452
            first_revision = None
 
1453
            if not committers:
 
1454
                # ignore the revisions in the middle - just grab first and last
 
1455
                revisions = revisions[0], revisions[-1]
 
1456
            for revision in self.get_revisions(revisions):
 
1457
                if not first_revision:
 
1458
                    first_revision = revision
 
1459
                if committers:
 
1460
                    all_committers.add(revision.committer)
 
1461
            last_revision = revision
 
1462
            if committers:
 
1463
                result['committers'] = len(all_committers)
 
1464
            result['firstrev'] = (first_revision.timestamp,
 
1465
                first_revision.timezone)
 
1466
            result['latestrev'] = (last_revision.timestamp,
 
1467
                last_revision.timezone)
 
1468
 
 
1469
        # now gather global repository information
 
1470
        # XXX: This is available for many repos regardless of listability.
 
1471
        if self.bzrdir.root_transport.listable():
 
1472
            # XXX: do we want to __define len__() ?
 
1473
            # Maybe the versionedfiles object should provide a different
 
1474
            # method to get the number of keys.
 
1475
            result['revisions'] = len(self.revisions.keys())
 
1476
            # result['size'] = t
 
1477
        return result
 
1478
 
 
1479
    def find_branches(self, using=False):
 
1480
        """Find branches underneath this repository.
 
1481
 
 
1482
        This will include branches inside other branches.
 
1483
 
 
1484
        :param using: If True, list only branches using this repository.
 
1485
        """
 
1486
        if using and not self.is_shared():
 
1487
            try:
 
1488
                return [self.bzrdir.open_branch()]
 
1489
            except errors.NotBranchError:
 
1490
                return []
 
1491
        class Evaluator(object):
 
1492
 
 
1493
            def __init__(self):
 
1494
                self.first_call = True
 
1495
 
 
1496
            def __call__(self, bzrdir):
 
1497
                # On the first call, the parameter is always the bzrdir
 
1498
                # containing the current repo.
 
1499
                if not self.first_call:
 
1500
                    try:
 
1501
                        repository = bzrdir.open_repository()
 
1502
                    except errors.NoRepositoryPresent:
 
1503
                        pass
 
1504
                    else:
 
1505
                        return False, (None, repository)
 
1506
                self.first_call = False
 
1507
                try:
 
1508
                    value = (bzrdir.open_branch(), None)
 
1509
                except errors.NotBranchError:
 
1510
                    value = (None, None)
 
1511
                return True, value
 
1512
 
 
1513
        branches = []
 
1514
        for branch, repository in bzrdir.BzrDir.find_bzrdirs(
 
1515
                self.bzrdir.root_transport, evaluate=Evaluator()):
 
1516
            if branch is not None:
 
1517
                branches.append(branch)
 
1518
            if not using and repository is not None:
 
1519
                branches.extend(repository.find_branches())
 
1520
        return branches
 
1521
 
 
1522
    @needs_read_lock
 
1523
    def search_missing_revision_ids(self, other, revision_id=None, find_ghosts=True):
 
1524
        """Return the revision ids that other has that this does not.
 
1525
 
 
1526
        These are returned in topological order.
 
1527
 
 
1528
        revision_id: only return revision ids included by revision_id.
 
1529
        """
 
1530
        return InterRepository.get(other, self).search_missing_revision_ids(
 
1531
            revision_id, find_ghosts)
 
1532
 
 
1533
    @staticmethod
 
1534
    def open(base):
 
1535
        """Open the repository rooted at base.
 
1536
 
 
1537
        For instance, if the repository is at URL/.bzr/repository,
 
1538
        Repository.open(URL) -> a Repository instance.
 
1539
        """
 
1540
        control = bzrdir.BzrDir.open(base)
 
1541
        return control.open_repository()
 
1542
 
 
1543
    def copy_content_into(self, destination, revision_id=None):
 
1544
        """Make a complete copy of the content in self into destination.
 
1545
 
 
1546
        This is a destructive operation! Do not use it on existing
 
1547
        repositories.
 
1548
        """
 
1549
        return InterRepository.get(self, destination).copy_content(revision_id)
 
1550
 
 
1551
    def commit_write_group(self):
 
1552
        """Commit the contents accrued within the current write group.
 
1553
 
 
1554
        :seealso: start_write_group.
 
1555
        
 
1556
        :return: it may return an opaque hint that can be passed to 'pack'.
 
1557
        """
 
1558
        if self._write_group is not self.get_transaction():
 
1559
            # has an unlock or relock occured ?
 
1560
            raise errors.BzrError('mismatched lock context %r and '
 
1561
                'write group %r.' %
 
1562
                (self.get_transaction(), self._write_group))
 
1563
        result = self._commit_write_group()
 
1564
        self._write_group = None
 
1565
        return result
 
1566
 
 
1567
    def _commit_write_group(self):
 
1568
        """Template method for per-repository write group cleanup.
 
1569
 
 
1570
        This is called before the write group is considered to be
 
1571
        finished and should ensure that all data handed to the repository
 
1572
        for writing during the write group is safely committed (to the
 
1573
        extent possible considering file system caching etc).
 
1574
        """
 
1575
 
 
1576
    def suspend_write_group(self):
 
1577
        raise errors.UnsuspendableWriteGroup(self)
 
1578
 
 
1579
    def get_missing_parent_inventories(self, check_for_missing_texts=True):
 
1580
        """Return the keys of missing inventory parents for revisions added in
 
1581
        this write group.
 
1582
 
 
1583
        A revision is not complete if the inventory delta for that revision
 
1584
        cannot be calculated.  Therefore if the parent inventories of a
 
1585
        revision are not present, the revision is incomplete, and e.g. cannot
 
1586
        be streamed by a smart server.  This method finds missing inventory
 
1587
        parents for revisions added in this write group.
 
1588
        """
 
1589
        if not self._format.supports_external_lookups:
 
1590
            # This is only an issue for stacked repositories
 
1591
            return set()
 
1592
        if not self.is_in_write_group():
 
1593
            raise AssertionError('not in a write group')
 
1594
 
 
1595
        # XXX: We assume that every added revision already has its
 
1596
        # corresponding inventory, so we only check for parent inventories that
 
1597
        # might be missing, rather than all inventories.
 
1598
        parents = set(self.revisions._index.get_missing_parents())
 
1599
        parents.discard(_mod_revision.NULL_REVISION)
 
1600
        unstacked_inventories = self.inventories._index
 
1601
        present_inventories = unstacked_inventories.get_parent_map(
 
1602
            key[-1:] for key in parents)
 
1603
        parents.difference_update(present_inventories)
 
1604
        if len(parents) == 0:
 
1605
            # No missing parent inventories.
 
1606
            return set()
 
1607
        if not check_for_missing_texts:
 
1608
            return set(('inventories', rev_id) for (rev_id,) in parents)
 
1609
        # Ok, now we have a list of missing inventories.  But these only matter
 
1610
        # if the inventories that reference them are missing some texts they
 
1611
        # appear to introduce.
 
1612
        # XXX: Texts referenced by all added inventories need to be present,
 
1613
        # but at the moment we're only checking for texts referenced by
 
1614
        # inventories at the graph's edge.
 
1615
        key_deps = self.revisions._index._key_dependencies
 
1616
        key_deps.satisfy_refs_for_keys(present_inventories)
 
1617
        referrers = frozenset(r[0] for r in key_deps.get_referrers())
 
1618
        file_ids = self.fileids_altered_by_revision_ids(referrers)
 
1619
        missing_texts = set()
 
1620
        for file_id, version_ids in file_ids.iteritems():
 
1621
            missing_texts.update(
 
1622
                (file_id, version_id) for version_id in version_ids)
 
1623
        present_texts = self.texts.get_parent_map(missing_texts)
 
1624
        missing_texts.difference_update(present_texts)
 
1625
        if not missing_texts:
 
1626
            # No texts are missing, so all revisions and their deltas are
 
1627
            # reconstructable.
 
1628
            return set()
 
1629
        # Alternatively the text versions could be returned as the missing
 
1630
        # keys, but this is likely to be less data.
 
1631
        missing_keys = set(('inventories', rev_id) for (rev_id,) in parents)
 
1632
        return missing_keys
 
1633
 
 
1634
    def refresh_data(self):
 
1635
        """Re-read any data needed to to synchronise with disk.
 
1636
 
 
1637
        This method is intended to be called after another repository instance
 
1638
        (such as one used by a smart server) has inserted data into the
 
1639
        repository. It may not be called during a write group, but may be
 
1640
        called at any other time.
 
1641
        """
 
1642
        if self.is_in_write_group():
 
1643
            raise errors.InternalBzrError(
 
1644
                "May not refresh_data while in a write group.")
 
1645
        self._refresh_data()
 
1646
 
 
1647
    def resume_write_group(self, tokens):
 
1648
        if not self.is_write_locked():
 
1649
            raise errors.NotWriteLocked(self)
 
1650
        if self._write_group:
 
1651
            raise errors.BzrError('already in a write group')
 
1652
        self._resume_write_group(tokens)
 
1653
        # so we can detect unlock/relock - the write group is now entered.
 
1654
        self._write_group = self.get_transaction()
 
1655
 
 
1656
    def _resume_write_group(self, tokens):
 
1657
        raise errors.UnsuspendableWriteGroup(self)
 
1658
 
 
1659
    def fetch(self, source, revision_id=None, pb=None, find_ghosts=False,
 
1660
            fetch_spec=None):
 
1661
        """Fetch the content required to construct revision_id from source.
 
1662
 
 
1663
        If revision_id is None and fetch_spec is None, then all content is
 
1664
        copied.
 
1665
 
 
1666
        fetch() may not be used when the repository is in a write group -
 
1667
        either finish the current write group before using fetch, or use
 
1668
        fetch before starting the write group.
 
1669
 
 
1670
        :param find_ghosts: Find and copy revisions in the source that are
 
1671
            ghosts in the target (and not reachable directly by walking out to
 
1672
            the first-present revision in target from revision_id).
 
1673
        :param revision_id: If specified, all the content needed for this
 
1674
            revision ID will be copied to the target.  Fetch will determine for
 
1675
            itself which content needs to be copied.
 
1676
        :param fetch_spec: If specified, a SearchResult or
 
1677
            PendingAncestryResult that describes which revisions to copy.  This
 
1678
            allows copying multiple heads at once.  Mutually exclusive with
 
1679
            revision_id.
 
1680
        """
 
1681
        if fetch_spec is not None and revision_id is not None:
 
1682
            raise AssertionError(
 
1683
                "fetch_spec and revision_id are mutually exclusive.")
 
1684
        if self.is_in_write_group():
 
1685
            raise errors.InternalBzrError(
 
1686
                "May not fetch while in a write group.")
 
1687
        # fast path same-url fetch operations
 
1688
        # TODO: lift out to somewhere common with RemoteRepository
 
1689
        # <https://bugs.edge.launchpad.net/bzr/+bug/401646>
 
1690
        if (self.has_same_location(source)
 
1691
            and fetch_spec is None
 
1692
            and self._has_same_fallbacks(source)):
 
1693
            # check that last_revision is in 'from' and then return a
 
1694
            # no-operation.
 
1695
            if (revision_id is not None and
 
1696
                not _mod_revision.is_null(revision_id)):
 
1697
                self.get_revision(revision_id)
 
1698
            return 0, []
 
1699
        # if there is no specific appropriate InterRepository, this will get
 
1700
        # the InterRepository base class, which raises an
 
1701
        # IncompatibleRepositories when asked to fetch.
 
1702
        inter = InterRepository.get(source, self)
 
1703
        return inter.fetch(revision_id=revision_id, pb=pb,
 
1704
            find_ghosts=find_ghosts, fetch_spec=fetch_spec)
 
1705
 
 
1706
    def create_bundle(self, target, base, fileobj, format=None):
 
1707
        return serializer.write_bundle(self, target, base, fileobj, format)
 
1708
 
 
1709
    def get_commit_builder(self, branch, parents, config, timestamp=None,
 
1710
                           timezone=None, committer=None, revprops=None,
 
1711
                           revision_id=None):
 
1712
        """Obtain a CommitBuilder for this repository.
 
1713
 
 
1714
        :param branch: Branch to commit to.
 
1715
        :param parents: Revision ids of the parents of the new revision.
 
1716
        :param config: Configuration to use.
 
1717
        :param timestamp: Optional timestamp recorded for commit.
 
1718
        :param timezone: Optional timezone for timestamp.
 
1719
        :param committer: Optional committer to set for commit.
 
1720
        :param revprops: Optional dictionary of revision properties.
 
1721
        :param revision_id: Optional revision id.
 
1722
        """
 
1723
        if self._fallback_repositories:
 
1724
            raise errors.BzrError("Cannot commit from a lightweight checkout "
 
1725
                "to a stacked branch. See "
 
1726
                "https://bugs.launchpad.net/bzr/+bug/375013 for details.")
 
1727
        result = self._commit_builder_class(self, parents, config,
 
1728
            timestamp, timezone, committer, revprops, revision_id)
 
1729
        self.start_write_group()
 
1730
        return result
 
1731
 
 
1732
    @only_raises(errors.LockNotHeld, errors.LockBroken)
 
1733
    def unlock(self):
 
1734
        if (self.control_files._lock_count == 1 and
 
1735
            self.control_files._lock_mode == 'w'):
 
1736
            if self._write_group is not None:
 
1737
                self.abort_write_group()
 
1738
                self.control_files.unlock()
 
1739
                raise errors.BzrError(
 
1740
                    'Must end write groups before releasing write locks.')
 
1741
        self.control_files.unlock()
 
1742
        if self.control_files._lock_count == 0:
 
1743
            self._inventory_entry_cache.clear()
 
1744
            for repo in self._fallback_repositories:
 
1745
                repo.unlock()
 
1746
 
 
1747
    @needs_read_lock
 
1748
    def clone(self, a_bzrdir, revision_id=None):
 
1749
        """Clone this repository into a_bzrdir using the current format.
 
1750
 
 
1751
        Currently no check is made that the format of this repository and
 
1752
        the bzrdir format are compatible. FIXME RBC 20060201.
 
1753
 
 
1754
        :return: The newly created destination repository.
 
1755
        """
 
1756
        # TODO: deprecate after 0.16; cloning this with all its settings is
 
1757
        # probably not very useful -- mbp 20070423
 
1758
        dest_repo = self._create_sprouting_repo(a_bzrdir, shared=self.is_shared())
 
1759
        self.copy_content_into(dest_repo, revision_id)
 
1760
        return dest_repo
 
1761
 
 
1762
    def start_write_group(self):
 
1763
        """Start a write group in the repository.
 
1764
 
 
1765
        Write groups are used by repositories which do not have a 1:1 mapping
 
1766
        between file ids and backend store to manage the insertion of data from
 
1767
        both fetch and commit operations.
 
1768
 
 
1769
        A write lock is required around the start_write_group/commit_write_group
 
1770
        for the support of lock-requiring repository formats.
 
1771
 
 
1772
        One can only insert data into a repository inside a write group.
 
1773
 
 
1774
        :return: None.
 
1775
        """
 
1776
        if not self.is_write_locked():
 
1777
            raise errors.NotWriteLocked(self)
 
1778
        if self._write_group:
 
1779
            raise errors.BzrError('already in a write group')
 
1780
        self._start_write_group()
 
1781
        # so we can detect unlock/relock - the write group is now entered.
 
1782
        self._write_group = self.get_transaction()
 
1783
 
 
1784
    def _start_write_group(self):
 
1785
        """Template method for per-repository write group startup.
 
1786
 
 
1787
        This is called before the write group is considered to be
 
1788
        entered.
 
1789
        """
 
1790
 
 
1791
    @needs_read_lock
 
1792
    def sprout(self, to_bzrdir, revision_id=None):
 
1793
        """Create a descendent repository for new development.
 
1794
 
 
1795
        Unlike clone, this does not copy the settings of the repository.
 
1796
        """
 
1797
        dest_repo = self._create_sprouting_repo(to_bzrdir, shared=False)
 
1798
        dest_repo.fetch(self, revision_id=revision_id)
 
1799
        return dest_repo
 
1800
 
 
1801
    def _create_sprouting_repo(self, a_bzrdir, shared):
 
1802
        if not isinstance(a_bzrdir._format, self.bzrdir._format.__class__):
 
1803
            # use target default format.
 
1804
            dest_repo = a_bzrdir.create_repository()
 
1805
        else:
 
1806
            # Most control formats need the repository to be specifically
 
1807
            # created, but on some old all-in-one formats it's not needed
 
1808
            try:
 
1809
                dest_repo = self._format.initialize(a_bzrdir, shared=shared)
 
1810
            except errors.UninitializableFormat:
 
1811
                dest_repo = a_bzrdir.open_repository()
 
1812
        return dest_repo
 
1813
 
 
1814
    def _get_sink(self):
 
1815
        """Return a sink for streaming into this repository."""
 
1816
        return StreamSink(self)
 
1817
 
 
1818
    def _get_source(self, to_format):
 
1819
        """Return a source for streaming from this repository."""
 
1820
        return StreamSource(self, to_format)
 
1821
 
 
1822
    @needs_read_lock
 
1823
    def has_revision(self, revision_id):
 
1824
        """True if this repository has a copy of the revision."""
 
1825
        return revision_id in self.has_revisions((revision_id,))
 
1826
 
 
1827
    @needs_read_lock
 
1828
    def has_revisions(self, revision_ids):
 
1829
        """Probe to find out the presence of multiple revisions.
 
1830
 
 
1831
        :param revision_ids: An iterable of revision_ids.
 
1832
        :return: A set of the revision_ids that were present.
 
1833
        """
 
1834
        parent_map = self.revisions.get_parent_map(
 
1835
            [(rev_id,) for rev_id in revision_ids])
 
1836
        result = set()
 
1837
        if _mod_revision.NULL_REVISION in revision_ids:
 
1838
            result.add(_mod_revision.NULL_REVISION)
 
1839
        result.update([key[0] for key in parent_map])
 
1840
        return result
 
1841
 
 
1842
    @needs_read_lock
 
1843
    def get_revision(self, revision_id):
 
1844
        """Return the Revision object for a named revision."""
 
1845
        return self.get_revisions([revision_id])[0]
 
1846
 
 
1847
    @needs_read_lock
 
1848
    def get_revision_reconcile(self, revision_id):
 
1849
        """'reconcile' helper routine that allows access to a revision always.
 
1850
 
 
1851
        This variant of get_revision does not cross check the weave graph
 
1852
        against the revision one as get_revision does: but it should only
 
1853
        be used by reconcile, or reconcile-alike commands that are correcting
 
1854
        or testing the revision graph.
 
1855
        """
 
1856
        return self._get_revisions([revision_id])[0]
 
1857
 
 
1858
    @needs_read_lock
 
1859
    def get_revisions(self, revision_ids):
 
1860
        """Get many revisions at once.
 
1861
        
 
1862
        Repositories that need to check data on every revision read should 
 
1863
        subclass this method.
 
1864
        """
 
1865
        return self._get_revisions(revision_ids)
 
1866
 
 
1867
    @needs_read_lock
 
1868
    def _get_revisions(self, revision_ids):
 
1869
        """Core work logic to get many revisions without sanity checks."""
 
1870
        revs = {}
 
1871
        for revid, rev in self._iter_revisions(revision_ids):
 
1872
            if rev is None:
 
1873
                raise errors.NoSuchRevision(self, revid)
 
1874
            revs[revid] = rev
 
1875
        return [revs[revid] for revid in revision_ids]
 
1876
 
 
1877
    def _iter_revisions(self, revision_ids):
 
1878
        """Iterate over revision objects.
 
1879
 
 
1880
        :param revision_ids: An iterable of revisions to examine. None may be
 
1881
            passed to request all revisions known to the repository. Note that
 
1882
            not all repositories can find unreferenced revisions; for those
 
1883
            repositories only referenced ones will be returned.
 
1884
        :return: An iterator of (revid, revision) tuples. Absent revisions (
 
1885
            those asked for but not available) are returned as (revid, None).
 
1886
        """
 
1887
        if revision_ids is None:
 
1888
            revision_ids = self.all_revision_ids()
 
1889
        else:
 
1890
            for rev_id in revision_ids:
 
1891
                if not rev_id or not isinstance(rev_id, basestring):
 
1892
                    raise errors.InvalidRevisionId(revision_id=rev_id, branch=self)
 
1893
        keys = [(key,) for key in revision_ids]
 
1894
        stream = self.revisions.get_record_stream(keys, 'unordered', True)
 
1895
        for record in stream:
 
1896
            revid = record.key[0]
 
1897
            if record.storage_kind == 'absent':
 
1898
                yield (revid, None)
 
1899
            else:
 
1900
                text = record.get_bytes_as('fulltext')
 
1901
                rev = self._serializer.read_revision_from_string(text)
 
1902
                yield (revid, rev)
 
1903
 
 
1904
    def get_deltas_for_revisions(self, revisions, specific_fileids=None):
 
1905
        """Produce a generator of revision deltas.
 
1906
 
 
1907
        Note that the input is a sequence of REVISIONS, not revision_ids.
 
1908
        Trees will be held in memory until the generator exits.
 
1909
        Each delta is relative to the revision's lefthand predecessor.
 
1910
 
 
1911
        :param specific_fileids: if not None, the result is filtered
 
1912
          so that only those file-ids, their parents and their
 
1913
          children are included.
 
1914
        """
 
1915
        # Get the revision-ids of interest
 
1916
        required_trees = set()
 
1917
        for revision in revisions:
 
1918
            required_trees.add(revision.revision_id)
 
1919
            required_trees.update(revision.parent_ids[:1])
 
1920
 
 
1921
        # Get the matching filtered trees. Note that it's more
 
1922
        # efficient to pass filtered trees to changes_from() rather
 
1923
        # than doing the filtering afterwards. changes_from() could
 
1924
        # arguably do the filtering itself but it's path-based, not
 
1925
        # file-id based, so filtering before or afterwards is
 
1926
        # currently easier.
 
1927
        if specific_fileids is None:
 
1928
            trees = dict((t.get_revision_id(), t) for
 
1929
                t in self.revision_trees(required_trees))
 
1930
        else:
 
1931
            trees = dict((t.get_revision_id(), t) for
 
1932
                t in self._filtered_revision_trees(required_trees,
 
1933
                specific_fileids))
 
1934
 
 
1935
        # Calculate the deltas
 
1936
        for revision in revisions:
 
1937
            if not revision.parent_ids:
 
1938
                old_tree = self.revision_tree(_mod_revision.NULL_REVISION)
 
1939
            else:
 
1940
                old_tree = trees[revision.parent_ids[0]]
 
1941
            yield trees[revision.revision_id].changes_from(old_tree)
 
1942
 
 
1943
    @needs_read_lock
 
1944
    def get_revision_delta(self, revision_id, specific_fileids=None):
 
1945
        """Return the delta for one revision.
 
1946
 
 
1947
        The delta is relative to the left-hand predecessor of the
 
1948
        revision.
 
1949
 
 
1950
        :param specific_fileids: if not None, the result is filtered
 
1951
          so that only those file-ids, their parents and their
 
1952
          children are included.
 
1953
        """
 
1954
        r = self.get_revision(revision_id)
 
1955
        return list(self.get_deltas_for_revisions([r],
 
1956
            specific_fileids=specific_fileids))[0]
 
1957
 
 
1958
    @needs_write_lock
 
1959
    def store_revision_signature(self, gpg_strategy, plaintext, revision_id):
 
1960
        signature = gpg_strategy.sign(plaintext)
 
1961
        self.add_signature_text(revision_id, signature)
 
1962
 
 
1963
    @needs_write_lock
 
1964
    def add_signature_text(self, revision_id, signature):
 
1965
        self.signatures.add_lines((revision_id,), (),
 
1966
            osutils.split_lines(signature))
 
1967
 
 
1968
    def find_text_key_references(self):
 
1969
        """Find the text key references within the repository.
 
1970
 
 
1971
        :return: A dictionary mapping text keys ((fileid, revision_id) tuples)
 
1972
            to whether they were referred to by the inventory of the
 
1973
            revision_id that they contain. The inventory texts from all present
 
1974
            revision ids are assessed to generate this report.
 
1975
        """
 
1976
        revision_keys = self.revisions.keys()
 
1977
        w = self.inventories
 
1978
        pb = ui.ui_factory.nested_progress_bar()
 
1979
        try:
 
1980
            return self._find_text_key_references_from_xml_inventory_lines(
 
1981
                w.iter_lines_added_or_present_in_keys(revision_keys, pb=pb))
 
1982
        finally:
 
1983
            pb.finished()
 
1984
 
 
1985
    def _find_text_key_references_from_xml_inventory_lines(self,
 
1986
        line_iterator):
 
1987
        """Core routine for extracting references to texts from inventories.
 
1988
 
 
1989
        This performs the translation of xml lines to revision ids.
 
1990
 
 
1991
        :param line_iterator: An iterator of lines, origin_version_id
 
1992
        :return: A dictionary mapping text keys ((fileid, revision_id) tuples)
 
1993
            to whether they were referred to by the inventory of the
 
1994
            revision_id that they contain. Note that if that revision_id was
 
1995
            not part of the line_iterator's output then False will be given -
 
1996
            even though it may actually refer to that key.
 
1997
        """
 
1998
        if not self._serializer.support_altered_by_hack:
 
1999
            raise AssertionError(
 
2000
                "_find_text_key_references_from_xml_inventory_lines only "
 
2001
                "supported for branches which store inventory as unnested xml"
 
2002
                ", not on %r" % self)
 
2003
        result = {}
 
2004
 
 
2005
        # this code needs to read every new line in every inventory for the
 
2006
        # inventories [revision_ids]. Seeing a line twice is ok. Seeing a line
 
2007
        # not present in one of those inventories is unnecessary but not
 
2008
        # harmful because we are filtering by the revision id marker in the
 
2009
        # inventory lines : we only select file ids altered in one of those
 
2010
        # revisions. We don't need to see all lines in the inventory because
 
2011
        # only those added in an inventory in rev X can contain a revision=X
 
2012
        # line.
 
2013
        unescape_revid_cache = {}
 
2014
        unescape_fileid_cache = {}
 
2015
 
 
2016
        # jam 20061218 In a big fetch, this handles hundreds of thousands
 
2017
        # of lines, so it has had a lot of inlining and optimizing done.
 
2018
        # Sorry that it is a little bit messy.
 
2019
        # Move several functions to be local variables, since this is a long
 
2020
        # running loop.
 
2021
        search = self._file_ids_altered_regex.search
 
2022
        unescape = _unescape_xml
 
2023
        setdefault = result.setdefault
 
2024
        for line, line_key in line_iterator:
 
2025
            match = search(line)
 
2026
            if match is None:
 
2027
                continue
 
2028
            # One call to match.group() returning multiple items is quite a
 
2029
            # bit faster than 2 calls to match.group() each returning 1
 
2030
            file_id, revision_id = match.group('file_id', 'revision_id')
 
2031
 
 
2032
            # Inlining the cache lookups helps a lot when you make 170,000
 
2033
            # lines and 350k ids, versus 8.4 unique ids.
 
2034
            # Using a cache helps in 2 ways:
 
2035
            #   1) Avoids unnecessary decoding calls
 
2036
            #   2) Re-uses cached strings, which helps in future set and
 
2037
            #      equality checks.
 
2038
            # (2) is enough that removing encoding entirely along with
 
2039
            # the cache (so we are using plain strings) results in no
 
2040
            # performance improvement.
 
2041
            try:
 
2042
                revision_id = unescape_revid_cache[revision_id]
 
2043
            except KeyError:
 
2044
                unescaped = unescape(revision_id)
 
2045
                unescape_revid_cache[revision_id] = unescaped
 
2046
                revision_id = unescaped
 
2047
 
 
2048
            # Note that unconditionally unescaping means that we deserialise
 
2049
            # every fileid, which for general 'pull' is not great, but we don't
 
2050
            # really want to have some many fulltexts that this matters anyway.
 
2051
            # RBC 20071114.
 
2052
            try:
 
2053
                file_id = unescape_fileid_cache[file_id]
 
2054
            except KeyError:
 
2055
                unescaped = unescape(file_id)
 
2056
                unescape_fileid_cache[file_id] = unescaped
 
2057
                file_id = unescaped
 
2058
 
 
2059
            key = (file_id, revision_id)
 
2060
            setdefault(key, False)
 
2061
            if revision_id == line_key[-1]:
 
2062
                result[key] = True
 
2063
        return result
 
2064
 
 
2065
    def _inventory_xml_lines_for_keys(self, keys):
 
2066
        """Get a line iterator of the sort needed for findind references.
 
2067
 
 
2068
        Not relevant for non-xml inventory repositories.
 
2069
 
 
2070
        Ghosts in revision_keys are ignored.
 
2071
 
 
2072
        :param revision_keys: The revision keys for the inventories to inspect.
 
2073
        :return: An iterator over (inventory line, revid) for the fulltexts of
 
2074
            all of the xml inventories specified by revision_keys.
 
2075
        """
 
2076
        stream = self.inventories.get_record_stream(keys, 'unordered', True)
 
2077
        for record in stream:
 
2078
            if record.storage_kind != 'absent':
 
2079
                chunks = record.get_bytes_as('chunked')
 
2080
                revid = record.key[-1]
 
2081
                lines = osutils.chunks_to_lines(chunks)
 
2082
                for line in lines:
 
2083
                    yield line, revid
 
2084
 
 
2085
    def _find_file_ids_from_xml_inventory_lines(self, line_iterator,
 
2086
        revision_keys):
 
2087
        """Helper routine for fileids_altered_by_revision_ids.
 
2088
 
 
2089
        This performs the translation of xml lines to revision ids.
 
2090
 
 
2091
        :param line_iterator: An iterator of lines, origin_version_id
 
2092
        :param revision_keys: The revision ids to filter for. This should be a
 
2093
            set or other type which supports efficient __contains__ lookups, as
 
2094
            the revision key from each parsed line will be looked up in the
 
2095
            revision_keys filter.
 
2096
        :return: a dictionary mapping altered file-ids to an iterable of
 
2097
        revision_ids. Each altered file-ids has the exact revision_ids that
 
2098
        altered it listed explicitly.
 
2099
        """
 
2100
        seen = set(self._find_text_key_references_from_xml_inventory_lines(
 
2101
                line_iterator).iterkeys())
 
2102
        parent_keys = self._find_parent_keys_of_revisions(revision_keys)
 
2103
        parent_seen = set(self._find_text_key_references_from_xml_inventory_lines(
 
2104
            self._inventory_xml_lines_for_keys(parent_keys)))
 
2105
        new_keys = seen - parent_seen
 
2106
        result = {}
 
2107
        setdefault = result.setdefault
 
2108
        for key in new_keys:
 
2109
            setdefault(key[0], set()).add(key[-1])
 
2110
        return result
 
2111
 
 
2112
    def _find_parent_ids_of_revisions(self, revision_ids):
 
2113
        """Find all parent ids that are mentioned in the revision graph.
 
2114
 
 
2115
        :return: set of revisions that are parents of revision_ids which are
 
2116
            not part of revision_ids themselves
 
2117
        """
 
2118
        parent_map = self.get_parent_map(revision_ids)
 
2119
        parent_ids = set()
 
2120
        map(parent_ids.update, parent_map.itervalues())
 
2121
        parent_ids.difference_update(revision_ids)
 
2122
        parent_ids.discard(_mod_revision.NULL_REVISION)
 
2123
        return parent_ids
 
2124
 
 
2125
    def _find_parent_keys_of_revisions(self, revision_keys):
 
2126
        """Similar to _find_parent_ids_of_revisions, but used with keys.
 
2127
 
 
2128
        :param revision_keys: An iterable of revision_keys.
 
2129
        :return: The parents of all revision_keys that are not already in
 
2130
            revision_keys
 
2131
        """
 
2132
        parent_map = self.revisions.get_parent_map(revision_keys)
 
2133
        parent_keys = set()
 
2134
        map(parent_keys.update, parent_map.itervalues())
 
2135
        parent_keys.difference_update(revision_keys)
 
2136
        parent_keys.discard(_mod_revision.NULL_REVISION)
 
2137
        return parent_keys
 
2138
 
 
2139
    def fileids_altered_by_revision_ids(self, revision_ids, _inv_weave=None):
 
2140
        """Find the file ids and versions affected by revisions.
 
2141
 
 
2142
        :param revisions: an iterable containing revision ids.
 
2143
        :param _inv_weave: The inventory weave from this repository or None.
 
2144
            If None, the inventory weave will be opened automatically.
 
2145
        :return: a dictionary mapping altered file-ids to an iterable of
 
2146
        revision_ids. Each altered file-ids has the exact revision_ids that
 
2147
        altered it listed explicitly.
 
2148
        """
 
2149
        selected_keys = set((revid,) for revid in revision_ids)
 
2150
        w = _inv_weave or self.inventories
 
2151
        return self._find_file_ids_from_xml_inventory_lines(
 
2152
            w.iter_lines_added_or_present_in_keys(
 
2153
                selected_keys, pb=None),
 
2154
            selected_keys)
 
2155
 
 
2156
    def iter_files_bytes(self, desired_files):
 
2157
        """Iterate through file versions.
 
2158
 
 
2159
        Files will not necessarily be returned in the order they occur in
 
2160
        desired_files.  No specific order is guaranteed.
 
2161
 
 
2162
        Yields pairs of identifier, bytes_iterator.  identifier is an opaque
 
2163
        value supplied by the caller as part of desired_files.  It should
 
2164
        uniquely identify the file version in the caller's context.  (Examples:
 
2165
        an index number or a TreeTransform trans_id.)
 
2166
 
 
2167
        bytes_iterator is an iterable of bytestrings for the file.  The
 
2168
        kind of iterable and length of the bytestrings are unspecified, but for
 
2169
        this implementation, it is a list of bytes produced by
 
2170
        VersionedFile.get_record_stream().
 
2171
 
 
2172
        :param desired_files: a list of (file_id, revision_id, identifier)
 
2173
            triples
 
2174
        """
 
2175
        text_keys = {}
 
2176
        for file_id, revision_id, callable_data in desired_files:
 
2177
            text_keys[(file_id, revision_id)] = callable_data
 
2178
        for record in self.texts.get_record_stream(text_keys, 'unordered', True):
 
2179
            if record.storage_kind == 'absent':
 
2180
                raise errors.RevisionNotPresent(record.key, self)
 
2181
            yield text_keys[record.key], record.get_bytes_as('chunked')
 
2182
 
 
2183
    def _generate_text_key_index(self, text_key_references=None,
 
2184
        ancestors=None):
 
2185
        """Generate a new text key index for the repository.
 
2186
 
 
2187
        This is an expensive function that will take considerable time to run.
 
2188
 
 
2189
        :return: A dict mapping text keys ((file_id, revision_id) tuples) to a
 
2190
            list of parents, also text keys. When a given key has no parents,
 
2191
            the parents list will be [NULL_REVISION].
 
2192
        """
 
2193
        # All revisions, to find inventory parents.
 
2194
        if ancestors is None:
 
2195
            graph = self.get_graph()
 
2196
            ancestors = graph.get_parent_map(self.all_revision_ids())
 
2197
        if text_key_references is None:
 
2198
            text_key_references = self.find_text_key_references()
 
2199
        pb = ui.ui_factory.nested_progress_bar()
 
2200
        try:
 
2201
            return self._do_generate_text_key_index(ancestors,
 
2202
                text_key_references, pb)
 
2203
        finally:
 
2204
            pb.finished()
 
2205
 
 
2206
    def _do_generate_text_key_index(self, ancestors, text_key_references, pb):
 
2207
        """Helper for _generate_text_key_index to avoid deep nesting."""
 
2208
        revision_order = tsort.topo_sort(ancestors)
 
2209
        invalid_keys = set()
 
2210
        revision_keys = {}
 
2211
        for revision_id in revision_order:
 
2212
            revision_keys[revision_id] = set()
 
2213
        text_count = len(text_key_references)
 
2214
        # a cache of the text keys to allow reuse; costs a dict of all the
 
2215
        # keys, but saves a 2-tuple for every child of a given key.
 
2216
        text_key_cache = {}
 
2217
        for text_key, valid in text_key_references.iteritems():
 
2218
            if not valid:
 
2219
                invalid_keys.add(text_key)
 
2220
            else:
 
2221
                revision_keys[text_key[1]].add(text_key)
 
2222
            text_key_cache[text_key] = text_key
 
2223
        del text_key_references
 
2224
        text_index = {}
 
2225
        text_graph = graph.Graph(graph.DictParentsProvider(text_index))
 
2226
        NULL_REVISION = _mod_revision.NULL_REVISION
 
2227
        # Set a cache with a size of 10 - this suffices for bzr.dev but may be
 
2228
        # too small for large or very branchy trees. However, for 55K path
 
2229
        # trees, it would be easy to use too much memory trivially. Ideally we
 
2230
        # could gauge this by looking at available real memory etc, but this is
 
2231
        # always a tricky proposition.
 
2232
        inventory_cache = lru_cache.LRUCache(10)
 
2233
        batch_size = 10 # should be ~150MB on a 55K path tree
 
2234
        batch_count = len(revision_order) / batch_size + 1
 
2235
        processed_texts = 0
 
2236
        pb.update("Calculating text parents", processed_texts, text_count)
 
2237
        for offset in xrange(batch_count):
 
2238
            to_query = revision_order[offset * batch_size:(offset + 1) *
 
2239
                batch_size]
 
2240
            if not to_query:
 
2241
                break
 
2242
            for revision_id in to_query:
 
2243
                parent_ids = ancestors[revision_id]
 
2244
                for text_key in revision_keys[revision_id]:
 
2245
                    pb.update("Calculating text parents", processed_texts)
 
2246
                    processed_texts += 1
 
2247
                    candidate_parents = []
 
2248
                    for parent_id in parent_ids:
 
2249
                        parent_text_key = (text_key[0], parent_id)
 
2250
                        try:
 
2251
                            check_parent = parent_text_key not in \
 
2252
                                revision_keys[parent_id]
 
2253
                        except KeyError:
 
2254
                            # the parent parent_id is a ghost:
 
2255
                            check_parent = False
 
2256
                            # truncate the derived graph against this ghost.
 
2257
                            parent_text_key = None
 
2258
                        if check_parent:
 
2259
                            # look at the parent commit details inventories to
 
2260
                            # determine possible candidates in the per file graph.
 
2261
                            # TODO: cache here.
 
2262
                            try:
 
2263
                                inv = inventory_cache[parent_id]
 
2264
                            except KeyError:
 
2265
                                inv = self.revision_tree(parent_id).inventory
 
2266
                                inventory_cache[parent_id] = inv
 
2267
                            try:
 
2268
                                parent_entry = inv[text_key[0]]
 
2269
                            except (KeyError, errors.NoSuchId):
 
2270
                                parent_entry = None
 
2271
                            if parent_entry is not None:
 
2272
                                parent_text_key = (
 
2273
                                    text_key[0], parent_entry.revision)
 
2274
                            else:
 
2275
                                parent_text_key = None
 
2276
                        if parent_text_key is not None:
 
2277
                            candidate_parents.append(
 
2278
                                text_key_cache[parent_text_key])
 
2279
                    parent_heads = text_graph.heads(candidate_parents)
 
2280
                    new_parents = list(parent_heads)
 
2281
                    new_parents.sort(key=lambda x:candidate_parents.index(x))
 
2282
                    if new_parents == []:
 
2283
                        new_parents = [NULL_REVISION]
 
2284
                    text_index[text_key] = new_parents
 
2285
 
 
2286
        for text_key in invalid_keys:
 
2287
            text_index[text_key] = [NULL_REVISION]
 
2288
        return text_index
 
2289
 
 
2290
    def item_keys_introduced_by(self, revision_ids, _files_pb=None):
 
2291
        """Get an iterable listing the keys of all the data introduced by a set
 
2292
        of revision IDs.
 
2293
 
 
2294
        The keys will be ordered so that the corresponding items can be safely
 
2295
        fetched and inserted in that order.
 
2296
 
 
2297
        :returns: An iterable producing tuples of (knit-kind, file-id,
 
2298
            versions).  knit-kind is one of 'file', 'inventory', 'signatures',
 
2299
            'revisions'.  file-id is None unless knit-kind is 'file'.
 
2300
        """
 
2301
        for result in self._find_file_keys_to_fetch(revision_ids, _files_pb):
 
2302
            yield result
 
2303
        del _files_pb
 
2304
        for result in self._find_non_file_keys_to_fetch(revision_ids):
 
2305
            yield result
 
2306
 
 
2307
    def _find_file_keys_to_fetch(self, revision_ids, pb):
 
2308
        # XXX: it's a bit weird to control the inventory weave caching in this
 
2309
        # generator.  Ideally the caching would be done in fetch.py I think.  Or
 
2310
        # maybe this generator should explicitly have the contract that it
 
2311
        # should not be iterated until the previously yielded item has been
 
2312
        # processed?
 
2313
        inv_w = self.inventories
 
2314
 
 
2315
        # file ids that changed
 
2316
        file_ids = self.fileids_altered_by_revision_ids(revision_ids, inv_w)
 
2317
        count = 0
 
2318
        num_file_ids = len(file_ids)
 
2319
        for file_id, altered_versions in file_ids.iteritems():
 
2320
            if pb is not None:
 
2321
                pb.update("Fetch texts", count, num_file_ids)
 
2322
            count += 1
 
2323
            yield ("file", file_id, altered_versions)
 
2324
 
 
2325
    def _find_non_file_keys_to_fetch(self, revision_ids):
 
2326
        # inventory
 
2327
        yield ("inventory", None, revision_ids)
 
2328
 
 
2329
        # signatures
 
2330
        # XXX: Note ATM no callers actually pay attention to this return
 
2331
        #      instead they just use the list of revision ids and ignore
 
2332
        #      missing sigs. Consider removing this work entirely
 
2333
        revisions_with_signatures = set(self.signatures.get_parent_map(
 
2334
            [(r,) for r in revision_ids]))
 
2335
        revisions_with_signatures = set(
 
2336
            [r for (r,) in revisions_with_signatures])
 
2337
        revisions_with_signatures.intersection_update(revision_ids)
 
2338
        yield ("signatures", None, revisions_with_signatures)
 
2339
 
 
2340
        # revisions
 
2341
        yield ("revisions", None, revision_ids)
 
2342
 
 
2343
    @needs_read_lock
 
2344
    def get_inventory(self, revision_id):
 
2345
        """Get Inventory object by revision id."""
 
2346
        return self.iter_inventories([revision_id]).next()
 
2347
 
 
2348
    def iter_inventories(self, revision_ids, ordering=None):
 
2349
        """Get many inventories by revision_ids.
 
2350
 
 
2351
        This will buffer some or all of the texts used in constructing the
 
2352
        inventories in memory, but will only parse a single inventory at a
 
2353
        time.
 
2354
 
 
2355
        :param revision_ids: The expected revision ids of the inventories.
 
2356
        :param ordering: optional ordering, e.g. 'topological'.  If not
 
2357
            specified, the order of revision_ids will be preserved (by
 
2358
            buffering if necessary).
 
2359
        :return: An iterator of inventories.
 
2360
        """
 
2361
        if ((None in revision_ids)
 
2362
            or (_mod_revision.NULL_REVISION in revision_ids)):
 
2363
            raise ValueError('cannot get null revision inventory')
 
2364
        return self._iter_inventories(revision_ids, ordering)
 
2365
 
 
2366
    def _iter_inventories(self, revision_ids, ordering):
 
2367
        """single-document based inventory iteration."""
 
2368
        inv_xmls = self._iter_inventory_xmls(revision_ids, ordering)
 
2369
        for text, revision_id in inv_xmls:
 
2370
            yield self._deserialise_inventory(revision_id, text)
 
2371
 
 
2372
    def _iter_inventory_xmls(self, revision_ids, ordering):
 
2373
        if ordering is None:
 
2374
            order_as_requested = True
 
2375
            ordering = 'unordered'
 
2376
        else:
 
2377
            order_as_requested = False
 
2378
        keys = [(revision_id,) for revision_id in revision_ids]
 
2379
        if not keys:
 
2380
            return
 
2381
        if order_as_requested:
 
2382
            key_iter = iter(keys)
 
2383
            next_key = key_iter.next()
 
2384
        stream = self.inventories.get_record_stream(keys, ordering, True)
 
2385
        text_chunks = {}
 
2386
        for record in stream:
 
2387
            if record.storage_kind != 'absent':
 
2388
                chunks = record.get_bytes_as('chunked')
 
2389
                if order_as_requested:
 
2390
                    text_chunks[record.key] = chunks
 
2391
                else:
 
2392
                    yield ''.join(chunks), record.key[-1]
 
2393
            else:
 
2394
                raise errors.NoSuchRevision(self, record.key)
 
2395
            if order_as_requested:
 
2396
                # Yield as many results as we can while preserving order.
 
2397
                while next_key in text_chunks:
 
2398
                    chunks = text_chunks.pop(next_key)
 
2399
                    yield ''.join(chunks), next_key[-1]
 
2400
                    try:
 
2401
                        next_key = key_iter.next()
 
2402
                    except StopIteration:
 
2403
                        # We still want to fully consume the get_record_stream,
 
2404
                        # just in case it is not actually finished at this point
 
2405
                        next_key = None
 
2406
                        break
 
2407
 
 
2408
    def _deserialise_inventory(self, revision_id, xml):
 
2409
        """Transform the xml into an inventory object.
 
2410
 
 
2411
        :param revision_id: The expected revision id of the inventory.
 
2412
        :param xml: A serialised inventory.
 
2413
        """
 
2414
        result = self._serializer.read_inventory_from_string(xml, revision_id,
 
2415
                    entry_cache=self._inventory_entry_cache,
 
2416
                    return_from_cache=self._safe_to_return_from_cache)
 
2417
        if result.revision_id != revision_id:
 
2418
            raise AssertionError('revision id mismatch %s != %s' % (
 
2419
                result.revision_id, revision_id))
 
2420
        return result
 
2421
 
 
2422
    def get_serializer_format(self):
 
2423
        return self._serializer.format_num
 
2424
 
 
2425
    @needs_read_lock
 
2426
    def _get_inventory_xml(self, revision_id):
 
2427
        """Get serialized inventory as a string."""
 
2428
        texts = self._iter_inventory_xmls([revision_id], 'unordered')
 
2429
        try:
 
2430
            text, revision_id = texts.next()
 
2431
        except StopIteration:
 
2432
            raise errors.HistoryMissing(self, 'inventory', revision_id)
 
2433
        return text
 
2434
 
 
2435
    def get_rev_id_for_revno(self, revno, known_pair):
 
2436
        """Return the revision id of a revno, given a later (revno, revid)
 
2437
        pair in the same history.
 
2438
 
 
2439
        :return: if found (True, revid).  If the available history ran out
 
2440
            before reaching the revno, then this returns
 
2441
            (False, (closest_revno, closest_revid)).
 
2442
        """
 
2443
        known_revno, known_revid = known_pair
 
2444
        partial_history = [known_revid]
 
2445
        distance_from_known = known_revno - revno
 
2446
        if distance_from_known < 0:
 
2447
            raise ValueError(
 
2448
                'requested revno (%d) is later than given known revno (%d)'
 
2449
                % (revno, known_revno))
 
2450
        try:
 
2451
            _iter_for_revno(
 
2452
                self, partial_history, stop_index=distance_from_known)
 
2453
        except errors.RevisionNotPresent, err:
 
2454
            if err.revision_id == known_revid:
 
2455
                # The start revision (known_revid) wasn't found.
 
2456
                raise
 
2457
            # This is a stacked repository with no fallbacks, or a there's a
 
2458
            # left-hand ghost.  Either way, even though the revision named in
 
2459
            # the error isn't in this repo, we know it's the next step in this
 
2460
            # left-hand history.
 
2461
            partial_history.append(err.revision_id)
 
2462
        if len(partial_history) <= distance_from_known:
 
2463
            # Didn't find enough history to get a revid for the revno.
 
2464
            earliest_revno = known_revno - len(partial_history) + 1
 
2465
            return (False, (earliest_revno, partial_history[-1]))
 
2466
        if len(partial_history) - 1 > distance_from_known:
 
2467
            raise AssertionError('_iter_for_revno returned too much history')
 
2468
        return (True, partial_history[-1])
 
2469
 
 
2470
    def iter_reverse_revision_history(self, revision_id):
 
2471
        """Iterate backwards through revision ids in the lefthand history
 
2472
 
 
2473
        :param revision_id: The revision id to start with.  All its lefthand
 
2474
            ancestors will be traversed.
 
2475
        """
 
2476
        graph = self.get_graph()
 
2477
        next_id = revision_id
 
2478
        while True:
 
2479
            if next_id in (None, _mod_revision.NULL_REVISION):
 
2480
                return
 
2481
            try:
 
2482
                parents = graph.get_parent_map([next_id])[next_id]
 
2483
            except KeyError:
 
2484
                raise errors.RevisionNotPresent(next_id, self)
 
2485
            yield next_id
 
2486
            if len(parents) == 0:
 
2487
                return
 
2488
            else:
 
2489
                next_id = parents[0]
 
2490
 
 
2491
    @needs_read_lock
 
2492
    def get_revision_inventory(self, revision_id):
 
2493
        """Return inventory of a past revision."""
 
2494
        # TODO: Unify this with get_inventory()
 
2495
        # bzr 0.0.6 and later imposes the constraint that the inventory_id
 
2496
        # must be the same as its revision, so this is trivial.
 
2497
        if revision_id is None:
 
2498
            # This does not make sense: if there is no revision,
 
2499
            # then it is the current tree inventory surely ?!
 
2500
            # and thus get_root_id() is something that looks at the last
 
2501
            # commit on the branch, and the get_root_id is an inventory check.
 
2502
            raise NotImplementedError
 
2503
            # return Inventory(self.get_root_id())
 
2504
        else:
 
2505
            return self.get_inventory(revision_id)
 
2506
 
 
2507
    def is_shared(self):
 
2508
        """Return True if this repository is flagged as a shared repository."""
 
2509
        raise NotImplementedError(self.is_shared)
 
2510
 
 
2511
    @needs_write_lock
 
2512
    def reconcile(self, other=None, thorough=False):
 
2513
        """Reconcile this repository."""
 
2514
        from bzrlib.reconcile import RepoReconciler
 
2515
        reconciler = RepoReconciler(self, thorough=thorough)
 
2516
        reconciler.reconcile()
 
2517
        return reconciler
 
2518
 
 
2519
    def _refresh_data(self):
 
2520
        """Helper called from lock_* to ensure coherency with disk.
 
2521
 
 
2522
        The default implementation does nothing; it is however possible
 
2523
        for repositories to maintain loaded indices across multiple locks
 
2524
        by checking inside their implementation of this method to see
 
2525
        whether their indices are still valid. This depends of course on
 
2526
        the disk format being validatable in this manner. This method is
 
2527
        also called by the refresh_data() public interface to cause a refresh
 
2528
        to occur while in a write lock so that data inserted by a smart server
 
2529
        push operation is visible on the client's instance of the physical
 
2530
        repository.
 
2531
        """
 
2532
 
 
2533
    @needs_read_lock
 
2534
    def revision_tree(self, revision_id):
 
2535
        """Return Tree for a revision on this branch.
 
2536
 
 
2537
        `revision_id` may be NULL_REVISION for the empty tree revision.
 
2538
        """
 
2539
        revision_id = _mod_revision.ensure_null(revision_id)
 
2540
        # TODO: refactor this to use an existing revision object
 
2541
        # so we don't need to read it in twice.
 
2542
        if revision_id == _mod_revision.NULL_REVISION:
 
2543
            return RevisionTree(self, Inventory(root_id=None),
 
2544
                                _mod_revision.NULL_REVISION)
 
2545
        else:
 
2546
            inv = self.get_revision_inventory(revision_id)
 
2547
            return RevisionTree(self, inv, revision_id)
 
2548
 
 
2549
    def revision_trees(self, revision_ids):
 
2550
        """Return Trees for revisions in this repository.
 
2551
 
 
2552
        :param revision_ids: a sequence of revision-ids;
 
2553
          a revision-id may not be None or 'null:'
 
2554
        """
 
2555
        inventories = self.iter_inventories(revision_ids)
 
2556
        for inv in inventories:
 
2557
            yield RevisionTree(self, inv, inv.revision_id)
 
2558
 
 
2559
    def _filtered_revision_trees(self, revision_ids, file_ids):
 
2560
        """Return Tree for a revision on this branch with only some files.
 
2561
 
 
2562
        :param revision_ids: a sequence of revision-ids;
 
2563
          a revision-id may not be None or 'null:'
 
2564
        :param file_ids: if not None, the result is filtered
 
2565
          so that only those file-ids, their parents and their
 
2566
          children are included.
 
2567
        """
 
2568
        inventories = self.iter_inventories(revision_ids)
 
2569
        for inv in inventories:
 
2570
            # Should we introduce a FilteredRevisionTree class rather
 
2571
            # than pre-filter the inventory here?
 
2572
            filtered_inv = inv.filter(file_ids)
 
2573
            yield RevisionTree(self, filtered_inv, filtered_inv.revision_id)
 
2574
 
 
2575
    @needs_read_lock
 
2576
    def get_ancestry(self, revision_id, topo_sorted=True):
 
2577
        """Return a list of revision-ids integrated by a revision.
 
2578
 
 
2579
        The first element of the list is always None, indicating the origin
 
2580
        revision.  This might change when we have history horizons, or
 
2581
        perhaps we should have a new API.
 
2582
 
 
2583
        This is topologically sorted.
 
2584
        """
 
2585
        if _mod_revision.is_null(revision_id):
 
2586
            return [None]
 
2587
        if not self.has_revision(revision_id):
 
2588
            raise errors.NoSuchRevision(self, revision_id)
 
2589
        graph = self.get_graph()
 
2590
        keys = set()
 
2591
        search = graph._make_breadth_first_searcher([revision_id])
 
2592
        while True:
 
2593
            try:
 
2594
                found, ghosts = search.next_with_ghosts()
 
2595
            except StopIteration:
 
2596
                break
 
2597
            keys.update(found)
 
2598
        if _mod_revision.NULL_REVISION in keys:
 
2599
            keys.remove(_mod_revision.NULL_REVISION)
 
2600
        if topo_sorted:
 
2601
            parent_map = graph.get_parent_map(keys)
 
2602
            keys = tsort.topo_sort(parent_map)
 
2603
        return [None] + list(keys)
 
2604
 
 
2605
    def pack(self, hint=None):
 
2606
        """Compress the data within the repository.
 
2607
 
 
2608
        This operation only makes sense for some repository types. For other
 
2609
        types it should be a no-op that just returns.
 
2610
 
 
2611
        This stub method does not require a lock, but subclasses should use
 
2612
        @needs_write_lock as this is a long running call its reasonable to
 
2613
        implicitly lock for the user.
 
2614
 
 
2615
        :param hint: If not supplied, the whole repository is packed.
 
2616
            If supplied, the repository may use the hint parameter as a
 
2617
            hint for the parts of the repository to pack. A hint can be
 
2618
            obtained from the result of commit_write_group(). Out of
 
2619
            date hints are simply ignored, because concurrent operations
 
2620
            can obsolete them rapidly.
 
2621
        """
 
2622
 
 
2623
    def get_transaction(self):
 
2624
        return self.control_files.get_transaction()
 
2625
 
 
2626
    def get_parent_map(self, revision_ids):
 
2627
        """See graph.StackedParentsProvider.get_parent_map"""
 
2628
        # revisions index works in keys; this just works in revisions
 
2629
        # therefore wrap and unwrap
 
2630
        query_keys = []
 
2631
        result = {}
 
2632
        for revision_id in revision_ids:
 
2633
            if revision_id == _mod_revision.NULL_REVISION:
 
2634
                result[revision_id] = ()
 
2635
            elif revision_id is None:
 
2636
                raise ValueError('get_parent_map(None) is not valid')
 
2637
            else:
 
2638
                query_keys.append((revision_id ,))
 
2639
        for ((revision_id,), parent_keys) in \
 
2640
                self.revisions.get_parent_map(query_keys).iteritems():
 
2641
            if parent_keys:
 
2642
                result[revision_id] = tuple([parent_revid
 
2643
                    for (parent_revid,) in parent_keys])
 
2644
            else:
 
2645
                result[revision_id] = (_mod_revision.NULL_REVISION,)
 
2646
        return result
 
2647
 
 
2648
    def _make_parents_provider(self):
 
2649
        return self
 
2650
 
 
2651
    def get_graph(self, other_repository=None):
 
2652
        """Return the graph walker for this repository format"""
 
2653
        parents_provider = self._make_parents_provider()
 
2654
        if (other_repository is not None and
 
2655
            not self.has_same_location(other_repository)):
 
2656
            parents_provider = graph.StackedParentsProvider(
 
2657
                [parents_provider, other_repository._make_parents_provider()])
 
2658
        return graph.Graph(parents_provider)
 
2659
 
 
2660
    def _get_versioned_file_checker(self, text_key_references=None,
 
2661
        ancestors=None):
 
2662
        """Return an object suitable for checking versioned files.
 
2663
        
 
2664
        :param text_key_references: if non-None, an already built
 
2665
            dictionary mapping text keys ((fileid, revision_id) tuples)
 
2666
            to whether they were referred to by the inventory of the
 
2667
            revision_id that they contain. If None, this will be
 
2668
            calculated.
 
2669
        :param ancestors: Optional result from
 
2670
            self.get_graph().get_parent_map(self.all_revision_ids()) if already
 
2671
            available.
 
2672
        """
 
2673
        return _VersionedFileChecker(self,
 
2674
            text_key_references=text_key_references, ancestors=ancestors)
 
2675
 
 
2676
    def revision_ids_to_search_result(self, result_set):
 
2677
        """Convert a set of revision ids to a graph SearchResult."""
 
2678
        result_parents = set()
 
2679
        for parents in self.get_graph().get_parent_map(
 
2680
            result_set).itervalues():
 
2681
            result_parents.update(parents)
 
2682
        included_keys = result_set.intersection(result_parents)
 
2683
        start_keys = result_set.difference(included_keys)
 
2684
        exclude_keys = result_parents.difference(result_set)
 
2685
        result = graph.SearchResult(start_keys, exclude_keys,
 
2686
            len(result_set), result_set)
 
2687
        return result
 
2688
 
 
2689
    @needs_write_lock
 
2690
    def set_make_working_trees(self, new_value):
 
2691
        """Set the policy flag for making working trees when creating branches.
 
2692
 
 
2693
        This only applies to branches that use this repository.
 
2694
 
 
2695
        The default is 'True'.
 
2696
        :param new_value: True to restore the default, False to disable making
 
2697
                          working trees.
 
2698
        """
 
2699
        raise NotImplementedError(self.set_make_working_trees)
 
2700
 
 
2701
    def make_working_trees(self):
 
2702
        """Returns the policy for making working trees on new branches."""
 
2703
        raise NotImplementedError(self.make_working_trees)
 
2704
 
 
2705
    @needs_write_lock
 
2706
    def sign_revision(self, revision_id, gpg_strategy):
 
2707
        plaintext = Testament.from_revision(self, revision_id).as_short_text()
 
2708
        self.store_revision_signature(gpg_strategy, plaintext, revision_id)
 
2709
 
 
2710
    @needs_read_lock
 
2711
    def has_signature_for_revision_id(self, revision_id):
 
2712
        """Query for a revision signature for revision_id in the repository."""
 
2713
        if not self.has_revision(revision_id):
 
2714
            raise errors.NoSuchRevision(self, revision_id)
 
2715
        sig_present = (1 == len(
 
2716
            self.signatures.get_parent_map([(revision_id,)])))
 
2717
        return sig_present
 
2718
 
 
2719
    @needs_read_lock
 
2720
    def get_signature_text(self, revision_id):
 
2721
        """Return the text for a signature."""
 
2722
        stream = self.signatures.get_record_stream([(revision_id,)],
 
2723
            'unordered', True)
 
2724
        record = stream.next()
 
2725
        if record.storage_kind == 'absent':
 
2726
            raise errors.NoSuchRevision(self, revision_id)
 
2727
        return record.get_bytes_as('fulltext')
 
2728
 
 
2729
    @needs_read_lock
 
2730
    def check(self, revision_ids=None, callback_refs=None, check_repo=True):
 
2731
        """Check consistency of all history of given revision_ids.
 
2732
 
 
2733
        Different repository implementations should override _check().
 
2734
 
 
2735
        :param revision_ids: A non-empty list of revision_ids whose ancestry
 
2736
             will be checked.  Typically the last revision_id of a branch.
 
2737
        :param callback_refs: A dict of check-refs to resolve and callback
 
2738
            the check/_check method on the items listed as wanting the ref.
 
2739
            see bzrlib.check.
 
2740
        :param check_repo: If False do not check the repository contents, just 
 
2741
            calculate the data callback_refs requires and call them back.
 
2742
        """
 
2743
        return self._check(revision_ids, callback_refs=callback_refs,
 
2744
            check_repo=check_repo)
 
2745
 
 
2746
    def _check(self, revision_ids, callback_refs, check_repo):
 
2747
        result = check.Check(self, check_repo=check_repo)
 
2748
        result.check(callback_refs)
 
2749
        return result
 
2750
 
 
2751
    def _warn_if_deprecated(self, branch=None):
 
2752
        global _deprecation_warning_done
 
2753
        if _deprecation_warning_done:
 
2754
            return
 
2755
        try:
 
2756
            if branch is None:
 
2757
                conf = config.GlobalConfig()
 
2758
            else:
 
2759
                conf = branch.get_config()
 
2760
            if conf.suppress_warning('format_deprecation'):
 
2761
                return
 
2762
            warning("Format %s for %s is deprecated -"
 
2763
                    " please use 'bzr upgrade' to get better performance"
 
2764
                    % (self._format, self.bzrdir.transport.base))
 
2765
        finally:
 
2766
            _deprecation_warning_done = True
 
2767
 
 
2768
    def supports_rich_root(self):
 
2769
        return self._format.rich_root_data
 
2770
 
 
2771
    def _check_ascii_revisionid(self, revision_id, method):
 
2772
        """Private helper for ascii-only repositories."""
 
2773
        # weave repositories refuse to store revisionids that are non-ascii.
 
2774
        if revision_id is not None:
 
2775
            # weaves require ascii revision ids.
 
2776
            if isinstance(revision_id, unicode):
 
2777
                try:
 
2778
                    revision_id.encode('ascii')
 
2779
                except UnicodeEncodeError:
 
2780
                    raise errors.NonAsciiRevisionId(method, self)
 
2781
            else:
 
2782
                try:
 
2783
                    revision_id.decode('ascii')
 
2784
                except UnicodeDecodeError:
 
2785
                    raise errors.NonAsciiRevisionId(method, self)
 
2786
 
 
2787
    def revision_graph_can_have_wrong_parents(self):
 
2788
        """Is it possible for this repository to have a revision graph with
 
2789
        incorrect parents?
 
2790
 
 
2791
        If True, then this repository must also implement
 
2792
        _find_inconsistent_revision_parents so that check and reconcile can
 
2793
        check for inconsistencies before proceeding with other checks that may
 
2794
        depend on the revision index being consistent.
 
2795
        """
 
2796
        raise NotImplementedError(self.revision_graph_can_have_wrong_parents)
 
2797
 
 
2798
 
 
2799
# remove these delegates a while after bzr 0.15
 
2800
def __make_delegated(name, from_module):
 
2801
    def _deprecated_repository_forwarder():
 
2802
        symbol_versioning.warn('%s moved to %s in bzr 0.15'
 
2803
            % (name, from_module),
 
2804
            DeprecationWarning,
 
2805
            stacklevel=2)
 
2806
        m = __import__(from_module, globals(), locals(), [name])
 
2807
        try:
 
2808
            return getattr(m, name)
 
2809
        except AttributeError:
 
2810
            raise AttributeError('module %s has no name %s'
 
2811
                    % (m, name))
 
2812
    globals()[name] = _deprecated_repository_forwarder
 
2813
 
 
2814
for _name in [
 
2815
        'AllInOneRepository',
 
2816
        'WeaveMetaDirRepository',
 
2817
        'PreSplitOutRepositoryFormat',
 
2818
        'RepositoryFormat4',
 
2819
        'RepositoryFormat5',
 
2820
        'RepositoryFormat6',
 
2821
        'RepositoryFormat7',
 
2822
        ]:
 
2823
    __make_delegated(_name, 'bzrlib.repofmt.weaverepo')
 
2824
 
 
2825
for _name in [
 
2826
        'KnitRepository',
 
2827
        'RepositoryFormatKnit',
 
2828
        'RepositoryFormatKnit1',
 
2829
        ]:
 
2830
    __make_delegated(_name, 'bzrlib.repofmt.knitrepo')
 
2831
 
 
2832
 
 
2833
def install_revision(repository, rev, revision_tree):
 
2834
    """Install all revision data into a repository."""
 
2835
    install_revisions(repository, [(rev, revision_tree, None)])
 
2836
 
 
2837
 
 
2838
def install_revisions(repository, iterable, num_revisions=None, pb=None):
 
2839
    """Install all revision data into a repository.
 
2840
 
 
2841
    Accepts an iterable of revision, tree, signature tuples.  The signature
 
2842
    may be None.
 
2843
    """
 
2844
    repository.start_write_group()
 
2845
    try:
 
2846
        inventory_cache = lru_cache.LRUCache(10)
 
2847
        for n, (revision, revision_tree, signature) in enumerate(iterable):
 
2848
            _install_revision(repository, revision, revision_tree, signature,
 
2849
                inventory_cache)
 
2850
            if pb is not None:
 
2851
                pb.update('Transferring revisions', n + 1, num_revisions)
 
2852
    except:
 
2853
        repository.abort_write_group()
 
2854
        raise
 
2855
    else:
 
2856
        repository.commit_write_group()
 
2857
 
 
2858
 
 
2859
def _install_revision(repository, rev, revision_tree, signature,
 
2860
    inventory_cache):
 
2861
    """Install all revision data into a repository."""
 
2862
    present_parents = []
 
2863
    parent_trees = {}
 
2864
    for p_id in rev.parent_ids:
 
2865
        if repository.has_revision(p_id):
 
2866
            present_parents.append(p_id)
 
2867
            parent_trees[p_id] = repository.revision_tree(p_id)
 
2868
        else:
 
2869
            parent_trees[p_id] = repository.revision_tree(
 
2870
                                     _mod_revision.NULL_REVISION)
 
2871
 
 
2872
    inv = revision_tree.inventory
 
2873
    entries = inv.iter_entries()
 
2874
    # backwards compatibility hack: skip the root id.
 
2875
    if not repository.supports_rich_root():
 
2876
        path, root = entries.next()
 
2877
        if root.revision != rev.revision_id:
 
2878
            raise errors.IncompatibleRevision(repr(repository))
 
2879
    text_keys = {}
 
2880
    for path, ie in entries:
 
2881
        text_keys[(ie.file_id, ie.revision)] = ie
 
2882
    text_parent_map = repository.texts.get_parent_map(text_keys)
 
2883
    missing_texts = set(text_keys) - set(text_parent_map)
 
2884
    # Add the texts that are not already present
 
2885
    for text_key in missing_texts:
 
2886
        ie = text_keys[text_key]
 
2887
        text_parents = []
 
2888
        # FIXME: TODO: The following loop overlaps/duplicates that done by
 
2889
        # commit to determine parents. There is a latent/real bug here where
 
2890
        # the parents inserted are not those commit would do - in particular
 
2891
        # they are not filtered by heads(). RBC, AB
 
2892
        for revision, tree in parent_trees.iteritems():
 
2893
            if ie.file_id not in tree:
 
2894
                continue
 
2895
            parent_id = tree.inventory[ie.file_id].revision
 
2896
            if parent_id in text_parents:
 
2897
                continue
 
2898
            text_parents.append((ie.file_id, parent_id))
 
2899
        lines = revision_tree.get_file(ie.file_id).readlines()
 
2900
        repository.texts.add_lines(text_key, text_parents, lines)
 
2901
    try:
 
2902
        # install the inventory
 
2903
        if repository._format._commit_inv_deltas and len(rev.parent_ids):
 
2904
            # Cache this inventory
 
2905
            inventory_cache[rev.revision_id] = inv
 
2906
            try:
 
2907
                basis_inv = inventory_cache[rev.parent_ids[0]]
 
2908
            except KeyError:
 
2909
                repository.add_inventory(rev.revision_id, inv, present_parents)
 
2910
            else:
 
2911
                delta = inv._make_delta(basis_inv)
 
2912
                repository.add_inventory_by_delta(rev.parent_ids[0], delta,
 
2913
                    rev.revision_id, present_parents)
 
2914
        else:
 
2915
            repository.add_inventory(rev.revision_id, inv, present_parents)
 
2916
    except errors.RevisionAlreadyPresent:
 
2917
        pass
 
2918
    if signature is not None:
 
2919
        repository.add_signature_text(rev.revision_id, signature)
 
2920
    repository.add_revision(rev.revision_id, rev, inv)
 
2921
 
 
2922
 
 
2923
class MetaDirRepository(Repository):
 
2924
    """Repositories in the new meta-dir layout.
 
2925
 
 
2926
    :ivar _transport: Transport for access to repository control files,
 
2927
        typically pointing to .bzr/repository.
 
2928
    """
 
2929
 
 
2930
    def __init__(self, _format, a_bzrdir, control_files):
 
2931
        super(MetaDirRepository, self).__init__(_format, a_bzrdir, control_files)
 
2932
        self._transport = control_files._transport
 
2933
 
 
2934
    def is_shared(self):
 
2935
        """Return True if this repository is flagged as a shared repository."""
 
2936
        return self._transport.has('shared-storage')
 
2937
 
 
2938
    @needs_write_lock
 
2939
    def set_make_working_trees(self, new_value):
 
2940
        """Set the policy flag for making working trees when creating branches.
 
2941
 
 
2942
        This only applies to branches that use this repository.
 
2943
 
 
2944
        The default is 'True'.
 
2945
        :param new_value: True to restore the default, False to disable making
 
2946
                          working trees.
 
2947
        """
 
2948
        if new_value:
 
2949
            try:
 
2950
                self._transport.delete('no-working-trees')
 
2951
            except errors.NoSuchFile:
 
2952
                pass
 
2953
        else:
 
2954
            self._transport.put_bytes('no-working-trees', '',
 
2955
                mode=self.bzrdir._get_file_mode())
 
2956
 
 
2957
    def make_working_trees(self):
 
2958
        """Returns the policy for making working trees on new branches."""
 
2959
        return not self._transport.has('no-working-trees')
 
2960
 
 
2961
 
 
2962
class MetaDirVersionedFileRepository(MetaDirRepository):
 
2963
    """Repositories in a meta-dir, that work via versioned file objects."""
 
2964
 
 
2965
    def __init__(self, _format, a_bzrdir, control_files):
 
2966
        super(MetaDirVersionedFileRepository, self).__init__(_format, a_bzrdir,
 
2967
            control_files)
 
2968
 
 
2969
 
 
2970
network_format_registry = registry.FormatRegistry()
 
2971
"""Registry of formats indexed by their network name.
 
2972
 
 
2973
The network name for a repository format is an identifier that can be used when
 
2974
referring to formats with smart server operations. See
 
2975
RepositoryFormat.network_name() for more detail.
 
2976
"""
 
2977
 
 
2978
 
 
2979
format_registry = registry.FormatRegistry(network_format_registry)
 
2980
"""Registry of formats, indexed by their BzrDirMetaFormat format string.
 
2981
 
 
2982
This can contain either format instances themselves, or classes/factories that
 
2983
can be called to obtain one.
 
2984
"""
 
2985
 
 
2986
 
 
2987
#####################################################################
 
2988
# Repository Formats
 
2989
 
 
2990
class RepositoryFormat(object):
 
2991
    """A repository format.
 
2992
 
 
2993
    Formats provide four things:
 
2994
     * An initialization routine to construct repository data on disk.
 
2995
     * a optional format string which is used when the BzrDir supports
 
2996
       versioned children.
 
2997
     * an open routine which returns a Repository instance.
 
2998
     * A network name for referring to the format in smart server RPC
 
2999
       methods.
 
3000
 
 
3001
    There is one and only one Format subclass for each on-disk format. But
 
3002
    there can be one Repository subclass that is used for several different
 
3003
    formats. The _format attribute on a Repository instance can be used to
 
3004
    determine the disk format.
 
3005
 
 
3006
    Formats are placed in a registry by their format string for reference
 
3007
    during opening. These should be subclasses of RepositoryFormat for
 
3008
    consistency.
 
3009
 
 
3010
    Once a format is deprecated, just deprecate the initialize and open
 
3011
    methods on the format class. Do not deprecate the object, as the
 
3012
    object may be created even when a repository instance hasn't been
 
3013
    created.
 
3014
 
 
3015
    Common instance attributes:
 
3016
    _matchingbzrdir - the bzrdir format that the repository format was
 
3017
    originally written to work with. This can be used if manually
 
3018
    constructing a bzrdir and repository, or more commonly for test suite
 
3019
    parameterization.
 
3020
    """
 
3021
 
 
3022
    # Set to True or False in derived classes. True indicates that the format
 
3023
    # supports ghosts gracefully.
 
3024
    supports_ghosts = None
 
3025
    # Can this repository be given external locations to lookup additional
 
3026
    # data. Set to True or False in derived classes.
 
3027
    supports_external_lookups = None
 
3028
    # Does this format support CHK bytestring lookups. Set to True or False in
 
3029
    # derived classes.
 
3030
    supports_chks = None
 
3031
    # Should commit add an inventory, or an inventory delta to the repository.
 
3032
    _commit_inv_deltas = True
 
3033
    # What order should fetch operations request streams in?
 
3034
    # The default is unordered as that is the cheapest for an origin to
 
3035
    # provide.
 
3036
    _fetch_order = 'unordered'
 
3037
    # Does this repository format use deltas that can be fetched as-deltas ?
 
3038
    # (E.g. knits, where the knit deltas can be transplanted intact.
 
3039
    # We default to False, which will ensure that enough data to get
 
3040
    # a full text out of any fetch stream will be grabbed.
 
3041
    _fetch_uses_deltas = False
 
3042
    # Should fetch trigger a reconcile after the fetch? Only needed for
 
3043
    # some repository formats that can suffer internal inconsistencies.
 
3044
    _fetch_reconcile = False
 
3045
    # Does this format have < O(tree_size) delta generation. Used to hint what
 
3046
    # code path for commit, amongst other things.
 
3047
    fast_deltas = None
 
3048
    # Does doing a pack operation compress data? Useful for the pack UI command
 
3049
    # (so if there is one pack, the operation can still proceed because it may
 
3050
    # help), and for fetching when data won't have come from the same
 
3051
    # compressor.
 
3052
    pack_compresses = False
 
3053
    # Does the repository inventory storage understand references to trees?
 
3054
    supports_tree_reference = None
 
3055
    # Is the format experimental ?
 
3056
    experimental = False
 
3057
 
 
3058
    def __str__(self):
 
3059
        return "<%s>" % self.__class__.__name__
 
3060
 
 
3061
    def __eq__(self, other):
 
3062
        # format objects are generally stateless
 
3063
        return isinstance(other, self.__class__)
 
3064
 
 
3065
    def __ne__(self, other):
 
3066
        return not self == other
 
3067
 
 
3068
    @classmethod
 
3069
    def find_format(klass, a_bzrdir):
 
3070
        """Return the format for the repository object in a_bzrdir.
 
3071
 
 
3072
        This is used by bzr native formats that have a "format" file in
 
3073
        the repository.  Other methods may be used by different types of
 
3074
        control directory.
 
3075
        """
 
3076
        try:
 
3077
            transport = a_bzrdir.get_repository_transport(None)
 
3078
            format_string = transport.get_bytes("format")
 
3079
            return format_registry.get(format_string)
 
3080
        except errors.NoSuchFile:
 
3081
            raise errors.NoRepositoryPresent(a_bzrdir)
 
3082
        except KeyError:
 
3083
            raise errors.UnknownFormatError(format=format_string,
 
3084
                                            kind='repository')
 
3085
 
 
3086
    @classmethod
 
3087
    def register_format(klass, format):
 
3088
        format_registry.register(format.get_format_string(), format)
 
3089
 
 
3090
    @classmethod
 
3091
    def unregister_format(klass, format):
 
3092
        format_registry.remove(format.get_format_string())
 
3093
 
 
3094
    @classmethod
 
3095
    def get_default_format(klass):
 
3096
        """Return the current default format."""
 
3097
        from bzrlib import bzrdir
 
3098
        return bzrdir.format_registry.make_bzrdir('default').repository_format
 
3099
 
 
3100
    def get_format_string(self):
 
3101
        """Return the ASCII format string that identifies this format.
 
3102
 
 
3103
        Note that in pre format ?? repositories the format string is
 
3104
        not permitted nor written to disk.
 
3105
        """
 
3106
        raise NotImplementedError(self.get_format_string)
 
3107
 
 
3108
    def get_format_description(self):
 
3109
        """Return the short description for this format."""
 
3110
        raise NotImplementedError(self.get_format_description)
 
3111
 
 
3112
    # TODO: this shouldn't be in the base class, it's specific to things that
 
3113
    # use weaves or knits -- mbp 20070207
 
3114
    def _get_versioned_file_store(self,
 
3115
                                  name,
 
3116
                                  transport,
 
3117
                                  control_files,
 
3118
                                  prefixed=True,
 
3119
                                  versionedfile_class=None,
 
3120
                                  versionedfile_kwargs={},
 
3121
                                  escaped=False):
 
3122
        if versionedfile_class is None:
 
3123
            versionedfile_class = self._versionedfile_class
 
3124
        weave_transport = control_files._transport.clone(name)
 
3125
        dir_mode = control_files._dir_mode
 
3126
        file_mode = control_files._file_mode
 
3127
        return VersionedFileStore(weave_transport, prefixed=prefixed,
 
3128
                                  dir_mode=dir_mode,
 
3129
                                  file_mode=file_mode,
 
3130
                                  versionedfile_class=versionedfile_class,
 
3131
                                  versionedfile_kwargs=versionedfile_kwargs,
 
3132
                                  escaped=escaped)
 
3133
 
 
3134
    def initialize(self, a_bzrdir, shared=False):
 
3135
        """Initialize a repository of this format in a_bzrdir.
 
3136
 
 
3137
        :param a_bzrdir: The bzrdir to put the new repository in it.
 
3138
        :param shared: The repository should be initialized as a sharable one.
 
3139
        :returns: The new repository object.
 
3140
 
 
3141
        This may raise UninitializableFormat if shared repository are not
 
3142
        compatible the a_bzrdir.
 
3143
        """
 
3144
        raise NotImplementedError(self.initialize)
 
3145
 
 
3146
    def is_supported(self):
 
3147
        """Is this format supported?
 
3148
 
 
3149
        Supported formats must be initializable and openable.
 
3150
        Unsupported formats may not support initialization or committing or
 
3151
        some other features depending on the reason for not being supported.
 
3152
        """
 
3153
        return True
 
3154
 
 
3155
    def network_name(self):
 
3156
        """A simple byte string uniquely identifying this format for RPC calls.
 
3157
 
 
3158
        MetaDir repository formats use their disk format string to identify the
 
3159
        repository over the wire. All in one formats such as bzr < 0.8, and
 
3160
        foreign formats like svn/git and hg should use some marker which is
 
3161
        unique and immutable.
 
3162
        """
 
3163
        raise NotImplementedError(self.network_name)
 
3164
 
 
3165
    def check_conversion_target(self, target_format):
 
3166
        if self.rich_root_data and not target_format.rich_root_data:
 
3167
            raise errors.BadConversionTarget(
 
3168
                'Does not support rich root data.', target_format,
 
3169
                from_format=self)
 
3170
        if (self.supports_tree_reference and 
 
3171
            not getattr(target_format, 'supports_tree_reference', False)):
 
3172
            raise errors.BadConversionTarget(
 
3173
                'Does not support nested trees', target_format,
 
3174
                from_format=self)
 
3175
 
 
3176
    def open(self, a_bzrdir, _found=False):
 
3177
        """Return an instance of this format for the bzrdir a_bzrdir.
 
3178
 
 
3179
        _found is a private parameter, do not use it.
 
3180
        """
 
3181
        raise NotImplementedError(self.open)
 
3182
 
 
3183
 
 
3184
class MetaDirRepositoryFormat(RepositoryFormat):
 
3185
    """Common base class for the new repositories using the metadir layout."""
 
3186
 
 
3187
    rich_root_data = False
 
3188
    supports_tree_reference = False
 
3189
    supports_external_lookups = False
 
3190
 
 
3191
    @property
 
3192
    def _matchingbzrdir(self):
 
3193
        matching = bzrdir.BzrDirMetaFormat1()
 
3194
        matching.repository_format = self
 
3195
        return matching
 
3196
 
 
3197
    def __init__(self):
 
3198
        super(MetaDirRepositoryFormat, self).__init__()
 
3199
 
 
3200
    def _create_control_files(self, a_bzrdir):
 
3201
        """Create the required files and the initial control_files object."""
 
3202
        # FIXME: RBC 20060125 don't peek under the covers
 
3203
        # NB: no need to escape relative paths that are url safe.
 
3204
        repository_transport = a_bzrdir.get_repository_transport(self)
 
3205
        control_files = lockable_files.LockableFiles(repository_transport,
 
3206
                                'lock', lockdir.LockDir)
 
3207
        control_files.create_lock()
 
3208
        return control_files
 
3209
 
 
3210
    def _upload_blank_content(self, a_bzrdir, dirs, files, utf8_files, shared):
 
3211
        """Upload the initial blank content."""
 
3212
        control_files = self._create_control_files(a_bzrdir)
 
3213
        control_files.lock_write()
 
3214
        transport = control_files._transport
 
3215
        if shared == True:
 
3216
            utf8_files += [('shared-storage', '')]
 
3217
        try:
 
3218
            transport.mkdir_multi(dirs, mode=a_bzrdir._get_dir_mode())
 
3219
            for (filename, content_stream) in files:
 
3220
                transport.put_file(filename, content_stream,
 
3221
                    mode=a_bzrdir._get_file_mode())
 
3222
            for (filename, content_bytes) in utf8_files:
 
3223
                transport.put_bytes_non_atomic(filename, content_bytes,
 
3224
                    mode=a_bzrdir._get_file_mode())
 
3225
        finally:
 
3226
            control_files.unlock()
 
3227
 
 
3228
    def network_name(self):
 
3229
        """Metadir formats have matching disk and network format strings."""
 
3230
        return self.get_format_string()
 
3231
 
 
3232
 
 
3233
# Pre-0.8 formats that don't have a disk format string (because they are
 
3234
# versioned by the matching control directory). We use the control directories
 
3235
# disk format string as a key for the network_name because they meet the
 
3236
# constraints (simple string, unique, immutable).
 
3237
network_format_registry.register_lazy(
 
3238
    "Bazaar-NG branch, format 5\n",
 
3239
    'bzrlib.repofmt.weaverepo',
 
3240
    'RepositoryFormat5',
 
3241
)
 
3242
network_format_registry.register_lazy(
 
3243
    "Bazaar-NG branch, format 6\n",
 
3244
    'bzrlib.repofmt.weaverepo',
 
3245
    'RepositoryFormat6',
 
3246
)
 
3247
 
 
3248
# formats which have no format string are not discoverable or independently
 
3249
# creatable on disk, so are not registered in format_registry.  They're
 
3250
# all in bzrlib.repofmt.weaverepo now.  When an instance of one of these is
 
3251
# needed, it's constructed directly by the BzrDir.  Non-native formats where
 
3252
# the repository is not separately opened are similar.
 
3253
 
 
3254
format_registry.register_lazy(
 
3255
    'Bazaar-NG Repository format 7',
 
3256
    'bzrlib.repofmt.weaverepo',
 
3257
    'RepositoryFormat7'
 
3258
    )
 
3259
 
 
3260
format_registry.register_lazy(
 
3261
    'Bazaar-NG Knit Repository Format 1',
 
3262
    'bzrlib.repofmt.knitrepo',
 
3263
    'RepositoryFormatKnit1',
 
3264
    )
 
3265
 
 
3266
format_registry.register_lazy(
 
3267
    'Bazaar Knit Repository Format 3 (bzr 0.15)\n',
 
3268
    'bzrlib.repofmt.knitrepo',
 
3269
    'RepositoryFormatKnit3',
 
3270
    )
 
3271
 
 
3272
format_registry.register_lazy(
 
3273
    'Bazaar Knit Repository Format 4 (bzr 1.0)\n',
 
3274
    'bzrlib.repofmt.knitrepo',
 
3275
    'RepositoryFormatKnit4',
 
3276
    )
 
3277
 
 
3278
# Pack-based formats. There is one format for pre-subtrees, and one for
 
3279
# post-subtrees to allow ease of testing.
 
3280
# NOTE: These are experimental in 0.92. Stable in 1.0 and above
 
3281
format_registry.register_lazy(
 
3282
    'Bazaar pack repository format 1 (needs bzr 0.92)\n',
 
3283
    'bzrlib.repofmt.pack_repo',
 
3284
    'RepositoryFormatKnitPack1',
 
3285
    )
 
3286
format_registry.register_lazy(
 
3287
    'Bazaar pack repository format 1 with subtree support (needs bzr 0.92)\n',
 
3288
    'bzrlib.repofmt.pack_repo',
 
3289
    'RepositoryFormatKnitPack3',
 
3290
    )
 
3291
format_registry.register_lazy(
 
3292
    'Bazaar pack repository format 1 with rich root (needs bzr 1.0)\n',
 
3293
    'bzrlib.repofmt.pack_repo',
 
3294
    'RepositoryFormatKnitPack4',
 
3295
    )
 
3296
format_registry.register_lazy(
 
3297
    'Bazaar RepositoryFormatKnitPack5 (bzr 1.6)\n',
 
3298
    'bzrlib.repofmt.pack_repo',
 
3299
    'RepositoryFormatKnitPack5',
 
3300
    )
 
3301
format_registry.register_lazy(
 
3302
    'Bazaar RepositoryFormatKnitPack5RichRoot (bzr 1.6.1)\n',
 
3303
    'bzrlib.repofmt.pack_repo',
 
3304
    'RepositoryFormatKnitPack5RichRoot',
 
3305
    )
 
3306
format_registry.register_lazy(
 
3307
    'Bazaar RepositoryFormatKnitPack5RichRoot (bzr 1.6)\n',
 
3308
    'bzrlib.repofmt.pack_repo',
 
3309
    'RepositoryFormatKnitPack5RichRootBroken',
 
3310
    )
 
3311
format_registry.register_lazy(
 
3312
    'Bazaar RepositoryFormatKnitPack6 (bzr 1.9)\n',
 
3313
    'bzrlib.repofmt.pack_repo',
 
3314
    'RepositoryFormatKnitPack6',
 
3315
    )
 
3316
format_registry.register_lazy(
 
3317
    'Bazaar RepositoryFormatKnitPack6RichRoot (bzr 1.9)\n',
 
3318
    'bzrlib.repofmt.pack_repo',
 
3319
    'RepositoryFormatKnitPack6RichRoot',
 
3320
    )
 
3321
 
 
3322
# Development formats.
 
3323
# Obsolete but kept pending a CHK based subtree format.
 
3324
format_registry.register_lazy(
 
3325
    ("Bazaar development format 2 with subtree support "
 
3326
        "(needs bzr.dev from before 1.8)\n"),
 
3327
    'bzrlib.repofmt.pack_repo',
 
3328
    'RepositoryFormatPackDevelopment2Subtree',
 
3329
    )
 
3330
 
 
3331
# 1.14->1.16 go below here
 
3332
format_registry.register_lazy(
 
3333
    'Bazaar development format - group compression and chk inventory'
 
3334
        ' (needs bzr.dev from 1.14)\n',
 
3335
    'bzrlib.repofmt.groupcompress_repo',
 
3336
    'RepositoryFormatCHK1',
 
3337
    )
 
3338
 
 
3339
format_registry.register_lazy(
 
3340
    'Bazaar development format - chk repository with bencode revision '
 
3341
        'serialization (needs bzr.dev from 1.16)\n',
 
3342
    'bzrlib.repofmt.groupcompress_repo',
 
3343
    'RepositoryFormatCHK2',
 
3344
    )
 
3345
format_registry.register_lazy(
 
3346
    'Bazaar repository format 2a (needs bzr 1.16 or later)\n',
 
3347
    'bzrlib.repofmt.groupcompress_repo',
 
3348
    'RepositoryFormat2a',
 
3349
    )
 
3350
 
 
3351
 
 
3352
class InterRepository(InterObject):
 
3353
    """This class represents operations taking place between two repositories.
 
3354
 
 
3355
    Its instances have methods like copy_content and fetch, and contain
 
3356
    references to the source and target repositories these operations can be
 
3357
    carried out on.
 
3358
 
 
3359
    Often we will provide convenience methods on 'repository' which carry out
 
3360
    operations with another repository - they will always forward to
 
3361
    InterRepository.get(other).method_name(parameters).
 
3362
    """
 
3363
 
 
3364
    _walk_to_common_revisions_batch_size = 50
 
3365
    _optimisers = []
 
3366
    """The available optimised InterRepository types."""
 
3367
 
 
3368
    @needs_write_lock
 
3369
    def copy_content(self, revision_id=None):
 
3370
        """Make a complete copy of the content in self into destination.
 
3371
 
 
3372
        This is a destructive operation! Do not use it on existing
 
3373
        repositories.
 
3374
 
 
3375
        :param revision_id: Only copy the content needed to construct
 
3376
                            revision_id and its parents.
 
3377
        """
 
3378
        try:
 
3379
            self.target.set_make_working_trees(self.source.make_working_trees())
 
3380
        except NotImplementedError:
 
3381
            pass
 
3382
        self.target.fetch(self.source, revision_id=revision_id)
 
3383
 
 
3384
    @needs_write_lock
 
3385
    def fetch(self, revision_id=None, pb=None, find_ghosts=False,
 
3386
            fetch_spec=None):
 
3387
        """Fetch the content required to construct revision_id.
 
3388
 
 
3389
        The content is copied from self.source to self.target.
 
3390
 
 
3391
        :param revision_id: if None all content is copied, if NULL_REVISION no
 
3392
                            content is copied.
 
3393
        :param pb: ignored.
 
3394
        :return: None.
 
3395
        """
 
3396
        ui.ui_factory.warn_experimental_format_fetch(self)
 
3397
        f = _mod_fetch.RepoFetcher(to_repository=self.target,
 
3398
                               from_repository=self.source,
 
3399
                               last_revision=revision_id,
 
3400
                               fetch_spec=fetch_spec,
 
3401
                               find_ghosts=find_ghosts)
 
3402
 
 
3403
    def _walk_to_common_revisions(self, revision_ids):
 
3404
        """Walk out from revision_ids in source to revisions target has.
 
3405
 
 
3406
        :param revision_ids: The start point for the search.
 
3407
        :return: A set of revision ids.
 
3408
        """
 
3409
        target_graph = self.target.get_graph()
 
3410
        revision_ids = frozenset(revision_ids)
 
3411
        missing_revs = set()
 
3412
        source_graph = self.source.get_graph()
 
3413
        # ensure we don't pay silly lookup costs.
 
3414
        searcher = source_graph._make_breadth_first_searcher(revision_ids)
 
3415
        null_set = frozenset([_mod_revision.NULL_REVISION])
 
3416
        searcher_exhausted = False
 
3417
        while True:
 
3418
            next_revs = set()
 
3419
            ghosts = set()
 
3420
            # Iterate the searcher until we have enough next_revs
 
3421
            while len(next_revs) < self._walk_to_common_revisions_batch_size:
 
3422
                try:
 
3423
                    next_revs_part, ghosts_part = searcher.next_with_ghosts()
 
3424
                    next_revs.update(next_revs_part)
 
3425
                    ghosts.update(ghosts_part)
 
3426
                except StopIteration:
 
3427
                    searcher_exhausted = True
 
3428
                    break
 
3429
            # If there are ghosts in the source graph, and the caller asked for
 
3430
            # them, make sure that they are present in the target.
 
3431
            # We don't care about other ghosts as we can't fetch them and
 
3432
            # haven't been asked to.
 
3433
            ghosts_to_check = set(revision_ids.intersection(ghosts))
 
3434
            revs_to_get = set(next_revs).union(ghosts_to_check)
 
3435
            if revs_to_get:
 
3436
                have_revs = set(target_graph.get_parent_map(revs_to_get))
 
3437
                # we always have NULL_REVISION present.
 
3438
                have_revs = have_revs.union(null_set)
 
3439
                # Check if the target is missing any ghosts we need.
 
3440
                ghosts_to_check.difference_update(have_revs)
 
3441
                if ghosts_to_check:
 
3442
                    # One of the caller's revision_ids is a ghost in both the
 
3443
                    # source and the target.
 
3444
                    raise errors.NoSuchRevision(
 
3445
                        self.source, ghosts_to_check.pop())
 
3446
                missing_revs.update(next_revs - have_revs)
 
3447
                # Because we may have walked past the original stop point, make
 
3448
                # sure everything is stopped
 
3449
                stop_revs = searcher.find_seen_ancestors(have_revs)
 
3450
                searcher.stop_searching_any(stop_revs)
 
3451
            if searcher_exhausted:
 
3452
                break
 
3453
        return searcher.get_result()
 
3454
 
 
3455
    @needs_read_lock
 
3456
    def search_missing_revision_ids(self, revision_id=None, find_ghosts=True):
 
3457
        """Return the revision ids that source has that target does not.
 
3458
 
 
3459
        :param revision_id: only return revision ids included by this
 
3460
                            revision_id.
 
3461
        :param find_ghosts: If True find missing revisions in deep history
 
3462
            rather than just finding the surface difference.
 
3463
        :return: A bzrlib.graph.SearchResult.
 
3464
        """
 
3465
        # stop searching at found target revisions.
 
3466
        if not find_ghosts and revision_id is not None:
 
3467
            return self._walk_to_common_revisions([revision_id])
 
3468
        # generic, possibly worst case, slow code path.
 
3469
        target_ids = set(self.target.all_revision_ids())
 
3470
        if revision_id is not None:
 
3471
            source_ids = self.source.get_ancestry(revision_id)
 
3472
            if source_ids[0] is not None:
 
3473
                raise AssertionError()
 
3474
            source_ids.pop(0)
 
3475
        else:
 
3476
            source_ids = self.source.all_revision_ids()
 
3477
        result_set = set(source_ids).difference(target_ids)
 
3478
        return self.source.revision_ids_to_search_result(result_set)
 
3479
 
 
3480
    @staticmethod
 
3481
    def _same_model(source, target):
 
3482
        """True if source and target have the same data representation.
 
3483
 
 
3484
        Note: this is always called on the base class; overriding it in a
 
3485
        subclass will have no effect.
 
3486
        """
 
3487
        try:
 
3488
            InterRepository._assert_same_model(source, target)
 
3489
            return True
 
3490
        except errors.IncompatibleRepositories, e:
 
3491
            return False
 
3492
 
 
3493
    @staticmethod
 
3494
    def _assert_same_model(source, target):
 
3495
        """Raise an exception if two repositories do not use the same model.
 
3496
        """
 
3497
        if source.supports_rich_root() != target.supports_rich_root():
 
3498
            raise errors.IncompatibleRepositories(source, target,
 
3499
                "different rich-root support")
 
3500
        if source._serializer != target._serializer:
 
3501
            raise errors.IncompatibleRepositories(source, target,
 
3502
                "different serializers")
 
3503
 
 
3504
 
 
3505
class InterSameDataRepository(InterRepository):
 
3506
    """Code for converting between repositories that represent the same data.
 
3507
 
 
3508
    Data format and model must match for this to work.
 
3509
    """
 
3510
 
 
3511
    @classmethod
 
3512
    def _get_repo_format_to_test(self):
 
3513
        """Repository format for testing with.
 
3514
 
 
3515
        InterSameData can pull from subtree to subtree and from non-subtree to
 
3516
        non-subtree, so we test this with the richest repository format.
 
3517
        """
 
3518
        from bzrlib.repofmt import knitrepo
 
3519
        return knitrepo.RepositoryFormatKnit3()
 
3520
 
 
3521
    @staticmethod
 
3522
    def is_compatible(source, target):
 
3523
        return InterRepository._same_model(source, target)
 
3524
 
 
3525
 
 
3526
class InterWeaveRepo(InterSameDataRepository):
 
3527
    """Optimised code paths between Weave based repositories.
 
3528
 
 
3529
    This should be in bzrlib/repofmt/weaverepo.py but we have not yet
 
3530
    implemented lazy inter-object optimisation.
 
3531
    """
 
3532
 
 
3533
    @classmethod
 
3534
    def _get_repo_format_to_test(self):
 
3535
        from bzrlib.repofmt import weaverepo
 
3536
        return weaverepo.RepositoryFormat7()
 
3537
 
 
3538
    @staticmethod
 
3539
    def is_compatible(source, target):
 
3540
        """Be compatible with known Weave formats.
 
3541
 
 
3542
        We don't test for the stores being of specific types because that
 
3543
        could lead to confusing results, and there is no need to be
 
3544
        overly general.
 
3545
        """
 
3546
        from bzrlib.repofmt.weaverepo import (
 
3547
                RepositoryFormat5,
 
3548
                RepositoryFormat6,
 
3549
                RepositoryFormat7,
 
3550
                )
 
3551
        try:
 
3552
            return (isinstance(source._format, (RepositoryFormat5,
 
3553
                                                RepositoryFormat6,
 
3554
                                                RepositoryFormat7)) and
 
3555
                    isinstance(target._format, (RepositoryFormat5,
 
3556
                                                RepositoryFormat6,
 
3557
                                                RepositoryFormat7)))
 
3558
        except AttributeError:
 
3559
            return False
 
3560
 
 
3561
    @needs_write_lock
 
3562
    def copy_content(self, revision_id=None):
 
3563
        """See InterRepository.copy_content()."""
 
3564
        # weave specific optimised path:
 
3565
        try:
 
3566
            self.target.set_make_working_trees(self.source.make_working_trees())
 
3567
        except (errors.RepositoryUpgradeRequired, NotImplemented):
 
3568
            pass
 
3569
        # FIXME do not peek!
 
3570
        if self.source._transport.listable():
 
3571
            pb = ui.ui_factory.nested_progress_bar()
 
3572
            try:
 
3573
                self.target.texts.insert_record_stream(
 
3574
                    self.source.texts.get_record_stream(
 
3575
                        self.source.texts.keys(), 'topological', False))
 
3576
                pb.update('Copying inventory', 0, 1)
 
3577
                self.target.inventories.insert_record_stream(
 
3578
                    self.source.inventories.get_record_stream(
 
3579
                        self.source.inventories.keys(), 'topological', False))
 
3580
                self.target.signatures.insert_record_stream(
 
3581
                    self.source.signatures.get_record_stream(
 
3582
                        self.source.signatures.keys(),
 
3583
                        'unordered', True))
 
3584
                self.target.revisions.insert_record_stream(
 
3585
                    self.source.revisions.get_record_stream(
 
3586
                        self.source.revisions.keys(),
 
3587
                        'topological', True))
 
3588
            finally:
 
3589
                pb.finished()
 
3590
        else:
 
3591
            self.target.fetch(self.source, revision_id=revision_id)
 
3592
 
 
3593
    @needs_read_lock
 
3594
    def search_missing_revision_ids(self, revision_id=None, find_ghosts=True):
 
3595
        """See InterRepository.missing_revision_ids()."""
 
3596
        # we want all revisions to satisfy revision_id in source.
 
3597
        # but we don't want to stat every file here and there.
 
3598
        # we want then, all revisions other needs to satisfy revision_id
 
3599
        # checked, but not those that we have locally.
 
3600
        # so the first thing is to get a subset of the revisions to
 
3601
        # satisfy revision_id in source, and then eliminate those that
 
3602
        # we do already have.
 
3603
        # this is slow on high latency connection to self, but as this
 
3604
        # disk format scales terribly for push anyway due to rewriting
 
3605
        # inventory.weave, this is considered acceptable.
 
3606
        # - RBC 20060209
 
3607
        if revision_id is not None:
 
3608
            source_ids = self.source.get_ancestry(revision_id)
 
3609
            if source_ids[0] is not None:
 
3610
                raise AssertionError()
 
3611
            source_ids.pop(0)
 
3612
        else:
 
3613
            source_ids = self.source._all_possible_ids()
 
3614
        source_ids_set = set(source_ids)
 
3615
        # source_ids is the worst possible case we may need to pull.
 
3616
        # now we want to filter source_ids against what we actually
 
3617
        # have in target, but don't try to check for existence where we know
 
3618
        # we do not have a revision as that would be pointless.
 
3619
        target_ids = set(self.target._all_possible_ids())
 
3620
        possibly_present_revisions = target_ids.intersection(source_ids_set)
 
3621
        actually_present_revisions = set(
 
3622
            self.target._eliminate_revisions_not_present(possibly_present_revisions))
 
3623
        required_revisions = source_ids_set.difference(actually_present_revisions)
 
3624
        if revision_id is not None:
 
3625
            # we used get_ancestry to determine source_ids then we are assured all
 
3626
            # revisions referenced are present as they are installed in topological order.
 
3627
            # and the tip revision was validated by get_ancestry.
 
3628
            result_set = required_revisions
 
3629
        else:
 
3630
            # if we just grabbed the possibly available ids, then
 
3631
            # we only have an estimate of whats available and need to validate
 
3632
            # that against the revision records.
 
3633
            result_set = set(
 
3634
                self.source._eliminate_revisions_not_present(required_revisions))
 
3635
        return self.source.revision_ids_to_search_result(result_set)
 
3636
 
 
3637
 
 
3638
class InterKnitRepo(InterSameDataRepository):
 
3639
    """Optimised code paths between Knit based repositories."""
 
3640
 
 
3641
    @classmethod
 
3642
    def _get_repo_format_to_test(self):
 
3643
        from bzrlib.repofmt import knitrepo
 
3644
        return knitrepo.RepositoryFormatKnit1()
 
3645
 
 
3646
    @staticmethod
 
3647
    def is_compatible(source, target):
 
3648
        """Be compatible with known Knit formats.
 
3649
 
 
3650
        We don't test for the stores being of specific types because that
 
3651
        could lead to confusing results, and there is no need to be
 
3652
        overly general.
 
3653
        """
 
3654
        from bzrlib.repofmt.knitrepo import RepositoryFormatKnit
 
3655
        try:
 
3656
            are_knits = (isinstance(source._format, RepositoryFormatKnit) and
 
3657
                isinstance(target._format, RepositoryFormatKnit))
 
3658
        except AttributeError:
 
3659
            return False
 
3660
        return are_knits and InterRepository._same_model(source, target)
 
3661
 
 
3662
    @needs_read_lock
 
3663
    def search_missing_revision_ids(self, revision_id=None, find_ghosts=True):
 
3664
        """See InterRepository.missing_revision_ids()."""
 
3665
        if revision_id is not None:
 
3666
            source_ids = self.source.get_ancestry(revision_id)
 
3667
            if source_ids[0] is not None:
 
3668
                raise AssertionError()
 
3669
            source_ids.pop(0)
 
3670
        else:
 
3671
            source_ids = self.source.all_revision_ids()
 
3672
        source_ids_set = set(source_ids)
 
3673
        # source_ids is the worst possible case we may need to pull.
 
3674
        # now we want to filter source_ids against what we actually
 
3675
        # have in target, but don't try to check for existence where we know
 
3676
        # we do not have a revision as that would be pointless.
 
3677
        target_ids = set(self.target.all_revision_ids())
 
3678
        possibly_present_revisions = target_ids.intersection(source_ids_set)
 
3679
        actually_present_revisions = set(
 
3680
            self.target._eliminate_revisions_not_present(possibly_present_revisions))
 
3681
        required_revisions = source_ids_set.difference(actually_present_revisions)
 
3682
        if revision_id is not None:
 
3683
            # we used get_ancestry to determine source_ids then we are assured all
 
3684
            # revisions referenced are present as they are installed in topological order.
 
3685
            # and the tip revision was validated by get_ancestry.
 
3686
            result_set = required_revisions
 
3687
        else:
 
3688
            # if we just grabbed the possibly available ids, then
 
3689
            # we only have an estimate of whats available and need to validate
 
3690
            # that against the revision records.
 
3691
            result_set = set(
 
3692
                self.source._eliminate_revisions_not_present(required_revisions))
 
3693
        return self.source.revision_ids_to_search_result(result_set)
 
3694
 
 
3695
 
 
3696
class InterDifferingSerializer(InterRepository):
 
3697
 
 
3698
    @classmethod
 
3699
    def _get_repo_format_to_test(self):
 
3700
        return None
 
3701
 
 
3702
    @staticmethod
 
3703
    def is_compatible(source, target):
 
3704
        """Be compatible with Knit2 source and Knit3 target"""
 
3705
        # This is redundant with format.check_conversion_target(), however that
 
3706
        # raises an exception, and we just want to say "False" as in we won't
 
3707
        # support converting between these formats.
 
3708
        if 'IDS_never' in debug.debug_flags:
 
3709
            return False
 
3710
        if source.supports_rich_root() and not target.supports_rich_root():
 
3711
            return False
 
3712
        if (source._format.supports_tree_reference
 
3713
            and not target._format.supports_tree_reference):
 
3714
            return False
 
3715
        if target._fallback_repositories and target._format.supports_chks:
 
3716
            # IDS doesn't know how to copy CHKs for the parent inventories it
 
3717
            # adds to stacked repos.
 
3718
            return False
 
3719
        if 'IDS_always' in debug.debug_flags:
 
3720
            return True
 
3721
        # Only use this code path for local source and target.  IDS does far
 
3722
        # too much IO (both bandwidth and roundtrips) over a network.
 
3723
        if not source.bzrdir.transport.base.startswith('file:///'):
 
3724
            return False
 
3725
        if not target.bzrdir.transport.base.startswith('file:///'):
 
3726
            return False
 
3727
        return True
 
3728
 
 
3729
    def _get_trees(self, revision_ids, cache):
 
3730
        possible_trees = []
 
3731
        for rev_id in revision_ids:
 
3732
            if rev_id in cache:
 
3733
                possible_trees.append((rev_id, cache[rev_id]))
 
3734
            else:
 
3735
                # Not cached, but inventory might be present anyway.
 
3736
                try:
 
3737
                    tree = self.source.revision_tree(rev_id)
 
3738
                except errors.NoSuchRevision:
 
3739
                    # Nope, parent is ghost.
 
3740
                    pass
 
3741
                else:
 
3742
                    cache[rev_id] = tree
 
3743
                    possible_trees.append((rev_id, tree))
 
3744
        return possible_trees
 
3745
 
 
3746
    def _get_delta_for_revision(self, tree, parent_ids, possible_trees):
 
3747
        """Get the best delta and base for this revision.
 
3748
 
 
3749
        :return: (basis_id, delta)
 
3750
        """
 
3751
        deltas = []
 
3752
        # Generate deltas against each tree, to find the shortest.
 
3753
        texts_possibly_new_in_tree = set()
 
3754
        for basis_id, basis_tree in possible_trees:
 
3755
            delta = tree.inventory._make_delta(basis_tree.inventory)
 
3756
            for old_path, new_path, file_id, new_entry in delta:
 
3757
                if new_path is None:
 
3758
                    # This file_id isn't present in the new rev, so we don't
 
3759
                    # care about it.
 
3760
                    continue
 
3761
                if not new_path:
 
3762
                    # Rich roots are handled elsewhere...
 
3763
                    continue
 
3764
                kind = new_entry.kind
 
3765
                if kind != 'directory' and kind != 'file':
 
3766
                    # No text record associated with this inventory entry.
 
3767
                    continue
 
3768
                # This is a directory or file that has changed somehow.
 
3769
                texts_possibly_new_in_tree.add((file_id, new_entry.revision))
 
3770
            deltas.append((len(delta), basis_id, delta))
 
3771
        deltas.sort()
 
3772
        return deltas[0][1:]
 
3773
 
 
3774
    def _fetch_parent_invs_for_stacking(self, parent_map, cache):
 
3775
        """Find all parent revisions that are absent, but for which the
 
3776
        inventory is present, and copy those inventories.
 
3777
 
 
3778
        This is necessary to preserve correctness when the source is stacked
 
3779
        without fallbacks configured.  (Note that in cases like upgrade the
 
3780
        source may be not have _fallback_repositories even though it is
 
3781
        stacked.)
 
3782
        """
 
3783
        parent_revs = set()
 
3784
        for parents in parent_map.values():
 
3785
            parent_revs.update(parents)
 
3786
        present_parents = self.source.get_parent_map(parent_revs)
 
3787
        absent_parents = set(parent_revs).difference(present_parents)
 
3788
        parent_invs_keys_for_stacking = self.source.inventories.get_parent_map(
 
3789
            (rev_id,) for rev_id in absent_parents)
 
3790
        parent_inv_ids = [key[-1] for key in parent_invs_keys_for_stacking]
 
3791
        for parent_tree in self.source.revision_trees(parent_inv_ids):
 
3792
            current_revision_id = parent_tree.get_revision_id()
 
3793
            parents_parents_keys = parent_invs_keys_for_stacking[
 
3794
                (current_revision_id,)]
 
3795
            parents_parents = [key[-1] for key in parents_parents_keys]
 
3796
            basis_id = _mod_revision.NULL_REVISION
 
3797
            basis_tree = self.source.revision_tree(basis_id)
 
3798
            delta = parent_tree.inventory._make_delta(basis_tree.inventory)
 
3799
            self.target.add_inventory_by_delta(
 
3800
                basis_id, delta, current_revision_id, parents_parents)
 
3801
            cache[current_revision_id] = parent_tree
 
3802
 
 
3803
    def _fetch_batch(self, revision_ids, basis_id, cache, a_graph=None):
 
3804
        """Fetch across a few revisions.
 
3805
 
 
3806
        :param revision_ids: The revisions to copy
 
3807
        :param basis_id: The revision_id of a tree that must be in cache, used
 
3808
            as a basis for delta when no other base is available
 
3809
        :param cache: A cache of RevisionTrees that we can use.
 
3810
        :param a_graph: A Graph object to determine the heads() of the
 
3811
            rich-root data stream.
 
3812
        :return: The revision_id of the last converted tree. The RevisionTree
 
3813
            for it will be in cache
 
3814
        """
 
3815
        # Walk though all revisions; get inventory deltas, copy referenced
 
3816
        # texts that delta references, insert the delta, revision and
 
3817
        # signature.
 
3818
        root_keys_to_create = set()
 
3819
        text_keys = set()
 
3820
        pending_deltas = []
 
3821
        pending_revisions = []
 
3822
        parent_map = self.source.get_parent_map(revision_ids)
 
3823
        self._fetch_parent_invs_for_stacking(parent_map, cache)
 
3824
        self.source._safe_to_return_from_cache = True
 
3825
        for tree in self.source.revision_trees(revision_ids):
 
3826
            # Find a inventory delta for this revision.
 
3827
            # Find text entries that need to be copied, too.
 
3828
            current_revision_id = tree.get_revision_id()
 
3829
            parent_ids = parent_map.get(current_revision_id, ())
 
3830
            parent_trees = self._get_trees(parent_ids, cache)
 
3831
            possible_trees = list(parent_trees)
 
3832
            if len(possible_trees) == 0:
 
3833
                # There either aren't any parents, or the parents are ghosts,
 
3834
                # so just use the last converted tree.
 
3835
                possible_trees.append((basis_id, cache[basis_id]))
 
3836
            basis_id, delta = self._get_delta_for_revision(tree, parent_ids,
 
3837
                                                           possible_trees)
 
3838
            revision = self.source.get_revision(current_revision_id)
 
3839
            pending_deltas.append((basis_id, delta,
 
3840
                current_revision_id, revision.parent_ids))
 
3841
            if self._converting_to_rich_root:
 
3842
                self._revision_id_to_root_id[current_revision_id] = \
 
3843
                    tree.get_root_id()
 
3844
            # Determine which texts are in present in this revision but not in
 
3845
            # any of the available parents.
 
3846
            texts_possibly_new_in_tree = set()
 
3847
            for old_path, new_path, file_id, entry in delta:
 
3848
                if new_path is None:
 
3849
                    # This file_id isn't present in the new rev
 
3850
                    continue
 
3851
                if not new_path:
 
3852
                    # This is the root
 
3853
                    if not self.target.supports_rich_root():
 
3854
                        # The target doesn't support rich root, so we don't
 
3855
                        # copy
 
3856
                        continue
 
3857
                    if self._converting_to_rich_root:
 
3858
                        # This can't be copied normally, we have to insert
 
3859
                        # it specially
 
3860
                        root_keys_to_create.add((file_id, entry.revision))
 
3861
                        continue
 
3862
                kind = entry.kind
 
3863
                texts_possibly_new_in_tree.add((file_id, entry.revision))
 
3864
            for basis_id, basis_tree in possible_trees:
 
3865
                basis_inv = basis_tree.inventory
 
3866
                for file_key in list(texts_possibly_new_in_tree):
 
3867
                    file_id, file_revision = file_key
 
3868
                    try:
 
3869
                        entry = basis_inv[file_id]
 
3870
                    except errors.NoSuchId:
 
3871
                        continue
 
3872
                    if entry.revision == file_revision:
 
3873
                        texts_possibly_new_in_tree.remove(file_key)
 
3874
            text_keys.update(texts_possibly_new_in_tree)
 
3875
            pending_revisions.append(revision)
 
3876
            cache[current_revision_id] = tree
 
3877
            basis_id = current_revision_id
 
3878
        self.source._safe_to_return_from_cache = False
 
3879
        # Copy file texts
 
3880
        from_texts = self.source.texts
 
3881
        to_texts = self.target.texts
 
3882
        if root_keys_to_create:
 
3883
            root_stream = _mod_fetch._new_root_data_stream(
 
3884
                root_keys_to_create, self._revision_id_to_root_id, parent_map,
 
3885
                self.source, graph=a_graph)
 
3886
            to_texts.insert_record_stream(root_stream)
 
3887
        to_texts.insert_record_stream(from_texts.get_record_stream(
 
3888
            text_keys, self.target._format._fetch_order,
 
3889
            not self.target._format._fetch_uses_deltas))
 
3890
        # insert inventory deltas
 
3891
        for delta in pending_deltas:
 
3892
            self.target.add_inventory_by_delta(*delta)
 
3893
        if self.target._fallback_repositories:
 
3894
            # Make sure this stacked repository has all the parent inventories
 
3895
            # for the new revisions that we are about to insert.  We do this
 
3896
            # before adding the revisions so that no revision is added until
 
3897
            # all the inventories it may depend on are added.
 
3898
            # Note that this is overzealous, as we may have fetched these in an
 
3899
            # earlier batch.
 
3900
            parent_ids = set()
 
3901
            revision_ids = set()
 
3902
            for revision in pending_revisions:
 
3903
                revision_ids.add(revision.revision_id)
 
3904
                parent_ids.update(revision.parent_ids)
 
3905
            parent_ids.difference_update(revision_ids)
 
3906
            parent_ids.discard(_mod_revision.NULL_REVISION)
 
3907
            parent_map = self.source.get_parent_map(parent_ids)
 
3908
            # we iterate over parent_map and not parent_ids because we don't
 
3909
            # want to try copying any revision which is a ghost
 
3910
            for parent_tree in self.source.revision_trees(parent_map):
 
3911
                current_revision_id = parent_tree.get_revision_id()
 
3912
                parents_parents = parent_map[current_revision_id]
 
3913
                possible_trees = self._get_trees(parents_parents, cache)
 
3914
                if len(possible_trees) == 0:
 
3915
                    # There either aren't any parents, or the parents are
 
3916
                    # ghosts, so just use the last converted tree.
 
3917
                    possible_trees.append((basis_id, cache[basis_id]))
 
3918
                basis_id, delta = self._get_delta_for_revision(parent_tree,
 
3919
                    parents_parents, possible_trees)
 
3920
                self.target.add_inventory_by_delta(
 
3921
                    basis_id, delta, current_revision_id, parents_parents)
 
3922
        # insert signatures and revisions
 
3923
        for revision in pending_revisions:
 
3924
            try:
 
3925
                signature = self.source.get_signature_text(
 
3926
                    revision.revision_id)
 
3927
                self.target.add_signature_text(revision.revision_id,
 
3928
                    signature)
 
3929
            except errors.NoSuchRevision:
 
3930
                pass
 
3931
            self.target.add_revision(revision.revision_id, revision)
 
3932
        return basis_id
 
3933
 
 
3934
    def _fetch_all_revisions(self, revision_ids, pb):
 
3935
        """Fetch everything for the list of revisions.
 
3936
 
 
3937
        :param revision_ids: The list of revisions to fetch. Must be in
 
3938
            topological order.
 
3939
        :param pb: A ProgressTask
 
3940
        :return: None
 
3941
        """
 
3942
        basis_id, basis_tree = self._get_basis(revision_ids[0])
 
3943
        batch_size = 100
 
3944
        cache = lru_cache.LRUCache(100)
 
3945
        cache[basis_id] = basis_tree
 
3946
        del basis_tree # We don't want to hang on to it here
 
3947
        hints = []
 
3948
        if self._converting_to_rich_root and len(revision_ids) > 100:
 
3949
            a_graph = _mod_fetch._get_rich_root_heads_graph(self.source,
 
3950
                                                            revision_ids)
 
3951
        else:
 
3952
            a_graph = None
 
3953
 
 
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
                                             a_graph=a_graph)
 
3962
            except:
 
3963
                self.source._safe_to_return_from_cache = False
 
3964
                self.target.abort_write_group()
 
3965
                raise
 
3966
            else:
 
3967
                hint = self.target.commit_write_group()
 
3968
                if hint:
 
3969
                    hints.extend(hint)
 
3970
        if hints and self.target._format.pack_compresses:
 
3971
            self.target.pack(hint=hints)
 
3972
        pb.update('Transferring revisions', len(revision_ids),
 
3973
                  len(revision_ids))
 
3974
 
 
3975
    @needs_write_lock
 
3976
    def fetch(self, revision_id=None, pb=None, find_ghosts=False,
 
3977
            fetch_spec=None):
 
3978
        """See InterRepository.fetch()."""
 
3979
        if fetch_spec is not None:
 
3980
            raise AssertionError("Not implemented yet...")
 
3981
        # See <https://launchpad.net/bugs/456077> asking for a warning here
 
3982
        #
 
3983
        # nb this is only active for local-local fetches; other things using
 
3984
        # streaming.
 
3985
        ui.ui_factory.warn_cross_format_fetch(self.source._format,
 
3986
            self.target._format)
 
3987
        ui.ui_factory.warn_experimental_format_fetch(self)
 
3988
        if (not self.source.supports_rich_root()
 
3989
            and self.target.supports_rich_root()):
 
3990
            self._converting_to_rich_root = True
 
3991
            self._revision_id_to_root_id = {}
 
3992
        else:
 
3993
            self._converting_to_rich_root = False
 
3994
        revision_ids = self.target.search_missing_revision_ids(self.source,
 
3995
            revision_id, find_ghosts=find_ghosts).get_keys()
 
3996
        if not revision_ids:
 
3997
            return 0, 0
 
3998
        revision_ids = tsort.topo_sort(
 
3999
            self.source.get_graph().get_parent_map(revision_ids))
 
4000
        if not revision_ids:
 
4001
            return 0, 0
 
4002
        # Walk though all revisions; get inventory deltas, copy referenced
 
4003
        # texts that delta references, insert the delta, revision and
 
4004
        # signature.
 
4005
        if pb is None:
 
4006
            my_pb = ui.ui_factory.nested_progress_bar()
 
4007
            pb = my_pb
 
4008
        else:
 
4009
            symbol_versioning.warn(
 
4010
                symbol_versioning.deprecated_in((1, 14, 0))
 
4011
                % "pb parameter to fetch()")
 
4012
            my_pb = None
 
4013
        try:
 
4014
            self._fetch_all_revisions(revision_ids, pb)
 
4015
        finally:
 
4016
            if my_pb is not None:
 
4017
                my_pb.finished()
 
4018
        return len(revision_ids), 0
 
4019
 
 
4020
    def _get_basis(self, first_revision_id):
 
4021
        """Get a revision and tree which exists in the target.
 
4022
 
 
4023
        This assumes that first_revision_id is selected for transmission
 
4024
        because all other ancestors are already present. If we can't find an
 
4025
        ancestor we fall back to NULL_REVISION since we know that is safe.
 
4026
 
 
4027
        :return: (basis_id, basis_tree)
 
4028
        """
 
4029
        first_rev = self.source.get_revision(first_revision_id)
 
4030
        try:
 
4031
            basis_id = first_rev.parent_ids[0]
 
4032
            # only valid as a basis if the target has it
 
4033
            self.target.get_revision(basis_id)
 
4034
            # Try to get a basis tree - if its a ghost it will hit the
 
4035
            # NoSuchRevision case.
 
4036
            basis_tree = self.source.revision_tree(basis_id)
 
4037
        except (IndexError, errors.NoSuchRevision):
 
4038
            basis_id = _mod_revision.NULL_REVISION
 
4039
            basis_tree = self.source.revision_tree(basis_id)
 
4040
        return basis_id, basis_tree
 
4041
 
 
4042
 
 
4043
InterRepository.register_optimiser(InterDifferingSerializer)
 
4044
InterRepository.register_optimiser(InterSameDataRepository)
 
4045
InterRepository.register_optimiser(InterWeaveRepo)
 
4046
InterRepository.register_optimiser(InterKnitRepo)
 
4047
 
 
4048
 
 
4049
class CopyConverter(object):
 
4050
    """A repository conversion tool which just performs a copy of the content.
 
4051
 
 
4052
    This is slow but quite reliable.
 
4053
    """
 
4054
 
 
4055
    def __init__(self, target_format):
 
4056
        """Create a CopyConverter.
 
4057
 
 
4058
        :param target_format: The format the resulting repository should be.
 
4059
        """
 
4060
        self.target_format = target_format
 
4061
 
 
4062
    def convert(self, repo, pb):
 
4063
        """Perform the conversion of to_convert, giving feedback via pb.
 
4064
 
 
4065
        :param to_convert: The disk object to convert.
 
4066
        :param pb: a progress bar to use for progress information.
 
4067
        """
 
4068
        pb = ui.ui_factory.nested_progress_bar()
 
4069
        self.count = 0
 
4070
        self.total = 4
 
4071
        # this is only useful with metadir layouts - separated repo content.
 
4072
        # trigger an assertion if not such
 
4073
        repo._format.get_format_string()
 
4074
        self.repo_dir = repo.bzrdir
 
4075
        pb.update('Moving repository to repository.backup')
 
4076
        self.repo_dir.transport.move('repository', 'repository.backup')
 
4077
        backup_transport =  self.repo_dir.transport.clone('repository.backup')
 
4078
        repo._format.check_conversion_target(self.target_format)
 
4079
        self.source_repo = repo._format.open(self.repo_dir,
 
4080
            _found=True,
 
4081
            _override_transport=backup_transport)
 
4082
        pb.update('Creating new repository')
 
4083
        converted = self.target_format.initialize(self.repo_dir,
 
4084
                                                  self.source_repo.is_shared())
 
4085
        converted.lock_write()
 
4086
        try:
 
4087
            pb.update('Copying content')
 
4088
            self.source_repo.copy_content_into(converted)
 
4089
        finally:
 
4090
            converted.unlock()
 
4091
        pb.update('Deleting old repository content')
 
4092
        self.repo_dir.transport.delete_tree('repository.backup')
 
4093
        ui.ui_factory.note('repository converted')
 
4094
        pb.finished()
 
4095
 
 
4096
 
 
4097
_unescape_map = {
 
4098
    'apos':"'",
 
4099
    'quot':'"',
 
4100
    'amp':'&',
 
4101
    'lt':'<',
 
4102
    'gt':'>'
 
4103
}
 
4104
 
 
4105
 
 
4106
def _unescaper(match, _map=_unescape_map):
 
4107
    code = match.group(1)
 
4108
    try:
 
4109
        return _map[code]
 
4110
    except KeyError:
 
4111
        if not code.startswith('#'):
 
4112
            raise
 
4113
        return unichr(int(code[1:])).encode('utf8')
 
4114
 
 
4115
 
 
4116
_unescape_re = None
 
4117
 
 
4118
 
 
4119
def _unescape_xml(data):
 
4120
    """Unescape predefined XML entities in a string of data."""
 
4121
    global _unescape_re
 
4122
    if _unescape_re is None:
 
4123
        _unescape_re = re.compile('\&([^;]*);')
 
4124
    return _unescape_re.sub(_unescaper, data)
 
4125
 
 
4126
 
 
4127
class _VersionedFileChecker(object):
 
4128
 
 
4129
    def __init__(self, repository, text_key_references=None, ancestors=None):
 
4130
        self.repository = repository
 
4131
        self.text_index = self.repository._generate_text_key_index(
 
4132
            text_key_references=text_key_references, ancestors=ancestors)
 
4133
 
 
4134
    def calculate_file_version_parents(self, text_key):
 
4135
        """Calculate the correct parents for a file version according to
 
4136
        the inventories.
 
4137
        """
 
4138
        parent_keys = self.text_index[text_key]
 
4139
        if parent_keys == [_mod_revision.NULL_REVISION]:
 
4140
            return ()
 
4141
        return tuple(parent_keys)
 
4142
 
 
4143
    def check_file_version_parents(self, texts, progress_bar=None):
 
4144
        """Check the parents stored in a versioned file are correct.
 
4145
 
 
4146
        It also detects file versions that are not referenced by their
 
4147
        corresponding revision's inventory.
 
4148
 
 
4149
        :returns: A tuple of (wrong_parents, dangling_file_versions).
 
4150
            wrong_parents is a dict mapping {revision_id: (stored_parents,
 
4151
            correct_parents)} for each revision_id where the stored parents
 
4152
            are not correct.  dangling_file_versions is a set of (file_id,
 
4153
            revision_id) tuples for versions that are present in this versioned
 
4154
            file, but not used by the corresponding inventory.
 
4155
        """
 
4156
        local_progress = None
 
4157
        if progress_bar is None:
 
4158
            local_progress = ui.ui_factory.nested_progress_bar()
 
4159
            progress_bar = local_progress
 
4160
        try:
 
4161
            return self._check_file_version_parents(texts, progress_bar)
 
4162
        finally:
 
4163
            if local_progress:
 
4164
                local_progress.finished()
 
4165
 
 
4166
    def _check_file_version_parents(self, texts, progress_bar):
 
4167
        """See check_file_version_parents."""
 
4168
        wrong_parents = {}
 
4169
        self.file_ids = set([file_id for file_id, _ in
 
4170
            self.text_index.iterkeys()])
 
4171
        # text keys is now grouped by file_id
 
4172
        n_versions = len(self.text_index)
 
4173
        progress_bar.update('loading text store', 0, n_versions)
 
4174
        parent_map = self.repository.texts.get_parent_map(self.text_index)
 
4175
        # On unlistable transports this could well be empty/error...
 
4176
        text_keys = self.repository.texts.keys()
 
4177
        unused_keys = frozenset(text_keys) - set(self.text_index)
 
4178
        for num, key in enumerate(self.text_index.iterkeys()):
 
4179
            progress_bar.update('checking text graph', num, n_versions)
 
4180
            correct_parents = self.calculate_file_version_parents(key)
 
4181
            try:
 
4182
                knit_parents = parent_map[key]
 
4183
            except errors.RevisionNotPresent:
 
4184
                # Missing text!
 
4185
                knit_parents = None
 
4186
            if correct_parents != knit_parents:
 
4187
                wrong_parents[key] = (knit_parents, correct_parents)
 
4188
        return wrong_parents, unused_keys
 
4189
 
 
4190
 
 
4191
def _old_get_graph(repository, revision_id):
 
4192
    """DO NOT USE. That is all. I'm serious."""
 
4193
    graph = repository.get_graph()
 
4194
    revision_graph = dict(((key, value) for key, value in
 
4195
        graph.iter_ancestry([revision_id]) if value is not None))
 
4196
    return _strip_NULL_ghosts(revision_graph)
 
4197
 
 
4198
 
 
4199
def _strip_NULL_ghosts(revision_graph):
 
4200
    """Also don't use this. more compatibility code for unmigrated clients."""
 
4201
    # Filter ghosts, and null:
 
4202
    if _mod_revision.NULL_REVISION in revision_graph:
 
4203
        del revision_graph[_mod_revision.NULL_REVISION]
 
4204
    for key, parents in revision_graph.items():
 
4205
        revision_graph[key] = tuple(parent for parent in parents if parent
 
4206
            in revision_graph)
 
4207
    return revision_graph
 
4208
 
 
4209
 
 
4210
class StreamSink(object):
 
4211
    """An object that can insert a stream into a repository.
 
4212
 
 
4213
    This interface handles the complexity of reserialising inventories and
 
4214
    revisions from different formats, and allows unidirectional insertion into
 
4215
    stacked repositories without looking for the missing basis parents
 
4216
    beforehand.
 
4217
    """
 
4218
 
 
4219
    def __init__(self, target_repo):
 
4220
        self.target_repo = target_repo
 
4221
 
 
4222
    def insert_stream(self, stream, src_format, resume_tokens):
 
4223
        """Insert a stream's content into the target repository.
 
4224
 
 
4225
        :param src_format: a bzr repository format.
 
4226
 
 
4227
        :return: a list of resume tokens and an  iterable of keys additional
 
4228
            items required before the insertion can be completed.
 
4229
        """
 
4230
        self.target_repo.lock_write()
 
4231
        try:
 
4232
            if resume_tokens:
 
4233
                self.target_repo.resume_write_group(resume_tokens)
 
4234
                is_resume = True
 
4235
            else:
 
4236
                self.target_repo.start_write_group()
 
4237
                is_resume = False
 
4238
            try:
 
4239
                # locked_insert_stream performs a commit|suspend.
 
4240
                return self._locked_insert_stream(stream, src_format, is_resume)
 
4241
            except:
 
4242
                self.target_repo.abort_write_group(suppress_errors=True)
 
4243
                raise
 
4244
        finally:
 
4245
            self.target_repo.unlock()
 
4246
 
 
4247
    def _locked_insert_stream(self, stream, src_format, is_resume):
 
4248
        to_serializer = self.target_repo._format._serializer
 
4249
        src_serializer = src_format._serializer
 
4250
        new_pack = None
 
4251
        if to_serializer == src_serializer:
 
4252
            # If serializers match and the target is a pack repository, set the
 
4253
            # write cache size on the new pack.  This avoids poor performance
 
4254
            # on transports where append is unbuffered (such as
 
4255
            # RemoteTransport).  This is safe to do because nothing should read
 
4256
            # back from the target repository while a stream with matching
 
4257
            # serialization is being inserted.
 
4258
            # The exception is that a delta record from the source that should
 
4259
            # be a fulltext may need to be expanded by the target (see
 
4260
            # test_fetch_revisions_with_deltas_into_pack); but we take care to
 
4261
            # explicitly flush any buffered writes first in that rare case.
 
4262
            try:
 
4263
                new_pack = self.target_repo._pack_collection._new_pack
 
4264
            except AttributeError:
 
4265
                # Not a pack repository
 
4266
                pass
 
4267
            else:
 
4268
                new_pack.set_write_cache_size(1024*1024)
 
4269
        for substream_type, substream in stream:
 
4270
            if 'stream' in debug.debug_flags:
 
4271
                mutter('inserting substream: %s', substream_type)
 
4272
            if substream_type == 'texts':
 
4273
                self.target_repo.texts.insert_record_stream(substream)
 
4274
            elif substream_type == 'inventories':
 
4275
                if src_serializer == to_serializer:
 
4276
                    self.target_repo.inventories.insert_record_stream(
 
4277
                        substream)
 
4278
                else:
 
4279
                    self._extract_and_insert_inventories(
 
4280
                        substream, src_serializer)
 
4281
            elif substream_type == 'inventory-deltas':
 
4282
                ui.ui_factory.warn_cross_format_fetch(src_format,
 
4283
                    self.target_repo._format)
 
4284
                self._extract_and_insert_inventory_deltas(
 
4285
                    substream, src_serializer)
 
4286
            elif substream_type == 'chk_bytes':
 
4287
                # XXX: This doesn't support conversions, as it assumes the
 
4288
                #      conversion was done in the fetch code.
 
4289
                self.target_repo.chk_bytes.insert_record_stream(substream)
 
4290
            elif substream_type == 'revisions':
 
4291
                # This may fallback to extract-and-insert more often than
 
4292
                # required if the serializers are different only in terms of
 
4293
                # the inventory.
 
4294
                if src_serializer == to_serializer:
 
4295
                    self.target_repo.revisions.insert_record_stream(
 
4296
                        substream)
 
4297
                else:
 
4298
                    self._extract_and_insert_revisions(substream,
 
4299
                        src_serializer)
 
4300
            elif substream_type == 'signatures':
 
4301
                self.target_repo.signatures.insert_record_stream(substream)
 
4302
            else:
 
4303
                raise AssertionError('kaboom! %s' % (substream_type,))
 
4304
        # Done inserting data, and the missing_keys calculations will try to
 
4305
        # read back from the inserted data, so flush the writes to the new pack
 
4306
        # (if this is pack format).
 
4307
        if new_pack is not None:
 
4308
            new_pack._write_data('', flush=True)
 
4309
        # Find all the new revisions (including ones from resume_tokens)
 
4310
        missing_keys = self.target_repo.get_missing_parent_inventories(
 
4311
            check_for_missing_texts=is_resume)
 
4312
        try:
 
4313
            for prefix, versioned_file in (
 
4314
                ('texts', self.target_repo.texts),
 
4315
                ('inventories', self.target_repo.inventories),
 
4316
                ('revisions', self.target_repo.revisions),
 
4317
                ('signatures', self.target_repo.signatures),
 
4318
                ('chk_bytes', self.target_repo.chk_bytes),
 
4319
                ):
 
4320
                if versioned_file is None:
 
4321
                    continue
 
4322
                # TODO: key is often going to be a StaticTuple object
 
4323
                #       I don't believe we can define a method by which
 
4324
                #       (prefix,) + StaticTuple will work, though we could
 
4325
                #       define a StaticTuple.sq_concat that would allow you to
 
4326
                #       pass in either a tuple or a StaticTuple as the second
 
4327
                #       object, so instead we could have:
 
4328
                #       StaticTuple(prefix) + key here...
 
4329
                missing_keys.update((prefix,) + key for key in
 
4330
                    versioned_file.get_missing_compression_parent_keys())
 
4331
        except NotImplementedError:
 
4332
            # cannot even attempt suspending, and missing would have failed
 
4333
            # during stream insertion.
 
4334
            missing_keys = set()
 
4335
        else:
 
4336
            if missing_keys:
 
4337
                # suspend the write group and tell the caller what we is
 
4338
                # missing. We know we can suspend or else we would not have
 
4339
                # entered this code path. (All repositories that can handle
 
4340
                # missing keys can handle suspending a write group).
 
4341
                write_group_tokens = self.target_repo.suspend_write_group()
 
4342
                return write_group_tokens, missing_keys
 
4343
        hint = self.target_repo.commit_write_group()
 
4344
        if (to_serializer != src_serializer and
 
4345
            self.target_repo._format.pack_compresses):
 
4346
            self.target_repo.pack(hint=hint)
 
4347
        return [], set()
 
4348
 
 
4349
    def _extract_and_insert_inventory_deltas(self, substream, serializer):
 
4350
        target_rich_root = self.target_repo._format.rich_root_data
 
4351
        target_tree_refs = self.target_repo._format.supports_tree_reference
 
4352
        for record in substream:
 
4353
            # Insert the delta directly
 
4354
            inventory_delta_bytes = record.get_bytes_as('fulltext')
 
4355
            deserialiser = inventory_delta.InventoryDeltaDeserializer()
 
4356
            try:
 
4357
                parse_result = deserialiser.parse_text_bytes(
 
4358
                    inventory_delta_bytes)
 
4359
            except inventory_delta.IncompatibleInventoryDelta, err:
 
4360
                trace.mutter("Incompatible delta: %s", err.msg)
 
4361
                raise errors.IncompatibleRevision(self.target_repo._format)
 
4362
            basis_id, new_id, rich_root, tree_refs, inv_delta = parse_result
 
4363
            revision_id = new_id
 
4364
            parents = [key[0] for key in record.parents]
 
4365
            self.target_repo.add_inventory_by_delta(
 
4366
                basis_id, inv_delta, revision_id, parents)
 
4367
 
 
4368
    def _extract_and_insert_inventories(self, substream, serializer,
 
4369
            parse_delta=None):
 
4370
        """Generate a new inventory versionedfile in target, converting data.
 
4371
 
 
4372
        The inventory is retrieved from the source, (deserializing it), and
 
4373
        stored in the target (reserializing it in a different format).
 
4374
        """
 
4375
        target_rich_root = self.target_repo._format.rich_root_data
 
4376
        target_tree_refs = self.target_repo._format.supports_tree_reference
 
4377
        for record in substream:
 
4378
            # It's not a delta, so it must be a fulltext in the source
 
4379
            # serializer's format.
 
4380
            bytes = record.get_bytes_as('fulltext')
 
4381
            revision_id = record.key[0]
 
4382
            inv = serializer.read_inventory_from_string(bytes, revision_id)
 
4383
            parents = [key[0] for key in record.parents]
 
4384
            self.target_repo.add_inventory(revision_id, inv, parents)
 
4385
            # No need to keep holding this full inv in memory when the rest of
 
4386
            # the substream is likely to be all deltas.
 
4387
            del inv
 
4388
 
 
4389
    def _extract_and_insert_revisions(self, substream, serializer):
 
4390
        for record in substream:
 
4391
            bytes = record.get_bytes_as('fulltext')
 
4392
            revision_id = record.key[0]
 
4393
            rev = serializer.read_revision_from_string(bytes)
 
4394
            if rev.revision_id != revision_id:
 
4395
                raise AssertionError('wtf: %s != %s' % (rev, revision_id))
 
4396
            self.target_repo.add_revision(revision_id, rev)
 
4397
 
 
4398
    def finished(self):
 
4399
        if self.target_repo._format._fetch_reconcile:
 
4400
            self.target_repo.reconcile()
 
4401
 
 
4402
 
 
4403
class StreamSource(object):
 
4404
    """A source of a stream for fetching between repositories."""
 
4405
 
 
4406
    def __init__(self, from_repository, to_format):
 
4407
        """Create a StreamSource streaming from from_repository."""
 
4408
        self.from_repository = from_repository
 
4409
        self.to_format = to_format
 
4410
 
 
4411
    def delta_on_metadata(self):
 
4412
        """Return True if delta's are permitted on metadata streams.
 
4413
 
 
4414
        That is on revisions and signatures.
 
4415
        """
 
4416
        src_serializer = self.from_repository._format._serializer
 
4417
        target_serializer = self.to_format._serializer
 
4418
        return (self.to_format._fetch_uses_deltas and
 
4419
            src_serializer == target_serializer)
 
4420
 
 
4421
    def _fetch_revision_texts(self, revs):
 
4422
        # fetch signatures first and then the revision texts
 
4423
        # may need to be a InterRevisionStore call here.
 
4424
        from_sf = self.from_repository.signatures
 
4425
        # A missing signature is just skipped.
 
4426
        keys = [(rev_id,) for rev_id in revs]
 
4427
        signatures = versionedfile.filter_absent(from_sf.get_record_stream(
 
4428
            keys,
 
4429
            self.to_format._fetch_order,
 
4430
            not self.to_format._fetch_uses_deltas))
 
4431
        # If a revision has a delta, this is actually expanded inside the
 
4432
        # insert_record_stream code now, which is an alternate fix for
 
4433
        # bug #261339
 
4434
        from_rf = self.from_repository.revisions
 
4435
        revisions = from_rf.get_record_stream(
 
4436
            keys,
 
4437
            self.to_format._fetch_order,
 
4438
            not self.delta_on_metadata())
 
4439
        return [('signatures', signatures), ('revisions', revisions)]
 
4440
 
 
4441
    def _generate_root_texts(self, revs):
 
4442
        """This will be called by get_stream between fetching weave texts and
 
4443
        fetching the inventory weave.
 
4444
        """
 
4445
        if self._rich_root_upgrade():
 
4446
            return _mod_fetch.Inter1and2Helper(
 
4447
                self.from_repository).generate_root_texts(revs)
 
4448
        else:
 
4449
            return []
 
4450
 
 
4451
    def get_stream(self, search):
 
4452
        phase = 'file'
 
4453
        revs = search.get_keys()
 
4454
        graph = self.from_repository.get_graph()
 
4455
        revs = tsort.topo_sort(graph.get_parent_map(revs))
 
4456
        data_to_fetch = self.from_repository.item_keys_introduced_by(revs)
 
4457
        text_keys = []
 
4458
        for knit_kind, file_id, revisions in data_to_fetch:
 
4459
            if knit_kind != phase:
 
4460
                phase = knit_kind
 
4461
                # Make a new progress bar for this phase
 
4462
            if knit_kind == "file":
 
4463
                # Accumulate file texts
 
4464
                text_keys.extend([(file_id, revision) for revision in
 
4465
                    revisions])
 
4466
            elif knit_kind == "inventory":
 
4467
                # Now copy the file texts.
 
4468
                from_texts = self.from_repository.texts
 
4469
                yield ('texts', from_texts.get_record_stream(
 
4470
                    text_keys, self.to_format._fetch_order,
 
4471
                    not self.to_format._fetch_uses_deltas))
 
4472
                # Cause an error if a text occurs after we have done the
 
4473
                # copy.
 
4474
                text_keys = None
 
4475
                # Before we process the inventory we generate the root
 
4476
                # texts (if necessary) so that the inventories references
 
4477
                # will be valid.
 
4478
                for _ in self._generate_root_texts(revs):
 
4479
                    yield _
 
4480
                # we fetch only the referenced inventories because we do not
 
4481
                # know for unselected inventories whether all their required
 
4482
                # texts are present in the other repository - it could be
 
4483
                # corrupt.
 
4484
                for info in self._get_inventory_stream(revs):
 
4485
                    yield info
 
4486
            elif knit_kind == "signatures":
 
4487
                # Nothing to do here; this will be taken care of when
 
4488
                # _fetch_revision_texts happens.
 
4489
                pass
 
4490
            elif knit_kind == "revisions":
 
4491
                for record in self._fetch_revision_texts(revs):
 
4492
                    yield record
 
4493
            else:
 
4494
                raise AssertionError("Unknown knit kind %r" % knit_kind)
 
4495
 
 
4496
    def get_stream_for_missing_keys(self, missing_keys):
 
4497
        # missing keys can only occur when we are byte copying and not
 
4498
        # translating (because translation means we don't send
 
4499
        # unreconstructable deltas ever).
 
4500
        keys = {}
 
4501
        keys['texts'] = set()
 
4502
        keys['revisions'] = set()
 
4503
        keys['inventories'] = set()
 
4504
        keys['chk_bytes'] = set()
 
4505
        keys['signatures'] = set()
 
4506
        for key in missing_keys:
 
4507
            keys[key[0]].add(key[1:])
 
4508
        if len(keys['revisions']):
 
4509
            # If we allowed copying revisions at this point, we could end up
 
4510
            # copying a revision without copying its required texts: a
 
4511
            # violation of the requirements for repository integrity.
 
4512
            raise AssertionError(
 
4513
                'cannot copy revisions to fill in missing deltas %s' % (
 
4514
                    keys['revisions'],))
 
4515
        for substream_kind, keys in keys.iteritems():
 
4516
            vf = getattr(self.from_repository, substream_kind)
 
4517
            if vf is None and keys:
 
4518
                    raise AssertionError(
 
4519
                        "cannot fill in keys for a versioned file we don't"
 
4520
                        " have: %s needs %s" % (substream_kind, keys))
 
4521
            if not keys:
 
4522
                # No need to stream something we don't have
 
4523
                continue
 
4524
            if substream_kind == 'inventories':
 
4525
                # Some missing keys are genuinely ghosts, filter those out.
 
4526
                present = self.from_repository.inventories.get_parent_map(keys)
 
4527
                revs = [key[0] for key in present]
 
4528
                # Get the inventory stream more-or-less as we do for the
 
4529
                # original stream; there's no reason to assume that records
 
4530
                # direct from the source will be suitable for the sink.  (Think
 
4531
                # e.g. 2a -> 1.9-rich-root).
 
4532
                for info in self._get_inventory_stream(revs, missing=True):
 
4533
                    yield info
 
4534
                continue
 
4535
 
 
4536
            # Ask for full texts always so that we don't need more round trips
 
4537
            # after this stream.
 
4538
            # Some of the missing keys are genuinely ghosts, so filter absent
 
4539
            # records. The Sink is responsible for doing another check to
 
4540
            # ensure that ghosts don't introduce missing data for future
 
4541
            # fetches.
 
4542
            stream = versionedfile.filter_absent(vf.get_record_stream(keys,
 
4543
                self.to_format._fetch_order, True))
 
4544
            yield substream_kind, stream
 
4545
 
 
4546
    def inventory_fetch_order(self):
 
4547
        if self._rich_root_upgrade():
 
4548
            return 'topological'
 
4549
        else:
 
4550
            return self.to_format._fetch_order
 
4551
 
 
4552
    def _rich_root_upgrade(self):
 
4553
        return (not self.from_repository._format.rich_root_data and
 
4554
            self.to_format.rich_root_data)
 
4555
 
 
4556
    def _get_inventory_stream(self, revision_ids, missing=False):
 
4557
        from_format = self.from_repository._format
 
4558
        if (from_format.supports_chks and self.to_format.supports_chks and
 
4559
            from_format.network_name() == self.to_format.network_name()):
 
4560
            raise AssertionError(
 
4561
                "this case should be handled by GroupCHKStreamSource")
 
4562
        elif 'forceinvdeltas' in debug.debug_flags:
 
4563
            return self._get_convertable_inventory_stream(revision_ids,
 
4564
                    delta_versus_null=missing)
 
4565
        elif from_format.network_name() == self.to_format.network_name():
 
4566
            # Same format.
 
4567
            return self._get_simple_inventory_stream(revision_ids,
 
4568
                    missing=missing)
 
4569
        elif (not from_format.supports_chks and not self.to_format.supports_chks
 
4570
                and from_format._serializer == self.to_format._serializer):
 
4571
            # Essentially the same format.
 
4572
            return self._get_simple_inventory_stream(revision_ids,
 
4573
                    missing=missing)
 
4574
        else:
 
4575
            # Any time we switch serializations, we want to use an
 
4576
            # inventory-delta based approach.
 
4577
            return self._get_convertable_inventory_stream(revision_ids,
 
4578
                    delta_versus_null=missing)
 
4579
 
 
4580
    def _get_simple_inventory_stream(self, revision_ids, missing=False):
 
4581
        # NB: This currently reopens the inventory weave in source;
 
4582
        # using a single stream interface instead would avoid this.
 
4583
        from_weave = self.from_repository.inventories
 
4584
        if missing:
 
4585
            delta_closure = True
 
4586
        else:
 
4587
            delta_closure = not self.delta_on_metadata()
 
4588
        yield ('inventories', from_weave.get_record_stream(
 
4589
            [(rev_id,) for rev_id in revision_ids],
 
4590
            self.inventory_fetch_order(), delta_closure))
 
4591
 
 
4592
    def _get_convertable_inventory_stream(self, revision_ids,
 
4593
                                          delta_versus_null=False):
 
4594
        # The two formats are sufficiently different that there is no fast
 
4595
        # path, so we need to send just inventorydeltas, which any
 
4596
        # sufficiently modern client can insert into any repository.
 
4597
        # The StreamSink code expects to be able to
 
4598
        # convert on the target, so we need to put bytes-on-the-wire that can
 
4599
        # be converted.  That means inventory deltas (if the remote is <1.19,
 
4600
        # RemoteStreamSink will fallback to VFS to insert the deltas).
 
4601
        yield ('inventory-deltas',
 
4602
           self._stream_invs_as_deltas(revision_ids,
 
4603
                                       delta_versus_null=delta_versus_null))
 
4604
 
 
4605
    def _stream_invs_as_deltas(self, revision_ids, delta_versus_null=False):
 
4606
        """Return a stream of inventory-deltas for the given rev ids.
 
4607
 
 
4608
        :param revision_ids: The list of inventories to transmit
 
4609
        :param delta_versus_null: Don't try to find a minimal delta for this
 
4610
            entry, instead compute the delta versus the NULL_REVISION. This
 
4611
            effectively streams a complete inventory. Used for stuff like
 
4612
            filling in missing parents, etc.
 
4613
        """
 
4614
        from_repo = self.from_repository
 
4615
        revision_keys = [(rev_id,) for rev_id in revision_ids]
 
4616
        parent_map = from_repo.inventories.get_parent_map(revision_keys)
 
4617
        # XXX: possibly repos could implement a more efficient iter_inv_deltas
 
4618
        # method...
 
4619
        inventories = self.from_repository.iter_inventories(
 
4620
            revision_ids, 'topological')
 
4621
        format = from_repo._format
 
4622
        invs_sent_so_far = set([_mod_revision.NULL_REVISION])
 
4623
        inventory_cache = lru_cache.LRUCache(50)
 
4624
        null_inventory = from_repo.revision_tree(
 
4625
            _mod_revision.NULL_REVISION).inventory
 
4626
        # XXX: ideally the rich-root/tree-refs flags would be per-revision, not
 
4627
        # per-repo (e.g.  streaming a non-rich-root revision out of a rich-root
 
4628
        # repo back into a non-rich-root repo ought to be allowed)
 
4629
        serializer = inventory_delta.InventoryDeltaSerializer(
 
4630
            versioned_root=format.rich_root_data,
 
4631
            tree_references=format.supports_tree_reference)
 
4632
        for inv in inventories:
 
4633
            key = (inv.revision_id,)
 
4634
            parent_keys = parent_map.get(key, ())
 
4635
            delta = None
 
4636
            if not delta_versus_null and parent_keys:
 
4637
                # The caller did not ask for complete inventories and we have
 
4638
                # some parents that we can delta against.  Make a delta against
 
4639
                # each parent so that we can find the smallest.
 
4640
                parent_ids = [parent_key[0] for parent_key in parent_keys]
 
4641
                for parent_id in parent_ids:
 
4642
                    if parent_id not in invs_sent_so_far:
 
4643
                        # We don't know that the remote side has this basis, so
 
4644
                        # we can't use it.
 
4645
                        continue
 
4646
                    if parent_id == _mod_revision.NULL_REVISION:
 
4647
                        parent_inv = null_inventory
 
4648
                    else:
 
4649
                        parent_inv = inventory_cache.get(parent_id, None)
 
4650
                        if parent_inv is None:
 
4651
                            parent_inv = from_repo.get_inventory(parent_id)
 
4652
                    candidate_delta = inv._make_delta(parent_inv)
 
4653
                    if (delta is None or
 
4654
                        len(delta) > len(candidate_delta)):
 
4655
                        delta = candidate_delta
 
4656
                        basis_id = parent_id
 
4657
            if delta is None:
 
4658
                # Either none of the parents ended up being suitable, or we
 
4659
                # were asked to delta against NULL
 
4660
                basis_id = _mod_revision.NULL_REVISION
 
4661
                delta = inv._make_delta(null_inventory)
 
4662
            invs_sent_so_far.add(inv.revision_id)
 
4663
            inventory_cache[inv.revision_id] = inv
 
4664
            delta_serialized = ''.join(
 
4665
                serializer.delta_to_lines(basis_id, key[-1], delta))
 
4666
            yield versionedfile.FulltextContentFactory(
 
4667
                key, parent_keys, None, delta_serialized)
 
4668
 
 
4669
 
 
4670
def _iter_for_revno(repo, partial_history_cache, stop_index=None,
 
4671
                    stop_revision=None):
 
4672
    """Extend the partial history to include a given index
 
4673
 
 
4674
    If a stop_index is supplied, stop when that index has been reached.
 
4675
    If a stop_revision is supplied, stop when that revision is
 
4676
    encountered.  Otherwise, stop when the beginning of history is
 
4677
    reached.
 
4678
 
 
4679
    :param stop_index: The index which should be present.  When it is
 
4680
        present, history extension will stop.
 
4681
    :param stop_revision: The revision id which should be present.  When
 
4682
        it is encountered, history extension will stop.
 
4683
    """
 
4684
    start_revision = partial_history_cache[-1]
 
4685
    iterator = repo.iter_reverse_revision_history(start_revision)
 
4686
    try:
 
4687
        #skip the last revision in the list
 
4688
        iterator.next()
 
4689
        while True:
 
4690
            if (stop_index is not None and
 
4691
                len(partial_history_cache) > stop_index):
 
4692
                break
 
4693
            if partial_history_cache[-1] == stop_revision:
 
4694
                break
 
4695
            revision_id = iterator.next()
 
4696
            partial_history_cache.append(revision_id)
 
4697
    except StopIteration:
 
4698
        # No more history
 
4699
        return
 
4700