/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/merge.py

  • Committer: Michael Hudson
  • Date: 2007-11-29 18:58:23 UTC
  • mfrom: (3048 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3189.
  • Revision ID: michael.hudson@canonical.com-20071129185823-vpokl0unnsjib0xw
merge bzr.dev
a bit involved, hope i got it all right!

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005, 2006 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
 
 
18
import os
 
19
import errno
 
20
import warnings
 
21
 
 
22
from bzrlib import (
 
23
    errors,
 
24
    osutils,
 
25
    patiencediff,
 
26
    registry,
 
27
    revision as _mod_revision,
 
28
    )
 
29
from bzrlib.branch import Branch
 
30
from bzrlib.conflicts import ConflictList, Conflict
 
31
from bzrlib.errors import (BzrCommandError,
 
32
                           BzrError,
 
33
                           NoCommonAncestor,
 
34
                           NoCommits,
 
35
                           NoSuchRevision,
 
36
                           NoSuchFile,
 
37
                           NotBranchError,
 
38
                           NotVersionedError,
 
39
                           UnrelatedBranches,
 
40
                           UnsupportedOperation,
 
41
                           WorkingTreeNotRevision,
 
42
                           BinaryFile,
 
43
                           )
 
44
from bzrlib.merge3 import Merge3
 
45
from bzrlib.osutils import rename, pathjoin
 
46
from progress import DummyProgress, ProgressPhase
 
47
from bzrlib.revision import (is_ancestor, NULL_REVISION, ensure_null)
 
48
from bzrlib.textfile import check_text_lines
 
49
from bzrlib.trace import mutter, warning, note
 
50
from bzrlib.transform import (TransformPreview, TreeTransform,
 
51
                              resolve_conflicts, cook_conflicts,
 
52
                              conflict_pass, FinalPaths, create_by_entry,
 
53
                              unique_add, ROOT_PARENT)
 
54
from bzrlib.versionedfile import PlanWeaveMerge
 
55
from bzrlib import ui
 
56
 
 
57
# TODO: Report back as changes are merged in
 
58
 
 
59
 
 
60
def transform_tree(from_tree, to_tree, interesting_ids=None):
 
61
    merge_inner(from_tree.branch, to_tree, from_tree, ignore_zero=True,
 
62
                interesting_ids=interesting_ids, this_tree=from_tree)
 
63
 
 
64
 
 
65
class Merger(object):
 
66
    def __init__(self, this_branch, other_tree=None, base_tree=None,
 
67
                 this_tree=None, pb=DummyProgress(), change_reporter=None,
 
68
                 recurse='down'):
 
69
        object.__init__(self)
 
70
        assert this_tree is not None, "this_tree is required"
 
71
        self.this_branch = this_branch
 
72
        self.this_basis = _mod_revision.ensure_null(
 
73
            this_branch.last_revision())
 
74
        self.this_rev_id = None
 
75
        self.this_tree = this_tree
 
76
        self.this_revision_tree = None
 
77
        self.this_basis_tree = None
 
78
        self.other_tree = other_tree
 
79
        self.other_branch = None
 
80
        self.base_tree = base_tree
 
81
        self.ignore_zero = False
 
82
        self.backup_files = False
 
83
        self.interesting_ids = None
 
84
        self.interesting_files = None
 
85
        self.show_base = False
 
86
        self.reprocess = False
 
87
        self._pb = pb
 
88
        self.pp = None
 
89
        self.recurse = recurse
 
90
        self.change_reporter = change_reporter
 
91
        self._cached_trees = {}
 
92
 
 
93
    @staticmethod
 
94
    def from_uncommitted(tree, other_tree, pb):
 
95
        """Return a Merger for uncommitted changes in other_tree.
 
96
 
 
97
        :param tree: The tree to merge into
 
98
        :param other_tree: The tree to get uncommitted changes from
 
99
        :param pb: A progress indicator
 
100
        """
 
101
        merger = Merger(tree.branch, other_tree, other_tree.basis_tree(), tree,
 
102
                        pb)
 
103
        merger.base_rev_id = merger.base_tree.get_revision_id()
 
104
        merger.other_rev_id = None
 
105
        return merger
 
106
 
 
107
    @classmethod
 
108
    def from_mergeable(klass, tree, mergeable, pb):
 
109
        """Return a Merger for a bundle or merge directive.
 
110
 
 
111
        :param tree: The tree to merge changes into
 
112
        :param mergeable: A merge directive or bundle
 
113
        :param pb: A progress indicator
 
114
        """
 
115
        mergeable.install_revisions(tree.branch.repository)
 
116
        base_revision_id, other_revision_id, verified =\
 
117
            mergeable.get_merge_request(tree.branch.repository)
 
118
        if (base_revision_id != _mod_revision.NULL_REVISION and
 
119
            tree.branch.repository.get_graph().is_ancestor(
 
120
            base_revision_id, tree.branch.last_revision())):
 
121
            base_revision_id = None
 
122
        merger = klass.from_revision_ids(pb, tree, other_revision_id,
 
123
                                         base_revision_id)
 
124
        return merger, verified
 
125
 
 
126
    @staticmethod
 
127
    def from_revision_ids(pb, this, other, base=None, other_branch=None,
 
128
                          base_branch=None):
 
129
        """Return a Merger for revision-ids.
 
130
 
 
131
        :param tree: The tree to merge changes into
 
132
        :param other: The revision-id to use as OTHER
 
133
        :param base: The revision-id to use as BASE.  If not specified, will
 
134
            be auto-selected.
 
135
        :param other_branch: A branch containing the other revision-id.  If
 
136
            not supplied, this.branch is used.
 
137
        :param base_branch: A branch containing the base revision-id.  If
 
138
            not supplied, other_branch or this.branch will be used.
 
139
        :param pb: A progress indicator
 
140
        """
 
141
        merger = Merger(this.branch, this_tree=this, pb=pb)
 
142
        if other_branch is None:
 
143
            other_branch = this.branch
 
144
        merger.set_other_revision(other, other_branch)
 
145
        if base is None:
 
146
            merger.find_base()
 
147
        else:
 
148
            if base_branch is None:
 
149
                base_branch = other_branch
 
150
            merger.set_base_revision(base, base_branch)
 
151
        return merger
 
152
 
 
153
    def revision_tree(self, revision_id, branch=None):
 
154
        if revision_id not in self._cached_trees:
 
155
            if branch is None:
 
156
                branch = self.this_branch
 
157
            try:
 
158
                tree = self.this_tree.revision_tree(revision_id)
 
159
            except errors.NoSuchRevisionInTree:
 
160
                tree = branch.repository.revision_tree(revision_id)
 
161
            self._cached_trees[revision_id] = tree
 
162
        return self._cached_trees[revision_id]
 
163
 
 
164
    def _get_tree(self, treespec, possible_transports=None):
 
165
        from bzrlib import workingtree
 
166
        location, revno = treespec
 
167
        if revno is None:
 
168
            tree = workingtree.WorkingTree.open_containing(location)[0]
 
169
            return tree.branch, tree
 
170
        branch = Branch.open_containing(location, possible_transports)[0]
 
171
        if revno == -1:
 
172
            revision_id = branch.last_revision()
 
173
        else:
 
174
            revision_id = branch.get_rev_id(revno)
 
175
        revision_id = ensure_null(revision_id)
 
176
        return branch, self.revision_tree(revision_id, branch)
 
177
 
 
178
    def ensure_revision_trees(self):
 
179
        if self.this_revision_tree is None:
 
180
            self.this_basis_tree = self.revision_tree(self.this_basis)
 
181
            if self.this_basis == self.this_rev_id:
 
182
                self.this_revision_tree = self.this_basis_tree
 
183
 
 
184
        if self.other_rev_id is None:
 
185
            other_basis_tree = self.revision_tree(self.other_basis)
 
186
            changes = other_basis_tree.changes_from(self.other_tree)
 
187
            if changes.has_changed():
 
188
                raise WorkingTreeNotRevision(self.this_tree)
 
189
            other_rev_id = self.other_basis
 
190
            self.other_tree = other_basis_tree
 
191
 
 
192
    def file_revisions(self, file_id):
 
193
        self.ensure_revision_trees()
 
194
        def get_id(tree, file_id):
 
195
            revision_id = tree.inventory[file_id].revision
 
196
            assert revision_id is not None
 
197
            return revision_id
 
198
        if self.this_rev_id is None:
 
199
            if self.this_basis_tree.get_file_sha1(file_id) != \
 
200
                self.this_tree.get_file_sha1(file_id):
 
201
                raise WorkingTreeNotRevision(self.this_tree)
 
202
 
 
203
        trees = (self.this_basis_tree, self.other_tree)
 
204
        return [get_id(tree, file_id) for tree in trees]
 
205
 
 
206
    def check_basis(self, check_clean, require_commits=True):
 
207
        if self.this_basis is None and require_commits is True:
 
208
            raise BzrCommandError("This branch has no commits."
 
209
                                  " (perhaps you would prefer 'bzr pull')")
 
210
        if check_clean:
 
211
            self.compare_basis()
 
212
            if self.this_basis != self.this_rev_id:
 
213
                raise errors.UncommittedChanges(self.this_tree)
 
214
 
 
215
    def compare_basis(self):
 
216
        try:
 
217
            basis_tree = self.revision_tree(self.this_tree.last_revision())
 
218
        except errors.RevisionNotPresent:
 
219
            basis_tree = self.this_tree.basis_tree()
 
220
        changes = self.this_tree.changes_from(basis_tree)
 
221
        if not changes.has_changed():
 
222
            self.this_rev_id = self.this_basis
 
223
 
 
224
    def set_interesting_files(self, file_list):
 
225
        self.interesting_files = file_list
 
226
 
 
227
    def set_pending(self):
 
228
        if not self.base_is_ancestor or not self.base_is_other_ancestor or self.other_rev_id is None:
 
229
            return
 
230
        self._add_parent()
 
231
 
 
232
    def _add_parent(self):
 
233
        new_parents = self.this_tree.get_parent_ids() + [self.other_rev_id]
 
234
        new_parent_trees = []
 
235
        for revision_id in new_parents:
 
236
            try:
 
237
                tree = self.revision_tree(revision_id)
 
238
            except errors.RevisionNotPresent:
 
239
                tree = None
 
240
            else:
 
241
                tree.lock_read()
 
242
            new_parent_trees.append((revision_id, tree))
 
243
        try:
 
244
            self.this_tree.set_parent_trees(new_parent_trees,
 
245
                                            allow_leftmost_as_ghost=True)
 
246
        finally:
 
247
            for _revision_id, tree in new_parent_trees:
 
248
                if tree is not None:
 
249
                    tree.unlock()
 
250
 
 
251
    def set_other(self, other_revision, possible_transports=None):
 
252
        """Set the revision and tree to merge from.
 
253
 
 
254
        This sets the other_tree, other_rev_id, other_basis attributes.
 
255
 
 
256
        :param other_revision: The [path, revision] list to merge from.
 
257
        """
 
258
        self.other_branch, self.other_tree = self._get_tree(other_revision,
 
259
                                                            possible_transports)
 
260
        if other_revision[1] == -1:
 
261
            self.other_rev_id = _mod_revision.ensure_null(
 
262
                self.other_branch.last_revision())
 
263
            if _mod_revision.is_null(self.other_rev_id):
 
264
                raise NoCommits(self.other_branch)
 
265
            self.other_basis = self.other_rev_id
 
266
        elif other_revision[1] is not None:
 
267
            self.other_rev_id = self.other_branch.get_rev_id(other_revision[1])
 
268
            self.other_basis = self.other_rev_id
 
269
        else:
 
270
            self.other_rev_id = None
 
271
            self.other_basis = self.other_branch.last_revision()
 
272
            if self.other_basis is None:
 
273
                raise NoCommits(self.other_branch)
 
274
        if self.other_rev_id is not None:
 
275
            self._cached_trees[self.other_rev_id] = self.other_tree
 
276
        self._maybe_fetch(self.other_branch,self.this_branch, self.other_basis)
 
277
 
 
278
    def set_other_revision(self, revision_id, other_branch):
 
279
        """Set 'other' based on a branch and revision id
 
280
 
 
281
        :param revision_id: The revision to use for a tree
 
282
        :param other_branch: The branch containing this tree
 
283
        """
 
284
        self.other_rev_id = revision_id
 
285
        self.other_branch = other_branch
 
286
        self._maybe_fetch(other_branch, self.this_branch, self.other_rev_id)
 
287
        self.other_tree = self.revision_tree(revision_id)
 
288
        self.other_basis = revision_id
 
289
 
 
290
    def set_base_revision(self, revision_id, branch):
 
291
        """Set 'base' based on a branch and revision id
 
292
 
 
293
        :param revision_id: The revision to use for a tree
 
294
        :param branch: The branch containing this tree
 
295
        """
 
296
        self.base_rev_id = revision_id
 
297
        self.base_branch = branch
 
298
        self._maybe_fetch(branch, self.this_branch, revision_id)
 
299
        self.base_tree = self.revision_tree(revision_id)
 
300
        self.base_is_ancestor = is_ancestor(self.this_basis,
 
301
                                            self.base_rev_id,
 
302
                                            self.this_branch)
 
303
        self.base_is_other_ancestor = is_ancestor(self.other_basis,
 
304
                                                  self.base_rev_id,
 
305
                                                  self.this_branch)
 
306
 
 
307
    def _maybe_fetch(self, source, target, revision_id):
 
308
        if not source.repository.has_same_location(target.repository):
 
309
            target.fetch(source, revision_id)
 
310
 
 
311
    def find_base(self):
 
312
        this_repo = self.this_branch.repository
 
313
        graph = this_repo.get_graph()
 
314
        revisions = [ensure_null(self.this_basis),
 
315
                     ensure_null(self.other_basis)]
 
316
        if NULL_REVISION in revisions:
 
317
            self.base_rev_id = NULL_REVISION
 
318
        else:
 
319
            self.base_rev_id = graph.find_unique_lca(*revisions)
 
320
            if self.base_rev_id == NULL_REVISION:
 
321
                raise UnrelatedBranches()
 
322
        self.base_tree = self.revision_tree(self.base_rev_id)
 
323
        self.base_is_ancestor = True
 
324
        self.base_is_other_ancestor = True
 
325
 
 
326
    def set_base(self, base_revision):
 
327
        """Set the base revision to use for the merge.
 
328
 
 
329
        :param base_revision: A 2-list containing a path and revision number.
 
330
        """
 
331
        mutter("doing merge() with no base_revision specified")
 
332
        if base_revision == [None, None]:
 
333
            self.find_base()
 
334
        else:
 
335
            base_branch, self.base_tree = self._get_tree(base_revision)
 
336
            if base_revision[1] == -1:
 
337
                self.base_rev_id = base_branch.last_revision()
 
338
            elif base_revision[1] is None:
 
339
                self.base_rev_id = _mod_revision.NULL_REVISION
 
340
            else:
 
341
                self.base_rev_id = _mod_revision.ensure_null(
 
342
                    base_branch.get_rev_id(base_revision[1]))
 
343
            self._maybe_fetch(base_branch, self.this_branch, self.base_rev_id)
 
344
            self.base_is_ancestor = is_ancestor(self.this_basis, 
 
345
                                                self.base_rev_id,
 
346
                                                self.this_branch)
 
347
            self.base_is_other_ancestor = is_ancestor(self.other_basis,
 
348
                                                      self.base_rev_id,
 
349
                                                      self.this_branch)
 
350
 
 
351
    def make_merger(self):
 
352
        kwargs = {'working_tree':self.this_tree, 'this_tree': self.this_tree,
 
353
                  'other_tree': self.other_tree,
 
354
                  'interesting_ids': self.interesting_ids,
 
355
                  'interesting_files': self.interesting_files,
 
356
                  'pp': self.pp,
 
357
                  'do_merge': False}
 
358
        if self.merge_type.requires_base:
 
359
            kwargs['base_tree'] = self.base_tree
 
360
        if self.merge_type.supports_reprocess:
 
361
            kwargs['reprocess'] = self.reprocess
 
362
        elif self.reprocess:
 
363
            raise BzrError("Conflict reduction is not supported for merge"
 
364
                                  " type %s." % self.merge_type)
 
365
        if self.merge_type.supports_show_base:
 
366
            kwargs['show_base'] = self.show_base
 
367
        elif self.show_base:
 
368
            raise BzrError("Showing base is not supported for this"
 
369
                                  " merge type. %s" % self.merge_type)
 
370
        return self.merge_type(pb=self._pb,
 
371
                               change_reporter=self.change_reporter,
 
372
                               **kwargs)
 
373
 
 
374
    def do_merge(self):
 
375
        merge = self.make_merger()
 
376
        self.this_tree.lock_tree_write()
 
377
        if self.base_tree is not None:
 
378
            self.base_tree.lock_read()
 
379
        if self.other_tree is not None:
 
380
            self.other_tree.lock_read()
 
381
        try:
 
382
            merge.do_merge()
 
383
            if self.recurse == 'down':
 
384
                for path, file_id in self.this_tree.iter_references():
 
385
                    sub_tree = self.this_tree.get_nested_tree(file_id, path)
 
386
                    other_revision = self.other_tree.get_reference_revision(
 
387
                        file_id, path)
 
388
                    if  other_revision == sub_tree.last_revision():
 
389
                        continue
 
390
                    sub_merge = Merger(sub_tree.branch, this_tree=sub_tree)
 
391
                    sub_merge.merge_type = self.merge_type
 
392
                    relpath = self.this_tree.relpath(path)
 
393
                    other_branch = self.other_branch.reference_parent(file_id, relpath)
 
394
                    sub_merge.set_other_revision(other_revision, other_branch)
 
395
                    base_revision = self.base_tree.get_reference_revision(file_id)
 
396
                    sub_merge.base_tree = \
 
397
                        sub_tree.branch.repository.revision_tree(base_revision)
 
398
                    sub_merge.do_merge()
 
399
 
 
400
        finally:
 
401
            if self.other_tree is not None:
 
402
                self.other_tree.unlock()
 
403
            if self.base_tree is not None:
 
404
                self.base_tree.unlock()
 
405
            self.this_tree.unlock()
 
406
        if len(merge.cooked_conflicts) == 0:
 
407
            if not self.ignore_zero:
 
408
                note("All changes applied successfully.")
 
409
        else:
 
410
            note("%d conflicts encountered." % len(merge.cooked_conflicts))
 
411
 
 
412
        return len(merge.cooked_conflicts)
 
413
 
 
414
 
 
415
class Merge3Merger(object):
 
416
    """Three-way merger that uses the merge3 text merger"""
 
417
    requires_base = True
 
418
    supports_reprocess = True
 
419
    supports_show_base = True
 
420
    history_based = False
 
421
    winner_idx = {"this": 2, "other": 1, "conflict": 1}
 
422
 
 
423
    def __init__(self, working_tree, this_tree, base_tree, other_tree, 
 
424
                 interesting_ids=None, reprocess=False, show_base=False,
 
425
                 pb=DummyProgress(), pp=None, change_reporter=None,
 
426
                 interesting_files=None, do_merge=True):
 
427
        """Initialize the merger object and perform the merge.
 
428
 
 
429
        :param working_tree: The working tree to apply the merge to
 
430
        :param this_tree: The local tree in the merge operation
 
431
        :param base_tree: The common tree in the merge operation
 
432
        :param other_tree: The other other tree to merge changes from
 
433
        :param interesting_ids: The file_ids of files that should be
 
434
            participate in the merge.  May not be combined with
 
435
            interesting_files.
 
436
        :param: reprocess If True, perform conflict-reduction processing.
 
437
        :param show_base: If True, show the base revision in text conflicts.
 
438
            (incompatible with reprocess)
 
439
        :param pb: A Progress bar
 
440
        :param pp: A ProgressPhase object
 
441
        :param change_reporter: An object that should report changes made
 
442
        :param interesting_files: The tree-relative paths of files that should
 
443
            participate in the merge.  If these paths refer to directories,
 
444
            the contents of those directories will also be included.  May not
 
445
            be combined with interesting_ids.  If neither interesting_files nor
 
446
            interesting_ids is specified, all files may participate in the
 
447
            merge.
 
448
        """
 
449
        object.__init__(self)
 
450
        if interesting_files is not None:
 
451
            assert interesting_ids is None
 
452
        self.interesting_ids = interesting_ids
 
453
        self.interesting_files = interesting_files
 
454
        self.this_tree = working_tree
 
455
        self.base_tree = base_tree
 
456
        self.other_tree = other_tree
 
457
        self._raw_conflicts = []
 
458
        self.cooked_conflicts = []
 
459
        self.reprocess = reprocess
 
460
        self.show_base = show_base
 
461
        self.pb = pb
 
462
        self.pp = pp
 
463
        self.change_reporter = change_reporter
 
464
        if self.pp is None:
 
465
            self.pp = ProgressPhase("Merge phase", 3, self.pb)
 
466
        if do_merge:
 
467
            self.do_merge()
 
468
 
 
469
    def do_merge(self):
 
470
        self.this_tree.lock_tree_write()
 
471
        self.base_tree.lock_read()
 
472
        self.other_tree.lock_read()
 
473
        self.tt = TreeTransform(self.this_tree, self.pb)
 
474
        try:
 
475
            self.pp.next_phase()
 
476
            self.compute_transform()
 
477
            self.pp.next_phase()
 
478
            results = self.tt.apply(no_conflicts=True)
 
479
            self.write_modified(results)
 
480
            try:
 
481
                self.this_tree.add_conflicts(self.cooked_conflicts)
 
482
            except UnsupportedOperation:
 
483
                pass
 
484
        finally:
 
485
            self.tt.finalize()
 
486
            self.other_tree.unlock()
 
487
            self.base_tree.unlock()
 
488
            self.this_tree.unlock()
 
489
            self.pb.clear()
 
490
 
 
491
    def make_preview_transform(self):
 
492
        self.base_tree.lock_read()
 
493
        self.other_tree.lock_read()
 
494
        self.tt = TransformPreview(self.this_tree)
 
495
        try:
 
496
            self.pp.next_phase()
 
497
            self.compute_transform()
 
498
            self.pp.next_phase()
 
499
        finally:
 
500
            self.other_tree.unlock()
 
501
            self.base_tree.unlock()
 
502
            self.pb.clear()
 
503
        return self.tt
 
504
 
 
505
    def compute_transform(self):
 
506
        entries = self._entries3()
 
507
        child_pb = ui.ui_factory.nested_progress_bar()
 
508
        try:
 
509
            for num, (file_id, changed, parents3, names3,
 
510
                      executable3) in enumerate(entries):
 
511
                child_pb.update('Preparing file merge', num, len(entries))
 
512
                self._merge_names(file_id, parents3, names3)
 
513
                if changed:
 
514
                    file_status = self.merge_contents(file_id)
 
515
                else:
 
516
                    file_status = 'unmodified'
 
517
                self._merge_executable(file_id,
 
518
                    executable3, file_status)
 
519
        finally:
 
520
            child_pb.finished()
 
521
        self.fix_root()
 
522
        self.pp.next_phase()
 
523
        child_pb = ui.ui_factory.nested_progress_bar()
 
524
        try:
 
525
            fs_conflicts = resolve_conflicts(self.tt, child_pb,
 
526
                lambda t, c: conflict_pass(t, c, self.other_tree))
 
527
        finally:
 
528
            child_pb.finished()
 
529
        if self.change_reporter is not None:
 
530
            from bzrlib import delta
 
531
            delta.report_changes(
 
532
                self.tt._iter_changes(), self.change_reporter)
 
533
        self.cook_conflicts(fs_conflicts)
 
534
        for conflict in self.cooked_conflicts:
 
535
            warning(conflict)
 
536
 
 
537
    def _entries3(self):
 
538
        """Gather data about files modified between three trees.
 
539
 
 
540
        Return a list of tuples of file_id, changed, parents3, names3,
 
541
        executable3.  changed is a boolean indicating whether the file contents
 
542
        or kind were changed.  parents3 is a tuple of parent ids for base,
 
543
        other and this.  names3 is a tuple of names for base, other and this.
 
544
        executable3 is a tuple of execute-bit values for base, other and this.
 
545
        """
 
546
        result = []
 
547
        iterator = self.other_tree._iter_changes(self.base_tree,
 
548
                include_unchanged=True, specific_files=self.interesting_files,
 
549
                extra_trees=[self.this_tree])
 
550
        for (file_id, paths, changed, versioned, parents, names, kind,
 
551
             executable) in iterator:
 
552
            if (self.interesting_ids is not None and
 
553
                file_id not in self.interesting_ids):
 
554
                continue
 
555
            if file_id in self.this_tree.inventory:
 
556
                entry = self.this_tree.inventory[file_id]
 
557
                this_name = entry.name
 
558
                this_parent = entry.parent_id
 
559
                this_executable = entry.executable
 
560
            else:
 
561
                this_name = None
 
562
                this_parent = None
 
563
                this_executable = None
 
564
            parents3 = parents + (this_parent,)
 
565
            names3 = names + (this_name,)
 
566
            executable3 = executable + (this_executable,)
 
567
            result.append((file_id, changed, parents3, names3, executable3))
 
568
        return result
 
569
 
 
570
    def fix_root(self):
 
571
        try:
 
572
            self.tt.final_kind(self.tt.root)
 
573
        except NoSuchFile:
 
574
            self.tt.cancel_deletion(self.tt.root)
 
575
        if self.tt.final_file_id(self.tt.root) is None:
 
576
            self.tt.version_file(self.tt.tree_file_id(self.tt.root), 
 
577
                                 self.tt.root)
 
578
        if self.other_tree.inventory.root is None:
 
579
            return
 
580
        other_root_file_id = self.other_tree.get_root_id()
 
581
        other_root = self.tt.trans_id_file_id(other_root_file_id)
 
582
        if other_root == self.tt.root:
 
583
            return
 
584
        try:
 
585
            self.tt.final_kind(other_root)
 
586
        except NoSuchFile:
 
587
            return
 
588
        self.reparent_children(self.other_tree.inventory.root, self.tt.root)
 
589
        self.tt.cancel_creation(other_root)
 
590
        self.tt.cancel_versioning(other_root)
 
591
 
 
592
    def reparent_children(self, ie, target):
 
593
        for thing, child in ie.children.iteritems():
 
594
            trans_id = self.tt.trans_id_file_id(child.file_id)
 
595
            self.tt.adjust_path(self.tt.final_name(trans_id), target, trans_id)
 
596
 
 
597
    def write_modified(self, results):
 
598
        modified_hashes = {}
 
599
        for path in results.modified_paths:
 
600
            file_id = self.this_tree.path2id(self.this_tree.relpath(path))
 
601
            if file_id is None:
 
602
                continue
 
603
            hash = self.this_tree.get_file_sha1(file_id)
 
604
            if hash is None:
 
605
                continue
 
606
            modified_hashes[file_id] = hash
 
607
        self.this_tree.set_merge_modified(modified_hashes)
 
608
 
 
609
    @staticmethod
 
610
    def parent(entry, file_id):
 
611
        """Determine the parent for a file_id (used as a key method)"""
 
612
        if entry is None:
 
613
            return None
 
614
        return entry.parent_id
 
615
 
 
616
    @staticmethod
 
617
    def name(entry, file_id):
 
618
        """Determine the name for a file_id (used as a key method)"""
 
619
        if entry is None:
 
620
            return None
 
621
        return entry.name
 
622
    
 
623
    @staticmethod
 
624
    def contents_sha1(tree, file_id):
 
625
        """Determine the sha1 of the file contents (used as a key method)."""
 
626
        if file_id not in tree:
 
627
            return None
 
628
        return tree.get_file_sha1(file_id)
 
629
 
 
630
    @staticmethod
 
631
    def executable(tree, file_id):
 
632
        """Determine the executability of a file-id (used as a key method)."""
 
633
        if file_id not in tree:
 
634
            return None
 
635
        if tree.kind(file_id) != "file":
 
636
            return False
 
637
        return tree.is_executable(file_id)
 
638
 
 
639
    @staticmethod
 
640
    def kind(tree, file_id):
 
641
        """Determine the kind of a file-id (used as a key method)."""
 
642
        if file_id not in tree:
 
643
            return None
 
644
        return tree.kind(file_id)
 
645
 
 
646
    @staticmethod
 
647
    def _three_way(base, other, this):
 
648
        #if base == other, either they all agree, or only THIS has changed.
 
649
        if base == other:
 
650
            return 'this'
 
651
        elif this not in (base, other):
 
652
            return 'conflict'
 
653
        # "Ambiguous clean merge" -- both sides have made the same change.
 
654
        elif this == other:
 
655
            return "this"
 
656
        # this == base: only other has changed.
 
657
        else:
 
658
            return "other"
 
659
 
 
660
    @staticmethod
 
661
    def scalar_three_way(this_tree, base_tree, other_tree, file_id, key):
 
662
        """Do a three-way test on a scalar.
 
663
        Return "this", "other" or "conflict", depending whether a value wins.
 
664
        """
 
665
        key_base = key(base_tree, file_id)
 
666
        key_other = key(other_tree, file_id)
 
667
        #if base == other, either they all agree, or only THIS has changed.
 
668
        if key_base == key_other:
 
669
            return "this"
 
670
        key_this = key(this_tree, file_id)
 
671
        if key_this not in (key_base, key_other):
 
672
            return "conflict"
 
673
        # "Ambiguous clean merge"
 
674
        elif key_this == key_other:
 
675
            return "this"
 
676
        else:
 
677
            assert key_this == key_base
 
678
            return "other"
 
679
 
 
680
    def merge_names(self, file_id):
 
681
        def get_entry(tree):
 
682
            if file_id in tree.inventory:
 
683
                return tree.inventory[file_id]
 
684
            else:
 
685
                return None
 
686
        this_entry = get_entry(self.this_tree)
 
687
        other_entry = get_entry(self.other_tree)
 
688
        base_entry = get_entry(self.base_tree)
 
689
        entries = (base_entry, other_entry, this_entry)
 
690
        names = []
 
691
        parents = []
 
692
        for entry in entries:
 
693
            if entry is None:
 
694
                names.append(None)
 
695
                parents.append(None)
 
696
            else:
 
697
                names.append(entry.name)
 
698
                parents.append(entry.parent_id)
 
699
        return self._merge_names(file_id, parents, names)
 
700
 
 
701
    def _merge_names(self, file_id, parents, names):
 
702
        """Perform a merge on file_id names and parents"""
 
703
        base_name, other_name, this_name = names
 
704
        base_parent, other_parent, this_parent = parents
 
705
 
 
706
        name_winner = self._three_way(*names)
 
707
 
 
708
        parent_id_winner = self._three_way(*parents)
 
709
        if this_name is None:
 
710
            if name_winner == "this":
 
711
                name_winner = "other"
 
712
            if parent_id_winner == "this":
 
713
                parent_id_winner = "other"
 
714
        if name_winner == "this" and parent_id_winner == "this":
 
715
            return
 
716
        if name_winner == "conflict":
 
717
            trans_id = self.tt.trans_id_file_id(file_id)
 
718
            self._raw_conflicts.append(('name conflict', trans_id, 
 
719
                                        this_name, other_name))
 
720
        if parent_id_winner == "conflict":
 
721
            trans_id = self.tt.trans_id_file_id(file_id)
 
722
            self._raw_conflicts.append(('parent conflict', trans_id, 
 
723
                                        this_parent, other_parent))
 
724
        if other_name is None:
 
725
            # it doesn't matter whether the result was 'other' or 
 
726
            # 'conflict'-- if there's no 'other', we leave it alone.
 
727
            return
 
728
        # if we get here, name_winner and parent_winner are set to safe values.
 
729
        trans_id = self.tt.trans_id_file_id(file_id)
 
730
        parent_id = parents[self.winner_idx[parent_id_winner]]
 
731
        if parent_id is not None:
 
732
            parent_trans_id = self.tt.trans_id_file_id(parent_id)
 
733
            self.tt.adjust_path(names[self.winner_idx[name_winner]],
 
734
                                parent_trans_id, trans_id)
 
735
 
 
736
    def merge_contents(self, file_id):
 
737
        """Performa a merge on file_id contents."""
 
738
        def contents_pair(tree):
 
739
            if file_id not in tree:
 
740
                return (None, None)
 
741
            kind = tree.kind(file_id)
 
742
            if kind == "file":
 
743
                contents = tree.get_file_sha1(file_id)
 
744
            elif kind == "symlink":
 
745
                contents = tree.get_symlink_target(file_id)
 
746
            else:
 
747
                contents = None
 
748
            return kind, contents
 
749
 
 
750
        def contents_conflict():
 
751
            trans_id = self.tt.trans_id_file_id(file_id)
 
752
            name = self.tt.final_name(trans_id)
 
753
            parent_id = self.tt.final_parent(trans_id)
 
754
            if file_id in self.this_tree.inventory:
 
755
                self.tt.unversion_file(trans_id)
 
756
                if file_id in self.this_tree:
 
757
                    self.tt.delete_contents(trans_id)
 
758
            file_group = self._dump_conflicts(name, parent_id, file_id, 
 
759
                                              set_version=True)
 
760
            self._raw_conflicts.append(('contents conflict', file_group))
 
761
 
 
762
        # See SPOT run.  run, SPOT, run.
 
763
        # So we're not QUITE repeating ourselves; we do tricky things with
 
764
        # file kind...
 
765
        base_pair = contents_pair(self.base_tree)
 
766
        other_pair = contents_pair(self.other_tree)
 
767
        if base_pair == other_pair:
 
768
            # OTHER introduced no changes
 
769
            return "unmodified"
 
770
        this_pair = contents_pair(self.this_tree)
 
771
        if this_pair == other_pair:
 
772
            # THIS and OTHER introduced the same changes
 
773
            return "unmodified"
 
774
        else:
 
775
            trans_id = self.tt.trans_id_file_id(file_id)
 
776
            if this_pair == base_pair:
 
777
                # only OTHER introduced changes
 
778
                if file_id in self.this_tree:
 
779
                    # Remove any existing contents
 
780
                    self.tt.delete_contents(trans_id)
 
781
                if file_id in self.other_tree:
 
782
                    # OTHER changed the file
 
783
                    create_by_entry(self.tt, 
 
784
                                    self.other_tree.inventory[file_id], 
 
785
                                    self.other_tree, trans_id)
 
786
                    if file_id not in self.this_tree.inventory:
 
787
                        self.tt.version_file(file_id, trans_id)
 
788
                    return "modified"
 
789
                elif file_id in self.this_tree.inventory:
 
790
                    # OTHER deleted the file
 
791
                    self.tt.unversion_file(trans_id)
 
792
                    return "deleted"
 
793
            #BOTH THIS and OTHER introduced changes; scalar conflict
 
794
            elif this_pair[0] == "file" and other_pair[0] == "file":
 
795
                # THIS and OTHER are both files, so text merge.  Either
 
796
                # BASE is a file, or both converted to files, so at least we
 
797
                # have agreement that output should be a file.
 
798
                try:
 
799
                    self.text_merge(file_id, trans_id)
 
800
                except BinaryFile:
 
801
                    return contents_conflict()
 
802
                if file_id not in self.this_tree.inventory:
 
803
                    self.tt.version_file(file_id, trans_id)
 
804
                try:
 
805
                    self.tt.tree_kind(trans_id)
 
806
                    self.tt.delete_contents(trans_id)
 
807
                except NoSuchFile:
 
808
                    pass
 
809
                return "modified"
 
810
            else:
 
811
                # Scalar conflict, can't text merge.  Dump conflicts
 
812
                return contents_conflict()
 
813
 
 
814
    def get_lines(self, tree, file_id):
 
815
        """Return the lines in a file, or an empty list."""
 
816
        if file_id in tree:
 
817
            return tree.get_file(file_id).readlines()
 
818
        else:
 
819
            return []
 
820
 
 
821
    def text_merge(self, file_id, trans_id):
 
822
        """Perform a three-way text merge on a file_id"""
 
823
        # it's possible that we got here with base as a different type.
 
824
        # if so, we just want two-way text conflicts.
 
825
        if file_id in self.base_tree and \
 
826
            self.base_tree.kind(file_id) == "file":
 
827
            base_lines = self.get_lines(self.base_tree, file_id)
 
828
        else:
 
829
            base_lines = []
 
830
        other_lines = self.get_lines(self.other_tree, file_id)
 
831
        this_lines = self.get_lines(self.this_tree, file_id)
 
832
        m3 = Merge3(base_lines, this_lines, other_lines)
 
833
        start_marker = "!START OF MERGE CONFLICT!" + "I HOPE THIS IS UNIQUE"
 
834
        if self.show_base is True:
 
835
            base_marker = '|' * 7
 
836
        else:
 
837
            base_marker = None
 
838
 
 
839
        def iter_merge3(retval):
 
840
            retval["text_conflicts"] = False
 
841
            for line in m3.merge_lines(name_a = "TREE", 
 
842
                                       name_b = "MERGE-SOURCE", 
 
843
                                       name_base = "BASE-REVISION",
 
844
                                       start_marker=start_marker, 
 
845
                                       base_marker=base_marker,
 
846
                                       reprocess=self.reprocess):
 
847
                if line.startswith(start_marker):
 
848
                    retval["text_conflicts"] = True
 
849
                    yield line.replace(start_marker, '<' * 7)
 
850
                else:
 
851
                    yield line
 
852
        retval = {}
 
853
        merge3_iterator = iter_merge3(retval)
 
854
        self.tt.create_file(merge3_iterator, trans_id)
 
855
        if retval["text_conflicts"] is True:
 
856
            self._raw_conflicts.append(('text conflict', trans_id))
 
857
            name = self.tt.final_name(trans_id)
 
858
            parent_id = self.tt.final_parent(trans_id)
 
859
            file_group = self._dump_conflicts(name, parent_id, file_id, 
 
860
                                              this_lines, base_lines,
 
861
                                              other_lines)
 
862
            file_group.append(trans_id)
 
863
 
 
864
    def _dump_conflicts(self, name, parent_id, file_id, this_lines=None, 
 
865
                        base_lines=None, other_lines=None, set_version=False,
 
866
                        no_base=False):
 
867
        """Emit conflict files.
 
868
        If this_lines, base_lines, or other_lines are omitted, they will be
 
869
        determined automatically.  If set_version is true, the .OTHER, .THIS
 
870
        or .BASE (in that order) will be created as versioned files.
 
871
        """
 
872
        data = [('OTHER', self.other_tree, other_lines), 
 
873
                ('THIS', self.this_tree, this_lines)]
 
874
        if not no_base:
 
875
            data.append(('BASE', self.base_tree, base_lines))
 
876
        versioned = False
 
877
        file_group = []
 
878
        for suffix, tree, lines in data:
 
879
            if file_id in tree:
 
880
                trans_id = self._conflict_file(name, parent_id, tree, file_id,
 
881
                                               suffix, lines)
 
882
                file_group.append(trans_id)
 
883
                if set_version and not versioned:
 
884
                    self.tt.version_file(file_id, trans_id)
 
885
                    versioned = True
 
886
        return file_group
 
887
           
 
888
    def _conflict_file(self, name, parent_id, tree, file_id, suffix, 
 
889
                       lines=None):
 
890
        """Emit a single conflict file."""
 
891
        name = name + '.' + suffix
 
892
        trans_id = self.tt.create_path(name, parent_id)
 
893
        entry = tree.inventory[file_id]
 
894
        create_by_entry(self.tt, entry, tree, trans_id, lines)
 
895
        return trans_id
 
896
 
 
897
    def merge_executable(self, file_id, file_status):
 
898
        """Perform a merge on the execute bit."""
 
899
        executable = [self.executable(t, file_id) for t in (self.base_tree,
 
900
                      self.other_tree, self.this_tree)]
 
901
        self._merge_executable(file_id, executable, file_status)
 
902
 
 
903
    def _merge_executable(self, file_id, executable, file_status):
 
904
        """Perform a merge on the execute bit."""
 
905
        base_executable, other_executable, this_executable = executable
 
906
        if file_status == "deleted":
 
907
            return
 
908
        trans_id = self.tt.trans_id_file_id(file_id)
 
909
        try:
 
910
            if self.tt.final_kind(trans_id) != "file":
 
911
                return
 
912
        except NoSuchFile:
 
913
            return
 
914
        winner = self._three_way(*executable)
 
915
        if winner == "conflict":
 
916
        # There must be a None in here, if we have a conflict, but we
 
917
        # need executability since file status was not deleted.
 
918
            if self.executable(self.other_tree, file_id) is None:
 
919
                winner = "this"
 
920
            else:
 
921
                winner = "other"
 
922
        if winner == "this":
 
923
            if file_status == "modified":
 
924
                executability = this_executable
 
925
                if executability is not None:
 
926
                    trans_id = self.tt.trans_id_file_id(file_id)
 
927
                    self.tt.set_executability(executability, trans_id)
 
928
        else:
 
929
            assert winner == "other"
 
930
            if file_id in self.other_tree:
 
931
                executability = other_executable
 
932
            elif file_id in self.this_tree:
 
933
                executability = this_executable
 
934
            elif file_id in self.base_tree:
 
935
                executability = base_executable
 
936
            if executability is not None:
 
937
                trans_id = self.tt.trans_id_file_id(file_id)
 
938
                self.tt.set_executability(executability, trans_id)
 
939
 
 
940
    def cook_conflicts(self, fs_conflicts):
 
941
        """Convert all conflicts into a form that doesn't depend on trans_id"""
 
942
        from conflicts import Conflict
 
943
        name_conflicts = {}
 
944
        self.cooked_conflicts.extend(cook_conflicts(fs_conflicts, self.tt))
 
945
        fp = FinalPaths(self.tt)
 
946
        for conflict in self._raw_conflicts:
 
947
            conflict_type = conflict[0]
 
948
            if conflict_type in ('name conflict', 'parent conflict'):
 
949
                trans_id = conflict[1]
 
950
                conflict_args = conflict[2:]
 
951
                if trans_id not in name_conflicts:
 
952
                    name_conflicts[trans_id] = {}
 
953
                unique_add(name_conflicts[trans_id], conflict_type, 
 
954
                           conflict_args)
 
955
            if conflict_type == 'contents conflict':
 
956
                for trans_id in conflict[1]:
 
957
                    file_id = self.tt.final_file_id(trans_id)
 
958
                    if file_id is not None:
 
959
                        break
 
960
                path = fp.get_path(trans_id)
 
961
                for suffix in ('.BASE', '.THIS', '.OTHER'):
 
962
                    if path.endswith(suffix):
 
963
                        path = path[:-len(suffix)]
 
964
                        break
 
965
                c = Conflict.factory(conflict_type, path=path, file_id=file_id)
 
966
                self.cooked_conflicts.append(c)
 
967
            if conflict_type == 'text conflict':
 
968
                trans_id = conflict[1]
 
969
                path = fp.get_path(trans_id)
 
970
                file_id = self.tt.final_file_id(trans_id)
 
971
                c = Conflict.factory(conflict_type, path=path, file_id=file_id)
 
972
                self.cooked_conflicts.append(c)
 
973
 
 
974
        for trans_id, conflicts in name_conflicts.iteritems():
 
975
            try:
 
976
                this_parent, other_parent = conflicts['parent conflict']
 
977
                assert this_parent != other_parent
 
978
            except KeyError:
 
979
                this_parent = other_parent = \
 
980
                    self.tt.final_file_id(self.tt.final_parent(trans_id))
 
981
            try:
 
982
                this_name, other_name = conflicts['name conflict']
 
983
                assert this_name != other_name
 
984
            except KeyError:
 
985
                this_name = other_name = self.tt.final_name(trans_id)
 
986
            other_path = fp.get_path(trans_id)
 
987
            if this_parent is not None and this_name is not None:
 
988
                this_parent_path = \
 
989
                    fp.get_path(self.tt.trans_id_file_id(this_parent))
 
990
                this_path = pathjoin(this_parent_path, this_name)
 
991
            else:
 
992
                this_path = "<deleted>"
 
993
            file_id = self.tt.final_file_id(trans_id)
 
994
            c = Conflict.factory('path conflict', path=this_path,
 
995
                                 conflict_path=other_path, file_id=file_id)
 
996
            self.cooked_conflicts.append(c)
 
997
        self.cooked_conflicts.sort(key=Conflict.sort_key)
 
998
 
 
999
 
 
1000
class WeaveMerger(Merge3Merger):
 
1001
    """Three-way tree merger, text weave merger."""
 
1002
    supports_reprocess = True
 
1003
    supports_show_base = False
 
1004
 
 
1005
    def _merged_lines(self, file_id):
 
1006
        """Generate the merged lines.
 
1007
        There is no distinction between lines that are meant to contain <<<<<<<
 
1008
        and conflicts.
 
1009
        """
 
1010
        plan = self.this_tree.plan_file_merge(file_id, self.other_tree)
 
1011
        textmerge = PlanWeaveMerge(plan, '<<<<<<< TREE\n',
 
1012
            '>>>>>>> MERGE-SOURCE\n')
 
1013
        return textmerge.merge_lines(self.reprocess)
 
1014
 
 
1015
    def text_merge(self, file_id, trans_id):
 
1016
        """Perform a (weave) text merge for a given file and file-id.
 
1017
        If conflicts are encountered, .THIS and .OTHER files will be emitted,
 
1018
        and a conflict will be noted.
 
1019
        """
 
1020
        lines, conflicts = self._merged_lines(file_id)
 
1021
        lines = list(lines)
 
1022
        # Note we're checking whether the OUTPUT is binary in this case, 
 
1023
        # because we don't want to get into weave merge guts.
 
1024
        check_text_lines(lines)
 
1025
        self.tt.create_file(lines, trans_id)
 
1026
        if conflicts:
 
1027
            self._raw_conflicts.append(('text conflict', trans_id))
 
1028
            name = self.tt.final_name(trans_id)
 
1029
            parent_id = self.tt.final_parent(trans_id)
 
1030
            file_group = self._dump_conflicts(name, parent_id, file_id, 
 
1031
                                              no_base=True)
 
1032
            file_group.append(trans_id)
 
1033
 
 
1034
 
 
1035
class Diff3Merger(Merge3Merger):
 
1036
    """Three-way merger using external diff3 for text merging"""
 
1037
 
 
1038
    def dump_file(self, temp_dir, name, tree, file_id):
 
1039
        out_path = pathjoin(temp_dir, name)
 
1040
        out_file = open(out_path, "wb")
 
1041
        try:
 
1042
            in_file = tree.get_file(file_id)
 
1043
            for line in in_file:
 
1044
                out_file.write(line)
 
1045
        finally:
 
1046
            out_file.close()
 
1047
        return out_path
 
1048
 
 
1049
    def text_merge(self, file_id, trans_id):
 
1050
        """Perform a diff3 merge using a specified file-id and trans-id.
 
1051
        If conflicts are encountered, .BASE, .THIS. and .OTHER conflict files
 
1052
        will be dumped, and a will be conflict noted.
 
1053
        """
 
1054
        import bzrlib.patch
 
1055
        temp_dir = osutils.mkdtemp(prefix="bzr-")
 
1056
        try:
 
1057
            new_file = pathjoin(temp_dir, "new")
 
1058
            this = self.dump_file(temp_dir, "this", self.this_tree, file_id)
 
1059
            base = self.dump_file(temp_dir, "base", self.base_tree, file_id)
 
1060
            other = self.dump_file(temp_dir, "other", self.other_tree, file_id)
 
1061
            status = bzrlib.patch.diff3(new_file, this, base, other)
 
1062
            if status not in (0, 1):
 
1063
                raise BzrError("Unhandled diff3 exit code")
 
1064
            f = open(new_file, 'rb')
 
1065
            try:
 
1066
                self.tt.create_file(f, trans_id)
 
1067
            finally:
 
1068
                f.close()
 
1069
            if status == 1:
 
1070
                name = self.tt.final_name(trans_id)
 
1071
                parent_id = self.tt.final_parent(trans_id)
 
1072
                self._dump_conflicts(name, parent_id, file_id)
 
1073
                self._raw_conflicts.append(('text conflict', trans_id))
 
1074
        finally:
 
1075
            osutils.rmtree(temp_dir)
 
1076
 
 
1077
 
 
1078
def merge_inner(this_branch, other_tree, base_tree, ignore_zero=False,
 
1079
                backup_files=False,
 
1080
                merge_type=Merge3Merger,
 
1081
                interesting_ids=None,
 
1082
                show_base=False,
 
1083
                reprocess=False,
 
1084
                other_rev_id=None,
 
1085
                interesting_files=None,
 
1086
                this_tree=None,
 
1087
                pb=DummyProgress(),
 
1088
                change_reporter=None):
 
1089
    """Primary interface for merging. 
 
1090
 
 
1091
        typical use is probably 
 
1092
        'merge_inner(branch, branch.get_revision_tree(other_revision),
 
1093
                     branch.get_revision_tree(base_revision))'
 
1094
        """
 
1095
    if this_tree is None:
 
1096
        raise BzrError("bzrlib.merge.merge_inner requires a this_tree "
 
1097
            "parameter as of bzrlib version 0.8.")
 
1098
    merger = Merger(this_branch, other_tree, base_tree, this_tree=this_tree,
 
1099
                    pb=pb, change_reporter=change_reporter)
 
1100
    merger.backup_files = backup_files
 
1101
    merger.merge_type = merge_type
 
1102
    merger.interesting_ids = interesting_ids
 
1103
    merger.ignore_zero = ignore_zero
 
1104
    if interesting_files:
 
1105
        assert not interesting_ids, ('Only supply interesting_ids'
 
1106
                                     ' or interesting_files')
 
1107
        merger.interesting_files = interesting_files
 
1108
    merger.show_base = show_base
 
1109
    merger.reprocess = reprocess
 
1110
    merger.other_rev_id = other_rev_id
 
1111
    merger.other_basis = other_rev_id
 
1112
    return merger.do_merge()
 
1113
 
 
1114
def get_merge_type_registry():
 
1115
    """Merge type registry is in bzrlib.option to avoid circular imports.
 
1116
 
 
1117
    This method provides a sanctioned way to retrieve it.
 
1118
    """
 
1119
    from bzrlib import option
 
1120
    return option._merge_type_registry
 
1121
 
 
1122
 
 
1123
def _plan_annotate_merge(annotated_a, annotated_b, ancestors_a, ancestors_b):
 
1124
    def status_a(revision, text):
 
1125
        if revision in ancestors_b:
 
1126
            return 'killed-b', text
 
1127
        else:
 
1128
            return 'new-a', text
 
1129
 
 
1130
    def status_b(revision, text):
 
1131
        if revision in ancestors_a:
 
1132
            return 'killed-a', text
 
1133
        else:
 
1134
            return 'new-b', text
 
1135
 
 
1136
    plain_a = [t for (a, t) in annotated_a]
 
1137
    plain_b = [t for (a, t) in annotated_b]
 
1138
    matcher = patiencediff.PatienceSequenceMatcher(None, plain_a, plain_b)
 
1139
    blocks = matcher.get_matching_blocks()
 
1140
    a_cur = 0
 
1141
    b_cur = 0
 
1142
    for ai, bi, l in blocks:
 
1143
        # process all mismatched sections
 
1144
        # (last mismatched section is handled because blocks always
 
1145
        # includes a 0-length last block)
 
1146
        for revision, text in annotated_a[a_cur:ai]:
 
1147
            yield status_a(revision, text)
 
1148
        for revision, text in annotated_b[b_cur:bi]:
 
1149
            yield status_b(revision, text)
 
1150
 
 
1151
        # and now the matched section
 
1152
        a_cur = ai + l
 
1153
        b_cur = bi + l
 
1154
        for text_a, text_b in zip(plain_a[ai:a_cur], plain_b[bi:b_cur]):
 
1155
            assert text_a == text_b
 
1156
            yield "unchanged", text_a