~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/clean_tree.py

  • Committer: Jelmer Vernooij
  • Date: 2011-11-30 20:02:16 UTC
  • mto: This revision was merged to the branch mainline in revision 6333.
  • Revision ID: jelmer@samba.org-20111130200216-aoju21pdl20d1gkd
Consistently pass tree path when exporting.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2009, 2010 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
 
 
18
import errno
 
19
import os
 
20
import shutil
 
21
 
 
22
from bzrlib import (
 
23
    controldir,
 
24
    errors,
 
25
    ui,
 
26
    )
 
27
from bzrlib.osutils import isdir
 
28
from bzrlib.trace import note
 
29
from bzrlib.workingtree import WorkingTree
 
30
from bzrlib.i18n import gettext
 
31
 
 
32
def is_detritus(subp):
 
33
    """Return True if the supplied path is detritus, False otherwise"""
 
34
    return subp.endswith('.THIS') or subp.endswith('.BASE') or\
 
35
        subp.endswith('.OTHER') or subp.endswith('~') or subp.endswith('.tmp')
 
36
 
 
37
 
 
38
def iter_deletables(tree, unknown=False, ignored=False, detritus=False):
 
39
    """Iterate through files that may be deleted"""
 
40
    for subp in tree.extras():
 
41
        if detritus and is_detritus(subp):
 
42
            yield tree.abspath(subp), subp
 
43
            continue
 
44
        if tree.is_ignored(subp):
 
45
            if ignored:
 
46
                yield tree.abspath(subp), subp
 
47
        else:
 
48
            if unknown:
 
49
                yield tree.abspath(subp), subp
 
50
 
 
51
 
 
52
def clean_tree(directory, unknown=False, ignored=False, detritus=False,
 
53
               dry_run=False, no_prompt=False):
 
54
    """Remove files in the specified classes from the tree"""
 
55
    tree = WorkingTree.open_containing(directory)[0]
 
56
    tree.lock_read()
 
57
    try:
 
58
        deletables = list(iter_deletables(tree, unknown=unknown,
 
59
            ignored=ignored, detritus=detritus))
 
60
        deletables = _filter_out_nested_bzrdirs(deletables)
 
61
        if len(deletables) == 0:
 
62
            note(gettext('Nothing to delete.'))
 
63
            return 0
 
64
        if not no_prompt:
 
65
            for path, subp in deletables:
 
66
                ui.ui_factory.note(subp)
 
67
            prompt = gettext('Are you sure you wish to delete these')
 
68
            if not ui.ui_factory.get_boolean(prompt):
 
69
                ui.ui_factory.note(gettext('Canceled'))
 
70
                return 0
 
71
        delete_items(deletables, dry_run=dry_run)
 
72
    finally:
 
73
        tree.unlock()
 
74
 
 
75
 
 
76
def _filter_out_nested_bzrdirs(deletables):
 
77
    result = []
 
78
    for path, subp in deletables:
 
79
        # bzr won't recurse into unknowns/ignored directories by default
 
80
        # so we don't pay a penalty for checking subdirs of path for nested
 
81
        # bzrdir.
 
82
        # That said we won't detect the branch in the subdir of non-branch
 
83
        # directory and therefore delete it. (worth to FIXME?)
 
84
        if isdir(path):
 
85
            try:
 
86
                controldir.ControlDir.open(path)
 
87
            except errors.NotBranchError:
 
88
                result.append((path,subp))
 
89
            else:
 
90
                # TODO may be we need to notify user about skipped directories?
 
91
                pass
 
92
        else:
 
93
            result.append((path,subp))
 
94
    return result
 
95
 
 
96
 
 
97
def delete_items(deletables, dry_run=False):
 
98
    """Delete files in the deletables iterable"""
 
99
    def onerror(function, path, excinfo):
 
100
        """Show warning for errors seen by rmtree.
 
101
        """
 
102
        # Handle only permission error while removing files.
 
103
        # Other errors are re-raised.
 
104
        if function is not os.remove or excinfo[1].errno != errno.EACCES:
 
105
            raise
 
106
        ui.ui_factory.show_warning(gettext('unable to remove %s') % path)
 
107
    has_deleted = False
 
108
    for path, subp in deletables:
 
109
        if not has_deleted:
 
110
            note(gettext("deleting paths:"))
 
111
            has_deleted = True
 
112
        if not dry_run:
 
113
            if isdir(path):
 
114
                shutil.rmtree(path, onerror=onerror)
 
115
            else:
 
116
                try:
 
117
                    os.unlink(path)
 
118
                    note('  ' + subp)
 
119
                except OSError, e:
 
120
                    # We handle only permission error here
 
121
                    if e.errno != errno.EACCES:
 
122
                        raise e
 
123
                    ui.ui_factory.show_warning(gettext(
 
124
                        'unable to remove "{0}": {1}.').format(
 
125
                                                    path, e.strerror))
 
126
        else:
 
127
            note('  ' + subp)
 
128
    if not has_deleted:
 
129
        note(gettext("No files deleted."))