##// END OF EJS Templates
ignore: refactor ignore into two functions...
Bryan O'Sullivan -
r18087:5712e3b1 default
parent child Browse files
Show More
@@ -1,105 +1,111 b''
1 # ignore.py - ignored file handling for mercurial
1 # ignore.py - ignored file handling for mercurial
2 #
2 #
3 # Copyright 2007 Matt Mackall <mpm@selenic.com>
3 # Copyright 2007 Matt Mackall <mpm@selenic.com>
4 #
4 #
5 # This software may be used and distributed according to the terms of the
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version.
6 # GNU General Public License version 2 or any later version.
7
7
8 from i18n import _
8 from i18n import _
9 import util, match
9 import util, match
10 import re
10 import re
11
11
12 _commentre = None
12 _commentre = None
13
13
14 def ignorepats(lines):
14 def ignorepats(lines):
15 '''parse lines (iterable) of .hgignore text, returning a tuple of
15 '''parse lines (iterable) of .hgignore text, returning a tuple of
16 (patterns, parse errors). These patterns should be given to compile()
16 (patterns, parse errors). These patterns should be given to compile()
17 to be validated and converted into a match function.'''
17 to be validated and converted into a match function.'''
18 syntaxes = {'re': 'relre:', 'regexp': 'relre:', 'glob': 'relglob:'}
18 syntaxes = {'re': 'relre:', 'regexp': 'relre:', 'glob': 'relglob:'}
19 syntax = 'relre:'
19 syntax = 'relre:'
20 patterns = []
20 patterns = []
21 warnings = []
21 warnings = []
22
22
23 for line in lines:
23 for line in lines:
24 if "#" in line:
24 if "#" in line:
25 global _commentre
25 global _commentre
26 if not _commentre:
26 if not _commentre:
27 _commentre = re.compile(r'((^|[^\\])(\\\\)*)#.*')
27 _commentre = re.compile(r'((^|[^\\])(\\\\)*)#.*')
28 # remove comments prefixed by an even number of escapes
28 # remove comments prefixed by an even number of escapes
29 line = _commentre.sub(r'\1', line)
29 line = _commentre.sub(r'\1', line)
30 # fixup properly escaped comments that survived the above
30 # fixup properly escaped comments that survived the above
31 line = line.replace("\\#", "#")
31 line = line.replace("\\#", "#")
32 line = line.rstrip()
32 line = line.rstrip()
33 if not line:
33 if not line:
34 continue
34 continue
35
35
36 if line.startswith('syntax:'):
36 if line.startswith('syntax:'):
37 s = line[7:].strip()
37 s = line[7:].strip()
38 try:
38 try:
39 syntax = syntaxes[s]
39 syntax = syntaxes[s]
40 except KeyError:
40 except KeyError:
41 warnings.append(_("ignoring invalid syntax '%s'") % s)
41 warnings.append(_("ignoring invalid syntax '%s'") % s)
42 continue
42 continue
43 pat = syntax + line
43 pat = syntax + line
44 for s, rels in syntaxes.iteritems():
44 for s, rels in syntaxes.iteritems():
45 if line.startswith(rels):
45 if line.startswith(rels):
46 pat = line
46 pat = line
47 break
47 break
48 elif line.startswith(s+':'):
48 elif line.startswith(s+':'):
49 pat = rels + line[len(s) + 1:]
49 pat = rels + line[len(s) + 1:]
50 break
50 break
51 patterns.append(pat)
51 patterns.append(pat)
52
52
53 return patterns, warnings
53 return patterns, warnings
54
54
55 def readpats(root, files, warn):
56 '''return a dict mapping ignore-file-name to list-of-patterns'''
57
58 pats = {}
59 for f in files:
60 try:
61 pats[f] = []
62 fp = open(f)
63 pats[f], warnings = ignorepats(fp)
64 fp.close()
65 for warning in warnings:
66 warn("%s: %s\n" % (f, warning))
67 except IOError, inst:
68 if f != files[0]:
69 warn(_("skipping unreadable ignore file '%s': %s\n") %
70 (f, inst.strerror))
71 return pats
72
55 def ignore(root, files, warn):
73 def ignore(root, files, warn):
56 '''return matcher covering patterns in 'files'.
74 '''return matcher covering patterns in 'files'.
57
75
58 the files parsed for patterns include:
76 the files parsed for patterns include:
59 .hgignore in the repository root
77 .hgignore in the repository root
60 any additional files specified in the [ui] section of ~/.hgrc
78 any additional files specified in the [ui] section of ~/.hgrc
61
79
62 trailing white space is dropped.
80 trailing white space is dropped.
63 the escape character is backslash.
81 the escape character is backslash.
64 comments start with #.
82 comments start with #.
65 empty lines are skipped.
83 empty lines are skipped.
66
84
67 lines can be of the following formats:
85 lines can be of the following formats:
68
86
69 syntax: regexp # defaults following lines to non-rooted regexps
87 syntax: regexp # defaults following lines to non-rooted regexps
70 syntax: glob # defaults following lines to non-rooted globs
88 syntax: glob # defaults following lines to non-rooted globs
71 re:pattern # non-rooted regular expression
89 re:pattern # non-rooted regular expression
72 glob:pattern # non-rooted glob
90 glob:pattern # non-rooted glob
73 pattern # pattern of the current default type'''
91 pattern # pattern of the current default type'''
74
92
75 pats = {}
93 pats = readpats(root, files, warn)
76 for f in files:
77 try:
78 pats[f] = []
79 fp = open(f)
80 pats[f], warnings = ignorepats(fp)
81 fp.close()
82 for warning in warnings:
83 warn("%s: %s\n" % (f, warning))
84 except IOError, inst:
85 if f != files[0]:
86 warn(_("skipping unreadable ignore file '%s': %s\n") %
87 (f, inst.strerror))
88
94
89 allpats = []
95 allpats = []
90 for patlist in pats.values():
96 for patlist in pats.values():
91 allpats.extend(patlist)
97 allpats.extend(patlist)
92 if not allpats:
98 if not allpats:
93 return util.never
99 return util.never
94
100
95 try:
101 try:
96 ignorefunc = match.match(root, '', [], allpats)
102 ignorefunc = match.match(root, '', [], allpats)
97 except util.Abort:
103 except util.Abort:
98 # Re-raise an exception where the src is the right file
104 # Re-raise an exception where the src is the right file
99 for f, patlist in pats.iteritems():
105 for f, patlist in pats.iteritems():
100 try:
106 try:
101 match.match(root, '', [], patlist)
107 match.match(root, '', [], patlist)
102 except util.Abort, inst:
108 except util.Abort, inst:
103 raise util.Abort('%s: %s' % (f, inst[0]))
109 raise util.Abort('%s: %s' % (f, inst[0]))
104
110
105 return ignorefunc
111 return ignorefunc
General Comments 0
You need to be logged in to leave comments. Login now