/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
1185.1.2 by Martin Pool
- merge various windows and other fixes from Ollie Rutherfurd
18
import os
1545.2.6 by Aaron Bentley
Removed _merge, renamed MergeConflictHandler to _MergeConflictHandler
19
import errno
1773.4.1 by Martin Pool
Add pyflakes makefile target; fix many warnings
20
import warnings
1113 by Martin Pool
- fix is_ancestor import problem in merge
21
1996.3.18 by John Arbash Meinel
Now that mkdtemp and rmtree are lazy, they should not be directly improted.
22
from bzrlib import (
23
    osutils,
2221.4.15 by Aaron Bentley
Use RegistryOption for merge type
24
    registry,
1996.3.18 by John Arbash Meinel
Now that mkdtemp and rmtree are lazy, they should not be directly improted.
25
    )
1185.11.5 by John Arbash Meinel
Merged up-to-date against mainline, still broken.
26
from bzrlib.branch import Branch
1666.1.4 by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in
27
from bzrlib.conflicts import ConflictList, Conflict
1457.1.8 by Robert Collins
Replace the WorkingTree.revert method algorithm with a call to merge_inner.
28
from bzrlib.errors import (BzrCommandError,
1534.4.28 by Robert Collins
first cut at merge from integration.
29
                           BzrError,
1457.1.8 by Robert Collins
Replace the WorkingTree.revert method algorithm with a call to merge_inner.
30
                           NoCommonAncestor,
31
                           NoCommits,
1534.4.28 by Robert Collins
first cut at merge from integration.
32
                           NoSuchRevision,
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
33
                           NoSuchFile,
1545.2.6 by Aaron Bentley
Removed _merge, renamed MergeConflictHandler to _MergeConflictHandler
34
                           NotBranchError,
1185.33.27 by Martin Pool
[merge] much integrated work from robert and john
35
                           NotVersionedError,
1457.1.8 by Robert Collins
Replace the WorkingTree.revert method algorithm with a call to merge_inner.
36
                           UnrelatedBranches,
1534.10.12 by Aaron Bentley
Merge produces new conflicts
37
                           UnsupportedOperation,
1457.1.8 by Robert Collins
Replace the WorkingTree.revert method algorithm with a call to merge_inner.
38
                           WorkingTreeNotRevision,
1558.15.3 by Aaron Bentley
Handle binary files for diff3 merges
39
                           BinaryFile,
1534.4.28 by Robert Collins
first cut at merge from integration.
40
                           )
1534.7.167 by Aaron Bentley
PEP8 and comment cleanups
41
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.
42
from bzrlib.osutils import rename, pathjoin
1551.2.32 by Aaron Bentley
Handle progress phases more nicely in merge
43
from progress import DummyProgress, ProgressPhase
2490.2.6 by Aaron Bentley
Use new common-ancestor code everywhere
44
from bzrlib.revision import (is_ancestor, NULL_REVISION, ensure_null)
1558.15.5 by Aaron Bentley
Fixed binary handling in weave merge
45
from bzrlib.textfile import check_text_lines
1545.2.6 by Aaron Bentley
Removed _merge, renamed MergeConflictHandler to _MergeConflictHandler
46
from bzrlib.trace import mutter, warning, note
1534.7.172 by Aaron Bentley
Integrated fs conflicts with merge conflicts.
47
from bzrlib.transform import (TreeTransform, resolve_conflicts, cook_conflicts,
1731.1.33 by Aaron Bentley
Revert no-special-root changes
48
                              FinalPaths, create_by_entry, unique_add,
49
                              ROOT_PARENT)
1551.6.8 by Aaron Bentley
Implemented reprocess for weave
50
from bzrlib.versionedfile import WeaveMerge
1773.4.1 by Martin Pool
Add pyflakes makefile target; fix many warnings
51
from bzrlib import ui
1545.2.6 by Aaron Bentley
Removed _merge, renamed MergeConflictHandler to _MergeConflictHandler
52
53
# TODO: Report back as changes are merged in
54
1545.2.3 by Aaron Bentley
Updated following j-a-meinel's comments
55
def _get_tree(treespec, local_branch=None):
1910.1.1 by Aaron Bentley
Merge takes --uncommitted parameter
56
    from bzrlib import workingtree
622 by Martin Pool
Updated merge patch from Aaron
57
    location, revno = treespec
1910.1.1 by Aaron Bentley
Merge takes --uncommitted parameter
58
    if revno is None:
59
        tree = workingtree.WorkingTree.open_containing(location)[0]
60
        return tree.branch, tree
1442.1.64 by Robert Collins
Branch.open_containing now returns a tuple (Branch, relative-path).
61
    branch = Branch.open_containing(location)[0]
1910.1.1 by Aaron Bentley
Merge takes --uncommitted parameter
62
    if revno == -1:
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.
63
        revision_id = branch.last_revision()
974.1.36 by aaron.bentley at utoronto
Committed it even though the test case doesn't work
64
    else:
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.
65
        revision_id = branch.get_rev_id(revno)
66
    if revision_id is None:
67
        revision_id = NULL_REVISION
68
    return branch, _get_revid_tree(branch, revision_id, local_branch)
69
70
71
def _get_revid_tree(branch, revision_id, local_branch):
72
    if revision_id is None:
1534.4.50 by Robert Collins
Got the bzrdir api straightened out, plenty of refactoring to use it pending, but the api is up and running.
73
        base_tree = branch.bzrdir.open_workingtree()
493 by Martin Pool
- Merge aaron's merge command
74
    else:
974.1.32 by aaron.bentley at utoronto
Made merge do greedy fetching.
75
        if local_branch is not None:
1185.65.30 by Robert Collins
Merge integration.
76
            if local_branch.base != branch.base:
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.
77
                local_branch.fetch(branch, revision_id)
78
            base_tree = local_branch.repository.revision_tree(revision_id)
974.1.32 by aaron.bentley at utoronto
Made merge do greedy fetching.
79
        else:
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.
80
            base_tree = branch.repository.revision_tree(revision_id)
1185.12.41 by abentley
Got rid of MergeAdapterTree
81
    return base_tree
493 by Martin Pool
- Merge aaron's merge command
82
83
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.
84
def _get_revid_tree_from_tree(tree, revision_id, local_branch):
85
    if revision_id is None:
86
        return tree
87
    if local_branch is not None:
88
        if local_branch.base != tree.branch.base:
89
            local_branch.fetch(tree.branch, revision_id)
90
        return local_branch.repository.revision_tree(revision_id)
91
    return tree.branch.repository.revision_tree(revision_id)
92
93
1185.35.4 by Aaron Bentley
Implemented remerge
94
def transform_tree(from_tree, to_tree, interesting_ids=None):
95
    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
96
                interesting_ids=interesting_ids, this_tree=from_tree)
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
97
1457.1.12 by Robert Collins
Update comment to reflect author.
98
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
99
class Merger(object):
2255.2.31 by Robert Collins
Work in progress to make merge_inner work with dirstate trees.
100
    def __init__(self, this_branch, other_tree=None, base_tree=None,
2100.3.31 by Aaron Bentley
Merged bzr.dev (17 tests failing)
101
                 this_tree=None, pb=DummyProgress(), change_reporter=None,
102
                 recurse='down'):
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
103
        object.__init__(self)
1534.4.26 by Robert Collins
Move working tree initialisation out from Branch.initialize, deprecated Branch.initialize to Branch.create.
104
        assert this_tree is not None, "this_tree is required"
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
105
        self.this_branch = this_branch
106
        self.this_basis = this_branch.last_revision()
107
        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.
108
        self.this_tree = this_tree
1185.12.83 by Aaron Bentley
Preliminary weave merge support
109
        self.this_revision_tree = None
1185.35.5 by Aaron Bentley
Made weave merge succeed if interesting files match history
110
        self.this_basis_tree = None
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
111
        self.other_tree = other_tree
2100.3.29 by Aaron Bentley
Get merge working initially
112
        self.other_branch = None
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
113
        self.base_tree = base_tree
114
        self.ignore_zero = False
115
        self.backup_files = False
116
        self.interesting_ids = None
2590.2.5 by Aaron Bentley
Allow selected files to be specified instead of selected ids
117
        self.interesting_files = None
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
118
        self.show_base = False
1185.24.3 by Aaron Bentley
Integrated reprocessing into the rest of the merge stuff
119
        self.reprocess = False
2255.2.31 by Robert Collins
Work in progress to make merge_inner work with dirstate trees.
120
        self._pb = pb
1551.2.32 by Aaron Bentley
Handle progress phases more nicely in merge
121
        self.pp = None
