~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/merge.py

  • Committer: Aaron Bentley
  • Date: 2005-08-25 13:10:25 UTC
  • mfrom: (974.1.38)
  • mto: (1092.1.42) (1185.3.4)
  • mto: This revision was merged to the branch mainline in revision 1178.
  • Revision ID: abentley@panoramicfeedback.com-20050825131025-2aa94bcbbd646a00
Fixed return value when not an ImmutableStore

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005 Canonical Ltd
2
 
 
3
 
# This program is free software; you can redistribute it and/or modify
4
 
# it under the terms of the GNU General Public License as published by
5
 
# the Free Software Foundation; either version 2 of the License, or
6
 
# (at your option) any later version.
7
 
 
8
 
# This program is distributed in the hope that it will be useful,
9
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
# GNU General Public License for more details.
12
 
 
13
 
# You should have received a copy of the GNU General Public License
14
 
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
 
 
17
 
 
 
1
from bzrlib.merge_core import merge_flex, ApplyMerge3, BackupBeforeChange
 
2
from bzrlib.changeset import generate_changeset, ExceptionConflictHandler
 
3
from bzrlib.changeset import Inventory, Diff3Merge
 
4
from bzrlib import find_branch
 
5
import bzrlib.osutils
 
6
from bzrlib.errors import BzrCommandError
 
7
from bzrlib.delta import compare_trees
 
8
from trace import mutter, warning
18
9
import os.path
19
10
import tempfile
20
11
import shutil
21
12
import errno
22
13
from fetch import greedy_fetch
23
14
 
24
 
import bzrlib.osutils
25
 
import bzrlib.revision
26
 
from bzrlib.merge_core import merge_flex, ApplyMerge3, BackupBeforeChange
27
 
from bzrlib.changeset import generate_changeset, ExceptionConflictHandler
28
 
from bzrlib.changeset import Inventory, Diff3Merge
29
 
from bzrlib.branch import find_branch
30
 
from bzrlib.errors import BzrCommandError, UnrelatedBranches
31
 
from bzrlib.delta import compare_trees
32
 
from bzrlib.trace import mutter, warning
33
 
from bzrlib.fetch import greedy_fetch
34
 
from bzrlib.revision import is_ancestor
35
15
 
36
16
# comments from abentley on irc: merge happens in two stages, each
37
17
# of which generates a changeset object
39
19
# stage 1: generate OLD->OTHER,
40
20
# stage 2: use MINE and OLD->OTHER to generate MINE -> RESULT
41
21
 
 
22
class UnrelatedBranches(BzrCommandError):
 
23
    def __init__(self):
 
24
        msg = "Branches have no common ancestor, and no base revision"\
 
25
            " specified."
 
26
        BzrCommandError.__init__(self, msg)
 
27
 
 
28
 
42
29
class MergeConflictHandler(ExceptionConflictHandler):
43
30
    """Handle conflicts encountered while merging.
44
31
 
191
178
    def has_id(self, file_id):
192
179
        return self.tree.has_id(file_id)
193
180
 
194
 
    def has_or_had_id(self, file_id):
195
 
        if file_id == self.tree.inventory.root.file_id:
196
 
            return True
197
 
        return self.tree.inventory.has_id(file_id)
198
 
 
199
 
    def has_or_had_id(self, file_id):
200
 
        if file_id == self.tree.inventory.root.file_id:
201
 
            return True
202
 
        return self.tree.inventory.has_id(file_id)
203
 
 
204
181
    def readonly_path(self, id):
205
182
        if id not in self.tree:
206
183
            return None
226
203
    """Merge changes into a tree.
227
204
 
228
205
    base_revision
229
 
        tuple(path, revision) Base for three-way merge.
 
206
        Base for three-way merge.
230
207
    other_revision
231
 
        tuple(path, revision) Other revision for three-way merge.
 
208
        Other revision for three-way merge.
232
209
    this_dir
233
210
        Directory to merge changes into; '.' by default.
234
211
    check_clean
237
214
    all available ancestors of other_revision and base_revision are
238
215
    automatically pulled into the branch.
239
216
    """
240
 
    from bzrlib.revision import common_ancestor, MultipleRevisionSources
 
217
    from bzrlib.revision import common_ancestor, is_ancestor
 
218
    from bzrlib.revision import MultipleRevisionSources
241
219
    from bzrlib.errors import NoSuchRevision
242
220
    tempdir = tempfile.mkdtemp(prefix="bzr-")
243
221
    try:
281
259
                base_rev_id = base_branch.lookup_revision(base_revision[1])
282
260
            if base_rev_id is not None:
283
261
                base_is_ancestor = is_ancestor(this_rev_id, base_rev_id, 
284
 
                                               MultipleRevisionSources(this_branch, 
285
 
                                                                       base_branch))
 
262
                                               MultipleRevisionSources(
 
263
                                               this_branch, 
 
264
                                               base_branch))
286
265
            else:
287
266
                base_is_ancestor = False
288
267
        if file_list is None: