/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
1692.7.6 by Martin Pool
[patch] force deletion of trees containing readonly files (alexander)
1
# Copyright (C) 2005, 2006 Canonical Ltd
1773.4.1 by Martin Pool
Add pyflakes makefile target; fix many warnings
2
#
1110 by Martin Pool
- merge aaron's merge improvements:
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.
1773.4.1 by Martin Pool
Add pyflakes makefile target; fix many warnings
7
#
1110 by Martin Pool
- merge aaron's merge improvements:
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.
1773.4.1 by Martin Pool
Add pyflakes makefile target; fix many warnings
12
#
1110 by Martin Pool
- merge aaron's merge improvements:
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
1545.2.3 by Aaron Bentley
Updated following j-a-meinel's comments
17
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
18
import errno
19
from itertools import chain
1185.1.2 by Martin Pool
- merge various windows and other fixes from Ollie Rutherfurd
20
import os
1773.4.1 by Martin Pool
Add pyflakes makefile target; fix many warnings
21
import warnings
1113 by Martin Pool
- fix is_ancestor import problem in merge
22
1996.3.18 by John Arbash Meinel
Now that mkdtemp and rmtree are lazy, they should not be directly improted.
23
from bzrlib import (
1551.19.17 by Aaron Bentley
Add debugging flag for merges
24
    debug,
2590.2.11 by Aaron Bentley
Aggressively cache trees, use dirstate. re-mplement _add_parent.
25
    errors,
1996.3.18 by John Arbash Meinel
Now that mkdtemp and rmtree are lazy, they should not be directly improted.
26
    osutils,
1551.15.46 by Aaron Bentley
Move plan merge to tree
27
    patiencediff,
2221.4.15 by Aaron Bentley
Use RegistryOption for merge type
28
    registry,
2598.5.1 by Aaron Bentley
Start eliminating the use of None to indicate null revision
29
    revision as _mod_revision,
1996.3.18 by John Arbash Meinel
Now that mkdtemp and rmtree are lazy, they should not be directly improted.
30
    )
1185.11.5 by John Arbash Meinel
Merged up-to-date against mainline, still broken.
31
from bzrlib.branch import Branch
1666.1.4 by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in
32
from bzrlib.conflicts import ConflictList, Conflict
1457.1.8 by Robert Collins
Replace the WorkingTree.revert method algorithm with a call to merge_inner.
33
from bzrlib.errors import (BzrCommandError,
1534.4.28 by Robert Collins
first cut at merge from integration.
34
                           BzrError,
1457.1.8 by Robert Collins
Replace the WorkingTree.revert method algorithm with a call to merge_inner.
35
                           NoCommonAncestor,
36
                           NoCommits,
1534.4.28 by Robert Collins
first cut at merge from integration.
37
                           NoSuchRevision,
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
38
                           NoSuchFile,
1545.2.6 by Aaron Bentley
Removed _merge, renamed MergeConflictHandler to _MergeConflictHandler
39
                           NotBranchError,
1185.33.27 by Martin Pool
[merge] much integrated work from robert and john
40
                           NotVersionedError,
1457.1.8 by Robert Collins
Replace the WorkingTree.revert method algorithm with a call to merge_inner.
41
                           UnrelatedBranches,
1534.10.12 by Aaron Bentley
Merge produces new conflicts
42
                           UnsupportedOperation,
1457.1.8 by Robert Collins
Replace the WorkingTree.revert method algorithm with a call to merge_inner.
43
                           WorkingTreeNotRevision,
1558.15.3 by Aaron Bentley
Handle binary files for diff3 merges
44
                           BinaryFile,
1534.4.28 by Robert Collins
first cut at merge from integration.
45
                           )
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
46
from bzrlib.graph import Graph
1534.7.167 by Aaron Bentley
PEP8 and comment cleanups
47
from bzrlib.merge3 import Merge3
1996.3.18 by John Arbash Meinel
Now that mkdtemp and rmtree are lazy, they should not be directly improted.
48
from bzrlib.osutils import rename, pathjoin
1551.2.32 by Aaron Bentley
Handle progress phases more nicely in merge
49
from progress import DummyProgress, ProgressPhase
3052.1.3 by John Arbash Meinel
deprecate revision.is_ancestor, update the callers and the tests.
50
from bzrlib.revision import (NULL_REVISION, ensure_null)
1558.15.5 by Aaron Bentley
Fixed binary handling in weave merge
51
from bzrlib.textfile import check_text_lines
3200.1.1 by James Westby
Make pull --quiet more quiet. Fixes #185907.
52
from bzrlib.trace import mutter, warning, note, is_quiet
3008.1.9 by Michael Hudson
wanton hacking that lets me write an efficient version of get_diff_as_merged
53
from bzrlib.transform import (TransformPreview, TreeTransform,
54
                              resolve_conflicts, cook_conflicts,
2590.2.8 by Aaron Bentley
Restore conflict handling changes
55
                              conflict_pass, FinalPaths, create_by_entry,
56
                              unique_add, ROOT_PARENT)
1551.15.46 by Aaron Bentley
Move plan merge to tree
57
from bzrlib.versionedfile import PlanWeaveMerge
1773.4.1 by Martin Pool
Add pyflakes makefile target; fix many warnings
58
from bzrlib import ui
1545.2.6 by Aaron Bentley
Removed _merge, renamed MergeConflictHandler to _MergeConflictHandler
59
60
# TODO: Report back as changes are merged in
61
2325.3.1 by John Arbash Meinel
New helper function for merge, which allows us to re-use the existing workingtree, rather than opening it again.
62
1185.35.4 by Aaron Bentley
Implemented remerge
63
def transform_tree(from_tree, to_tree, interesting_ids=None):
64
    merge_inner(from_tree.branch, to_tree, from_tree, ignore_zero=True,
1558.1.3 by Aaron Bentley
Fixed deprecated op use in test suite
65
                interesting_ids=interesting_ids, this_tree=from_tree)
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
66
1457.1.12 by Robert Collins
Update comment to reflect author.
67
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
68
class Merger(object):
2255.2.31 by Robert Collins
Work in progress to make merge_inner work with dirstate trees.
69
    def __init__(self, this_branch, other_tree=None, base_tree=None,
2100.3.31 by Aaron Bentley
Merged bzr.dev (17 tests failing)
70
                 this_tree=None, pb=DummyProgress(), change_reporter=None,
3146.5.3 by Aaron Bentley
Avoid retrieving revision graph twice
71
                 recurse='down', revision_graph=None):
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
72
        object.__init__(self)
73
        self.this_branch = this_branch
2598.5.4 by Aaron Bentley
Restore original Branch.last_revision behavior, fix bits that care
74
        self.this_basis = _mod_revision.ensure_null(
75
            this_branch.last_revision())
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
76
        self.this_rev_id = None
1534.4.26 by Robert Collins
Move working tree initialisation out from Branch.initialize, deprecated Branch.initialize to Branch.create.
77
        self.this_tree = this_tree
1185.12.83 by Aaron Bentley
Preliminary weave merge support
78
        self.this_revision_tree = None
1185.35.5 by Aaron Bentley
Made weave merge succeed if interesting files match history
79
        self.this_basis_tree = None
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
80
        self.other_tree = other_tree
2100.3.29 by Aaron Bentley
Get merge working initially
81
        self.other_branch = None
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
82
        self.base_tree = base_tree
83
        self.ignore_zero = False
84
        self.backup_files = False
85
        self.interesting_ids = None
2590.2.5 by Aaron Bentley
Allow selected files to be specified instead of selected ids
86
        self.interesting_files = None
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
87
        self.show_base = False
1185.24.3 by Aaron Bentley
Integrated reprocessing into the rest of the merge stuff
88
        self.reprocess = False
2255.2.31 by Robert Collins
Work in progress to make merge_inner work with dirstate trees.
89
        self._pb = pb
1551.2.32 by Aaron Bentley
Handle progress phases more nicely in merge
90
        self.pp = None
2100.3.29 by Aaron Bentley
Get merge working initially
91
        self.recurse = recurse
1551.11.9 by Aaron Bentley
Apply change reporting to merge
92
        self.change_reporter = change_reporter
2590.2.11 by Aaron Bentley
Aggressively cache trees, use dirstate. re-mplement _add_parent.
93
        self._cached_trees = {}
3146.5.3 by Aaron Bentley
Avoid retrieving revision graph twice
94
        self._revision_graph = revision_graph
3146.5.1 by Aaron Bentley
Make merge --uncommitted work with merge-type weave
95
        self._base_is_ancestor = None
96
        self._base_is_other_ancestor = None
97
98
    @property
99
    def revision_graph(self):
100
        if self._revision_graph is None:
3146.5.3 by Aaron Bentley
Avoid retrieving revision graph twice
101
            self._revision_graph = self.this_branch.repository.get_graph()
3146.5.1 by Aaron Bentley
Make merge --uncommitted work with merge-type weave
102
        return self._revision_graph
103
104
    def _set_base_is_ancestor(self, value):
105
        self._base_is_ancestor = value
106
107
    def _get_base_is_ancestor(self):
108
        if self._base_is_ancestor is None:
109
            self._base_is_ancestor = self.revision_graph.is_ancestor(
110
                self.base_rev_id, self.this_basis)
111
        return self._base_is_ancestor
112
113
    base_is_ancestor = property(_get_base_is_ancestor, _set_base_is_ancestor)
114
115
    def _set_base_is_other_ancestor(self, value):
116
        self._base_is_other_ancestor = value
117
118
    def _get_base_is_other_ancestor(self):
119
        if self._base_is_other_ancestor is None:
3249.3.1 by John Arbash Meinel
Implement cherrypick support for Merge3
120
            if self.other_basis is None:
121
                return True
122
            self._base_is_other_ancestor = self.revision_graph.is_ancestor(
3146.5.3 by Aaron Bentley
Avoid retrieving revision graph twice
123
                self.base_rev_id, self.other_basis)
3146.5.1 by Aaron Bentley
Make merge --uncommitted work with merge-type weave
124
        return self._base_is_other_ancestor
125
126
    base_is_other_ancestor = property(_get_base_is_other_ancestor,
127
                                      _set_base_is_other_ancestor)
2590.2.11 by Aaron Bentley
Aggressively cache trees, use dirstate. re-mplement _add_parent.
128
1551.15.67 by Aaron Bentley
Stop using _merge_helper for merging
129
    @staticmethod
130
    def from_uncommitted(tree, other_tree, pb):
1551.15.74 by Aaron Bentley
Textual updates from review
131
        """Return a Merger for uncommitted changes in other_tree.
132
133
        :param tree: The tree to merge into
134
        :param other_tree: The tree to get uncommitted changes from
135
        :param pb: A progress indicator
136
        """
1551.15.67 by Aaron Bentley
Stop using _merge_helper for merging
137
        merger = Merger(tree.branch, other_tree, other_tree.basis_tree(), tree,
138
                        pb)
139
        merger.base_rev_id = merger.base_tree.get_revision_id()
140
        merger.other_rev_id = None
3146.5.1 by Aaron Bentley
Make merge --uncommitted work with merge-type weave
141
        merger.other_basis = merger.base_rev_id
1551.15.67 by Aaron Bentley
Stop using _merge_helper for merging
142
        return merger
143
144
    @classmethod
145
    def from_mergeable(klass, tree, mergeable, pb):
1551.15.74 by Aaron Bentley
Textual updates from review
146
        """Return a Merger for a bundle or merge directive.
147
148
        :param tree: The tree to merge changes into
149
        :param mergeable: A merge directive or bundle
150
        :param pb: A progress indicator
151
        """
1551.15.67 by Aaron Bentley
Stop using _merge_helper for merging
152
        mergeable.install_revisions(tree.branch.repository)
153
        base_revision_id, other_revision_id, verified =\
154
            mergeable.get_merge_request(tree.branch.repository)
3146.5.3 by Aaron Bentley
Avoid retrieving revision graph twice
155
        revision_graph = tree.branch.repository.get_graph()
1551.19.44 by Aaron Bentley
Fix handling of old merge directives with stricter get_parent_map
156
        if base_revision_id is not None:
157
            if (base_revision_id != _mod_revision.NULL_REVISION and
158
                revision_graph.is_ancestor(
159
                base_revision_id, tree.branch.last_revision())):
160
                base_revision_id = None
161
            else:
162
                warning('Performing cherrypick')
1551.15.67 by Aaron Bentley
Stop using _merge_helper for merging
163
        merger = klass.from_revision_ids(pb, tree, other_revision_id,
3146.5.3 by Aaron Bentley
Avoid retrieving revision graph twice
164
                                         base_revision_id, revision_graph=
165
                                         revision_graph)
1551.15.67 by Aaron Bentley
Stop using _merge_helper for merging
166
        return merger, verified
167
168
    @staticmethod
3249.3.1 by John Arbash Meinel
Implement cherrypick support for Merge3
169
    def from_revision_ids(pb, tree, other, base=None, other_branch=None,
3146.5.3 by Aaron Bentley
Avoid retrieving revision graph twice
170
                          base_branch=None, revision_graph=None):
1551.15.74 by Aaron Bentley
Textual updates from review
171
        """Return a Merger for revision-ids.
172
173
        :param tree: The tree to merge changes into
174
        :param other: The revision-id to use as OTHER
175
        :param base: The revision-id to use as BASE.  If not specified, will
176
            be auto-selected.
177
        :param other_branch: A branch containing the other revision-id.  If
3249.3.1 by John Arbash Meinel
Implement cherrypick support for Merge3
178
            not supplied, tree.branch is used.
1551.15.74 by Aaron Bentley
Textual updates from review
179
        :param base_branch: A branch containing the base revision-id.  If
3249.3.1 by John Arbash Meinel
Implement cherrypick support for Merge3
180
            not supplied, other_branch or tree.branch will be used.
181
        :param revision_graph: If you have a revision_graph precomputed, pass
182
            it in, otherwise it will be created for you.
1551.15.74 by Aaron Bentley
Textual updates from review
183
        :param pb: A progress indicator
184
        """
3249.3.1 by John Arbash Meinel
Implement cherrypick support for Merge3
185
        merger = Merger(tree.branch, this_tree=tree, pb=pb,
3146.5.3 by Aaron Bentley
Avoid retrieving revision graph twice
186
                        revision_graph=revision_graph)
1551.15.67 by Aaron Bentley
Stop using _merge_helper for merging
187
        if other_branch is None:
3249.3.1 by John Arbash Meinel
Implement cherrypick support for Merge3
188
            other_branch = tree.branch
1551.15.67 by Aaron Bentley
Stop using _merge_helper for merging
189
        merger.set_other_revision(other, other_branch)
190
        if base is None:
191
            merger.find_base()
192
        else:
193
            if base_branch is None:
194
                base_branch = other_branch
195
            merger.set_base_revision(base, base_branch)
196
        return merger
197
2590.2.11 by Aaron Bentley
Aggressively cache trees, use dirstate. re-mplement _add_parent.
198
    def revision_tree(self, revision_id, branch=None):
199
        if revision_id not in self._cached_trees:
200
            if branch is None:
201
                branch = self.this_branch
202
            try:
203
                tree = self.this_tree.revision_tree(revision_id)
204
            except errors.NoSuchRevisionInTree:
205
                tree = branch.repository.revision_tree(revision_id)
206
            self._cached_trees[revision_id] = tree
207
        return self._cached_trees[revision_id]
208
2485.8.58 by Vincent Ladeuil
merge bzr.dev@1617
209
    def _get_tree(self, treespec, possible_transports=None):
2590.2.11 by Aaron Bentley
Aggressively cache trees, use dirstate. re-mplement _add_parent.
210
        from bzrlib import workingtree
211
        location, revno = treespec
212
        if revno is None:
213
            tree = workingtree.WorkingTree.open_containing(location)[0]
214
            return tree.branch, tree
2485.8.58 by Vincent Ladeuil
merge bzr.dev@1617
215
        branch = Branch.open_containing(location, possible_transports)[0]
2590.2.11 by Aaron Bentley
Aggressively cache trees, use dirstate. re-mplement _add_parent.
216
        if revno == -1:
217
            revision_id = branch.last_revision()
218
        else:
219
            revision_id = branch.get_rev_id(revno)
220
        revision_id = ensure_null(revision_id)
221
        return branch, self.revision_tree(revision_id, branch)
1185.12.83 by Aaron Bentley
Preliminary weave merge support
222
223
    def ensure_revision_trees(self):
224
        if self.this_revision_tree is None:
2590.2.11 by Aaron Bentley
Aggressively cache trees, use dirstate. re-mplement _add_parent.
225
            self.this_basis_tree = self.revision_tree(self.this_basis)
1185.35.5 by Aaron Bentley
Made weave merge succeed if interesting files match history
226
            if self.this_basis == self.this_rev_id:
227
                self.this_revision_tree = self.this_basis_tree
228
1185.12.83 by Aaron Bentley
Preliminary weave merge support
229
        if self.other_rev_id is None:
230
            other_basis_tree = self.revision_tree(self.other_basis)
1852.10.3 by Robert Collins
Remove all uses of compare_trees and replace with Tree.changes_from throughout bzrlib.
231
            changes = other_basis_tree.changes_from(self.other_tree)
1185.12.83 by Aaron Bentley
Preliminary weave merge support
232
            if changes.has_changed():
233
                raise WorkingTreeNotRevision(self.this_tree)
1773.4.1 by Martin Pool
Add pyflakes makefile target; fix many warnings
234
            other_rev_id = self.other_basis
1185.12.83 by Aaron Bentley
Preliminary weave merge support
235
            self.other_tree = other_basis_tree
236
237
    def file_revisions(self, file_id):
238
        self.ensure_revision_trees()
239
        def get_id(tree, file_id):
240
            revision_id = tree.inventory[file_id].revision
241
            return revision_id
1185.35.5 by Aaron Bentley
Made weave merge succeed if interesting files match history
242
        if self.this_rev_id is None:
243
            if self.this_basis_tree.get_file_sha1(file_id) != \
244
                self.this_tree.get_file_sha1(file_id):
245
                raise WorkingTreeNotRevision(self.this_tree)
246
247
        trees = (self.this_basis_tree, self.other_tree)
1185.12.83 by Aaron Bentley
Preliminary weave merge support
248
        return [get_id(tree, file_id) for tree in trees]
249
1185.82.44 by Aaron Bentley
Switch to merge_changeset in test suite
250
    def check_basis(self, check_clean, require_commits=True):
251
        if self.this_basis is None and require_commits is True:
2249.3.1 by John Arbash Meinel
Mention using 'bzr pull' if there are no commits in current branch
252
            raise BzrCommandError("This branch has no commits."
253
                                  " (perhaps you would prefer 'bzr pull')")
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
254
        if check_clean:
255
            self.compare_basis()
256
            if self.this_basis != self.this_rev_id:
2796.2.1 by Aaron Bentley
Begin work on reconfigure command
257
                raise errors.UncommittedChanges(self.this_tree)
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
258
259
    def compare_basis(self):
2590.2.20 by Aaron Bentley
Fix handling of ghost base trees
260
        try:
261
            basis_tree = self.revision_tree(self.this_tree.last_revision())
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
262
        except errors.NoSuchRevision:
2590.2.20 by Aaron Bentley
Fix handling of ghost base trees
263
            basis_tree = self.this_tree.basis_tree()
264
        changes = self.this_tree.changes_from(basis_tree)
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
265
        if not changes.has_changed():
266
            self.this_rev_id = self.this_basis
267
268
    def set_interesting_files(self, file_list):
2590.2.7 by Aaron Bentley
Misc cleanup
269
        self.interesting_files = file_list
1457.1.8 by Robert Collins
Replace the WorkingTree.revert method algorithm with a call to merge_inner.
270
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
271
    def set_pending(self):
2644.1.1 by Wouter van Heyst
Fix bug #127115 by checking for self.other_rev_id being None in Merger.set_pending()
272
        if not self.base_is_ancestor or not self.base_is_other_ancestor or self.other_rev_id is None:
1185.12.77 by Aaron Bentley
Prevented all ancestors from being marked as pending merges
273
            return
2590.2.11 by Aaron Bentley
Aggressively cache trees, use dirstate. re-mplement _add_parent.
274
        self._add_parent()
275
276
    def _add_parent(self):
277
        new_parents = self.this_tree.get_parent_ids() + [self.other_rev_id]
2590.2.20 by Aaron Bentley
Fix handling of ghost base trees
278
        new_parent_trees = []
279
        for revision_id in new_parents:
280
            try:
281
                tree = self.revision_tree(revision_id)
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
282
            except errors.NoSuchRevision:
2590.2.20 by Aaron Bentley
Fix handling of ghost base trees
283
                tree = None
284
            else:
285
                tree.lock_read()
286
            new_parent_trees.append((revision_id, tree))
2590.2.11 by Aaron Bentley
Aggressively cache trees, use dirstate. re-mplement _add_parent.
287
        try:
2590.2.20 by Aaron Bentley
Fix handling of ghost base trees
288
            self.this_tree.set_parent_trees(new_parent_trees,
289
                                            allow_leftmost_as_ghost=True)
2590.2.11 by Aaron Bentley
Aggressively cache trees, use dirstate. re-mplement _add_parent.
290
        finally:
291
            for _revision_id, tree in new_parent_trees:
2590.2.20 by Aaron Bentley
Fix handling of ghost base trees
292
                if tree is not None:
293
                    tree.unlock()
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
294
2485.8.37 by Vincent Ladeuil
Fix merge multiple connections. Test suite *not* passing (sftp
295
    def set_other(self, other_revision, possible_transports=None):
1979.2.1 by Robert Collins
(robertc) adds a convenience method "merge_from_branch" to WorkingTree.
296
        """Set the revision and tree to merge from.
297
298
        This sets the other_tree, other_rev_id, other_basis attributes.
299
300
        :param other_revision: The [path, revision] list to merge from.
301
        """
2485.8.58 by Vincent Ladeuil
merge bzr.dev@1617
302
        self.other_branch, self.other_tree = self._get_tree(other_revision,
303
                                                            possible_transports)
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
304
        if other_revision[1] == -1:
2598.5.4 by Aaron Bentley
Restore original Branch.last_revision behavior, fix bits that care
305
            self.other_rev_id = _mod_revision.ensure_null(
306
                self.other_branch.last_revision())
2598.5.1 by Aaron Bentley
Start eliminating the use of None to indicate null revision
307
            if _mod_revision.is_null(self.other_rev_id):
2100.3.31 by Aaron Bentley
Merged bzr.dev (17 tests failing)
308
                raise NoCommits(self.other_branch)
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
309
            self.other_basis = self.other_rev_id
310
        elif other_revision[1] is not None:
2100.3.31 by Aaron Bentley
Merged bzr.dev (17 tests failing)
311
            self.other_rev_id = self.other_branch.get_rev_id(other_revision[1])
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
312
            self.other_basis = self.other_rev_id
313
        else:
314
            self.other_rev_id = None
2100.3.31 by Aaron Bentley
Merged bzr.dev (17 tests failing)
315
            self.other_basis = self.other_branch.last_revision()
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
316
            if self.other_basis is None:
2100.3.31 by Aaron Bentley
Merged bzr.dev (17 tests failing)
317
                raise NoCommits(self.other_branch)
2590.2.11 by Aaron Bentley
Aggressively cache trees, use dirstate. re-mplement _add_parent.
318
        if self.other_rev_id is not None:
319
            self._cached_trees[self.other_rev_id] = self.other_tree
2590.2.19 by Aaron Bentley
Avoid fetch within a repository
320
        self._maybe_fetch(self.other_branch,self.this_branch, self.other_basis)
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
321
2100.3.29 by Aaron Bentley
Get merge working initially
322
    def set_other_revision(self, revision_id, other_branch):
323
        """Set 'other' based on a branch and revision id
324
325
        :param revision_id: The revision to use for a tree
326
        :param other_branch: The branch containing this tree
327
        """
328
        self.other_rev_id = revision_id
329
        self.other_branch = other_branch
2590.2.19 by Aaron Bentley
Avoid fetch within a repository
330
        self._maybe_fetch(other_branch, self.this_branch, self.other_rev_id)
2100.3.29 by Aaron Bentley
Get merge working initially
331
        self.other_tree = self.revision_tree(revision_id)
332
        self.other_basis = revision_id
333
2520.4.110 by Aaron Bentley
Implement cherrypick support for merge directives
334
    def set_base_revision(self, revision_id, branch):
335
        """Set 'base' based on a branch and revision id
336
337
        :param revision_id: The revision to use for a tree
338
        :param branch: The branch containing this tree
339
        """
340
        self.base_rev_id = revision_id
341
        self.base_branch = branch
2520.4.132 by Aaron Bentley
Merge from bzr.dev
342
        self._maybe_fetch(branch, self.this_branch, revision_id)
2520.4.110 by Aaron Bentley
Implement cherrypick support for merge directives
343
        self.base_tree = self.revision_tree(revision_id)
2520.4.132 by Aaron Bentley
Merge from bzr.dev
344
2590.2.19 by Aaron Bentley
Avoid fetch within a repository
345
    def _maybe_fetch(self, source, target, revision_id):
2665.5.2 by Aaron Bentley
Switch commit and merge to Repository.has_same_location
346
        if not source.repository.has_same_location(target.repository):
2590.2.19 by Aaron Bentley
Avoid fetch within a repository
347
            target.fetch(source, revision_id)
2520.4.110 by Aaron Bentley
Implement cherrypick support for merge directives
348
1185.82.25 by Aaron Bentley
Added changeset-merging functionality
349
    def find_base(self):
2590.2.22 by Aaron Bentley
Remove cruft
350
        revisions = [ensure_null(self.this_basis),
351
                     ensure_null(self.other_basis)]
352
        if NULL_REVISION in revisions:
353
            self.base_rev_id = NULL_REVISION
354
        else:
3146.5.1 by Aaron Bentley
Make merge --uncommitted work with merge-type weave
355
            self.base_rev_id, steps = self.revision_graph.find_unique_lca(
356
                revisions[0], revisions[1], count_steps=True)
2590.2.22 by Aaron Bentley
Remove cruft
357
            if self.base_rev_id == NULL_REVISION:
358
                raise UnrelatedBranches()
1551.19.10 by Aaron Bentley
Merge now warns when it encounters a criss-cross
359
            if steps > 1:
1551.19.11 by Aaron Bentley
Add criss-cross help topic
360
                warning('Warning: criss-cross merge encountered.  See bzr'
361
                        ' help criss-cross.')
2590.2.13 by Aaron Bentley
Make find_base implement the base_finding code
362
        self.base_tree = self.revision_tree(self.base_rev_id)
363
        self.base_is_ancestor = True
2590.2.18 by Aaron Bentley
Merge is_ancestor fix
364
        self.base_is_other_ancestor = True
1185.82.25 by Aaron Bentley
Added changeset-merging functionality
365
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
366
    def set_base(self, base_revision):
1979.2.1 by Robert Collins
(robertc) adds a convenience method "merge_from_branch" to WorkingTree.
367
        """Set the base revision to use for the merge.
368
369
        :param base_revision: A 2-list containing a path and revision number.
370
        """
1185.12.96 by Aaron Bentley
Merge from mpool
371
        mutter("doing merge() with no base_revision specified")
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
372
        if base_revision == [None, None]:
2590.2.13 by Aaron Bentley
Make find_base implement the base_finding code
373
            self.find_base()
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
374
        else:
2590.2.11 by Aaron Bentley
Aggressively cache trees, use dirstate. re-mplement _add_parent.
375
            base_branch, self.base_tree = self._get_tree(base_revision)
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
376
            if base_revision[1] == -1:
377
                self.base_rev_id = base_branch.last_revision()
378
            elif base_revision[1] is None:
2598.5.3 by Aaron Bentley
Push NULL_REVISION deeper
379
                self.base_rev_id = _mod_revision.NULL_REVISION
493 by Martin Pool
- Merge aaron's merge command
380
            else:
2598.5.3 by Aaron Bentley
Push NULL_REVISION deeper
381
                self.base_rev_id = _mod_revision.ensure_null(
382
                    base_branch.get_rev_id(base_revision[1]))
2590.2.19 by Aaron Bentley
Avoid fetch within a repository
383
            self._maybe_fetch(base_branch, self.this_branch, self.base_rev_id)
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
384
3008.1.8 by Michael Hudson
extract merger creation into a method
385
    def make_merger(self):
2255.2.31 by Robert Collins
Work in progress to make merge_inner work with dirstate trees.
386
        kwargs = {'working_tree':self.this_tree, 'this_tree': self.this_tree,
387
                  'other_tree': self.other_tree,
1551.2.32 by Aaron Bentley
Handle progress phases more nicely in merge
388
                  'interesting_ids': self.interesting_ids,
2590.2.5 by Aaron Bentley
Allow selected files to be specified instead of selected ids
389
                  'interesting_files': self.interesting_files,
3008.1.11 by Michael Hudson
restore the default behaviour of Merge3Merger.__init__().
390
                  'pp': self.pp,
391
                  'do_merge': False}
1534.7.84 by Aaron Bentley
Added reprocess support, support for varying merge types
392
        if self.merge_type.requires_base:
393
            kwargs['base_tree'] = self.base_tree
1534.7.137 by Aaron Bentley
Avoided generating a new tree for every weave merge
394
        if self.merge_type.supports_reprocess:
395
            kwargs['reprocess'] = self.reprocess
396
        elif self.reprocess:
1551.6.14 by Aaron Bentley
Tweaks from merge review
397
            raise BzrError("Conflict reduction is not supported for merge"
398
                                  " type %s." % self.merge_type)
1534.7.137 by Aaron Bentley
Avoided generating a new tree for every weave merge
399
        if self.merge_type.supports_show_base:
400
            kwargs['show_base'] = self.show_base
401
        elif self.show_base:
1534.8.2 by Aaron Bentley
Implemented weave merge
402
            raise BzrError("Showing base is not supported for this"
3008.1.14 by Michael Hudson
trivial commit for testing
403
                           " merge type. %s" % self.merge_type)
3062.2.7 by Aaron Bentley
Prevent reverse cherry-picking with weave
404
        if (not getattr(self.merge_type, 'supports_reverse_cherrypick', True)
405
            and not self.base_is_other_ancestor):
406
            raise errors.CannotReverseCherrypick()
3249.3.1 by John Arbash Meinel
Implement cherrypick support for Merge3
407
        if self.merge_type.supports_cherrypick:
3062.2.9 by Aaron Bentley
Don't use the base if not cherrypicking
408
            kwargs['cherrypick'] = (not self.base_is_ancestor or
409
                                    not self.base_is_other_ancestor)
3008.1.8 by Michael Hudson
extract merger creation into a method
410
        return self.merge_type(pb=self._pb,
411
                               change_reporter=self.change_reporter,
412
                               **kwargs)
413
414
    def do_merge(self):
2255.2.50 by John Arbash Meinel
merge only needs a lock_tree_write() on the working tree, not a full lock_write()
415
        self.this_tree.lock_tree_write()
2255.2.31 by Robert Collins
Work in progress to make merge_inner work with dirstate trees.
416
        if self.base_tree is not None:
417
            self.base_tree.lock_read()
418
        if self.other_tree is not None:
419
            self.other_tree.lock_read()
420
        try:
3249.3.1 by John Arbash Meinel
Implement cherrypick support for Merge3
421
            merge = self.make_merger()
3008.1.6 by Michael Hudson
chop up Merge3Merger.__init__ into pieces
422
            merge.do_merge()
2255.2.226 by Robert Collins
Get merge_nested finally working: change nested tree iterators to take file_ids, and ensure the right branch is connected to in the merge logic. May not be suitable for shared repositories yet.
423
            if self.recurse == 'down':
424
                for path, file_id in self.this_tree.iter_references():
425
                    sub_tree = self.this_tree.get_nested_tree(file_id, path)
426
                    other_revision = self.other_tree.get_reference_revision(
427
                        file_id, path)
428
                    if  other_revision == sub_tree.last_revision():
429
                        continue
430
                    sub_merge = Merger(sub_tree.branch, this_tree=sub_tree)
431
                    sub_merge.merge_type = self.merge_type
432
                    relpath = self.this_tree.relpath(path)
433
                    other_branch = self.other_branch.reference_parent(file_id, relpath)
434
                    sub_merge.set_other_revision(other_revision, other_branch)
435
                    base_revision = self.base_tree.get_reference_revision(file_id)
436
                    sub_merge.base_tree = \
437
                        sub_tree.branch.repository.revision_tree(base_revision)
3249.3.1 by John Arbash Meinel
Implement cherrypick support for Merge3
438
                    sub_merge.base_rev_id = base_revision
2255.2.226 by Robert Collins
Get merge_nested finally working: change nested tree iterators to take file_ids, and ensure the right branch is connected to in the merge logic. May not be suitable for shared repositories yet.
439
                    sub_merge.do_merge()
440
2255.2.31 by Robert Collins
Work in progress to make merge_inner work with dirstate trees.
441
        finally:
442
            if self.other_tree is not None:
443
                self.other_tree.unlock()
444
            if self.base_tree is not None:
445
                self.base_tree.unlock()
446
            self.this_tree.unlock()
1534.7.151 by Aaron Bentley
Fixed all changes applied successfully
447
        if len(merge.cooked_conflicts) == 0:
3200.1.1 by James Westby
Make pull --quiet more quiet. Fixes #185907.
448
            if not self.ignore_zero and not is_quiet():
1534.7.141 by Aaron Bentley
Added conflict reporting
449
                note("All changes applied successfully.")
450
        else:
451
            note("%d conflicts encountered." % len(merge.cooked_conflicts))
452
1534.7.134 by Aaron Bentley
Hid raw conflicts
453
        return len(merge.cooked_conflicts)
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
454
1545.2.4 by Aaron Bentley
PEP8 fixes
455
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
456
class Merge3Merger(object):
1534.7.167 by Aaron Bentley
PEP8 and comment cleanups
457
    """Three-way merger that uses the merge3 text merger"""
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
458
    requires_base = True
459
    supports_reprocess = True
460
    supports_show_base = True
461
    history_based = False
3249.3.1 by John Arbash Meinel
Implement cherrypick support for Merge3
462
    supports_cherrypick = True
3062.2.7 by Aaron Bentley
Prevent reverse cherry-picking with weave
463
    supports_reverse_cherrypick = True
2590.2.7 by Aaron Bentley
Misc cleanup
464
    winner_idx = {"this": 2, "other": 1, "conflict": 1}
1534.7.167 by Aaron Bentley
PEP8 and comment cleanups
465
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
466
    def __init__(self, working_tree, this_tree, base_tree, other_tree, 
1558.2.2 by Aaron Bentley
Make remerge honour interesting-ids
467
                 interesting_ids=None, reprocess=False, show_base=False,
2590.2.5 by Aaron Bentley
Allow selected files to be specified instead of selected ids
468
                 pb=DummyProgress(), pp=None, change_reporter=None,
3249.3.1 by John Arbash Meinel
Implement cherrypick support for Merge3
469
                 interesting_files=None, do_merge=True,
470
                 cherrypick=False):
2590.2.10 by Aaron Bentley
Updates from review
471
        """Initialize the merger object and perform the merge.
472
473
        :param working_tree: The working tree to apply the merge to
474
        :param this_tree: The local tree in the merge operation
475
        :param base_tree: The common tree in the merge operation
476
        :param other_tree: The other other tree to merge changes from
477
        :param interesting_ids: The file_ids of files that should be
478
            participate in the merge.  May not be combined with
479
            interesting_files.
480
        :param: reprocess If True, perform conflict-reduction processing.
481
        :param show_base: If True, show the base revision in text conflicts.
482
            (incompatible with reprocess)
483
        :param pb: A Progress bar
484
        :param pp: A ProgressPhase object
485
        :param change_reporter: An object that should report changes made
486
        :param interesting_files: The tree-relative paths of files that should
487
            participate in the merge.  If these paths refer to directories,
488
            the contents of those directories will also be included.  May not
489
            be combined with interesting_ids.  If neither interesting_files nor
490
            interesting_ids is specified, all files may participate in the
491
            merge.
492
        """
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
493
        object.__init__(self)
3376.2.4 by Martin Pool
Remove every assert statement from bzrlib!
494
        if interesting_files is not None and interesting_ids is not None:
495
            raise ValueError(
496
                'specify either interesting_ids or interesting_files')
2590.2.4 by Aaron Bentley
Move entry generation to a helper
497
        self.interesting_ids = interesting_ids
2590.2.5 by Aaron Bentley
Allow selected files to be specified instead of selected ids
498
        self.interesting_files = interesting_files
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
499
        self.this_tree = working_tree
500
        self.base_tree = base_tree
501
        self.other_tree = other_tree
502
        self._raw_conflicts = []
503
        self.cooked_conflicts = []
504
        self.reprocess = reprocess
505
        self.show_base = show_base
1534.9.1 by Aaron Bentley
Added progress bars to merge
506
        self.pb = pb
1551.2.32 by Aaron Bentley
Handle progress phases more nicely in merge
507
        self.pp = pp
1551.11.9 by Aaron Bentley
Apply change reporting to merge
508
        self.change_reporter = change_reporter
3249.3.1 by John Arbash Meinel
Implement cherrypick support for Merge3
509
        self.cherrypick = cherrypick
1551.2.32 by Aaron Bentley
Handle progress phases more nicely in merge
510
        if self.pp is None:
511
            self.pp = ProgressPhase("Merge phase", 3, self.pb)
3008.1.11 by Michael Hudson
restore the default behaviour of Merge3Merger.__init__().
512
        if do_merge:
513
            self.do_merge()
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
514
3008.1.6 by Michael Hudson
chop up Merge3Merger.__init__ into pieces
515
    def do_merge(self):
516
        self.this_tree.lock_tree_write()
517
        self.base_tree.lock_read()
518
        self.other_tree.lock_read()
519
        self.tt = TreeTransform(self.this_tree, self.pb)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
520
        try:
1551.2.32 by Aaron Bentley
Handle progress phases more nicely in merge
521
            self.pp.next_phase()
3008.1.21 by Aaron Bentley
Make compute_transform private, test make_preview_transform
522
            self._compute_transform()
1551.2.32 by Aaron Bentley
Handle progress phases more nicely in merge
523
            self.pp.next_phase()
2590.2.17 by Aaron Bentley
Avoid redundant conflict check
524
            results = self.tt.apply(no_conflicts=True)
1558.4.3 by Aaron Bentley
Merge_modified performance/concurrency fix
525
            self.write_modified(results)
1534.10.12 by Aaron Bentley
Merge produces new conflicts
526
            try:
3008.1.6 by Michael Hudson
chop up Merge3Merger.__init__ into pieces
527
                self.this_tree.add_conflicts(self.cooked_conflicts)
1534.10.12 by Aaron Bentley
Merge produces new conflicts
528
            except UnsupportedOperation:
529
                pass
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
530
        finally:
1711.7.7 by John Arbash Meinel
Don't squelch errors in tt.finalize()
531
            self.tt.finalize()
2255.7.52 by Robert Collins
Lock trees in Merge3Merger correctly.
532
            self.other_tree.unlock()
533
            self.base_tree.unlock()
534
            self.this_tree.unlock()
1551.2.31 by Aaron Bentley
Got merge and revert using nested pbs
535
            self.pb.clear()
1534.7.192 by Aaron Bentley
Record hashes produced by merges
536
3008.1.9 by Michael Hudson
wanton hacking that lets me write an efficient version of get_diff_as_merged
537
    def make_preview_transform(self):
538
        self.base_tree.lock_read()
539
        self.other_tree.lock_read()
540
        self.tt = TransformPreview(self.this_tree)
541
        try:
542
            self.pp.next_phase()
3008.1.21 by Aaron Bentley
Make compute_transform private, test make_preview_transform
543
            self._compute_transform()
3008.1.9 by Michael Hudson
wanton hacking that lets me write an efficient version of get_diff_as_merged
544
            self.pp.next_phase()
545
        finally:
546
            self.other_tree.unlock()
547
            self.base_tree.unlock()
548
            self.pb.clear()
549
        return self.tt
550
3008.1.21 by Aaron Bentley
Make compute_transform private, test make_preview_transform
551
    def _compute_transform(self):
3008.1.6 by Michael Hudson
chop up Merge3Merger.__init__ into pieces
552
        entries = self._entries3()
553
        child_pb = ui.ui_factory.nested_progress_bar()
554
        try:
555
            for num, (file_id, changed, parents3, names3,
556
                      executable3) in enumerate(entries):
557
                child_pb.update('Preparing file merge', num, len(entries))
558
                self._merge_names(file_id, parents3, names3)
559
                if changed:
560
                    file_status = self.merge_contents(file_id)
561
                else:
562
                    file_status = 'unmodified'
563
                self._merge_executable(file_id,
564
                    executable3, file_status)
565
        finally:
566
            child_pb.finished()
567
        self.fix_root()
568
        self.pp.next_phase()
569
        child_pb = ui.ui_factory.nested_progress_bar()
570
        try:
571
            fs_conflicts = resolve_conflicts(self.tt, child_pb,
572
                lambda t, c: conflict_pass(t, c, self.other_tree))
573
        finally:
574
            child_pb.finished()
575
        if self.change_reporter is not None:
576
            from bzrlib import delta
577
            delta.report_changes(
3254.1.1 by Aaron Bentley
Make Tree.iter_changes a public method
578
                self.tt.iter_changes(), self.change_reporter)
3008.1.6 by Michael Hudson
chop up Merge3Merger.__init__ into pieces
579
        self.cook_conflicts(fs_conflicts)
580
        for conflict in self.cooked_conflicts:
581
            warning(conflict)
582
2590.2.4 by Aaron Bentley
Move entry generation to a helper
583
    def _entries3(self):
2590.2.7 by Aaron Bentley
Misc cleanup
584
        """Gather data about files modified between three trees.
585
586
        Return a list of tuples of file_id, changed, parents3, names3,
587
        executable3.  changed is a boolean indicating whether the file contents
588
        or kind were changed.  parents3 is a tuple of parent ids for base,
589
        other and this.  names3 is a tuple of names for base, other and this.
590
        executable3 is a tuple of execute-bit values for base, other and this.
591
        """
2590.2.4 by Aaron Bentley
Move entry generation to a helper
592
        result = []
3254.1.1 by Aaron Bentley
Make Tree.iter_changes a public method
593
        iterator = self.other_tree.iter_changes(self.base_tree,
2590.2.5 by Aaron Bentley
Allow selected files to be specified instead of selected ids
594
                include_unchanged=True, specific_files=self.interesting_files,
595
                extra_trees=[self.this_tree])
2590.2.4 by Aaron Bentley
Move entry generation to a helper
596
        for (file_id, paths, changed, versioned, parents, names, kind,
2590.2.5 by Aaron Bentley
Allow selected files to be specified instead of selected ids
597
             executable) in iterator:
2590.2.4 by Aaron Bentley
Move entry generation to a helper
598
            if (self.interesting_ids is not None and
599
                file_id not in self.interesting_ids):
600
                continue
601
            if file_id in self.this_tree.inventory:
602
                entry = self.this_tree.inventory[file_id]
603
                this_name = entry.name
604
                this_parent = entry.parent_id
605
                this_executable = entry.executable
606
            else:
607
                this_name = None
608
                this_parent = None
609
                this_executable = None
610
            parents3 = parents + (this_parent,)
611
            names3 = names + (this_name,)
612
            executable3 = executable + (this_executable,)
613
            result.append((file_id, changed, parents3, names3, executable3))
614
        return result
615
1731.1.33 by Aaron Bentley
Revert no-special-root changes
616
    def fix_root(self):
617
        try:
618
            self.tt.final_kind(self.tt.root)
619
        except NoSuchFile:
620
            self.tt.cancel_deletion(self.tt.root)
621
        if self.tt.final_file_id(self.tt.root) is None:
622
            self.tt.version_file(self.tt.tree_file_id(self.tt.root), 
623
                                 self.tt.root)
624
        if self.other_tree.inventory.root is None:
625
            return
2946.3.3 by John Arbash Meinel
Prefer tree.get_root_id() as more explicit than tree.path2id('')
626
        other_root_file_id = self.other_tree.get_root_id()
1731.1.33 by Aaron Bentley
Revert no-special-root changes
627
        other_root = self.tt.trans_id_file_id(other_root_file_id)
628
        if other_root == self.tt.root:
629
            return
630
        try:
631
            self.tt.final_kind(other_root)
632
        except NoSuchFile:
633
            return
634
        self.reparent_children(self.other_tree.inventory.root, self.tt.root)
635
        self.tt.cancel_creation(other_root)
636
        self.tt.cancel_versioning(other_root)
637
638
    def reparent_children(self, ie, target):
639
        for thing, child in ie.children.iteritems():
640
            trans_id = self.tt.trans_id_file_id(child.file_id)
641
            self.tt.adjust_path(self.tt.final_name(trans_id), target, trans_id)
642
1534.7.192 by Aaron Bentley
Record hashes produced by merges
643
    def write_modified(self, results):
644
        modified_hashes = {}
645
        for path in results.modified_paths:
646
            file_id = self.this_tree.path2id(self.this_tree.relpath(path))
647
            if file_id is None:
648
                continue
649
            hash = self.this_tree.get_file_sha1(file_id)
650
            if hash is None:
651
                continue
652
            modified_hashes[file_id] = hash
653
        self.this_tree.set_merge_modified(modified_hashes)
654
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
655
    @staticmethod
656
    def parent(entry, file_id):
1534.7.157 by Aaron Bentley
Added more docs
657
        """Determine the parent for a file_id (used as a key method)"""
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
658
        if entry is None:
659
            return None
660
        return entry.parent_id
661
662
    @staticmethod
663
    def name(entry, file_id):
1534.7.157 by Aaron Bentley
Added more docs
664
        """Determine the name for a file_id (used as a key method)"""
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
665
        if entry is None:
666
            return None
667
        return entry.name
668
    
669
    @staticmethod
670
    def contents_sha1(tree, file_id):
1534.7.157 by Aaron Bentley
Added more docs
671
        """Determine the sha1 of the file contents (used as a key method)."""
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
672
        if file_id not in tree:
673
            return None
674
        return tree.get_file_sha1(file_id)
675
676
    @staticmethod
677
    def executable(tree, file_id):
1534.7.157 by Aaron Bentley
Added more docs
678
        """Determine the executability of a file-id (used as a key method)."""
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
679
        if file_id not in tree:
680
            return None
681
        if tree.kind(file_id) != "file":
682
            return False
683
        return tree.is_executable(file_id)
684
685
    @staticmethod
686
    def kind(tree, file_id):
1534.7.157 by Aaron Bentley
Added more docs
687
        """Determine the kind of a file-id (used as a key method)."""
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
688
        if file_id not in tree:
689
            return None
690
        return tree.kind(file_id)
691
692
    @staticmethod
2590.2.8 by Aaron Bentley
Restore conflict handling changes
693
    def _three_way(base, other, this):
694
        #if base == other, either they all agree, or only THIS has changed.
695
        if base == other:
696
            return 'this'
2590.2.10 by Aaron Bentley
Updates from review
697
        elif this not in (base, other):
2590.2.8 by Aaron Bentley
Restore conflict handling changes
698
            return 'conflict'
2590.2.10 by Aaron Bentley
Updates from review
699
        # "Ambiguous clean merge" -- both sides have made the same change.
2590.2.8 by Aaron Bentley
Restore conflict handling changes
700
        elif this == other:
701
            return "this"
2590.2.10 by Aaron Bentley
Updates from review
702
        # this == base: only other has changed.
2590.2.8 by Aaron Bentley
Restore conflict handling changes
703
        else:
704
            return "other"
705
706
    @staticmethod
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
707
    def scalar_three_way(this_tree, base_tree, other_tree, file_id, key):
708
        """Do a three-way test on a scalar.
709
        Return "this", "other" or "conflict", depending whether a value wins.
710
        """
711
        key_base = key(base_tree, file_id)
712
        key_other = key(other_tree, file_id)
713
        #if base == other, either they all agree, or only THIS has changed.
714
        if key_base == key_other:
715
            return "this"
716
        key_this = key(this_tree, file_id)
3376.2.4 by Martin Pool
Remove every assert statement from bzrlib!
717
        # "Ambiguous clean merge"
718
        if key_this == key_other:
719
            return "this"
720
        elif key_this == key_base:
721
            return "other"
722
        else:
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
723
            return "conflict"
724
725
    def merge_names(self, file_id):
726
        def get_entry(tree):
727
            if file_id in tree.inventory:
728
                return tree.inventory[file_id]
729
            else:
730
                return None
731
        this_entry = get_entry(self.this_tree)
732
        other_entry = get_entry(self.other_tree)
733
        base_entry = get_entry(self.base_tree)
2590.2.1 by Aaron Bentley
Start work on merging names based on iter_changes
734
        entries = (base_entry, other_entry, this_entry)
735
        names = []
736
        parents = []
737
        for entry in entries:
738
            if entry is None:
739
                names.append(None)
740
                parents.append(None)
741
            else:
742
                names.append(entry.name)
743
                parents.append(entry.parent_id)
2590.2.2 by Aaron Bentley
Do most name merging from iter_changes output
744
        return self._merge_names(file_id, parents, names)
2590.2.1 by Aaron Bentley
Start work on merging names based on iter_changes
745
2590.2.2 by Aaron Bentley
Do most name merging from iter_changes output
746
    def _merge_names(self, file_id, parents, names):
2590.2.7 by Aaron Bentley
Misc cleanup
747
        """Perform a merge on file_id names and parents"""
2590.2.1 by Aaron Bentley
Start work on merging names based on iter_changes
748
        base_name, other_name, this_name = names
749
        base_parent, other_parent, this_parent = parents
2590.2.2 by Aaron Bentley
Do most name merging from iter_changes output
750
2590.2.1 by Aaron Bentley
Start work on merging names based on iter_changes
751
        name_winner = self._three_way(*names)
752
753
        parent_id_winner = self._three_way(*parents)
2590.2.2 by Aaron Bentley
Do most name merging from iter_changes output
754
        if this_name is None:
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
755
            if name_winner == "this":
756
                name_winner = "other"
757
            if parent_id_winner == "this":
758
                parent_id_winner = "other"
759
        if name_winner == "this" and parent_id_winner == "this":
760
            return
761
        if name_winner == "conflict":
1534.7.181 by Aaron Bentley
Renamed a bunch of functions
762
            trans_id = self.tt.trans_id_file_id(file_id)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
763
            self._raw_conflicts.append(('name conflict', trans_id, 
2590.2.1 by Aaron Bentley
Start work on merging names based on iter_changes
764
                                        this_name, other_name))
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
765
        if parent_id_winner == "conflict":
1534.7.181 by Aaron Bentley
Renamed a bunch of functions
766
            trans_id = self.tt.trans_id_file_id(file_id)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
767
            self._raw_conflicts.append(('parent conflict', trans_id, 
2590.2.1 by Aaron Bentley
Start work on merging names based on iter_changes
768
                                        this_parent, other_parent))
2590.2.2 by Aaron Bentley
Do most name merging from iter_changes output
769
        if other_name is None:
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
770
            # it doesn't matter whether the result was 'other' or 
771
            # 'conflict'-- if there's no 'other', we leave it alone.
772
            return
773
        # if we get here, name_winner and parent_winner are set to safe values.
1534.7.181 by Aaron Bentley
Renamed a bunch of functions
774
        trans_id = self.tt.trans_id_file_id(file_id)
2590.2.7 by Aaron Bentley
Misc cleanup
775
        parent_id = parents[self.winner_idx[parent_id_winner]]
1731.1.33 by Aaron Bentley
Revert no-special-root changes
776
        if parent_id is not None:
777
            parent_trans_id = self.tt.trans_id_file_id(parent_id)
2590.2.7 by Aaron Bentley
Misc cleanup
778
            self.tt.adjust_path(names[self.winner_idx[name_winner]],
1731.1.33 by Aaron Bentley
Revert no-special-root changes
779
                                parent_trans_id, trans_id)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
780
781
    def merge_contents(self, file_id):
1534.7.157 by Aaron Bentley
Added more docs
782
        """Performa a merge on file_id contents."""
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
783
        def contents_pair(tree):
784
            if file_id not in tree:
785
                return (None, None)
786
            kind = tree.kind(file_id)
787
            if kind == "file":
788
                contents = tree.get_file_sha1(file_id)
789
            elif kind == "symlink":
790
                contents = tree.get_symlink_target(file_id)
791
            else:
792
                contents = None
793
            return kind, contents
1558.15.3 by Aaron Bentley
Handle binary files for diff3 merges
794
795
        def contents_conflict():
796
            trans_id = self.tt.trans_id_file_id(file_id)
797
            name = self.tt.final_name(trans_id)
798
            parent_id = self.tt.final_parent(trans_id)
799
            if file_id in self.this_tree.inventory:
800
                self.tt.unversion_file(trans_id)
1551.10.2 by Aaron Bentley
Handle merge with dangling inventory entries
801
                if file_id in self.this_tree:
802
                    self.tt.delete_contents(trans_id)
1558.15.3 by Aaron Bentley
Handle binary files for diff3 merges
803
            file_group = self._dump_conflicts(name, parent_id, file_id, 
804
                                              set_version=True)
805
            self._raw_conflicts.append(('contents conflict', file_group))
806
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
807
        # See SPOT run.  run, SPOT, run.
808
        # So we're not QUITE repeating ourselves; we do tricky things with
809
        # file kind...
810
        base_pair = contents_pair(self.base_tree)
811
        other_pair = contents_pair(self.other_tree)
812
        if base_pair == other_pair:
1534.7.145 by Aaron Bentley
More fixups after get_trans_id
813
            # OTHER introduced no changes
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
814
            return "unmodified"
815
        this_pair = contents_pair(self.this_tree)
816
        if this_pair == other_pair:
1534.7.145 by Aaron Bentley
More fixups after get_trans_id
817
            # THIS and OTHER introduced the same changes
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
818
            return "unmodified"
819
        else:
1534.7.181 by Aaron Bentley
Renamed a bunch of functions
820
            trans_id = self.tt.trans_id_file_id(file_id)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
821
            if this_pair == base_pair:
1534.7.145 by Aaron Bentley
More fixups after get_trans_id
822
                # only OTHER introduced changes
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
823
                if file_id in self.this_tree:
1534.7.145 by Aaron Bentley
More fixups after get_trans_id
824
                    # Remove any existing contents
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
825
                    self.tt.delete_contents(trans_id)
1534.7.147 by Aaron Bentley
Tweak to check inventory, not tree for file ids
826
                if file_id in self.other_tree:
1534.7.145 by Aaron Bentley
More fixups after get_trans_id
827
                    # OTHER changed the file
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
828
                    create_by_entry(self.tt, 
829
                                    self.other_tree.inventory[file_id], 
830
                                    self.other_tree, trans_id)
1534.7.147 by Aaron Bentley
Tweak to check inventory, not tree for file ids
831
                    if file_id not in self.this_tree.inventory:
1534.7.145 by Aaron Bentley
More fixups after get_trans_id
832
                        self.tt.version_file(file_id, trans_id)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
833
                    return "modified"
1534.7.147 by Aaron Bentley
Tweak to check inventory, not tree for file ids
834
                elif file_id in self.this_tree.inventory:
1534.7.145 by Aaron Bentley
More fixups after get_trans_id
835
                    # OTHER deleted the file
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
836
                    self.tt.unversion_file(trans_id)
837
                    return "deleted"
1534.7.145 by Aaron Bentley
More fixups after get_trans_id
838
            #BOTH THIS and OTHER introduced changes; scalar conflict
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
839
            elif this_pair[0] == "file" and other_pair[0] == "file":
1534.7.145 by Aaron Bentley
More fixups after get_trans_id
840
                # THIS and OTHER are both files, so text merge.  Either
841
                # BASE is a file, or both converted to files, so at least we
842
                # have agreement that output should be a file.
1558.15.3 by Aaron Bentley
Handle binary files for diff3 merges
843
                try:
844
                    self.text_merge(file_id, trans_id)
845
                except BinaryFile:
846
                    return contents_conflict()
1534.7.147 by Aaron Bentley
Tweak to check inventory, not tree for file ids
847
                if file_id not in self.this_tree.inventory:
1534.7.145 by Aaron Bentley
More fixups after get_trans_id
848
                    self.tt.version_file(file_id, trans_id)
1534.7.152 by Aaron Bentley
Fixed overwrites
849
                try:
850
                    self.tt.tree_kind(trans_id)
851
                    self.tt.delete_contents(trans_id)
852
                except NoSuchFile:
853
                    pass
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
854
                return "modified"
855
            else:
1534.7.145 by Aaron Bentley
More fixups after get_trans_id
856
                # Scalar conflict, can't text merge.  Dump conflicts
1558.15.3 by Aaron Bentley
Handle binary files for diff3 merges
857
                return contents_conflict()
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
858
859
    def get_lines(self, tree, file_id):
1534.7.157 by Aaron Bentley
Added more docs
860
        """Return the lines in a file, or an empty list."""
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
861
        if file_id in tree:
862
            return tree.get_file(file_id).readlines()
863
        else:
864
            return []
865
866
    def text_merge(self, file_id, trans_id):
867
        """Perform a three-way text merge on a file_id"""
868
        # it's possible that we got here with base as a different type.
869
        # if so, we just want two-way text conflicts.
870
        if file_id in self.base_tree and \
871
            self.base_tree.kind(file_id) == "file":
872
            base_lines = self.get_lines(self.base_tree, file_id)
873
        else:
874
            base_lines = []
875
        other_lines = self.get_lines(self.other_tree, file_id)
876
        this_lines = self.get_lines(self.this_tree, file_id)
3249.3.1 by John Arbash Meinel
Implement cherrypick support for Merge3
877
        m3 = Merge3(base_lines, this_lines, other_lines,
878
                    is_cherrypick=self.cherrypick)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
879
        start_marker = "!START OF MERGE CONFLICT!" + "I HOPE THIS IS UNIQUE"
880
        if self.show_base is True:
881
            base_marker = '|' * 7
882
        else:
883
            base_marker = None
884
885
        def iter_merge3(retval):
886
            retval["text_conflicts"] = False
887
            for line in m3.merge_lines(name_a = "TREE", 
888
                                       name_b = "MERGE-SOURCE", 
889
                                       name_base = "BASE-REVISION",
890
                                       start_marker=start_marker, 
891
                                       base_marker=base_marker,
892
                                       reprocess=self.reprocess):
893
                if line.startswith(start_marker):
894
                    retval["text_conflicts"] = True
895
                    yield line.replace(start_marker, '<' * 7)
896
                else:
897
                    yield line
898
        retval = {}
899
        merge3_iterator = iter_merge3(retval)
900
        self.tt.create_file(merge3_iterator, trans_id)
901
        if retval["text_conflicts"] is True:
902
            self._raw_conflicts.append(('text conflict', trans_id))
903
            name = self.tt.final_name(trans_id)
904
            parent_id = self.tt.final_parent(trans_id)
905
            file_group = self._dump_conflicts(name, parent_id, file_id, 
906
                                              this_lines, base_lines,
907
                                              other_lines)
908
            file_group.append(trans_id)
909
910
    def _dump_conflicts(self, name, parent_id, file_id, this_lines=None, 
911
                        base_lines=None, other_lines=None, set_version=False,
912
                        no_base=False):
1534.7.157 by Aaron Bentley
Added more docs
913
        """Emit conflict files.
914
        If this_lines, base_lines, or other_lines are omitted, they will be
915
        determined automatically.  If set_version is true, the .OTHER, .THIS
916
        or .BASE (in that order) will be created as versioned files.
917
        """
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
918
        data = [('OTHER', self.other_tree, other_lines), 
919
                ('THIS', self.this_tree, this_lines)]
920
        if not no_base:
921
            data.append(('BASE', self.base_tree, base_lines))
922
        versioned = False
923
        file_group = []
924
        for suffix, tree, lines in data:
925
            if file_id in tree:
926
                trans_id = self._conflict_file(name, parent_id, tree, file_id,
927
                                               suffix, lines)
928
                file_group.append(trans_id)
929
                if set_version and not versioned:
930
                    self.tt.version_file(file_id, trans_id)
931
                    versioned = True
932
        return file_group
933
           
934
    def _conflict_file(self, name, parent_id, tree, file_id, suffix, 
935
                       lines=None):
1534.7.157 by Aaron Bentley
Added more docs
936
        """Emit a single conflict file."""
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
937
        name = name + '.' + suffix
938
        trans_id = self.tt.create_path(name, parent_id)
939
        entry = tree.inventory[file_id]
940
        create_by_entry(self.tt, entry, tree, trans_id, lines)
941
        return trans_id
942
943
    def merge_executable(self, file_id, file_status):
1534.7.157 by Aaron Bentley
Added more docs
944
        """Perform a merge on the execute bit."""
2590.2.3 by Aaron Bentley
Merge the execute bit based on iter_changes
945
        executable = [self.executable(t, file_id) for t in (self.base_tree,
946
                      self.other_tree, self.this_tree)]
947
        self._merge_executable(file_id, executable, file_status)
948
949
    def _merge_executable(self, file_id, executable, file_status):
950
        """Perform a merge on the execute bit."""
951
        base_executable, other_executable, this_executable = executable
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
952
        if file_status == "deleted":
953
            return
2590.2.3 by Aaron Bentley
Merge the execute bit based on iter_changes
954
        winner = self._three_way(*executable)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
955
        if winner == "conflict":
956
        # There must be a None in here, if we have a conflict, but we
957
        # need executability since file status was not deleted.
1534.10.35 by Aaron Bentley
Merge handles contents + executable + deletion conflict
958
            if self.executable(self.other_tree, file_id) is None:
1534.7.142 by Aaron Bentley
Fixed executability conflicts
959
                winner = "this"
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
960
            else:
1534.7.142 by Aaron Bentley
Fixed executability conflicts
961
                winner = "other"
1551.19.30 by Aaron Bentley
Accelerate merge by skipping file existence check when merging execute bit
962
        if winner == 'this' and file_status != "modified":
963
            return
964
        trans_id = self.tt.trans_id_file_id(file_id)
965
        try:
966
            if self.tt.final_kind(trans_id) != "file":
967
                return
968
        except NoSuchFile:
969
            return
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
970
        if winner == "this":
1551.19.30 by Aaron Bentley
Accelerate merge by skipping file existence check when merging execute bit
971
            executability = this_executable
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
972
        else:
973
            if file_id in self.other_tree:
2590.2.3 by Aaron Bentley
Merge the execute bit based on iter_changes
974
                executability = other_executable
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
975
            elif file_id in self.this_tree:
2590.2.3 by Aaron Bentley
Merge the execute bit based on iter_changes
976
                executability = this_executable
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
977
            elif file_id in self.base_tree:
2590.2.3 by Aaron Bentley
Merge the execute bit based on iter_changes
978
                executability = base_executable
1551.19.30 by Aaron Bentley
Accelerate merge by skipping file existence check when merging execute bit
979
        if executability is not None:
980
            trans_id = self.tt.trans_id_file_id(file_id)
981
            self.tt.set_executability(executability, trans_id)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
982
1534.7.172 by Aaron Bentley
Integrated fs conflicts with merge conflicts.
983
    def cook_conflicts(self, fs_conflicts):
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
984
        """Convert all conflicts into a form that doesn't depend on trans_id"""
1534.10.19 by Aaron Bentley
Stanza conversion, cooking
985
        from conflicts import Conflict
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
986
        name_conflicts = {}
1534.7.172 by Aaron Bentley
Integrated fs conflicts with merge conflicts.
987
        self.cooked_conflicts.extend(cook_conflicts(fs_conflicts, self.tt))
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
988
        fp = FinalPaths(self.tt)
989
        for conflict in self._raw_conflicts:
990
            conflict_type = conflict[0]
991
            if conflict_type in ('name conflict', 'parent conflict'):
992
                trans_id = conflict[1]
993
                conflict_args = conflict[2:]
994
                if trans_id not in name_conflicts:
995
                    name_conflicts[trans_id] = {}
996
                unique_add(name_conflicts[trans_id], conflict_type, 
997
                           conflict_args)
998
            if conflict_type == 'contents conflict':
999
                for trans_id in conflict[1]:
1000
                    file_id = self.tt.final_file_id(trans_id)
1001
                    if file_id is not None:
1002
                        break
1003
                path = fp.get_path(trans_id)
1004
                for suffix in ('.BASE', '.THIS', '.OTHER'):
1005
                    if path.endswith(suffix):
1006
                        path = path[:-len(suffix)]
1007
                        break
1534.10.19 by Aaron Bentley
Stanza conversion, cooking
1008
                c = Conflict.factory(conflict_type, path=path, file_id=file_id)
1009
                self.cooked_conflicts.append(c)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1010
            if conflict_type == 'text conflict':
1011
                trans_id = conflict[1]
1012
                path = fp.get_path(trans_id)
1013
                file_id = self.tt.final_file_id(trans_id)
1534.10.19 by Aaron Bentley
Stanza conversion, cooking
1014
                c = Conflict.factory(conflict_type, path=path, file_id=file_id)
1015
                self.cooked_conflicts.append(c)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1016
1017
        for trans_id, conflicts in name_conflicts.iteritems():
1018
            try:
1019
                this_parent, other_parent = conflicts['parent conflict']
3376.2.4 by Martin Pool
Remove every assert statement from bzrlib!
1020
                if this_parent == other_parent:
1021
                    raise AssertionError()
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1022
            except KeyError:
1023
                this_parent = other_parent = \
1024
                    self.tt.final_file_id(self.tt.final_parent(trans_id))
1025
            try:
1026
                this_name, other_name = conflicts['name conflict']
3376.2.4 by Martin Pool
Remove every assert statement from bzrlib!
1027
                if this_name == other_name:
1028
                    raise AssertionError()
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1029
            except KeyError:
1030
                this_name = other_name = self.tt.final_name(trans_id)
1031
            other_path = fp.get_path(trans_id)
1551.16.2 by Aaron Bentley
Don't crash on merging renamed deleted files (#110279)
1032
            if this_parent is not None and this_name is not None:
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1033
                this_parent_path = \
1534.7.181 by Aaron Bentley
Renamed a bunch of functions
1034
                    fp.get_path(self.tt.trans_id_file_id(this_parent))
1534.7.166 by Aaron Bentley
Swapped os.path.join for pathjoin everywhere
1035
                this_path = pathjoin(this_parent_path, this_name)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1036
            else:
1037
                this_path = "<deleted>"
1038
            file_id = self.tt.final_file_id(trans_id)
1534.10.20 by Aaron Bentley
Got all tests passing
1039
            c = Conflict.factory('path conflict', path=this_path,
1534.10.19 by Aaron Bentley
Stanza conversion, cooking
1040
                                 conflict_path=other_path, file_id=file_id)
1041
            self.cooked_conflicts.append(c)
1666.1.4 by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in
1042
        self.cooked_conflicts.sort(key=Conflict.sort_key)
1534.7.141 by Aaron Bentley
Added conflict reporting
1043
1044
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1045
class WeaveMerger(Merge3Merger):
1534.7.167 by Aaron Bentley
PEP8 and comment cleanups
1046
    """Three-way tree merger, text weave merger."""
1551.6.8 by Aaron Bentley
Implemented reprocess for weave
1047
    supports_reprocess = True
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1048
    supports_show_base = False
3062.2.7 by Aaron Bentley
Prevent reverse cherry-picking with weave
1049
    supports_reverse_cherrypick = False
3062.2.9 by Aaron Bentley
Don't use the base if not cherrypicking
1050
    history_based = True
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1051
1052
    def _merged_lines(self, file_id):
1053
        """Generate the merged lines.
1054
        There is no distinction between lines that are meant to contain <<<<<<<
1055
        and conflicts.
1056
        """
3062.2.9 by Aaron Bentley
Don't use the base if not cherrypicking
1057
        if self.cherrypick:
1058
            base = self.base_tree
1059
        else:
1060
            base = None
3062.2.4 by Aaron Bentley
Start supporting merge-with-base
1061
        plan = self.this_tree.plan_file_merge(file_id, self.other_tree,
3062.2.9 by Aaron Bentley
Don't use the base if not cherrypicking
1062
                                              base=base)
1551.19.17 by Aaron Bentley
Add debugging flag for merges
1063
        if 'merge' in debug.debug_flags:
1064
            plan = list(plan)
1065
            trans_id = self.tt.trans_id_file_id(file_id)
1066
            name = self.tt.final_name(trans_id) + '.plan'
1067
            contents = ('%10s|%s' % l for l in plan)
1068
            self.tt.new_file(name, self.tt.final_parent(trans_id), contents)
1551.15.52 by Aaron Bentley
Tweak from review comments
1069
        textmerge = PlanWeaveMerge(plan, '<<<<<<< TREE\n',
1070
            '>>>>>>> MERGE-SOURCE\n')
1071
        return textmerge.merge_lines(self.reprocess)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1072
1073
    def text_merge(self, file_id, trans_id):
1534.7.157 by Aaron Bentley
Added more docs
1074
        """Perform a (weave) text merge for a given file and file-id.
1075
        If conflicts are encountered, .THIS and .OTHER files will be emitted,
1076
        and a conflict will be noted.
1077
        """
1551.6.12 by Aaron Bentley
Indicate conflicts from merge_lines, insead of guessing
1078
        lines, conflicts = self._merged_lines(file_id)
1558.15.10 by Aaron Bentley
Merge bzr.dev
1079
        lines = list(lines)
1558.15.5 by Aaron Bentley
Fixed binary handling in weave merge
1080
        # Note we're checking whether the OUTPUT is binary in this case, 
1081
        # because we don't want to get into weave merge guts.
1082
        check_text_lines(lines)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1083
        self.tt.create_file(lines, trans_id)
1084
        if conflicts:
1085
            self._raw_conflicts.append(('text conflict', trans_id))
1086
            name = self.tt.final_name(trans_id)
1087
            parent_id = self.tt.final_parent(trans_id)
1088
            file_group = self._dump_conflicts(name, parent_id, file_id, 
1089
                                              no_base=True)
1090
            file_group.append(trans_id)
1091
1092
3144.3.1 by Aaron Bentley
Implement LCA merge, with problematic conflict markers
1093
class LCAMerger(WeaveMerger):
1094
1095
    def _merged_lines(self, file_id):
1096
        """Generate the merged lines.
1097
        There is no distinction between lines that are meant to contain <<<<<<<
1098
        and conflicts.
1099
        """
1100
        if self.cherrypick:
1101
            base = self.base_tree
1102
        else:
1103
            base = None
1104
        plan = self.this_tree.plan_file_lca_merge(file_id, self.other_tree,
1105
                                                  base=base)
1106
        if 'merge' in debug.debug_flags:
1107
            plan = list(plan)
1108
            trans_id = self.tt.trans_id_file_id(file_id)
1109
            name = self.tt.final_name(trans_id) + '.plan'
1110
            contents = ('%10s|%s' % l for l in plan)
1111
            self.tt.new_file(name, self.tt.final_parent(trans_id), contents)
1112
        textmerge = PlanWeaveMerge(plan, '<<<<<<< TREE\n',
1113
            '>>>>>>> MERGE-SOURCE\n')
1114
        return textmerge.merge_lines(self.reprocess)
1115
1116
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1117
class Diff3Merger(Merge3Merger):
1534.7.167 by Aaron Bentley
PEP8 and comment cleanups
1118
    """Three-way merger using external diff3 for text merging"""
1711.7.20 by John Arbash Meinel
always close files, minor PEP8 cleanup
1119
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1120
    def dump_file(self, temp_dir, name, tree, file_id):
1121
        out_path = pathjoin(temp_dir, name)
1711.7.20 by John Arbash Meinel
always close files, minor PEP8 cleanup
1122
        out_file = open(out_path, "wb")
1123
        try:
1124
            in_file = tree.get_file(file_id)
1125
            for line in in_file:
1126
                out_file.write(line)
1127
        finally:
1128
            out_file.close()
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1129
        return out_path
1130
1131
    def text_merge(self, file_id, trans_id):
1534.7.157 by Aaron Bentley
Added more docs
1132
        """Perform a diff3 merge using a specified file-id and trans-id.
1133
        If conflicts are encountered, .BASE, .THIS. and .OTHER conflict files
1134
        will be dumped, and a will be conflict noted.
1135
        """
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1136
        import bzrlib.patch
1996.3.18 by John Arbash Meinel
Now that mkdtemp and rmtree are lazy, they should not be directly improted.
1137
        temp_dir = osutils.mkdtemp(prefix="bzr-")
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1138
        try:
1534.7.166 by Aaron Bentley
Swapped os.path.join for pathjoin everywhere
1139
            new_file = pathjoin(temp_dir, "new")
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1140
            this = self.dump_file(temp_dir, "this", self.this_tree, file_id)
1141
            base = self.dump_file(temp_dir, "base", self.base_tree, file_id)
1142
            other = self.dump_file(temp_dir, "other", self.other_tree, file_id)
1143
            status = bzrlib.patch.diff3(new_file, this, base, other)
1144
            if status not in (0, 1):
1145
                raise BzrError("Unhandled diff3 exit code")
1711.7.20 by John Arbash Meinel
always close files, minor PEP8 cleanup
1146
            f = open(new_file, 'rb')
1147
            try:
1148
                self.tt.create_file(f, trans_id)
1149
            finally:
1150
                f.close()
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1151
            if status == 1:
1152
                name = self.tt.final_name(trans_id)
1153
                parent_id = self.tt.final_parent(trans_id)
1154
                self._dump_conflicts(name, parent_id, file_id)
1551.8.39 by Aaron Bentley
Fix diff3 conflict-reporting bug
1155
                self._raw_conflicts.append(('text conflict', trans_id))
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1156
        finally:
1996.3.18 by John Arbash Meinel
Now that mkdtemp and rmtree are lazy, they should not be directly improted.
1157
            osutils.rmtree(temp_dir)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1158
1159
1160
def merge_inner(this_branch, other_tree, base_tree, ignore_zero=False,
2255.2.31 by Robert Collins
Work in progress to make merge_inner work with dirstate trees.
1161
                backup_files=False,
1162
                merge_type=Merge3Merger,
1163
                interesting_ids=None,
1164
                show_base=False,
1165
                reprocess=False,
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1166
                other_rev_id=None,
1167
                interesting_files=None,
1534.9.9 by Aaron Bentley
Added progress bar to pull
1168
                this_tree=None,
1551.11.10 by Aaron Bentley
Add change reporting to pull
1169
                pb=DummyProgress(),
1170
                change_reporter=None):
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1171
    """Primary interface for merging. 
1172
1173
        typical use is probably 
1174
        'merge_inner(branch, branch.get_revision_tree(other_revision),
1175
                     branch.get_revision_tree(base_revision))'
1176
        """
1177
    if this_tree is None:
2367.2.1 by Robert Collins
Remove bzrlib 0.8 compatability where it was making the code unclear or messy. (Robert Collins)
1178
        raise BzrError("bzrlib.merge.merge_inner requires a this_tree "
1179
            "parameter as of bzrlib version 0.8.")
2255.2.31 by Robert Collins
Work in progress to make merge_inner work with dirstate trees.
1180
    merger = Merger(this_branch, other_tree, base_tree, this_tree=this_tree,
1551.11.10 by Aaron Bentley
Add change reporting to pull
1181
                    pb=pb, change_reporter=change_reporter)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1182
    merger.backup_files = backup_files
1183
    merger.merge_type = merge_type
1184
    merger.interesting_ids = interesting_ids
1551.2.23 by Aaron Bentley
Got merge_inner's ignore_zero parameter working
1185
    merger.ignore_zero = ignore_zero
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1186
    if interesting_files:
3376.2.4 by Martin Pool
Remove every assert statement from bzrlib!
1187
        if interesting_ids:
1188
            raise ValueError('Only supply interesting_ids'
1189
                             ' or interesting_files')
2590.2.5 by Aaron Bentley
Allow selected files to be specified instead of selected ids
1190
        merger.interesting_files = interesting_files
1979.2.1 by Robert Collins
(robertc) adds a convenience method "merge_from_branch" to WorkingTree.
1191
    merger.show_base = show_base
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1192
    merger.reprocess = reprocess
1193
    merger.other_rev_id = other_rev_id
1194
    merger.other_basis = other_rev_id
3249.3.1 by John Arbash Meinel
Implement cherrypick support for Merge3
1195
    get_revision_id = getattr(base_tree, 'get_revision_id', None)
1196
    if get_revision_id is None:
1197
        get_revision_id = base_tree.last_revision
1198
    merger.set_base_revision(get_revision_id(), this_branch)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1199
    return merger.do_merge()
1200
2221.4.15 by Aaron Bentley
Use RegistryOption for merge type
1201
def get_merge_type_registry():
2221.4.17 by Aaron Bentley
PEP8-ness
1202
    """Merge type registry is in bzrlib.option to avoid circular imports.
2221.4.15 by Aaron Bentley
Use RegistryOption for merge type
1203
1204
    This method provides a sanctioned way to retrieve it.
1205
    """
1206
    from bzrlib import option
2221.4.16 by Aaron Bentley
Add tests for get_merge_type_registry
1207
    return option._merge_type_registry
1551.15.46 by Aaron Bentley
Move plan merge to tree
1208
1209
1210
def _plan_annotate_merge(annotated_a, annotated_b, ancestors_a, ancestors_b):
1211
    def status_a(revision, text):
1212
        if revision in ancestors_b:
1213
            return 'killed-b', text
1214
        else:
1215
            return 'new-a', text
1216
1217
    def status_b(revision, text):
1218
        if revision in ancestors_a:
1219
            return 'killed-a', text
1220
        else:
1221
            return 'new-b', text
1222
1223
    plain_a = [t for (a, t) in annotated_a]
1224
    plain_b = [t for (a, t) in annotated_b]
1225
    matcher = patiencediff.PatienceSequenceMatcher(None, plain_a, plain_b)
1226
    blocks = matcher.get_matching_blocks()
1227
    a_cur = 0
1228
    b_cur = 0
1229
    for ai, bi, l in blocks:
1230
        # process all mismatched sections
1231
        # (last mismatched section is handled because blocks always
1232
        # includes a 0-length last block)
1233
        for revision, text in annotated_a[a_cur:ai]:
1234
            yield status_a(revision, text)
1235
        for revision, text in annotated_b[b_cur:bi]:
1236
            yield status_b(revision, text)
1237
        # and now the matched section
1238
        a_cur = ai + l
1239
        b_cur = bi + l
3376.2.8 by Martin Pool
Some review cleanups for assertion removal
1240
        for text_a in plain_a[ai:a_cur]:
1551.15.46 by Aaron Bentley
Move plan merge to tree
1241
            yield "unchanged", text_a
3062.1.9 by Aaron Bentley
Move PlanMerge into merge and _PlanMergeVersionedFile into versionedfile
1242
1243
3144.3.1 by Aaron Bentley
Implement LCA merge, with problematic conflict markers
1244
class _PlanMergeBase(object):
3062.1.9 by Aaron Bentley
Move PlanMerge into merge and _PlanMergeVersionedFile into versionedfile
1245
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1246
    def __init__(self, a_rev, b_rev, vf, prefix):
3062.1.9 by Aaron Bentley
Move PlanMerge into merge and _PlanMergeVersionedFile into versionedfile
1247
        """Contructor.
1248
1249
        :param a_rev: Revision-id of one revision to merge
1250
        :param b_rev: Revision-id of the other revision to merge
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1251
        :param vf: A VersionedFiles containing both revisions
1252
        :param prefix: A prefix for accessing keys in vf.
3062.1.9 by Aaron Bentley
Move PlanMerge into merge and _PlanMergeVersionedFile into versionedfile
1253
        """
1254
        self.a_rev = a_rev
1255
        self.b_rev = b_rev
1256
        self.vf = vf
3062.1.12 by Aaron Bentley
Implement simple text cache
1257
        self._last_lines = None
1258
        self._last_lines_revision_id = None
3144.3.7 by Aaron Bentley
Update from review
1259
        self._cached_matching_blocks = {}
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1260
        self._prefix = prefix
1261
        lines = self.get_lines([a_rev, b_rev])
1262
        self.lines_a = lines[a_rev]
1263
        self.lines_b = lines[b_rev]
1264
1265
    def get_lines(self, revisions):
1266
        """Get lines for revisions from the backing VersionedFiles.
1267
        
1268
        :raises RevisionNotPresent on absent texts.
1269
        """
1270
        keys = dict((self._prefix + (rev,), rev) for rev in revisions)
1271
        result = {}
1272
        for record in self.vf.get_record_stream(keys, 'unordered', True):
1273
            if record.storage_kind == 'absent':
1274
                raise errors.RevisionNotPresent(record.key, self.vf)
1275
            result[keys[record.key]] = osutils.split_lines(
1276
                record.get_bytes_as('fulltext'))
1277
        return result
3062.1.9 by Aaron Bentley
Move PlanMerge into merge and _PlanMergeVersionedFile into versionedfile
1278
1279
    def plan_merge(self):
1280
        """Generate a 'plan' for merging the two revisions.
1281
1282
        This involves comparing their texts and determining the cause of
1283
        differences.  If text A has a line and text B does not, then either the
1284
        line was added to text A, or it was deleted from B.  Once the causes
1285
        are combined, they are written out in the format described in
1286
        VersionedFile.plan_merge
1287
        """
1288
        blocks = self._get_matching_blocks(self.a_rev, self.b_rev)
3144.3.1 by Aaron Bentley
Implement LCA merge, with problematic conflict markers
1289
        unique_a, unique_b = self._unique_lines(blocks)
1290
        new_a, killed_b = self._determine_status(self.a_rev, unique_a)
1291
        new_b, killed_a = self._determine_status(self.b_rev, unique_b)
1292
        return self._iter_plan(blocks, new_a, killed_b, new_b, killed_a)
1293
1294
    def _iter_plan(self, blocks, new_a, killed_b, new_b, killed_a):
3062.1.9 by Aaron Bentley
Move PlanMerge into merge and _PlanMergeVersionedFile into versionedfile
1295
        last_i = 0
1296
        last_j = 0
1297
        for i, j, n in blocks:
1298
            for a_index in range(last_i, i):
1299
                if a_index in new_a:
3144.3.2 by Aaron Bentley
Get conflict handling working
1300
                    if a_index in killed_b:
1301
                        yield 'conflicted-a', self.lines_a[a_index]
1302
                    else:
1303
                        yield 'new-a', self.lines_a[a_index]
1304
                else:
3144.3.1 by Aaron Bentley
Implement LCA merge, with problematic conflict markers
1305
                    yield 'killed-b', self.lines_a[a_index]
3062.1.9 by Aaron Bentley
Move PlanMerge into merge and _PlanMergeVersionedFile into versionedfile
1306
            for b_index in range(last_j, j):
1307
                if b_index in new_b:
3144.3.2 by Aaron Bentley
Get conflict handling working
1308
                    if b_index in killed_a:
3144.3.10 by Aaron Bentley
Use correct index when emitting conflicted-b
1309
                        yield 'conflicted-b', self.lines_b[b_index]
3144.3.2 by Aaron Bentley
Get conflict handling working
1310
                    else:
1311
                        yield 'new-b', self.lines_b[b_index]
1312
                else:
3144.3.1 by Aaron Bentley
Implement LCA merge, with problematic conflict markers
1313
                    yield 'killed-a', self.lines_b[b_index]
3062.1.9 by Aaron Bentley
Move PlanMerge into merge and _PlanMergeVersionedFile into versionedfile
1314
            # handle common lines
1315
            for a_index in range(i, i+n):
3144.3.1 by Aaron Bentley
Implement LCA merge, with problematic conflict markers
1316
                yield 'unchanged', self.lines_a[a_index]
3062.1.9 by Aaron Bentley
Move PlanMerge into merge and _PlanMergeVersionedFile into versionedfile
1317
            last_i = i+n
1318
            last_j = j+n
1319
1320
    def _get_matching_blocks(self, left_revision, right_revision):
1321
        """Return a description of which sections of two revisions match.
1322
1323
        See SequenceMatcher.get_matching_blocks
1324
        """
3144.3.7 by Aaron Bentley
Update from review
1325
        cached = self._cached_matching_blocks.get((left_revision,
1326
                                                   right_revision))
1327
        if cached is not None:
1328
            return cached
3062.1.12 by Aaron Bentley
Implement simple text cache
1329
        if self._last_lines_revision_id == left_revision:
1330
            left_lines = self._last_lines
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1331
            right_lines = self.get_lines([right_revision])[right_revision]
3062.1.12 by Aaron Bentley
Implement simple text cache
1332
        else:
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1333
            lines = self.get_lines([left_revision, right_revision])
1334
            left_lines = lines[left_revision]
1335
            right_lines = lines[right_revision]
3062.1.12 by Aaron Bentley
Implement simple text cache
1336
        self._last_lines = right_lines
1337
        self._last_lines_revision_id = right_revision
3062.1.9 by Aaron Bentley
Move PlanMerge into merge and _PlanMergeVersionedFile into versionedfile
1338
        matcher = patiencediff.PatienceSequenceMatcher(None, left_lines,
1339
                                                       right_lines)
1340
        return matcher.get_matching_blocks()
1341
1342
    def _unique_lines(self, matching_blocks):
1343
        """Analyse matching_blocks to determine which lines are unique
1344
1345
        :return: a tuple of (unique_left, unique_right), where the values are
1346
            sets of line numbers of unique lines.
1347
        """
1348
        last_i = 0
1349
        last_j = 0
1350
        unique_left = []
1351
        unique_right = []
1352
        for i, j, n in matching_blocks:
1353
            unique_left.extend(range(last_i, i))
1354
            unique_right.extend(range(last_j, j))
1355
            last_i = i + n
1356
            last_j = j + n
1357
        return unique_left, unique_right
1358
3144.3.1 by Aaron Bentley
Implement LCA merge, with problematic conflict markers
1359
    @staticmethod
1360
    def _subtract_plans(old_plan, new_plan):
3144.3.7 by Aaron Bentley
Update from review
1361
        """Remove changes from new_plan that came from old_plan.
1362
1363
        It is assumed that the difference between the old_plan and new_plan
1364
        is their choice of 'b' text.
1365
1366
        All lines from new_plan that differ from old_plan are emitted
1367
        verbatim.  All lines from new_plan that match old_plan but are
1368
        not about the 'b' revision are emitted verbatim.
1369
1370
        Lines that match and are about the 'b' revision are the lines we
1371
        don't want, so we convert 'killed-b' -> 'unchanged', and 'new-b'
1372
        is skipped entirely.
1373
        """
3144.3.1 by Aaron Bentley
Implement LCA merge, with problematic conflict markers
1374
        matcher = patiencediff.PatienceSequenceMatcher(None, old_plan,
1375
                                                       new_plan)
1376
        last_j = 0
1377
        for i, j, n in matcher.get_matching_blocks():
1378
            for jj in range(last_j, j):
1379
                yield new_plan[jj]
1380
            for jj in range(j, j+n):
1381
                plan_line = new_plan[jj]
1382
                if plan_line[0] == 'new-b':
1383
                    pass
1384
                elif plan_line[0] == 'killed-b':
1385
                    yield 'unchanged', plan_line[1]
1386
                else:
1387
                    yield plan_line
1388
            last_j = j + n
1389
1390
1391
class _PlanMerge(_PlanMergeBase):
1392
    """Plan an annotate merge using on-the-fly annotation"""
1393
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1394
    def __init__(self, a_rev, b_rev, vf, prefix):
1395
        _PlanMergeBase.__init__(self, a_rev, b_rev, vf, prefix)
1396
        graph = Graph(vf)
1397
        # XXX: There is probably a better API to use to examine less history.
1398
        a_ancestry = set(chain(*graph._make_breadth_first_searcher(
1399
            [prefix + (a_rev,)])))
1400
        b_ancestry = set(chain(*graph._make_breadth_first_searcher(
1401
            [prefix + (b_rev,)])))
1402
        self.uncommon = set(key[-1] for key in
1403
            a_ancestry.symmetric_difference(b_ancestry))
3144.3.1 by Aaron Bentley
Implement LCA merge, with problematic conflict markers
1404
3144.3.7 by Aaron Bentley
Update from review
1405
    def _determine_status(self, revision_id, unique_line_numbers):
3144.3.1 by Aaron Bentley
Implement LCA merge, with problematic conflict markers
1406
        """Determines the status unique lines versus all lcas.
1407
1408
        Basically, determines why the line is unique to this revision.
1409
1410
        A line may be determined new or killed, but not both.
1411
3144.3.7 by Aaron Bentley
Update from review
1412
        :param revision_id: The id of the revision in which the lines are
1413
            unique
1414
        :param unique_line_numbers: The line numbers of unique lines.
3144.3.1 by Aaron Bentley
Implement LCA merge, with problematic conflict markers
1415
        :return a tuple of (new_this, killed_other):
1416
        """
1417
        new = self._find_new(revision_id)
3144.3.7 by Aaron Bentley
Update from review
1418
        killed = set(unique_line_numbers).difference(new)
3144.3.1 by Aaron Bentley
Implement LCA merge, with problematic conflict markers
1419
        return new, killed
1420
3062.1.9 by Aaron Bentley
Move PlanMerge into merge and _PlanMergeVersionedFile into versionedfile
1421
    def _find_new(self, version_id):
1422
        """Determine which lines are new in the ancestry of this version.
1423
1424
        If a lines is present in this version, and not present in any
1425
        common ancestor, it is considered new.
1426
        """
1427
        if version_id not in self.uncommon:
1428
            return set()
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1429
        key = self._prefix + (version_id,)
1430
        parent_map = self.vf.get_parent_map([key])
1431
        parents = tuple(parent[-1] for parent in parent_map[key])
3062.1.9 by Aaron Bentley
Move PlanMerge into merge and _PlanMergeVersionedFile into versionedfile
1432
        if len(parents) == 0:
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1433
            return set(range(len(self.get_lines([version_id])[version_id])))
3062.1.9 by Aaron Bentley
Move PlanMerge into merge and _PlanMergeVersionedFile into versionedfile
1434
        new = None
1435
        for parent in parents:
1436
            blocks = self._get_matching_blocks(version_id, parent)
1437
            result, unused = self._unique_lines(blocks)
1438
            parent_new = self._find_new(parent)
1439
            for i, j, n in blocks:
1440
                for ii, jj in [(i+r, j+r) for r in range(n)]:
1441
                    if jj in parent_new:
1442
                        result.append(ii)
1443
            if new is None:
1444
                new = set(result)
1445
            else:
1446
                new.intersection_update(result)
1447
        return new
3062.2.1 by Aaron Bentley
Add support for plan-merge with a base
1448
3144.3.1 by Aaron Bentley
Implement LCA merge, with problematic conflict markers
1449
1450
class _PlanLCAMerge(_PlanMergeBase):
1451
    """
3144.3.7 by Aaron Bentley
Update from review
1452
    This merge algorithm differs from _PlanMerge in that:
3144.3.1 by Aaron Bentley
Implement LCA merge, with problematic conflict markers
1453
    1. comparisons are done against LCAs only
1454
    2. cases where a contested line is new versus one LCA but old versus
3144.3.7 by Aaron Bentley
Update from review
1455
       another are marked as conflicts, by emitting the line as conflicted-a
1456
       or conflicted-b.
3144.3.1 by Aaron Bentley
Implement LCA merge, with problematic conflict markers
1457
1458
    This is faster, and hopefully produces more useful output.
1459
    """
1460
3350.6.4 by Robert Collins
First cut at pluralised VersionedFiles. Some rather massive API incompatabilities, primarily because of the difficulty of coherence among competing stores.
1461
    def __init__(self, a_rev, b_rev, vf, prefix, graph):
1462
        _PlanMergeBase.__init__(self, a_rev, b_rev, vf, prefix)
1463
        lcas = graph.find_lca(prefix + (a_rev,), prefix + (b_rev,))
3350.6.5 by Robert Collins
Update to bzr.dev.
1464
        self.lcas = set()
1465
        for lca in lcas:
1466
            if lca == NULL_REVISION:
1467
                self.lcas.add(lca)
1468
            else:
1469
                self.lcas.add(lca[-1])
3144.3.7 by Aaron Bentley
Update from review
1470
        for lca in self.lcas:
3287.17.1 by John Arbash Meinel
Fix bug #235715 by using the empty list as the text for a base of NULL_REVISION.
1471
            if _mod_revision.is_null(lca):
1472
                lca_lines = []
1473
            else:
3350.6.5 by Robert Collins
Update to bzr.dev.
1474
                lca_lines = self.get_lines([lca])[lca]
3144.3.7 by Aaron Bentley
Update from review
1475
            matcher = patiencediff.PatienceSequenceMatcher(None, self.lines_a,
1476
                                                           lca_lines)
1477
            blocks = list(matcher.get_matching_blocks())
1478
            self._cached_matching_blocks[(a_rev, lca)] = blocks
1479
            matcher = patiencediff.PatienceSequenceMatcher(None, self.lines_b,
1480
                                                           lca_lines)
1481
            blocks = list(matcher.get_matching_blocks())
1482
            self._cached_matching_blocks[(b_rev, lca)] = blocks
3144.3.1 by Aaron Bentley
Implement LCA merge, with problematic conflict markers
1483
3144.3.7 by Aaron Bentley
Update from review
1484
    def _determine_status(self, revision_id, unique_line_numbers):
3144.3.1 by Aaron Bentley
Implement LCA merge, with problematic conflict markers
1485
        """Determines the status unique lines versus all lcas.
1486
1487
        Basically, determines why the line is unique to this revision.
1488
1489
        A line may be determined new, killed, or both.
1490
3144.3.7 by Aaron Bentley
Update from review
1491
        If a line is determined new, that means it was not present in at least
1492
        one LCA, and is not present in the other merge revision.
3144.3.1 by Aaron Bentley
Implement LCA merge, with problematic conflict markers
1493
1494
        If a line is determined killed, that means the line was present in
1495
        at least one LCA.
1496
1497
        If a line is killed and new, this indicates that the two merge
1498
        revisions contain differing conflict resolutions.
3144.3.7 by Aaron Bentley
Update from review
1499
        :param revision_id: The id of the revision in which the lines are
1500
            unique
1501
        :param unique_line_numbers: The line numbers of unique lines.
3144.3.1 by Aaron Bentley
Implement LCA merge, with problematic conflict markers
1502
        :return a tuple of (new_this, killed_other):
1503
        """
1504
        new = set()
1505
        killed = set()
3144.3.7 by Aaron Bentley
Update from review
1506
        unique_line_numbers = set(unique_line_numbers)
3144.3.1 by Aaron Bentley
Implement LCA merge, with problematic conflict markers
1507
        for lca in self.lcas:
1508
            blocks = self._get_matching_blocks(revision_id, lca)
1509
            unique_vs_lca, _ignored = self._unique_lines(blocks)
3144.3.7 by Aaron Bentley
Update from review
1510
            new.update(unique_line_numbers.intersection(unique_vs_lca))
1511
            killed.update(unique_line_numbers.difference(unique_vs_lca))
3144.3.1 by Aaron Bentley
Implement LCA merge, with problematic conflict markers
1512
        return new, killed