~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to conflicts.py

  • Committer: aaron.bentley at utoronto
  • Date: 2005-08-27 03:24:12 UTC
  • Revision ID: aaron.bentley@utoronto.ca-20050827032412-c2d47fd725e193c4
Tweaks for clean-tree

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
 
 
20
SUFFIXES = ('.TREE', '.BASE', '.OTHER')
 
21
def get_conflicted_stem(path):
 
22
    for suffix in SUFFIXES:
 
23
        if path.endswith(suffix):
 
24
            return path[:-len(suffix)]
 
25
 
 
26
def iter_conflicts(tree):
 
27
    conflicted = set()
 
28
    for path in (s[0] for s in tree.list_files()):
 
29
        stem = get_conflicted_stem(path)
 
30
        if stem is None:
 
31
            continue
 
32
        if stem not in conflicted:
 
33
            conflicted.add(stem)
 
34
            yield stem
 
35
 
 
36
class cmd_conflicts(bzrlib.commands.Command):
 
37
    """List files with conflicts.
 
38
    (conflicts are determined by the presence of .BASE .TREE, and .OTHER 
 
39
    files.)
 
40
    """
 
41
    def run(self):
 
42
        for path in iter_conflicts(Branch('.').working_tree()):
 
43
            print path
 
44
 
 
45
# monkey-patch the standard 'status' to give us conflicts, too.
 
46
def _show_status(branch, **kwargs):
 
47
    old_show_status(branch, **kwargs)
 
48
    conflicted = list(iter_conflicts(branch.working_tree()))
 
49
    if len(conflicted) > 0:
 
50
        print "conflicts:"
 
51
        for f in conflicted:
 
52
            print " ", f
 
53
 
 
54
old_show_status = bzrlib.status.show_status
 
55
bzrlib.status.show_status = _show_status