~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to clean_tree.py

merge from aaron

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
import errno
17
17
import os
 
18
from bzrlib.osutils import has_symlinks, isdir
18
19
import shutil
19
20
from bzrlib.branch import Branch
 
21
import sys
20
22
 
21
23
def is_detrius(subp):
22
24
    return subp.endswith('.THIS') or subp.endswith('.BASE') or\
23
 
        subp.endswith('.OTHER') or subp.endswith('~')
 
25
        subp.endswith('.OTHER') or subp.endswith('~') or subp.endswith('.tmp')
24
26
 
25
 
def iter_deletables(tree, unknowns=True, ignored=False, detrius=False):
 
27
def iter_deletables(tree, unknown=True, ignored=False, detrius=False):
26
28
    """Iterate through files that may be deleted"""
27
29
    for subp in tree.extras():
28
 
        if is_detrius(subp):
 
30
        if detrius and is_detrius(subp):
29
31
            yield tree.abspath(subp), subp
 
32
            continue
30
33
        if tree.is_ignored(subp):
31
34
            if ignored:
32
35
                yield tree.abspath(subp), subp
33
36
        else:
34
 
            if unknowns:
 
37
            if unknown:
35
38
                yield tree.abspath(subp), subp
36
39
 
 
40
def clean_tree(directory, ignored=False, detrius=False, dry_run=False,
 
41
               to_file=sys.stdout):
 
42
    br = Branch.open_containing(directory)
 
43
    tree = br.working_tree()
 
44
    deletables = iter_deletables(tree, ignored=ignored, detrius=detrius)
 
45
    delete_items(deletables, dry_run=dry_run, to_file=to_file)
37
46
 
38
 
def clean_tree(deletables, dry_run=False):
 
47
def delete_items(deletables, dry_run=False, to_file=sys.stdout):
39
48
    """Delete files in the deletables iterable"""
40
 
    printed_once = False
 
49
    has_deleted = False
41
50
    for path, subp in deletables:
42
 
        if not printed_once:
43
 
            print "deleting paths:"
44
 
            printed_once = True
45
 
        print ' ', subp
 
51
        if not has_deleted:
 
52
            print >> to_file, "deleting paths:"
 
53
            has_deleted = True
 
54
        print >> to_file, ' ', subp
46
55
        if not dry_run:
47
 
            if os.path.isdir(path):
 
56
            if isdir(path):
48
57
                shutil.rmtree(path)
49
58
            else:
50
59
                os.unlink(path)
 
60
    if not has_deleted:
 
61
        print >> to_file, "No files deleted."
 
62
def test_suite():
 
63
    from bzrlib.selftest import TestCaseInTempDir
 
64
    from unittest import makeSuite
 
65
    import os.path
 
66
    from StringIO import StringIO
 
67
    class TestCleanTree(TestCaseInTempDir):
 
68
        def test_symlinks(self):
 
69
            if has_symlinks() is False:
 
70
                return
 
71
            os.mkdir('branch')
 
72
            b = Branch.initialize('branch')
 
73
            os.symlink(os.path.realpath('no-die-please'), 'branch/die-please')
 
74
            os.mkdir('no-die-please')
 
75
            assert os.path.exists('branch/die-please')
 
76
            os.mkdir('no-die-please/child')
 
77
 
 
78
            clean_tree('branch', to_file=StringIO())
 
79
            assert os.path.exists('no-die-please')
 
80
            assert os.path.exists('no-die-please/child')
 
81
 
 
82
        def test_iter_deletable(self):
 
83
            """Files are selected for deletion appropriately"""
 
84
            os.mkdir('branch')
 
85
            b = Branch.initialize('branch')
 
86
            tree = b.working_tree()
 
87
            file('branch/file.BASE', 'wb').write('contents')
 
88
            self.assertEqual(len(list(iter_deletables(tree))), 1)
 
89
            file('branch/file~', 'wb').write('contents')
 
90
            file('branch/file.pyc', 'wb').write('contents')
 
91
            dels = [r for a,r in iter_deletables(tree)]
 
92
            assert 'file~' not in dels
 
93
            assert 'file.pyc' not in dels
 
94
            dels = [r for a,r in iter_deletables(tree, detrius=True)]
 
95
            assert 'file~' in dels
 
96
            assert 'file.pyc' not in dels
 
97
            dels = [r for a,r in iter_deletables(tree, ignored=True)]
 
98
            assert 'file~' in dels
 
99
            assert 'file.BASE' in dels
 
100
            assert 'file.pyc' in dels
 
101
            dels = [r for a,r in iter_deletables(tree, unknown=False)]
 
102
            assert 'file.BASE' not in dels
 
103
 
 
104
    return makeSuite(TestCleanTree)