##// END OF EJS Templates
purge: prefer util.unlink instead over own removefile
Christian Ebert -
r21983:52d34d54 default
parent child Browse files
Show More
@@ -1,125 +1,114 b''
1 # Copyright (C) 2006 - Marco Barisione <marco@barisione.org>
1 # Copyright (C) 2006 - Marco Barisione <marco@barisione.org>
2 #
2 #
3 # This is a small extension for Mercurial (http://mercurial.selenic.com/)
3 # This is a small extension for Mercurial (http://mercurial.selenic.com/)
4 # that removes files not known to mercurial
4 # that removes files not known to mercurial
5 #
5 #
6 # This program was inspired by the "cvspurge" script contained in CVS
6 # This program was inspired by the "cvspurge" script contained in CVS
7 # utilities (http://www.red-bean.com/cvsutils/).
7 # utilities (http://www.red-bean.com/cvsutils/).
8 #
8 #
9 # For help on the usage of "hg purge" use:
9 # For help on the usage of "hg purge" use:
10 # hg help purge
10 # hg help purge
11 #
11 #
12 # This program is free software; you can redistribute it and/or modify
12 # This program is free software; you can redistribute it and/or modify
13 # it under the terms of the GNU General Public License as published by
13 # it under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; either version 2 of the License, or
14 # the Free Software Foundation; either version 2 of the License, or
15 # (at your option) any later version.
15 # (at your option) any later version.
16 #
16 #
17 # This program is distributed in the hope that it will be useful,
17 # This program is distributed in the hope that it will be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # GNU General Public License for more details.
20 # GNU General Public License for more details.
21 #
21 #
22 # You should have received a copy of the GNU General Public License
22 # You should have received a copy of the GNU General Public License
23 # along with this program; if not, see <http://www.gnu.org/licenses/>.
23 # along with this program; if not, see <http://www.gnu.org/licenses/>.
24
24
25 '''command to delete untracked files from the working directory'''
25 '''command to delete untracked files from the working directory'''
26
26
27 from mercurial import util, commands, cmdutil, scmutil
27 from mercurial import util, commands, cmdutil, scmutil
28 from mercurial.i18n import _
28 from mercurial.i18n import _
29 import os, stat
29 import os, stat
30
30
31 cmdtable = {}
31 cmdtable = {}
32 command = cmdutil.command(cmdtable)
32 command = cmdutil.command(cmdtable)
33 testedwith = 'internal'
33 testedwith = 'internal'
34
34
35 @command('purge|clean',
35 @command('purge|clean',
36 [('a', 'abort-on-err', None, _('abort if an error occurs')),
36 [('a', 'abort-on-err', None, _('abort if an error occurs')),
37 ('', 'all', None, _('purge ignored files too')),
37 ('', 'all', None, _('purge ignored files too')),
38 ('', 'dirs', None, _('purge empty directories')),
38 ('', 'dirs', None, _('purge empty directories')),
39 ('', 'files', None, _('purge files')),
39 ('', 'files', None, _('purge files')),
40 ('p', 'print', None, _('print filenames instead of deleting them')),
40 ('p', 'print', None, _('print filenames instead of deleting them')),
41 ('0', 'print0', None, _('end filenames with NUL, for use with xargs'
41 ('0', 'print0', None, _('end filenames with NUL, for use with xargs'
42 ' (implies -p/--print)')),
42 ' (implies -p/--print)')),
43 ] + commands.walkopts,
43 ] + commands.walkopts,
44 _('hg purge [OPTION]... [DIR]...'))
44 _('hg purge [OPTION]... [DIR]...'))
45 def purge(ui, repo, *dirs, **opts):
45 def purge(ui, repo, *dirs, **opts):
46 '''removes files not tracked by Mercurial
46 '''removes files not tracked by Mercurial
47
47
48 Delete files not known to Mercurial. This is useful to test local
48 Delete files not known to Mercurial. This is useful to test local
49 and uncommitted changes in an otherwise-clean source tree.
49 and uncommitted changes in an otherwise-clean source tree.
50
50
51 This means that purge will delete the following by default:
51 This means that purge will delete the following by default:
52
52
53 - Unknown files: files marked with "?" by :hg:`status`
53 - Unknown files: files marked with "?" by :hg:`status`
54 - Empty directories: in fact Mercurial ignores directories unless
54 - Empty directories: in fact Mercurial ignores directories unless
55 they contain files under source control management
55 they contain files under source control management
56
56
57 But it will leave untouched:
57 But it will leave untouched:
58
58
59 - Modified and unmodified tracked files
59 - Modified and unmodified tracked files
60 - Ignored files (unless --all is specified)
60 - Ignored files (unless --all is specified)
61 - New files added to the repository (with :hg:`add`)
61 - New files added to the repository (with :hg:`add`)
62
62
63 The --files and --dirs options can be used to direct purge to delete
63 The --files and --dirs options can be used to direct purge to delete
64 only files, only directories, or both. If neither option is given,
64 only files, only directories, or both. If neither option is given,
65 both will be deleted.
65 both will be deleted.
66
66
67 If directories are given on the command line, only files in these
67 If directories are given on the command line, only files in these
68 directories are considered.
68 directories are considered.
69
69
70 Be careful with purge, as you could irreversibly delete some files
70 Be careful with purge, as you could irreversibly delete some files
71 you forgot to add to the repository. If you only want to print the
71 you forgot to add to the repository. If you only want to print the
72 list of files that this program would delete, use the --print
72 list of files that this program would delete, use the --print
73 option.
73 option.
74 '''
74 '''
75 act = not opts['print']
75 act = not opts['print']
76 eol = '\n'
76 eol = '\n'
77 if opts['print0']:
77 if opts['print0']:
78 eol = '\0'
78 eol = '\0'
79 act = False # --print0 implies --print
79 act = False # --print0 implies --print
80 removefiles = opts['files']
80 removefiles = opts['files']
81 removedirs = opts['dirs']
81 removedirs = opts['dirs']
82 if not removefiles and not removedirs:
82 if not removefiles and not removedirs:
83 removefiles = True
83 removefiles = True
84 removedirs = True
84 removedirs = True
85
85
86 def remove(remove_func, name):
86 def remove(remove_func, name):
87 if act:
87 if act:
88 try:
88 try:
89 remove_func(repo.wjoin(name))
89 remove_func(repo.wjoin(name))
90 except OSError:
90 except OSError:
91 m = _('%s cannot be removed') % name
91 m = _('%s cannot be removed') % name
92 if opts['abort_on_err']:
92 if opts['abort_on_err']:
93 raise util.Abort(m)
93 raise util.Abort(m)
94 ui.warn(_('warning: %s\n') % m)
94 ui.warn(_('warning: %s\n') % m)
95 else:
95 else:
96 ui.write('%s%s' % (name, eol))
96 ui.write('%s%s' % (name, eol))
97
97
98 def removefile(path):
99 try:
100 os.remove(path)
101 except OSError:
102 # read-only files cannot be unlinked under Windows
103 s = os.stat(path)
104 if (s.st_mode & stat.S_IWRITE) != 0:
105 raise
106 os.chmod(path, stat.S_IMODE(s.st_mode) | stat.S_IWRITE)
107 os.remove(path)
108
109 directories = []
98 directories = []
110 match = scmutil.match(repo[None], dirs, opts)
99 match = scmutil.match(repo[None], dirs, opts)
111 match.explicitdir = match.traversedir = directories.append
100 match.explicitdir = match.traversedir = directories.append
112 status = repo.status(match=match, ignored=opts['all'], unknown=True)
101 status = repo.status(match=match, ignored=opts['all'], unknown=True)
113
102
114 if removefiles:
103 if removefiles:
115 for f in sorted(status[4] + status[5]):
104 for f in sorted(status[4] + status[5]):
116 if act:
105 if act:
117 ui.note(_('removing file %s\n') % f)
106 ui.note(_('removing file %s\n') % f)
118 remove(removefile, f)
107 remove(util.unlink, f)
119
108
120 if removedirs:
109 if removedirs:
121 for f in sorted(directories, reverse=True):
110 for f in sorted(directories, reverse=True):
122 if match(f) and not os.listdir(repo.wjoin(f)):
111 if match(f) and not os.listdir(repo.wjoin(f)):
123 if act:
112 if act:
124 ui.note(_('removing directory %s\n') % f)
113 ui.note(_('removing directory %s\n') % f)
125 remove(os.rmdir, f)
114 remove(os.rmdir, f)
General Comments 0
You need to be logged in to leave comments. Login now