~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/globbing.py

  • Committer: Patrick Regan
  • Date: 2009-12-02 20:34:07 UTC
  • mto: (4852.3.3 2.1.0b4-doc-updates)
  • mto: This revision was merged to the branch mainline in revision 4856.
  • Revision ID: patrick.rubbs.regan@gmail.com-20091202203407-fjd0mshgn3j3foel
Removed trailing whitespace from files in doc directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
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)
252
218
 
253
219
class _OrderedGlobster(Globster):
254
220
    """A Globster that keeps pattern order."""
278
244
 
279
245
    Doesn't normalize regular expressions - they may contain escapes.
280
246
    """
281
 
    if not (pattern.startswith('RE:') or pattern.startswith('!RE:')):
 
247
 
 
248
    if not pattern.startswith('RE:'):
282
249
        pattern = _slashes.sub('/', pattern)
283
250
    if len(pattern) > 1:
284
251
        pattern = pattern.rstrip('/')