2100.3.29 by Aaron Bentley
Get merge working initially
122
        self.recurse = recurse
1551.11.9 by Aaron Bentley
Apply change reporting to merge
123
        self.change_reporter = change_reporter
1551.2.32 by Aaron Bentley
Handle progress phases more nicely in merge
124
1185.12.83 by Aaron Bentley
Preliminary weave merge support
125
    def revision_tree(self, revision_id):
1185.67.2 by Aaron Bentley
Renamed Branch.storage to Branch.repository
126
        return self.this_branch.repository.revision_tree(revision_id)
1185.12.83 by Aaron Bentley
Preliminary weave merge support
127
128
    def ensure_revision_trees(self):
129
        if self.this_revision_tree is None:
1185.67.2 by Aaron Bentley
Renamed Branch.storage to Branch.repository
130
            self.this_basis_tree = self.this_branch.repository.revision_tree(
1185.35.5 by Aaron Bentley
Made weave merge succeed if interesting files match history
131
                self.this_basis)
132
            if self.this_basis == self.this_rev_id:
133
                self.this_revision_tree = self.this_basis_tree
134
1185.12.83 by Aaron Bentley
Preliminary weave merge support
135
        if self.other_rev_id is None:
136
            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.
137
            changes = other_basis_tree.changes_from(self.other_tree)
1185.12.83 by Aaron Bentley
Preliminary weave merge support
138
            if changes.has_changed():
139
                raise WorkingTreeNotRevision(self.this_tree)
1773.4.1 by Martin Pool
Add pyflakes makefile target; fix many warnings
140
            other_rev_id = self.other_basis
1185.12.83 by Aaron Bentley
Preliminary weave merge support
141
            self.other_tree = other_basis_tree
142
143
    def file_revisions(self, file_id):
144
        self.ensure_revision_trees()
145
        def get_id(tree, file_id):
146
            revision_id = tree.inventory[file_id].revision
147
            assert revision_id is not None
148
            return revision_id
1185.35.5 by Aaron Bentley
Made weave merge succeed if interesting files match history
149
        if self.this_rev_id is None:
150
            if self.this_basis_tree.get_file_sha1(file_id) != \
151
                self.this_tree.get_file_sha1(file_id):
152
                raise WorkingTreeNotRevision(self.this_tree)
153
154
        trees = (self.this_basis_tree, self.other_tree)
1185.12.83 by Aaron Bentley
Preliminary weave merge support
155
        return [get_id(tree, file_id) for tree in trees]
156
1185.82.44 by Aaron Bentley
Switch to merge_changeset in test suite
157
    def check_basis(self, check_clean, require_commits=True):
158
        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
159
            raise BzrCommandError("This branch has no commits."
160
                                  " (perhaps you would prefer 'bzr pull')")
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
161
        if check_clean:
162
            self.compare_basis()
163
            if self.this_basis != self.this_rev_id:
164
                raise BzrCommandError("Working tree has uncommitted changes.")
165
166
    def compare_basis(self):
1852.10.3 by Robert Collins
Remove all uses of compare_trees and replace with Tree.changes_from throughout bzrlib.
167
        changes = self.this_tree.changes_from(self.this_tree.basis_tree())
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
168
        if not changes.has_changed():
169
            self.this_rev_id = self.this_basis
170
171
    def set_interesting_files(self, file_list):
1457.1.8 by Robert Collins
Replace the WorkingTree.revert method algorithm with a call to merge_inner.
172
        try:
2590.2.5 by Aaron Bentley
Allow selected files to be specified instead of selected ids
173
            self.interesting_files = file_list
1457.1.8 by Robert Collins
Replace the WorkingTree.revert method algorithm with a call to merge_inner.
174
        except NotVersionedError, e:
175
            raise BzrCommandError("%s is not a source file in any"
176
                                      " tree." % e.path)
177
178
    def _set_interesting_files(self, file_list):
179
        """Set the list of interesting ids from a list of files."""
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
180
        if file_list is None:
181
            self.interesting_ids = None
182
            return
183
1465 by Robert Collins
Bugfix the new pull --clobber to not generate spurious conflicts.
184
        interesting_ids = set()
1185.50.53 by John Arbash Meinel
[patch] Aaron Bentley: make revert work in a subdirectory.
185
        for path in file_list:
1465 by Robert Collins
Bugfix the new pull --clobber to not generate spurious conflicts.
186
            found_id = False
2255.7.12 by John Arbash Meinel
Some comments on merge code, fix merge tests that
187
            # TODO: jam 20070226 The trees are not locked at this time,
188
            #       wouldn't it make merge faster if it locks everything in the
189
            #       beginning? It locks at do_merge time, but this happens
190
            #       before that.
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
191
            for tree in (self.this_tree, self.base_tree, self.other_tree):
2255.7.11 by John Arbash Meinel
Avoid directly accessing tree.inventory in merge.py
192
                file_id = tree.path2id(path)
1465 by Robert Collins
Bugfix the new pull --clobber to not generate spurious conflicts.
193
                if file_id is not None:
194
                    interesting_ids.add(file_id)
195
                    found_id = True
196
            if not found_id:
1185.50.53 by John Arbash Meinel
[patch] Aaron Bentley: make revert work in a subdirectory.
197
                raise NotVersionedError(path=path)
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
198
        self.interesting_ids = interesting_ids
199
200
    def set_pending(self):
1185.12.77 by Aaron Bentley
Prevented all ancestors from being marked as pending merges
201
        if not self.base_is_ancestor:
202
            return
203
        if self.other_rev_id is None:
204
            return
2490.2.33 by Aaron Bentley
Disable topological sorting of get_ancestry where sensible
205
        ancestry = set(self.this_branch.repository.get_ancestry(
206
            self.this_basis, topo_sorted=False))
1185.66.2 by Aaron Bentley
Moved get_ancestry to RevisionStorage
207
        if self.other_rev_id in ancestry:
1185.12.77 by Aaron Bentley
Prevented all ancestors from being marked as pending merges
208
            return
1908.6.3 by Robert Collins
Tidy up the last_revision_id and add_pending_merge conversion to use cleaner apis.
209
        self.this_tree.add_parent_tree((self.other_rev_id, self.other_tree))
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
210
211
    def set_other(self, other_revision):
1979.2.1 by Robert Collins
(robertc) adds a convenience method "merge_from_branch" to WorkingTree.
212
        """Set the revision and tree to merge from.
213
214
        This sets the other_tree, other_rev_id, other_basis attributes.
215
216
        :param other_revision: The [path, revision] list to merge from.
217
        """
2100.3.29 by Aaron Bentley
Get merge working initially
218
        self.other_branch, self.other_tree = _get_tree(other_revision,
1545.2.3 by Aaron Bentley
Updated following j-a-meinel's comments
219
                                                  self.this_branch)
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
220
        if other_revision[1] == -1:
2100.3.31 by Aaron Bentley
Merged bzr.dev (17 tests failing)
221
            self.other_rev_id = self.other_branch.last_revision()
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
222
            if self.other_rev_id is None:
2100.3.31 by Aaron Bentley
Merged bzr.dev (17 tests failing)
223
                raise NoCommits(self.other_branch)
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
224
            self.other_basis = self.other_rev_id
225
        elif other_revision[1] is not None:
2100.3.31 by Aaron Bentley
Merged bzr.dev (17 tests failing)
226
            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
227
            self.other_basis = self.other_rev_id
228
        else:
229
            self.other_rev_id = None
2100.3.31 by Aaron Bentley
Merged bzr.dev (17 tests failing)
230
            self.other_basis = self.other_branch.last_revision()
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
231
            if self.other_basis is None:
2100.3.31 by Aaron Bentley
Merged bzr.dev (17 tests failing)
232
                raise NoCommits(self.other_branch)
233
        if self.other_branch.base != self.this_branch.base:
234
            self.this_branch.fetch(self.other_branch,
235
                                   last_revision=self.other_basis)
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
236
2100.3.29 by Aaron Bentley
Get merge working initially
237
    def set_other_revision(self, revision_id, other_branch):
238
        """Set 'other' based on a branch and revision id
239
240
        :param revision_id: The revision to use for a tree
241
        :param other_branch: The branch containing this tree
242
        """
243
        self.other_rev_id = revision_id
244
        self.other_branch = other_branch
245
        self.this_branch.fetch(other_branch, self.other_rev_id)
246
        self.other_tree = self.revision_tree(revision_id)
247
        self.other_basis = revision_id
248
1185.82.25 by Aaron Bentley
Added changeset-merging functionality
249
    def find_base(self):
