diff --git a/mercurial/match.py b/mercurial/match.py --- a/mercurial/match.py +++ b/mercurial/match.py @@ -145,9 +145,9 @@ def match(root, cwd, patterns, include=N if exact: m = exactmatcher(root, cwd, patterns, badfn) else: - m = patternmatcher(root, cwd, normalize, patterns, include=None, - default=default, auditor=auditor, ctx=ctx, - listsubrepos=listsubrepos, warn=warn, badfn=badfn) + m = patternmatcher(root, cwd, normalize, patterns, default=default, + auditor=auditor, ctx=ctx, listsubrepos=listsubrepos, + warn=warn, badfn=badfn) if include: im = includematcher(root, cwd, normalize, include, auditor=auditor, ctx=ctx, listsubrepos=listsubrepos, warn=warn, @@ -313,36 +313,17 @@ class basematcher(object): class patternmatcher(basematcher): - def __init__(self, root, cwd, normalize, patterns, include=None, - default='glob', auditor=None, ctx=None, - listsubrepos=False, warn=None, badfn=None): + def __init__(self, root, cwd, normalize, patterns, default='glob', + auditor=None, ctx=None, listsubrepos=False, warn=None, + badfn=None): super(patternmatcher, self).__init__(root, cwd, badfn, - relativeuipath=bool(include or - patterns)) - if include is None: - include = [] + relativeuipath=bool(patterns)) - self._anypats = bool(include) - self._anyincludepats = False + self._anypats = False self._always = False self.patternspat = None - self.includepat = None - - # roots are directories which are recursively included. - self._includeroots = set() - # dirs are directories which are non-recursively included. - self._includedirs = set() matchfns = [] - if include: - kindpats = normalize(include, 'glob', root, cwd, auditor, warn) - self.includepat, im = _buildmatch(ctx, kindpats, '(?:/|$)', - listsubrepos, root) - self._anyincludepats = _anypats(kindpats) - roots, dirs = _rootsanddirs(kindpats) - self._includeroots.update(roots) - self._includedirs.update(dirs) - matchfns.append(im) if patterns: kindpats = normalize(patterns, default, root, cwd, auditor, warn) if not _kindpatsalwaysmatch(kindpats): @@ -373,17 +354,6 @@ class patternmatcher(basematcher): def visitdir(self, dir): if self.prefix() and dir in self._fileset: return 'all' - if self._includeroots or self._includedirs: - if (not self._anyincludepats and - dir in self._includeroots): - # The condition above is essentially self.prefix() for includes - return 'all' - if ('.' not in self._includeroots and - dir not in self._includeroots and - dir not in self._includedirs and - not any(parent in self._includeroots - for parent in util.finddirs(dir))): - return False return (not self._fileset or '.' in self._fileset or dir in self._fileset or @@ -398,8 +368,7 @@ class patternmatcher(basematcher): return self._always def __repr__(self): - return ('' % - (self.patternspat, self.includepat)) + return ('' % self.patternspat) class includematcher(basematcher): diff --git a/tests/test-eolfilename.t b/tests/test-eolfilename.t --- a/tests/test-eolfilename.t +++ b/tests/test-eolfilename.t @@ -33,7 +33,7 @@ test issue352 [255] $ echo foo > "$A" $ hg debugwalk - matcher: + matcher: f he\r (no-eol) (esc) llo he\r (no-eol) (esc) llo diff --git a/tests/test-walk.t b/tests/test-walk.t --- a/tests/test-walk.t +++ b/tests/test-walk.t @@ -29,7 +29,7 @@ $ hg commit -m "commit #0" $ hg debugwalk - matcher: + matcher: f beans/black beans/black f beans/borlotti beans/borlotti f beans/kidney beans/kidney @@ -61,7 +61,7 @@ $ cd mammals $ hg debugwalk - matcher: + matcher: f beans/black ../beans/black f beans/borlotti ../beans/borlotti f beans/kidney ../beans/kidney @@ -76,7 +76,7 @@ f mammals/Procyonidae/raccoon Procyonidae/raccoon f mammals/skunk skunk $ hg debugwalk -X ../beans - matcher: , m2=> + matcher: , m2=> f fennel ../fennel f fenugreek ../fenugreek f fiddlehead ../fiddlehead @@ -96,7 +96,7 @@ f fenugreek ../fenugreek f mammals/skunk skunk $ hg debugwalk -I 'relglob:*k' . - matcher: , m2=> + matcher: , m2=> f mammals/skunk skunk $ hg debugwalk -I 're:.*k$' matcher: @@ -126,7 +126,7 @@ f beans/turtle ../beans/turtle $ hg debugwalk 'rootfilesin:' - matcher: + matcher: f fennel ../fennel f fenugreek ../fenugreek f fiddlehead ../fiddlehead @@ -136,7 +136,7 @@ f fenugreek ../fenugreek f fiddlehead ../fiddlehead $ hg debugwalk 'rootfilesin:.' - matcher: + matcher: f fennel ../fennel f fenugreek ../fenugreek f fiddlehead ../fiddlehead @@ -146,7 +146,7 @@ f fenugreek ../fenugreek f fiddlehead ../fiddlehead $ hg debugwalk -X 'rootfilesin:' - matcher: , m2=> + matcher: , m2=> f beans/black ../beans/black f beans/borlotti ../beans/borlotti f beans/kidney ../beans/kidney @@ -158,15 +158,15 @@ f mammals/Procyonidae/raccoon Procyonidae/raccoon f mammals/skunk skunk $ hg debugwalk 'rootfilesin:fennel' - matcher: + matcher: $ hg debugwalk -I 'rootfilesin:fennel' matcher: $ hg debugwalk 'rootfilesin:skunk' - matcher: + matcher: $ hg debugwalk -I 'rootfilesin:skunk' matcher: $ hg debugwalk 'rootfilesin:beans' - matcher: + matcher: f beans/black ../beans/black f beans/borlotti ../beans/borlotti f beans/kidney ../beans/kidney @@ -182,19 +182,19 @@ f beans/pinto ../beans/pinto f beans/turtle ../beans/turtle $ hg debugwalk 'rootfilesin:mammals' - matcher: + matcher: f mammals/skunk skunk $ hg debugwalk -I 'rootfilesin:mammals' matcher: f mammals/skunk skunk $ hg debugwalk 'rootfilesin:mammals/' - matcher: + matcher: f mammals/skunk skunk $ hg debugwalk -I 'rootfilesin:mammals/' matcher: f mammals/skunk skunk $ hg debugwalk -X 'rootfilesin:mammals' - matcher: , m2=> + matcher: , m2=> f beans/black ../beans/black f beans/borlotti ../beans/borlotti f beans/kidney ../beans/kidney @@ -209,7 +209,7 @@ f mammals/Procyonidae/raccoon Procyonidae/raccoon $ hg debugwalk . - matcher: + matcher: f mammals/Procyonidae/cacomistle Procyonidae/cacomistle f mammals/Procyonidae/coatimundi Procyonidae/coatimundi f mammals/Procyonidae/raccoon Procyonidae/raccoon @@ -221,19 +221,19 @@ f mammals/Procyonidae/raccoon Procyonidae/raccoon f mammals/skunk skunk $ hg debugwalk Procyonidae - matcher: + matcher: f mammals/Procyonidae/cacomistle Procyonidae/cacomistle f mammals/Procyonidae/coatimundi Procyonidae/coatimundi f mammals/Procyonidae/raccoon Procyonidae/raccoon $ cd Procyonidae $ hg debugwalk . - matcher: + matcher: f mammals/Procyonidae/cacomistle cacomistle f mammals/Procyonidae/coatimundi coatimundi f mammals/Procyonidae/raccoon raccoon $ hg debugwalk .. - matcher: + matcher: f mammals/Procyonidae/cacomistle cacomistle f mammals/Procyonidae/coatimundi coatimundi f mammals/Procyonidae/raccoon raccoon @@ -241,7 +241,7 @@ $ cd .. $ hg debugwalk ../beans - matcher: + matcher: f beans/black ../beans/black f beans/borlotti ../beans/borlotti f beans/kidney ../beans/kidney @@ -249,7 +249,7 @@ f beans/pinto ../beans/pinto f beans/turtle ../beans/turtle $ hg debugwalk . - matcher: + matcher: f mammals/Procyonidae/cacomistle Procyonidae/cacomistle f mammals/Procyonidae/coatimundi Procyonidae/coatimundi f mammals/Procyonidae/raccoon Procyonidae/raccoon @@ -276,20 +276,20 @@ f fenugreek fenugreek f mammals/skunk mammals/skunk $ hg debugwalk -Ibeans mammals - matcher: , m2=> + matcher: , m2=> $ hg debugwalk -Inon-existent matcher: $ hg debugwalk -Inon-existent -Ibeans/black matcher: f beans/black beans/black $ hg debugwalk -Ibeans beans/black - matcher: , m2=> + matcher: , m2=> f beans/black beans/black exact $ hg debugwalk -Ibeans/black beans - matcher: , m2=> + matcher: , m2=> f beans/black beans/black $ hg debugwalk -Xbeans/black beans - matcher: , m2=> + matcher: , m2=> f beans/borlotti beans/borlotti f beans/kidney beans/kidney f beans/navy beans/navy @@ -303,24 +303,24 @@ f beans/pinto beans/pinto f beans/turtle beans/turtle $ hg debugwalk -Xbeans/black beans/black - matcher: , m2=> + matcher: , m2=> f beans/black beans/black exact $ hg debugwalk -Xbeans/black -Ibeans/black matcher: , m2=> $ hg debugwalk -Xbeans beans/black - matcher: , m2=> + matcher: , m2=> f beans/black beans/black exact $ hg debugwalk -Xbeans -Ibeans/black matcher: , m2=> $ hg debugwalk 'glob:mammals/../beans/b*' - matcher: + matcher: f beans/black beans/black f beans/borlotti beans/borlotti $ hg debugwalk '-X*/Procyonidae' mammals - matcher: , m2=> + matcher: , m2=> f mammals/skunk mammals/skunk $ hg debugwalk path:mammals - matcher: + matcher: f mammals/Procyonidae/cacomistle mammals/Procyonidae/cacomistle f mammals/Procyonidae/coatimundi mammals/Procyonidae/coatimundi f mammals/Procyonidae/raccoon mammals/Procyonidae/raccoon @@ -347,7 +347,7 @@ Test absolute paths: $ hg debugwalk `pwd`/beans - matcher: + matcher: f beans/black beans/black f beans/borlotti beans/borlotti f beans/kidney beans/kidney @@ -361,7 +361,7 @@ Test absolute paths: Test patterns: $ hg debugwalk glob:\* - matcher: + matcher: f fennel fennel f fenugreek fenugreek f fiddlehead fiddlehead @@ -371,19 +371,19 @@ Test patterns: adding glob:glob warning: filename contains ':', which is reserved on Windows: 'glob:glob' $ hg debugwalk glob:\* - matcher: + matcher: f fennel fennel f fenugreek fenugreek f fiddlehead fiddlehead f glob:glob glob:glob $ hg debugwalk glob:glob - matcher: + matcher: glob: No such file or directory $ hg debugwalk glob:glob:glob - matcher: + matcher: f glob:glob glob:glob exact $ hg debugwalk path:glob:glob - matcher: + matcher: f glob:glob glob:glob exact $ rm glob:glob $ hg addremove @@ -391,38 +391,38 @@ Test patterns: #endif $ hg debugwalk 'glob:**e' - matcher: + matcher: f beans/turtle beans/turtle f mammals/Procyonidae/cacomistle mammals/Procyonidae/cacomistle $ hg debugwalk 're:.*[kb]$' - matcher: + matcher: f beans/black beans/black f fenugreek fenugreek f mammals/skunk mammals/skunk $ hg debugwalk path:beans/black - matcher: + matcher: f beans/black beans/black exact $ hg debugwalk path:beans//black - matcher: + matcher: f beans/black beans/black exact $ hg debugwalk relglob:Procyonidae - matcher: + matcher: $ hg debugwalk 'relglob:Procyonidae/**' - matcher: + matcher: f mammals/Procyonidae/cacomistle mammals/Procyonidae/cacomistle f mammals/Procyonidae/coatimundi mammals/Procyonidae/coatimundi f mammals/Procyonidae/raccoon mammals/Procyonidae/raccoon $ hg debugwalk 'relglob:Procyonidae/**' fennel - matcher: + matcher: f fennel fennel exact f mammals/Procyonidae/cacomistle mammals/Procyonidae/cacomistle f mammals/Procyonidae/coatimundi mammals/Procyonidae/coatimundi f mammals/Procyonidae/raccoon mammals/Procyonidae/raccoon $ hg debugwalk beans 'glob:beans/*' - matcher: + matcher: f beans/black beans/black f beans/borlotti beans/borlotti f beans/kidney beans/kidney @@ -430,51 +430,51 @@ Test patterns: f beans/pinto beans/pinto f beans/turtle beans/turtle $ hg debugwalk 'glob:mamm**' - matcher: + matcher: f mammals/Procyonidae/cacomistle mammals/Procyonidae/cacomistle f mammals/Procyonidae/coatimundi mammals/Procyonidae/coatimundi f mammals/Procyonidae/raccoon mammals/Procyonidae/raccoon f mammals/skunk mammals/skunk $ hg debugwalk 'glob:mamm**' fennel - matcher: + matcher: f fennel fennel exact f mammals/Procyonidae/cacomistle mammals/Procyonidae/cacomistle f mammals/Procyonidae/coatimundi mammals/Procyonidae/coatimundi f mammals/Procyonidae/raccoon mammals/Procyonidae/raccoon f mammals/skunk mammals/skunk $ hg debugwalk 'glob:j*' - matcher: + matcher: $ hg debugwalk NOEXIST - matcher: + matcher: NOEXIST: * (glob) #if fifo $ mkfifo fifo $ hg debugwalk fifo - matcher: + matcher: fifo: unsupported file type (type is fifo) #endif $ rm fenugreek $ hg debugwalk fenugreek - matcher: + matcher: f fenugreek fenugreek exact $ hg rm fenugreek $ hg debugwalk fenugreek - matcher: + matcher: f fenugreek fenugreek exact $ touch new $ hg debugwalk new - matcher: + matcher: f new new exact $ mkdir ignored $ touch ignored/file $ echo '^ignored$' > .hgignore $ hg debugwalk ignored - matcher: + matcher: $ hg debugwalk ignored/file - matcher: + matcher: f ignored/file ignored/file exact Test listfile and listfile0 @@ -493,15 +493,15 @@ Test listfile and listfile0 $ cd .. $ hg debugwalk -R t t/mammals/skunk - matcher: + matcher: f mammals/skunk t/mammals/skunk exact $ mkdir t2 $ cd t2 $ hg debugwalk -R ../t ../t/mammals/skunk - matcher: + matcher: f mammals/skunk ../t/mammals/skunk exact $ hg debugwalk --cwd ../t mammals/skunk - matcher: + matcher: f mammals/skunk mammals/skunk exact $ cd ..