~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/conflicts.py

  • Committer: Jelmer Vernooij
  • Date: 2011-04-21 20:32:16 UTC
  • mfrom: (5809.1.2 pwit1)
  • mto: This revision was merged to the branch mainline in revision 5821.
  • Revision ID: jelmer@samba.org-20110421203216-r04j4x5vugrup6u9
Merge per-wt-inventory-tests-pt1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
# TODO: 'bzr resolve' should accept a directory name and work from that
18
18
# point down
19
19
 
20
 
from __future__ import absolute_import
21
 
 
22
20
import os
23
21
 
24
22
from bzrlib.lazy_import import lazy_import
27
25
 
28
26
from bzrlib import (
29
27
    cleanup,
 
28
    commands,
30
29
    errors,
31
30
    osutils,
32
31
    rio,
34
33
    transform,
35
34
    workingtree,
36
35
    )
37
 
from bzrlib.i18n import gettext, ngettext
38
36
""")
39
37
from bzrlib import (
40
 
    commands,
41
38
    option,
42
39
    registry,
43
40
    )
52
49
    Merge will do its best to combine the changes in two branches, but there
53
50
    are some kinds of problems only a human can fix.  When it encounters those,
54
51
    it will mark a conflict.  A conflict means that you need to fix something,
55
 
    before you can commit.
 
52
    before you should commit.
56
53
 
57
54
    Conflicts normally are listed as short, human-readable messages.  If --text
58
55
    is supplied, the pathnames of files with text conflicts are listed,
75
72
                    continue
76
73
                self.outf.write(conflict.path + '\n')
77
74
            else:
78
 
                self.outf.write(unicode(conflict) + '\n')
 
75
                self.outf.write(str(conflict) + '\n')
79
76
 
80
77
 
81
78
resolve_action_registry = registry.Registry()
82
79
 
83
80
 
84
81
resolve_action_registry.register(
85
 
    'done', 'done', 'Marks the conflict as resolved.')
 
82
    'done', 'done', 'Marks the conflict as resolved' )
86
83
resolve_action_registry.register(
87
84
    'take-this', 'take_this',
88
 
    'Resolve the conflict preserving the version in the working tree.')
 
85
    'Resolve the conflict preserving the version in the working tree' )
89
86
resolve_action_registry.register(
90
87
    'take-other', 'take_other',
91
 
    'Resolve the conflict taking the merged version into account.')
 
88
    'Resolve the conflict taking the merged version into account' )
92
89
resolve_action_registry.default_key = 'done'
93
90
 
94
91
class ResolveActionOption(option.RegistryOption):
106
103
    Merge will do its best to combine the changes in two branches, but there
107
104
    are some kinds of problems only a human can fix.  When it encounters those,
108
105
    it will mark a conflict.  A conflict means that you need to fix something,
109
 
    before you can commit.
 
106
    before you should commit.
110
107
 
111
108
    Once you have fixed a problem, use "bzr resolve" to automatically mark
112
109
    text conflicts as fixed, "bzr resolve FILE" to mark a specific conflict as
123
120
    def run(self, file_list=None, all=False, action=None, directory=None):
124
121
        if all:
125
122
            if file_list:
126
 
                raise errors.BzrCommandError(gettext("If --all is specified,"
127
 
                                             " no FILE may be provided"))
 
123
                raise errors.BzrCommandError("If --all is specified,"
 
124
                                             " no FILE may be provided")
128
125
            if directory is None:
129
126
                directory = u'.'
130
127
            tree = workingtree.WorkingTree.open_containing(directory)[0]
148
145
            if file_list is None:
149
146
                un_resolved, resolved = tree.auto_resolve()
150
147
                if len(un_resolved) > 0:
151
 
                    trace.note(ngettext('%d conflict auto-resolved.',
152
 
                        '%d conflicts auto-resolved.', len(resolved)),
153
 
                        len(resolved))
154
 
                    trace.note(gettext('Remaining conflicts:'))
 
148
                    trace.note('%d conflict(s) auto-resolved.', len(resolved))
 
149
                    trace.note('Remaining conflicts:')
155
150
                    for conflict in un_resolved:
156
 
                        trace.note(unicode(conflict))
 
151
                        trace.note(conflict)
157
152
                    return 1
158
153
                else:
159
 
                    trace.note(gettext('All conflicts resolved.'))
 
154
                    trace.note('All conflicts resolved.')
160
155
                    return 0
161
156
            else:
162
157
                # FIXME: This can never occur but the block above needs some
165
160
                pass
166
161
        else:
167
162
            before, after = resolve(tree, file_list, action=action)
168
 
            trace.note(ngettext('{0} conflict resolved, {1} remaining',
169
 
                                '{0} conflicts resolved, {1} remaining',
170
 
                                before-after).format(before - after, after))
 
163
            trace.note('%d conflict(s) resolved, %d remaining'
 
164
                       % (before - after, after))
171
165
 
172
166
 
173
167
def resolve(tree, paths=None, ignore_misses=False, recursive=False,
297
291
    def to_strings(self):
298
292
        """Generate strings for the provided conflicts"""
299
293
        for conflict in self:
300
 
            yield unicode(conflict)
 
294
            yield str(conflict)
301
295
 
302
296
    def remove_files(self, tree):
303
297
        """Remove the THIS, BASE and OTHER files for listed conflicts"""
396
390
    def __ne__(self, other):
397
391
        return not self.__eq__(other)
398
392
 
399
 
    def __unicode__(self):
 
393
    def __str__(self):
400
394
        return self.format % self.__dict__
401
395
 
402
396
    def __repr__(self):
513
507
        if path_to_create is not None:
514
508
            tid = tt.trans_id_tree_path(path_to_create)
515
509
            transform.create_from_tree(
516
 
                tt, tid, self._revision_tree(tt._tree, revid), file_id)
 
510
                tt, tt.trans_id_tree_path(path_to_create),
 
511
                self._revision_tree(tt._tree, revid), file_id)
517
512
            tt.version_file(file_id, tid)
518
 
        else:
519
 
            tid = tt.trans_id_file_id(file_id)
 
513
 
520
514
        # Adjust the path for the retained file id
 
515
        tid = tt.trans_id_file_id(file_id)
521
516
        parent_tid = tt.get_tree_parent(tid)
522
517
        tt.adjust_path(osutils.basename(path), parent_tid, tid)
523
518
        tt.apply()
588
583
        :param tt: The TreeTransform where the conflict is resolved.
589
584
        :param suffix_to_remove: Either 'THIS' or 'OTHER'
590
585
 
591
 
        The resolution is symmetric: when taking THIS, OTHER is deleted and
 
586
        The resolution is symmetric, when taking THIS, OTHER is deleted and
592
587
        item.THIS is renamed into item and vice-versa.
593
588
        """