1185.82.29 by Aaron Bentley
Got merge test working
250
        self.set_base([None, None])
1185.82.25 by Aaron Bentley
Added changeset-merging functionality
251
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
252
    def set_base(self, base_revision):
1979.2.1 by Robert Collins
(robertc) adds a convenience method "merge_from_branch" to WorkingTree.
253
        """Set the base revision to use for the merge.
254
255
        :param base_revision: A 2-list containing a path and revision number.
256
        """
1185.12.96 by Aaron Bentley
Merge from mpool
257
        mutter("doing merge() with no base_revision specified")
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
258
        if base_revision == [None, None]:
259
            try:
2094.3.5 by John Arbash Meinel
Fix imports to ensure modules are loaded before they are used
260
                pb = ui.ui_factory.nested_progress_bar()
1551.2.32 by Aaron Bentley
Handle progress phases more nicely in merge
261
                try:
262
                    this_repo = self.this_branch.repository
2490.2.21 by Aaron Bentley
Rename graph to deprecated_graph
263
                    graph = this_repo.get_graph()
2490.2.5 by Aaron Bentley
Use GraphWalker.unique_ancestor to determine merge base
264
                    revisions = [ensure_null(self.this_basis),
265
                                 ensure_null(self.other_basis)]
266
                    if NULL_REVISION in revisions:
267
                        self.base_rev_id = NULL_REVISION
268
                    else:
2490.2.21 by Aaron Bentley
Rename graph to deprecated_graph
269
                        self.base_rev_id = graph.find_unique_lca(*revisions)
2490.2.5 by Aaron Bentley
Use GraphWalker.unique_ancestor to determine merge base
270
                        if self.base_rev_id == NULL_REVISION:
271
                            raise UnrelatedBranches()
1551.2.32 by Aaron Bentley
Handle progress phases more nicely in merge
272
                finally:
273
                    pb.finished()
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
274
            except NoCommonAncestor:
275
                raise UnrelatedBranches()
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.
276
            self.base_tree = _get_revid_tree_from_tree(self.this_tree,
277
                                                       self.base_rev_id,
278
                                                       None)
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
279
            self.base_is_ancestor = True
280
        else:
1545.2.3 by Aaron Bentley
Updated following j-a-meinel's comments
281
            base_branch, self.base_tree = _get_tree(base_revision)
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
282
            if base_revision[1] == -1:
283
                self.base_rev_id = base_branch.last_revision()
284
            elif base_revision[1] is None:
285
                self.base_rev_id = None
493 by Martin Pool
- Merge aaron's merge command
286
            else:
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
287
                self.base_rev_id = base_branch.get_rev_id(base_revision[1])
1558.4.11 by Aaron Bentley
Allow merge against self, make fetching self a noop
288
            if self.this_branch.base != base_branch.base:
289
                self.this_branch.fetch(base_branch)
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
290
            self.base_is_ancestor = is_ancestor(self.this_basis, 
291
                                                self.base_rev_id,
292
                                                self.this_branch)
293
294
    def do_merge(self):
2255.2.31 by Robert Collins
Work in progress to make merge_inner work with dirstate trees.
295
        kwargs = {'working_tree':self.this_tree, 'this_tree': self.this_tree,
296
                  'other_tree': self.other_tree,
1551.2.32 by Aaron Bentley
Handle progress phases more nicely in merge
297
                  'interesting_ids': self.interesting_ids,
2590.2.5 by Aaron Bentley
Allow selected files to be specified instead of selected ids
298
                  'interesting_files': self.interesting_files,
1551.2.32 by Aaron Bentley
Handle progress phases more nicely in merge
299
                  'pp': self.pp}
1534.7.84 by Aaron Bentley
Added reprocess support, support for varying merge types
300
        if self.merge_type.requires_base:
301
            kwargs['base_tree'] = self.base_tree
1534.7.137 by Aaron Bentley
Avoided generating a new tree for every weave merge
302
        if self.merge_type.supports_reprocess:
303
            kwargs['reprocess'] = self.reprocess
304
        elif self.reprocess:
1551.6.14 by Aaron Bentley
Tweaks from merge review
305
            raise BzrError("Conflict reduction is not supported for merge"
306
                                  " type %s." % self.merge_type)
1534.7.137 by Aaron Bentley
Avoided generating a new tree for every weave merge
307
        if self.merge_type.supports_show_base:
308
            kwargs['show_base'] = self.show_base
309
        elif self.show_base:
1534.8.2 by Aaron Bentley
Implemented weave merge
310
            raise BzrError("Showing base is not supported for this"
311
                                  " merge type. %s" % self.merge_type)
2255.2.50 by John Arbash Meinel
merge only needs a lock_tree_write() on the working tree, not a full lock_write()
312
        self.this_tree.lock_tree_write()
2255.2.31 by Robert Collins
Work in progress to make merge_inner work with dirstate trees.
313
        if self.base_tree is not None:
314
            self.base_tree.lock_read()
315
        if self.other_tree is not None:
316
            self.other_tree.lock_read()
317
        try:
2255.2.83 by John Arbash Meinel
[merge] bzr.dev 2294
318
            merge = self.merge_type(pb=self._pb,
319
                                    change_reporter=self.change_reporter,
320
                                    **kwargs)
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.
321
            if self.recurse == 'down':
322
                for path, file_id in self.this_tree.iter_references():
323
                    sub_tree = self.this_tree.get_nested_tree(file_id, path)
324
                    other_revision = self.other_tree.get_reference_revision(
325
                        file_id, path)
326
                    if  other_revision == sub_tree.last_revision():
327
                        continue
328
                    sub_merge = Merger(sub_tree.branch, this_tree=sub_tree)
329
                    sub_merge.merge_type = self.merge_type
330
                    relpath = self.this_tree.relpath(path)
331
                    other_branch = self.other_branch.reference_parent(file_id, relpath)
332
                    sub_merge.set_other_revision(other_revision, other_branch)
333
                    base_revision = self.base_tree.get_reference_revision(file_id)
334
                    sub_merge.base_tree = \
335
                        sub_tree.branch.repository.revision_tree(base_revision)
336
                    sub_merge.do_merge()
337
2255.2.31 by Robert Collins
Work in progress to make merge_inner work with dirstate trees.
338
        finally:
339
            if self.other_tree is not None:
340
                self.other_tree.unlock()
341
            if self.base_tree is not None:
342
                self.base_tree.unlock()
343
            self.this_tree.unlock()
1534.7.151 by Aaron Bentley
Fixed all changes applied successfully
344
        if len(merge.cooked_conflicts) == 0:
1534.7.141 by Aaron Bentley
Added conflict reporting
345
            if not self.ignore_zero:
346
                note("All changes applied successfully.")
347
        else:
348
            note("%d conflicts encountered." % len(merge.cooked_conflicts))
349
1534.7.134 by Aaron Bentley
Hid raw conflicts
350
        return len(merge.cooked_conflicts)
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
351
352
    def regen_inventory(self, new_entries):
1534.4.26 by Robert Collins
Move working tree initialisation out from Branch.initialize, deprecated Branch.initialize to Branch.create.
353
        old_entries = self.this_tree.read_working_inventory()
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
354
        new_inventory = {}
355
        by_path = {}
356
        new_entries_map = {} 
357
        for path, file_id in new_entries:
358
            if path is None:
359
                continue
360
            new_entries_map[file_id] = path
361
362
        def id2path(file_id):
363
            path = new_entries_map.get(file_id)
364
            if path is not None:
365
                return path
366
            entry = old_entries[file_id]
367
            if entry.parent_id is None:
368
                return entry.name
1185.31.32 by John Arbash Meinel
Updated the bzr sourcecode to use bzrlib.osutils.pathjoin rather than os.path.join to enforce internal use of / instead of \
369
            return pathjoin(id2path(entry.parent_id), entry.name)
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
370
            
371
        for file_id in old_entries:
372
            entry = old_entries[file_id]
373
            path = id2path(file_id)
1185.80.5 by John Arbash Meinel
Changing the escaping just a little bit. Now we can handle unicode characters.
374
            if file_id in self.base_tree.inventory:
375
                executable = getattr(self.base_tree.inventory[file_id], 'executable', False)
376
            else:
377
                executable = getattr(entry, 'executable', False)
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
378
            new_inventory[file_id] = (path, file_id, entry.parent_id, 
1185.80.5 by John Arbash Meinel
Changing the escaping just a little bit. Now we can handle unicode characters.
379
                                      entry.kind, executable)
380
                                      
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
381
            by_path[path] = file_id
974.1.21 by aaron.bentley at utoronto
Handled path generation properly
382
        
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
383
        deletions = 0
384
        insertions = 0
385
        new_path_list = []
386
        for path, file_id in new_entries:
387
            if path is None:
388
                del new_inventory[file_id]
389
                deletions += 1
390
            else:
391
                new_path_list.append((path, file_id))
392
                if file_id not in old_entries:
393
                    insertions += 1
394
        # Ensure no file is added before its parent
395
        new_path_list.sort()
396
        for path, file_id in new_path_list:
397
            if path == '':
398
                parent = None
399
            else:
400
                parent = by_path[os.path.dirname(path)]
1185.31.32 by John Arbash Meinel
Updated the bzr sourcecode to use bzrlib.osutils.pathjoin rather than os.path.join to enforce internal use of / instead of \
401
            abspath = pathjoin(self.this_tree.basedir, path)
2094.3.5 by John Arbash Meinel
Fix imports to ensure modules are loaded before they are used
402
            kind = osutils.file_kind(abspath)
1185.80.4 by John Arbash Meinel
We need to reference the basis_tree to get the proper executable bits.
403
            if file_id in self.base_tree.inventory:
1185.80.5 by John Arbash Meinel
Changing the escaping just a little bit. Now we can handle unicode characters.
404
                executable = getattr(self.base_tree.inventory[file_id], 'executable', False)
1185.80.4 by John Arbash Meinel
We need to reference the basis_tree to get the proper executable bits.
405
            else:
406
                executable = False
407
            new_inventory[file_id] = (path, file_id, parent, kind, executable)
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
408
            by_path[path] = file_id 
493 by Martin Pool
- Merge aaron's merge command
409
1185.12.76 by Aaron Bentley
Refactored merge and merge_inner to use Merger
410
        # Get a list in insertion order
411
        new_inventory_list = new_inventory.values()
412
        mutter ("""Inventory regeneration:
413
    old length: %i insertions: %i deletions: %i new_length: %i"""\
414
            % (len(old_entries), insertions, deletions, 
415
               len(new_inventory_list)))
416
        assert len(new_inventory_list) == len(old_entries) + insertions\
417
            - deletions
418
        new_inventory_list.sort()
419
        return new_inventory_list
974.1.9 by Aaron Bentley
Added merge-type parameter to merge.
420
1545.2.4 by Aaron Bentley
PEP8 fixes
421
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
422
class Merge3Merger(object):
1534.7.167 by Aaron Bentley
PEP8 and comment cleanups
423
    """Three-way merger that uses the merge3 text merger"""
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
424
    requires_base = True
425
    supports_reprocess = True
426
    supports_show_base = True
427
    history_based = False
1534.7.167 by Aaron Bentley
PEP8 and comment cleanups
428
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
429
    def __init__(self, working_tree, this_tree, base_tree, other_tree, 
1558.2.2 by Aaron Bentley
Make remerge honour interesting-ids
430
                 interesting_ids=None, reprocess=False, show_base=False,
2590.2.5 by Aaron Bentley
Allow selected files to be specified instead of selected ids
431
                 pb=DummyProgress(), pp=None, change_reporter=None,
432
                 interesting_files=None):
1534.7.157 by Aaron Bentley
Added more docs
433
        """Initialize the merger object and perform the merge."""
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
434
        object.__init__(self)
2590.2.5 by Aaron Bentley
Allow selected files to be specified instead of selected ids
435
        if interesting_files is not None:
436
            assert interesting_ids is None
2590.2.4 by Aaron Bentley
Move entry generation to a helper
437
        self.interesting_ids = interesting_ids
2590.2.5 by Aaron Bentley
Allow selected files to be specified instead of selected ids
438
        self.interesting_files = interesting_files
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
439
        self.this_tree = working_tree
2255.7.52 by Robert Collins
Lock trees in Merge3Merger correctly.
440
        self.this_tree.lock_tree_write()
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
441
        self.base_tree = base_tree
2255.7.52 by Robert Collins
Lock trees in Merge3Merger correctly.
442
        self.base_tree.lock_read()
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
443
        self.other_tree = other_tree
2255.7.52 by Robert Collins
Lock trees in Merge3Merger correctly.
444
        self.other_tree.lock_read()
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
445
        self._raw_conflicts = []
446
        self.cooked_conflicts = []
447
        self.reprocess = reprocess
448
        self.show_base = show_base
1534.9.1 by Aaron Bentley
Added progress bars to merge
449
        self.pb = pb
1551.2.32 by Aaron Bentley
Handle progress phases more nicely in merge
450
        self.pp = pp
1551.11.9 by Aaron Bentley
Apply change reporting to merge
451
        self.change_reporter = change_reporter
1551.2.32 by Aaron Bentley
Handle progress phases more nicely in merge
452
        if self.pp is None:
453
            self.pp = ProgressPhase("Merge phase", 3, self.pb)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
454
1534.9.1 by Aaron Bentley
Added progress bars to merge
455
        self.tt = TreeTransform(working_tree, self.pb)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
456
        try:
1551.2.32 by Aaron Bentley
Handle progress phases more nicely in merge
457
            self.pp.next_phase()
2590.2.4 by Aaron Bentley
Move entry generation to a helper
458
            entries = self._entries3()
1773.4.1 by Martin Pool
Add pyflakes makefile target; fix many warnings
459
            child_pb = ui.ui_factory.nested_progress_bar()
1551.2.31 by Aaron Bentley
Got merge and revert using nested pbs
460
            try:
2590.2.4 by Aaron Bentley
Move entry generation to a helper
461
                for num, (file_id, changed, parents3, names3,
462
                          executable3) in enumerate(entries):
2590.2.1 by Aaron Bentley
Start work on merging names based on iter_changes
463
                    child_pb.update('Preparing file merge', num, len(entries))
2590.2.3 by Aaron Bentley
Merge the execute bit based on iter_changes
464
                    self._merge_names(file_id, parents3, names3)
465
                    if changed:
466
                        file_status = self.merge_contents(file_id)
467
                    else:
468
                        file_status = 'unmodified'
469
                    self._merge_executable(file_id,
470
                        executable3, file_status)
1551.2.31 by Aaron Bentley
Got merge and revert using nested pbs
471
            finally:
472
                child_pb.finished()
1731.1.33 by Aaron Bentley
Revert no-special-root changes
473
            self.fix_root()
1551.2.32 by Aaron Bentley
Handle progress phases more nicely in merge
474
            self.pp.next_phase()
1773.4.1 by Martin Pool
Add pyflakes makefile target; fix many warnings
475
            child_pb = ui.ui_factory.nested_progress_bar()
1551.2.31 by Aaron Bentley
Got merge and revert using nested pbs
476
            try:
477
                fs_conflicts = resolve_conflicts(self.tt, child_pb)
478
            finally:
479
                child_pb.finished()
1551.11.9 by Aaron Bentley
Apply change reporting to merge
480
            if change_reporter is not None:
1551.11.12 by Aaron Bentley
Changes from review
481
                from bzrlib import delta
1551.11.9 by Aaron Bentley
Apply change reporting to merge
482
                delta.report_changes(self.tt._iter_changes(), change_reporter)
1534.7.172 by Aaron Bentley
Integrated fs conflicts with merge conflicts.
483
            self.cook_conflicts(fs_conflicts)
1534.10.24 by Aaron Bentley
Eliminated conflicts_to_strings, made remove_files a ConflictList member
484
            for conflict in self.cooked_conflicts:
485
                warning(conflict)
1551.2.32 by Aaron Bentley
Handle progress phases more nicely in merge
486
            self.pp.next_phase()
1534.7.192 by Aaron Bentley
Record hashes produced by merges
487
            results = self.tt.apply()
1558.4.3 by Aaron Bentley
Merge_modified performance/concurrency fix
488
            self.write_modified(results)
1534.10.12 by Aaron Bentley
Merge produces new conflicts
489
            try:
1551.7.11 by Aaron Bentley
Add WorkingTree.add_conflicts
490
                working_tree.add_conflicts(self.cooked_conflicts)
1534.10.12 by Aaron Bentley
Merge produces new conflicts
491
            except UnsupportedOperation:
492
                pass
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
493
        finally:
1711.7.7 by John Arbash Meinel
Don't squelch errors in tt.finalize()
494
            self.tt.finalize()
2255.7.52 by Robert Collins
Lock trees in Merge3Merger correctly.
495
            self.other_tree.unlock()
496
            self.base_tree.unlock()
497
            self.this_tree.unlock()
1551.2.31 by Aaron Bentley
Got merge and revert using nested pbs
498
            self.pb.clear()
1534.7.192 by Aaron Bentley
Record hashes produced by merges
499
2590.2.4 by Aaron Bentley
Move entry generation to a helper
500
    def _entries3(self):
501
        result = []
2590.2.5 by Aaron Bentley
Allow selected files to be specified instead of selected ids
502
        iterator = self.other_tree._iter_changes(self.base_tree,
503
                include_unchanged=True, specific_files=self.interesting_files,
504
                extra_trees=[self.this_tree])
2590.2.4 by Aaron Bentley
Move entry generation to a helper
505
        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
506
             executable) in iterator:
2590.2.4 by Aaron Bentley
Move entry generation to a helper
507
            if (self.interesting_ids is not None and
508
                file_id not in self.interesting_ids):
509
                continue
510
            if file_id in self.this_tree.inventory:
511
                entry = self.this_tree.inventory[file_id]
512
                this_name = entry.name
513
                this_parent = entry.parent_id
514
                this_executable = entry.executable
515
            else:
516
                this_name = None
517
                this_parent = None
518
                this_executable = None
519
            parents3 = parents + (this_parent,)
520
            names3 = names + (this_name,)
521
            executable3 = executable + (this_executable,)
522
            result.append((file_id, changed, parents3, names3, executable3))
523
        return result
524
1731.1.33 by Aaron Bentley
Revert no-special-root changes
525
    def fix_root(self):
526
        try:
527
            self.tt.final_kind(self.tt.root)
528
        except NoSuchFile:
529
            self.tt.cancel_deletion(self.tt.root)
530
        if self.tt.final_file_id(self.tt.root) is None:
531
            self.tt.version_file(self.tt.tree_file_id(self.tt.root), 
532
                                 self.tt.root)
533
        if self.other_tree.inventory.root is None:
534
            return
535
        other_root_file_id = self.other_tree.inventory.root.file_id
536
        other_root = self.tt.trans_id_file_id(other_root_file_id)
537
        if other_root == self.tt.root:
538
            return
539
        try:
540
            self.tt.final_kind(other_root)
541
        except NoSuchFile:
542
            return
543
        self.reparent_children(self.other_tree.inventory.root, self.tt.root)
544
        self.tt.cancel_creation(other_root)
545
        self.tt.cancel_versioning(other_root)
546
547
    def reparent_children(self, ie, target):
548
        for thing, child in ie.children.iteritems():
549
            trans_id = self.tt.trans_id_file_id(child.file_id)
550
            self.tt.adjust_path(self.tt.final_name(trans_id), target, trans_id)
551
1534.7.192 by Aaron Bentley
Record hashes produced by merges
552
    def write_modified(self, results):
553
        modified_hashes = {}
554
        for path in results.modified_paths:
555
            file_id = self.this_tree.path2id(self.this_tree.relpath(path))
556
            if file_id is None:
557
                continue
558
            hash = self.this_tree.get_file_sha1(file_id)
559
            if hash is None:
560
                continue
561
            modified_hashes[file_id] = hash
562
        self.this_tree.set_merge_modified(modified_hashes)
563
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
564
    @staticmethod
565
    def parent(entry, file_id):
1534.7.157 by Aaron Bentley
Added more docs
566
        """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
567
        if entry is None:
568
            return None
569
        return entry.parent_id
570
571
    @staticmethod
572
    def name(entry, file_id):
1534.7.157 by Aaron Bentley
Added more docs
573
        """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
574
        if entry is None:
575
            return None
576
        return entry.name
577
    
578
    @staticmethod
579
    def contents_sha1(tree, file_id):
1534.7.157 by Aaron Bentley
Added more docs
580
        """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
581
        if file_id not in tree:
582
            return None
583
        return tree.get_file_sha1(file_id)
584
585
    @staticmethod
586
    def executable(tree, file_id):
1534.7.157 by Aaron Bentley
Added more docs
587
        """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
588
        if file_id not in tree:
589
            return None
590
        if tree.kind(file_id) != "file":
591
            return False
592
        return tree.is_executable(file_id)
593
594
    @staticmethod
595
    def kind(tree, file_id):
1534.7.157 by Aaron Bentley
Added more docs
596
        """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
597
        if file_id not in tree:
598
            return None
599
        return tree.kind(file_id)
600
601
    @staticmethod
602
    def scalar_three_way(this_tree, base_tree, other_tree, file_id, key):
603
        """Do a three-way test on a scalar.
604
        Return "this", "other" or "conflict", depending whether a value wins.
605
        """
606
        key_base = key(base_tree, file_id)
607
        key_other = key(other_tree, file_id)
608
        #if base == other, either they all agree, or only THIS has changed.
609
        if key_base == key_other:
610
            return "this"
611
        key_this = key(this_tree, file_id)
612
        if key_this not in (key_base, key_other):
613
            return "conflict"
614
        # "Ambiguous clean merge"
615
        elif key_this == key_other:
616
            return "this"
617
        else:
618
            assert key_this == key_base
619
            return "other"
620
621
    def merge_names(self, file_id):
1534.7.157 by Aaron Bentley
Added more docs
622
        """Perform a merge on file_id names and parents"""
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
623
        def get_entry(tree):
624
            if file_id in tree.inventory:
625
                return tree.inventory[file_id]
626
            else:
627
                return None
628
        this_entry = get_entry(self.this_tree)
629
        other_entry = get_entry(self.other_tree)
630
        base_entry = get_entry(self.base_tree)
2590.2.1 by Aaron Bentley
Start work on merging names based on iter_changes
631
        entries = (base_entry, other_entry, this_entry)
632
        names = []
633
        parents = []
634
        for entry in entries:
635
            if entry is None:
636
                names.append(None)
637
                parents.append(None)
638
            else:
639
                names.append(entry.name)
640
                parents.append(entry.parent_id)
2590.2.2 by Aaron Bentley
Do most name merging from iter_changes output
641
        return self._merge_names(file_id, parents, names)
2590.2.1 by Aaron Bentley
Start work on merging names based on iter_changes
642
643
    @staticmethod
644
    def _three_way(base, other, this):
645
        if base == other:
646
            return 'this'
647
        if this not in (base, other):
648
            return 'conflict'
649
        elif this == other:
650
            return "this"
651
        else:
652
            assert this == base
653
            return "other"
654
655
2590.2.2 by Aaron Bentley
Do most name merging from iter_changes output
656
    def _merge_names(self, file_id, parents, names):
2590.2.1 by Aaron Bentley
Start work on merging names based on iter_changes
657
        base_name, other_name, this_name = names
658
        base_parent, other_parent, this_parent = parents
2590.2.2 by Aaron Bentley
Do most name merging from iter_changes output
659
2590.2.1 by Aaron Bentley
Start work on merging names based on iter_changes
660
        name_winner = self._three_way(*names)
661
662
        parent_id_winner = self._three_way(*parents)
2590.2.2 by Aaron Bentley
Do most name merging from iter_changes output
663
        if this_name is None:
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
664
            if name_winner == "this":
665
                name_winner = "other"
666
            if parent_id_winner == "this":
667
                parent_id_winner = "other"
668
        if name_winner == "this" and parent_id_winner == "this":
669
            return
670
        if name_winner == "conflict":
1534.7.181 by Aaron Bentley
Renamed a bunch of functions
671
            trans_id = self.tt.trans_id_file_id(file_id)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
672
            self._raw_conflicts.append(('name conflict', trans_id, 
2590.2.1 by Aaron Bentley
Start work on merging names based on iter_changes
673
                                        this_name, other_name))
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
674
        if parent_id_winner == "conflict":
1534.7.181 by Aaron Bentley
Renamed a bunch of functions
675
            trans_id = self.tt.trans_id_file_id(file_id)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
676
            self._raw_conflicts.append(('parent conflict', trans_id, 
2590.2.1 by Aaron Bentley
Start work on merging names based on iter_changes
677
                                        this_parent, other_parent))
2590.2.2 by Aaron Bentley
Do most name merging from iter_changes output
678
        if other_name is None:
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
679
            # it doesn't matter whether the result was 'other' or 
680
            # 'conflict'-- if there's no 'other', we leave it alone.
681
            return
682
        # if we get here, name_winner and parent_winner are set to safe values.
2590.2.1 by Aaron Bentley
Start work on merging names based on iter_changes
683
        winner_idx = {"this": 2, "other": 1, "conflict": 1}
1534.7.181 by Aaron Bentley
Renamed a bunch of functions
684
        trans_id = self.tt.trans_id_file_id(file_id)
2590.2.1 by Aaron Bentley
Start work on merging names based on iter_changes
685
        parent_id = parents[winner_idx[parent_id_winner]]
1731.1.33 by Aaron Bentley
Revert no-special-root changes
686
        if parent_id is not None:
687
            parent_trans_id = self.tt.trans_id_file_id(parent_id)
2590.2.1 by Aaron Bentley
Start work on merging names based on iter_changes
688
            self.tt.adjust_path(names[winner_idx[name_winner]],
1731.1.33 by Aaron Bentley
Revert no-special-root changes
689
                                parent_trans_id, trans_id)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
690
691
    def merge_contents(self, file_id):
1534.7.157 by Aaron Bentley
Added more docs
692
        """Performa a merge on file_id contents."""
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
693
        def contents_pair(tree):
694
            if file_id not in tree:
695
                return (None, None)
696
            kind = tree.kind(file_id)
697
            if kind == "file":
698
                contents = tree.get_file_sha1(file_id)
699
            elif kind == "symlink":
700
                contents = tree.get_symlink_target(file_id)
701
            else:
702
                contents = None
703
            return kind, contents
1558.15.3 by Aaron Bentley
Handle binary files for diff3 merges
704
705
        def contents_conflict():
706
            trans_id = self.tt.trans_id_file_id(file_id)
707
            name = self.tt.final_name(trans_id)
708
            parent_id = self.tt.final_parent(trans_id)
709
            if file_id in self.this_tree.inventory:
710
                self.tt.unversion_file(trans_id)
1551.10.2 by Aaron Bentley
Handle merge with dangling inventory entries
711
                if file_id in self.this_tree:
712
                    self.tt.delete_contents(trans_id)
1558.15.3 by Aaron Bentley
Handle binary files for diff3 merges
713
            file_group = self._dump_conflicts(name, parent_id, file_id, 
714
                                              set_version=True)
715
            self._raw_conflicts.append(('contents conflict', file_group))
716
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
717
        # See SPOT run.  run, SPOT, run.
718
        # So we're not QUITE repeating ourselves; we do tricky things with
719
        # file kind...
720
        base_pair = contents_pair(self.base_tree)
721
        other_pair = contents_pair(self.other_tree)
722
        if base_pair == other_pair:
1534.7.145 by Aaron Bentley
More fixups after get_trans_id
723
            # OTHER introduced no changes
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
724
            return "unmodified"
725
        this_pair = contents_pair(self.this_tree)
726
        if this_pair == other_pair:
1534.7.145 by Aaron Bentley
More fixups after get_trans_id
727
            # THIS and OTHER introduced the same changes
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
728
            return "unmodified"
729
        else:
1534.7.181 by Aaron Bentley
Renamed a bunch of functions
730
            trans_id = self.tt.trans_id_file_id(file_id)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
731
            if this_pair == base_pair:
1534.7.145 by Aaron Bentley
More fixups after get_trans_id
732
                # only OTHER introduced changes
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
733
                if file_id in self.this_tree:
1534.7.145 by Aaron Bentley
More fixups after get_trans_id
734
                    # Remove any existing contents
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
735
                    self.tt.delete_contents(trans_id)
1534.7.147 by Aaron Bentley
Tweak to check inventory, not tree for file ids
736
                if file_id in self.other_tree:
1534.7.145 by Aaron Bentley
More fixups after get_trans_id
737
                    # OTHER changed the file
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
738
                    create_by_entry(self.tt, 
739
                                    self.other_tree.inventory[file_id], 
740
                                    self.other_tree, trans_id)
1534.7.147 by Aaron Bentley
Tweak to check inventory, not tree for file ids
741
                    if file_id not in self.this_tree.inventory:
1534.7.145 by Aaron Bentley
More fixups after get_trans_id
742
                        self.tt.version_file(file_id, trans_id)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
743
                    return "modified"
1534.7.147 by Aaron Bentley
Tweak to check inventory, not tree for file ids
744
                elif file_id in self.this_tree.inventory:
1534.7.145 by Aaron Bentley
More fixups after get_trans_id
745
                    # OTHER deleted the file
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
746
                    self.tt.unversion_file(trans_id)
747
                    return "deleted"
1534.7.145 by Aaron Bentley
More fixups after get_trans_id
748
            #BOTH THIS and OTHER introduced changes; scalar conflict
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
749
            elif this_pair[0] == "file" and other_pair[0] == "file":
1534.7.145 by Aaron Bentley
More fixups after get_trans_id
750
                # THIS and OTHER are both files, so text merge.  Either
751
                # BASE is a file, or both converted to files, so at least we
752
                # have agreement that output should be a file.
1558.15.3 by Aaron Bentley
Handle binary files for diff3 merges
753
                try:
754
                    self.text_merge(file_id, trans_id)
755
                except BinaryFile:
756
                    return contents_conflict()
1534.7.147 by Aaron Bentley
Tweak to check inventory, not tree for file ids
757
                if file_id not in self.this_tree.inventory:
1534.7.145 by Aaron Bentley
More fixups after get_trans_id
758
                    self.tt.version_file(file_id, trans_id)
1534.7.152 by Aaron Bentley
Fixed overwrites
759
                try:
760
                    self.tt.tree_kind(trans_id)
761
                    self.tt.delete_contents(trans_id)
762
                except NoSuchFile:
763
                    pass
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
764
                return "modified"
765
            else:
1534.7.145 by Aaron Bentley
More fixups after get_trans_id
766
                # Scalar conflict, can't text merge.  Dump conflicts
1558.15.3 by Aaron Bentley
Handle binary files for diff3 merges
767
                return contents_conflict()
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
768
769
    def get_lines(self, tree, file_id):
1534.7.157 by Aaron Bentley
Added more docs
770
        """Return the lines in a file, or an empty list."""
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
771
        if file_id in tree:
772
            return tree.get_file(file_id).readlines()
773
        else:
774
            return []
775
776
    def text_merge(self, file_id, trans_id):
777
        """Perform a three-way text merge on a file_id"""
778
        # it's possible that we got here with base as a different type.
779
        # if so, we just want two-way text conflicts.
780
        if file_id in self.base_tree and \
781
            self.base_tree.kind(file_id) == "file":
782
            base_lines = self.get_lines(self.base_tree, file_id)
783
        else:
784
            base_lines = []
785
        other_lines = self.get_lines(self.other_tree, file_id)
786
        this_lines = self.get_lines(self.this_tree, file_id)
787
        m3 = Merge3(base_lines, this_lines, other_lines)
788
        start_marker = "!START OF MERGE CONFLICT!" + "I HOPE THIS IS UNIQUE"
789
        if self.show_base is True:
790
            base_marker = '|' * 7
791
        else:
792
            base_marker = None
793
794
        def iter_merge3(retval):
795
            retval["text_conflicts"] = False
796
            for line in m3.merge_lines(name_a = "TREE", 
797
                                       name_b = "MERGE-SOURCE", 
798
                                       name_base = "BASE-REVISION",
799
                                       start_marker=start_marker, 
800
                                       base_marker=base_marker,
801
                                       reprocess=self.reprocess):
802
                if line.startswith(start_marker):
803
                    retval["text_conflicts"] = True
804
                    yield line.replace(start_marker, '<' * 7)
805
                else:
806
                    yield line
807
        retval = {}
808
        merge3_iterator = iter_merge3(retval)
809
        self.tt.create_file(merge3_iterator, trans_id)
810
        if retval["text_conflicts"] is True:
811
            self._raw_conflicts.append(('text conflict', trans_id))
812
            name = self.tt.final_name(trans_id)
813
            parent_id = self.tt.final_parent(trans_id)
814
            file_group = self._dump_conflicts(name, parent_id, file_id, 
815
                                              this_lines, base_lines,
816
                                              other_lines)
817
            file_group.append(trans_id)
818
819
    def _dump_conflicts(self, name, parent_id, file_id, this_lines=None, 
820
                        base_lines=None, other_lines=None, set_version=False,
821
                        no_base=False):
1534.7.157 by Aaron Bentley
Added more docs
822
        """Emit conflict files.
823
        If this_lines, base_lines, or other_lines are omitted, they will be
824
        determined automatically.  If set_version is true, the .OTHER, .THIS
825
        or .BASE (in that order) will be created as versioned files.
826
        """
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
827
        data = [('OTHER', self.other_tree, other_lines), 
828
                ('THIS', self.this_tree, this_lines)]
829
        if not no_base:
830
            data.append(('BASE', self.base_tree, base_lines))
831
        versioned = False
832
        file_group = []
833
        for suffix, tree, lines in data:
834
            if file_id in tree:
835
                trans_id = self._conflict_file(name, parent_id, tree, file_id,
836
                                               suffix, lines)
837
                file_group.append(trans_id)
838
                if set_version and not versioned:
839
                    self.tt.version_file(file_id, trans_id)
840
                    versioned = True
841
        return file_group
842
           
843
    def _conflict_file(self, name, parent_id, tree, file_id, suffix, 
844
                       lines=None):
1534.7.157 by Aaron Bentley
Added more docs
845
        """Emit a single conflict file."""
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
846
        name = name + '.' + suffix
847
        trans_id = self.tt.create_path(name, parent_id)
848
        entry = tree.inventory[file_id]
849
        create_by_entry(self.tt, entry, tree, trans_id, lines)
850
        return trans_id
851
852
    def merge_executable(self, file_id, file_status):
1534.7.157 by Aaron Bentley
Added more docs
853
        """Perform a merge on the execute bit."""
2590.2.3 by Aaron Bentley
Merge the execute bit based on iter_changes
854
        executable = [self.executable(t, file_id) for t in (self.base_tree,
855
                      self.other_tree, self.this_tree)]
856
        self._merge_executable(file_id, executable, file_status)
857
858
    def _merge_executable(self, file_id, executable, file_status):
859
        """Perform a merge on the execute bit."""
860
        base_executable, other_executable, this_executable = executable
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
861
        if file_status == "deleted":
862
            return
1534.7.181 by Aaron Bentley
Renamed a bunch of functions
863
        trans_id = self.tt.trans_id_file_id(file_id)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
864
        try:
865
            if self.tt.final_kind(trans_id) != "file":
866
                return
867
        except NoSuchFile:
868
            return
2590.2.3 by Aaron Bentley
Merge the execute bit based on iter_changes
869
        winner = self._three_way(*executable)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
870
        if winner == "conflict":
871
        # There must be a None in here, if we have a conflict, but we
872
        # need executability since file status was not deleted.
1534.10.35 by Aaron Bentley
Merge handles contents + executable + deletion conflict
873
            if self.executable(self.other_tree, file_id) is None:
1534.7.142 by Aaron Bentley
Fixed executability conflicts
874
                winner = "this"
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
875
            else:
1534.7.142 by Aaron Bentley
Fixed executability conflicts
876
                winner = "other"
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
877
        if winner == "this":
2325.3.4 by John Arbash Meinel
Rather than setting the executable bit for every file, properly create the working inventory to include it.
878
            if file_status == "modified":
2590.2.3 by Aaron Bentley
Merge the execute bit based on iter_changes
879
                executability = this_executable
2325.3.4 by John Arbash Meinel
Rather than setting the executable bit for every file, properly create the working inventory to include it.
880
                if executability is not None:
881
                    trans_id = self.tt.trans_id_file_id(file_id)
882
                    self.tt.set_executability(executability, trans_id)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
883
        else:
884
            assert winner == "other"
885
            if file_id in self.other_tree:
2590.2.3 by Aaron Bentley
Merge the execute bit based on iter_changes
886
                executability = other_executable
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
887
            elif file_id in self.this_tree:
2590.2.3 by Aaron Bentley
Merge the execute bit based on iter_changes
888
                executability = this_executable
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
889
            elif file_id in self.base_tree:
2590.2.3 by Aaron Bentley
Merge the execute bit based on iter_changes
890
                executability = base_executable
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
891
            if executability is not None:
1534.7.181 by Aaron Bentley
Renamed a bunch of functions
892
                trans_id = self.tt.trans_id_file_id(file_id)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
893
                self.tt.set_executability(executability, trans_id)
894
1534.7.172 by Aaron Bentley
Integrated fs conflicts with merge conflicts.
895
    def cook_conflicts(self, fs_conflicts):
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
896
        """Convert all conflicts into a form that doesn't depend on trans_id"""
1534.10.19 by Aaron Bentley
Stanza conversion, cooking
897
        from conflicts import Conflict
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
898
        name_conflicts = {}
1534.7.172 by Aaron Bentley
Integrated fs conflicts with merge conflicts.
899
        self.cooked_conflicts.extend(cook_conflicts(fs_conflicts, self.tt))
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
900
        fp = FinalPaths(self.tt)
901
        for conflict in self._raw_conflicts:
902
            conflict_type = conflict[0]
903
            if conflict_type in ('name conflict', 'parent conflict'):
904
                trans_id = conflict[1]
905
                conflict_args = conflict[2:]
906
                if trans_id not in name_conflicts:
907
                    name_conflicts[trans_id] = {}
908
                unique_add(name_conflicts[trans_id], conflict_type, 
909
                           conflict_args)
910
            if conflict_type == 'contents conflict':
911
                for trans_id in conflict[1]:
912
                    file_id = self.tt.final_file_id(trans_id)
913
                    if file_id is not None:
914
                        break
915
                path = fp.get_path(trans_id)
916
                for suffix in ('.BASE', '.THIS', '.OTHER'):
917
                    if path.endswith(suffix):
918
                        path = path[:-len(suffix)]
919
                        break
1534.10.19 by Aaron Bentley
Stanza conversion, cooking
920
                c = Conflict.factory(conflict_type, path=path, file_id=file_id)
921
                self.cooked_conflicts.append(c)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
922
            if conflict_type == 'text conflict':
923
                trans_id = conflict[1]
924
                path = fp.get_path(trans_id)
925
                file_id = self.tt.final_file_id(trans_id)
1534.10.19 by Aaron Bentley
Stanza conversion, cooking
926
                c = Conflict.factory(conflict_type, path=path, file_id=file_id)
927
                self.cooked_conflicts.append(c)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
928
929
        for trans_id, conflicts in name_conflicts.iteritems():
930
            try:
931
                this_parent, other_parent = conflicts['parent conflict']
932
                assert this_parent != other_parent
933
            except KeyError:
934
                this_parent = other_parent = \
935
                    self.tt.final_file_id(self.tt.final_parent(trans_id))
936
            try:
937
                this_name, other_name = conflicts['name conflict']
938
                assert this_name != other_name
939
            except KeyError:
940
                this_name = other_name = self.tt.final_name(trans_id)
941
            other_path = fp.get_path(trans_id)
1551.16.2 by Aaron Bentley
Don't crash on merging renamed deleted files (#110279)
942
            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
943
                this_parent_path = \
1534.7.181 by Aaron Bentley
Renamed a bunch of functions
944
                    fp.get_path(self.tt.trans_id_file_id(this_parent))
1534.7.166 by Aaron Bentley
Swapped os.path.join for pathjoin everywhere
945
                this_path = pathjoin(this_parent_path, this_name)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
946
            else:
947
                this_path = "<deleted>"
948
            file_id = self.tt.final_file_id(trans_id)
1534.10.20 by Aaron Bentley
Got all tests passing
949
            c = Conflict.factory('path conflict', path=this_path,
1534.10.19 by Aaron Bentley
Stanza conversion, cooking
950
                                 conflict_path=other_path, file_id=file_id)
951
            self.cooked_conflicts.append(c)
1666.1.4 by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in
952
        self.cooked_conflicts.sort(key=Conflict.sort_key)
1534.7.141 by Aaron Bentley
Added conflict reporting
953
954
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
955
class WeaveMerger(Merge3Merger):
1534.7.167 by Aaron Bentley
PEP8 and comment cleanups
956
    """Three-way tree merger, text weave merger."""
1551.6.8 by Aaron Bentley
Implemented reprocess for weave
957
    supports_reprocess = True
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
958
    supports_show_base = False
959
1534.9.1 by Aaron Bentley
Added progress bars to merge
960
    def __init__(self, working_tree, this_tree, base_tree, other_tree, 
1551.6.8 by Aaron Bentley
Implemented reprocess for weave
961
                 interesting_ids=None, pb=DummyProgress(), pp=None,
2590.2.5 by Aaron Bentley
Allow selected files to be specified instead of selected ids
962
                 reprocess=False, change_reporter=None,
963
                 interesting_files=None):
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
964
        self.this_revision_tree = self._get_revision_tree(this_tree)
965
        self.other_revision_tree = self._get_revision_tree(other_tree)
966
        super(WeaveMerger, self).__init__(working_tree, this_tree, 
1558.2.2 by Aaron Bentley
Make remerge honour interesting-ids
967
                                          base_tree, other_tree, 
968
                                          interesting_ids=interesting_ids, 
1551.11.11 by Aaron Bentley
Get tests passing
969
                                          pb=pb, pp=pp, reprocess=reprocess,
970
                                          change_reporter=change_reporter)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
