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