594
589
        try:
601
596
            # never existed or was already deleted (including the case
602
597
            # where the user deleted it)
603
598
            pass
604
 
        try:
605
 
            this_path = tt._tree.id2path(self.file_id)
606
 
        except errors.NoSuchId:
607
 
            # The file is not present anymore. This may happen if the user
608
 
            # deleted the file either manually or when resolving a conflict on
609
 
            # the parent.  We may raise some exception to indicate that the
610
 
            # conflict doesn't exist anymore and as such doesn't need to be
611
 
            # resolved ? -- vila 20110615 
612
 
            this_tid = None
613
 
        else:
614
 
            this_tid = tt.trans_id_tree_path(this_path)
615
 
        if this_tid is not None:
616
 
            # Rename 'item.suffix_to_remove' (note that if
617
 
            # 'item.suffix_to_remove' has been deleted, this is a no-op)
618
 
            parent_tid = tt.get_tree_parent(this_tid)
619
 
            tt.adjust_path(osutils.basename(self.path), parent_tid, this_tid)
620
 
            tt.apply()
 
599
        # Rename 'item.suffix_to_remove' (note that if
 
600
        # 'item.suffix_to_remove' has been deleted, this is a no-op)
 
601
        this_tid = tt.trans_id_file_id(self.file_id)
 
602
        parent_tid = tt.get_tree_parent(this_tid)
 
603
        tt.adjust_path(osutils.basename(self.path), parent_tid, this_tid)
 
604
        tt.apply()
621
605
 
622
606
    def action_take_this(self, tree):
623
607
        self._resolve_with_cleanups(tree, 'OTHER')