971
972
    def _get_revision_tree(self, tree):
1759.2.1 by Jelmer Vernooij
Fix some types (found using aspell).
973
        """Return a revision tree related to this tree.
1534.7.157 by Aaron Bentley
Added more docs
974
        If the tree is a WorkingTree, the basis will be returned.
975
        """
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
976
        if getattr(tree, 'get_weave', False) is False:
977
            # If we have a WorkingTree, try using the basis
978
            return tree.branch.basis_tree()
979
        else:
980
            return tree
981
982
    def _check_file(self, file_id):
983
        """Check that the revision tree's version of the file matches."""
984
        for tree, rt in ((self.this_tree, self.this_revision_tree), 
985
                         (self.other_tree, self.other_revision_tree)):
986
            if rt is tree:
987
                continue
988
            if tree.get_file_sha1(file_id) != rt.get_file_sha1(file_id):
989
                raise WorkingTreeNotRevision(self.this_tree)
990
991
    def _merged_lines(self, file_id):
992
        """Generate the merged lines.
993
        There is no distinction between lines that are meant to contain <<<<<<<
994
        and conflicts.
995
        """
996
        weave = self.this_revision_tree.get_weave(file_id)
997
        this_revision_id = self.this_revision_tree.inventory[file_id].revision
998
        other_revision_id = \
999
            self.other_revision_tree.inventory[file_id].revision
1551.6.10 by Aaron Bentley
Renamed WeaveMerge to PlanMerge, added plan method, created planless WeaveMerge
1000
        wm = WeaveMerge(weave, this_revision_id, other_revision_id, 
1001
                        '<<<<<<< TREE\n', '>>>>>>> MERGE-SOURCE\n')
1551.6.8 by Aaron Bentley
Implemented reprocess for weave
1002
        return wm.merge_lines(self.reprocess)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1003
1004
    def text_merge(self, file_id, trans_id):
1534.7.157 by Aaron Bentley
Added more docs
1005
        """Perform a (weave) text merge for a given file and file-id.
1006
        If conflicts are encountered, .THIS and .OTHER files will be emitted,
1007
        and a conflict will be noted.
1008
        """
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1009
        self._check_file(file_id)
1551.6.12 by Aaron Bentley
Indicate conflicts from merge_lines, insead of guessing
1010
        lines, conflicts = self._merged_lines(file_id)
1558.15.10 by Aaron Bentley
Merge bzr.dev
1011
        lines = list(lines)
1558.15.5 by Aaron Bentley
Fixed binary handling in weave merge
1012
        # Note we're checking whether the OUTPUT is binary in this case, 
1013
        # because we don't want to get into weave merge guts.
1014
        check_text_lines(lines)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1015
        self.tt.create_file(lines, trans_id)
1016
        if conflicts:
1017
            self._raw_conflicts.append(('text conflict', trans_id))
1018
            name = self.tt.final_name(trans_id)
1019
            parent_id = self.tt.final_parent(trans_id)
1020
            file_group = self._dump_conflicts(name, parent_id, file_id, 
1021
                                              no_base=True)
1022
            file_group.append(trans_id)
1023
1024
1025
class Diff3Merger(Merge3Merger):
1534.7.167 by Aaron Bentley
PEP8 and comment cleanups
1026
    """Three-way merger using external diff3 for text merging"""
1711.7.20 by John Arbash Meinel
always close files, minor PEP8 cleanup
1027
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1028
    def dump_file(self, temp_dir, name, tree, file_id):
1029
        out_path = pathjoin(temp_dir, name)
1711.7.20 by John Arbash Meinel
always close files, minor PEP8 cleanup
1030
        out_file = open(out_path, "wb")
1031
        try:
1032
            in_file = tree.get_file(file_id)
1033
            for line in in_file:
1034
                out_file.write(line)
1035
        finally:
1036
            out_file.close()
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1037
        return out_path
1038
1039
    def text_merge(self, file_id, trans_id):
1534.7.157 by Aaron Bentley
Added more docs
1040
        """Perform a diff3 merge using a specified file-id and trans-id.
1041
        If conflicts are encountered, .BASE, .THIS. and .OTHER conflict files
1042
        will be dumped, and a will be conflict noted.
1043
        """
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1044
        import bzrlib.patch
1996.3.18 by John Arbash Meinel
Now that mkdtemp and rmtree are lazy, they should not be directly improted.
1045
        temp_dir = osutils.mkdtemp(prefix="bzr-")
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1046
        try:
1534.7.166 by Aaron Bentley
Swapped os.path.join for pathjoin everywhere
1047
            new_file = pathjoin(temp_dir, "new")
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1048
            this = self.dump_file(temp_dir, "this", self.this_tree, file_id)
1049
            base = self.dump_file(temp_dir, "base", self.base_tree, file_id)
1050
            other = self.dump_file(temp_dir, "other", self.other_tree, file_id)
1051
            status = bzrlib.patch.diff3(new_file, this, base, other)
1052
            if status not in (0, 1):
1053
                raise BzrError("Unhandled diff3 exit code")
1711.7.20 by John Arbash Meinel
always close files, minor PEP8 cleanup
1054
            f = open(new_file, 'rb')
1055
            try:
1056
                self.tt.create_file(f, trans_id)
1057
            finally:
1058
                f.close()
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1059
            if status == 1:
1060
                name = self.tt.final_name(trans_id)
1061
                parent_id = self.tt.final_parent(trans_id)
1062
                self._dump_conflicts(name, parent_id, file_id)
1551.8.39 by Aaron Bentley
Fix diff3 conflict-reporting bug
1063
                self._raw_conflicts.append(('text conflict', trans_id))
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1064
        finally:
1996.3.18 by John Arbash Meinel
Now that mkdtemp and rmtree are lazy, they should not be directly improted.
1065
            osutils.rmtree(temp_dir)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1066
1067
1068
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.
1069
                backup_files=False,
1070
                merge_type=Merge3Merger,
1071
                interesting_ids=None,
1072
                show_base=False,
1073
                reprocess=False,
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1074
                other_rev_id=None,
1075
                interesting_files=None,
1534.9.9 by Aaron Bentley
Added progress bar to pull
1076
                this_tree=None,
1551.11.10 by Aaron Bentley
Add change reporting to pull
1077
                pb=DummyProgress(),
1078
                change_reporter=None):
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1079
    """Primary interface for merging. 
1080
1081
        typical use is probably 
1082
        'merge_inner(branch, branch.get_revision_tree(other_revision),
1083
                     branch.get_revision_tree(base_revision))'
1084
        """
1085
    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)
1086
        raise BzrError("bzrlib.merge.merge_inner requires a this_tree "
1087
            "parameter as of bzrlib version 0.8.")
2255.2.31 by Robert Collins
Work in progress to make merge_inner work with dirstate trees.
1088
    merger = Merger(this_branch, other_tree, base_tree, this_tree=this_tree,
1551.11.10 by Aaron Bentley
Add change reporting to pull
1089
                    pb=pb, change_reporter=change_reporter)
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1090
    merger.backup_files = backup_files
1091
    merger.merge_type = merge_type
1092
    merger.interesting_ids = interesting_ids
1551.2.23 by Aaron Bentley
Got merge_inner's ignore_zero parameter working
1093
    merger.ignore_zero = ignore_zero
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1094
    if interesting_files:
1095
        assert not interesting_ids, ('Only supply interesting_ids'
1096
                                     ' or interesting_files')
2590.2.5 by Aaron Bentley
Allow selected files to be specified instead of selected ids
1097
        merger.interesting_files = interesting_files
1979.2.1 by Robert Collins
(robertc) adds a convenience method "merge_from_branch" to WorkingTree.
1098
    merger.show_base = show_base
1534.7.140 by Aaron Bentley
Moved the merge stuff into merge.py
1099
    merger.reprocess = reprocess
1100
    merger.other_rev_id = other_rev_id
1101
    merger.other_basis = other_rev_id
1102
    return merger.do_merge()
1103
2221.4.15 by Aaron Bentley
Use RegistryOption for merge type
1104
def get_merge_type_registry():
2221.4.17 by Aaron Bentley
PEP8-ness
1105
    """Merge type registry is in bzrlib.option to avoid circular imports.
2221.4.15 by Aaron Bentley
Use RegistryOption for merge type
1106
1107
    This method provides a sanctioned way to retrieve it.
1108
    """
1109
    from bzrlib import option
2221.4.16 by Aaron Bentley
Add tests for get_merge_type_registry
1110
    return option._merge_type_registry