~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/globbing.py

  • Committer: Vincent Ladeuil
  • Date: 2010-02-10 15:46:03 UTC
  • mfrom: (4985.3.21 update)
  • mto: This revision was merged to the branch mainline in revision 5021.
  • Revision ID: v.ladeuil+lp@free.fr-20100210154603-k4no1gvfuqpzrw7p
Update performs two merges in a more logical order but stop on conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
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
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
"""Tools for converting globs to regular expressions.
18
18
 
52
52
 
53
53
        The pattern must not contain capturing groups.
54
54
        The replacement might be either a string template in which \& will be
55
 
        replaced with the match, or a function that will get the matching text  
56
 
        as argument. It does not get match object, because capturing is 
 
55
        replaced with the match, or a function that will get the matching text
 
56
        as argument. It does not get match object, because capturing is
57
57
        forbidden anyway.
58
58
        """
59
59
        self._pat = None
160
160
 
161
161
    Patterns are translated to regular expressions to expidite matching.
162
162
 
163
 
    The regular expressions for multiple patterns are aggregated into 
164
 
    a super-regex containing groups of up to 99 patterns.  
 
163
    The regular expressions for multiple patterns are aggregated into
 
164
    a super-regex containing groups of up to 99 patterns.
165
165
    The 99 limitation is due to the grouping limit of the Python re module.
166
166
    The resulting super-regex and associated patterns are stored as a list of
167
167
    (regex,[patterns]) in _regex_patterns.
168
 
    
 
168
 
169
169
    For performance reasons the patterns are categorised as extension patterns
170
170
    (those that match against a file extension), basename patterns
171
171
    (those that match against the basename of the filename),
172
172
    and fullpath patterns (those that match against the full path).
173
 
    The translations used for extensions and basenames are relatively simpler 
 
173
    The translations used for extensions and basenames are relatively simpler
174
174
    and therefore faster to perform than the fullpath patterns.
175
175
 
176
 
    Also, the extension patterns are more likely to find a match and 
 
176
    Also, the extension patterns are more likely to find a match and
177
177
    so are matched first, then the basename patterns, then the fullpath
178
178
    patterns.
179
179
    """
192
192
                base_patterns.append(pat)
193
193
        self._add_patterns(ext_patterns,_sub_extension,
194
194
            prefix=r'(?:.*/)?(?!.*/)(?:.*\.)')
195
 
        self._add_patterns(base_patterns,_sub_basename, 
 
195
        self._add_patterns(base_patterns,_sub_basename,
196
196
            prefix=r'(?:.*/)?(?!.*/)')
197
 
        self._add_patterns(path_patterns,_sub_fullpath) 
 
197
        self._add_patterns(path_patterns,_sub_fullpath)
198
198
 
199
199
    def _add_patterns(self, patterns, translator, prefix=''):
200
200
        while patterns:
201
201
            grouped_rules = ['(%s)' % translator(pat) for pat in patterns[:99]]
202
202
            joined_rule = '%s(?:%s)$' % (prefix, '|'.join(grouped_rules))
203
 
            self._regex_patterns.append((re.compile(joined_rule, re.UNICODE), 
 
203
            self._regex_patterns.append((re.compile(joined_rule, re.UNICODE),
204
204
                patterns[:99]))
205
205
            patterns = patterns[99:]
206
206
 
207
207
    def match(self, filename):
208
208
        """Searches for a pattern that matches the given filename.
209
 
        
 
209
 
210
210
        :return A matching pattern or None if there is no matching pattern.
211
211
        """
212
212
        for regex, patterns in self._regex_patterns:
215
215
                return patterns[match.lastindex -1]
216
216
        return None
217
217
 
 
218
class ExceptionGlobster(object):
 
219
    """A Globster that supports exception patterns.
 
220
    
 
221
    Exceptions are ignore patterns prefixed with '!'.  Exception
 
222
    patterns take precedence over regular patterns and cause a 
 
223
    matching filename to return None from the match() function.  
 
224
    Patterns using a '!!' prefix are highest precedence, and act 
 
225
    as regular ignores. '!!' patterns are useful to establish ignores
 
226
    that apply under paths specified by '!' exception patterns.
 
227
    """
 
228
    
 
229
    def __init__(self,patterns):
 
230
        ignores = [[], [], []]
 
231
        for p in patterns:
 
232
            if p.startswith(u'!!'):
 
233
                ignores[2].append(p[2:])
 
234
            elif p.startswith(u'!'):
 
235
                ignores[1].append(p[1:])
 
236
            else:
 
237
                ignores[0].append(p)
 
238
        self._ignores = [Globster(i) for i in ignores]
 
239
        
 
240
    def match(self, filename):
 
241
        """Searches for a pattern that matches the given filename.
 
242
 
 
243
        :return A matching pattern or None if there is no matching pattern.
 
244
        """
 
245
        double_neg = self._ignores[2].match(filename)
 
246
        if double_neg:
 
247
            return "!!%s" % double_neg
 
248
        elif self._ignores[1].match(filename):
 
249
            return None
 
250
        else:
 
251
            return self._ignores[0].match(filename)
218
252
 
219
253
class _OrderedGlobster(Globster):
220
254
    """A Globster that keeps pattern order."""
229
263
        for pat in patterns:
230
264
            pat = normalize_pattern(pat)
231
265
            if pat.startswith(u'RE:') or u'/' in pat:
232
 
                self._add_patterns([pat], _sub_fullpath) 
 
266
                self._add_patterns([pat], _sub_fullpath)
233
267
            elif pat.startswith(u'*.'):
234
268
                self._add_patterns([pat], _sub_extension,
235
269
                    prefix=r'(?:.*/)?(?!.*/)(?:.*\.)')
236
270
            else:
237
 
                self._add_patterns([pat], _sub_basename, 
 
271
                self._add_patterns([pat], _sub_basename,
238
272
                    prefix=r'(?:.*/)?(?!.*/)')
239
273
 
240
274
 
 
275
_slashes = re.compile(r'[\\/]+')
241
276
def normalize_pattern(pattern):
242
277
    """Converts backslashes in path patterns to forward slashes.
243
 
    
 
278
 
244
279
    Doesn't normalize regular expressions - they may contain escapes.
245
280
    """
246
 
    if not pattern.startswith('RE:'):
247
 
        pattern = pattern.replace('\\','/')
248
 
    return pattern.rstrip('/')
 
281
    if not (pattern.startswith('RE:') or pattern.startswith('!RE:')):
 
282
        pattern = _slashes.sub('/', pattern)
 
283
    if len(pattern) > 1:
 
284
        pattern = pattern.rstrip('/')
 
285
    return pattern