mercurial/match.py
changeset 8576 ec4ed21db4b2
parent 8575 aa4fcb5c46f1
child 8577 c7bab7fede4c
--- a/mercurial/match.py	Sun May 24 02:56:14 2009 -0500
+++ b/mercurial/match.py	Sun May 24 02:56:14 2009 -0500
@@ -168,8 +168,6 @@
 
 def _normalizepats(names, default, canonroot, cwd):
     pats = []
-    roots = []
-    anypats = False
     for kind, name in [_patsplit(p, default) for p in names]:
         if kind in ('glob', 'relpath'):
             name = util.canonpath(canonroot, cwd, name)
@@ -177,18 +175,23 @@
             name = util.normpath(name)
 
         pats.append((kind, name))
+    return pats
 
-        if kind in ('glob', 're', 'relglob', 'relre'):
-            anypats = True
-
+def _roots(patterns):
+    r = []
+    for kind, name in patterns:
         if kind == 'glob':
-            root = _globprefix(name)
-            roots.append(root)
+            r.append(_globprefix(name))
         elif kind in ('relpath', 'path'):
-            roots.append(name or '.')
+            r.append(name or '.')
         elif kind == 'relglob':
-            roots.append('.')
-    return roots, pats, anypats
+            r.append('.')
+    return r
+
+def _anypats(patterns):
+    for kind, name in patterns:
+        if kind in ('glob', 're', 'relglob', 'relre'):
+            return True
 
 def _matcher(root, cwd='', names=[], inc=[], exc=[], dflt_pat='glob'):
     """build a function to match a set of file patterns
@@ -223,15 +226,17 @@
     if not names and not inc and not exc:
         return [], lambda f: True, False
 
-    roots, pats, anypats = _normalizepats(names, dflt_pat, root, cwd)
+    pats = _normalizepats(names, dflt_pat, root, cwd)
+    roots = _roots(pats)
+    anypats = _anypats(pats)
 
     if names:
         patmatch = _matchfn(pats, '$')
     if inc:
-        dummy, inckinds, dummy = _normalizepats(inc, 'glob', root, cwd)
+        inckinds = _normalizepats(inc, 'glob', root, cwd)
         incmatch = _matchfn(inckinds, '(?:/|$)')
     if exc:
-        dummy, exckinds, dummy = _normalizepats(exc, 'glob', root, cwd)
+        exckinds = _normalizepats(exc, 'glob', root, cwd)
         excmatch = _matchfn(exckinds, '(?:/|$)')
 
     if names: