~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to conflicts.py

  • Committer: Aaron Bentley
  • Date: 2005-10-06 17:43:00 UTC
  • Revision ID: abentley@panoramicfeedback.com-20051006174300-4def0658cd4e2db3
Removed conflict handling from bzrtools, now that it's going into bzr proper

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005 by Aaron Bentley
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
 
import bzrlib.status
18
 
from bzrlib.branch import Branch
19
 
from bzrlib.errors import BzrCommandError
20
 
import os
21
 
import errno
22
 
 
23
 
SUFFIXES = ('.THIS', '.BASE', '.OTHER')
24
 
def get_conflicted_stem(path):
25
 
    for suffix in SUFFIXES:
26
 
        if path.endswith(suffix):
27
 
            return path[:-len(suffix)]
28
 
 
29
 
def iter_conflicts(tree):
30
 
    conflicted = set()
31
 
    for path in (s[0] for s in tree.list_files()):
32
 
        stem = get_conflicted_stem(path)
33
 
        if stem is None:
34
 
            continue
35
 
        if stem not in conflicted:
36
 
            conflicted.add(stem)
37
 
            yield stem
38
 
 
39
 
class cmd_conflicts(bzrlib.commands.Command):
40
 
    """List files with conflicts.
41
 
    (conflicts are determined by the presence of .BASE .TREE, and .OTHER 
42
 
    files.)
43
 
    """
44
 
    def run(self):
45
 
        for path in iter_conflicts(Branch.open_containing('.').working_tree()):
46
 
            print path
47
 
 
48
 
class cmd_resolve(bzrlib.commands.Command):
49
 
    """Mark a conflict as resolved.
50
 
    """
51
 
    takes_args = ['file*']
52
 
    takes_options = ['all']
53
 
    def run(self, file_list=None, all=False):
54
 
        if file_list is None:
55
 
            if not all:
56
 
                raise BzrCommandError(
57
 
                    "command 'resolve' needs one or more FILE, or --all")
58
 
            tree = Branch.open_containing('.').working_tree()
59
 
            file_list = list(iter_conflicts(tree))
60
 
        else:
61
 
            if all:
62
 
                raise BzrCommandError(
63
 
                    "If --all is specified, no FILE may be provided")
64
 
        for filename in file_list:
65
 
            failures = 0
66
 
            for suffix in SUFFIXES:
67
 
                try:
68
 
                    os.unlink(filename+suffix)
69
 
                except OSError, e:
70
 
                    if e.errno != errno.ENOENT:
71
 
                        raise
72
 
                    else:
73
 
                        failures += 1
74
 
            if failures == len(SUFFIXES):
75
 
                if not os.path.exists(filename):
76
 
                    print "%s does not exist" % filename
77
 
                else:
78
 
                    print "%s is not conflicted" % filename
79
 
                        
80
 
            
81
 
 
82
 
# monkey-patch the standard 'status' to give us conflicts, too.
83
 
def _show_status(branch, **kwargs):
84
 
    old_show_status(branch, **kwargs)
85
 
    conflicted = list(iter_conflicts(branch.working_tree()))
86
 
    if len(conflicted) > 0:
87
 
        print "conflicts:"
88
 
        for f in conflicted:
89
 
            print " ", f
90
 
 
91
 
old_show_status = bzrlib.status.show_status
92
 
bzrlib.status.show_status = _show_status