# HG changeset patch # User Martin von Zweigbergk # Date 1495258574 25200 # Node ID 7095dbc266e3ede883c6d956c73c9b6faa0845bc # Parent 369c2d5eeea341ba9e097872083789aa612319f0 match: split up main matcher into patternmatcher and includematcher At this point the includematcher is an exact copy of the main matcher class. We will specialize and simplify both classes in the following patches. This initial unmodified copy is just to make the differences clearer. We also rename the main matcher to "patternmatcher" for consistency. I may eventually merge this new includematcher back into the main matcher, but I think doing it this way makes the intermediate steps clearer regardless. diff -r 369c2d5eeea3 -r 7095dbc266e3 mercurial/match.py --- a/mercurial/match.py Thu May 18 23:39:39 2017 -0700 +++ b/mercurial/match.py Fri May 19 22:36:14 2017 -0700 @@ -145,18 +145,18 @@ if exact: m = exactmatcher(root, cwd, patterns, badfn) else: - m = matcher(root, cwd, normalize, patterns, include=None, - default=default, auditor=auditor, ctx=ctx, - listsubrepos=listsubrepos, warn=warn, badfn=badfn) + m = patternmatcher(root, cwd, normalize, patterns, include=None, + default=default, auditor=auditor, ctx=ctx, + listsubrepos=listsubrepos, warn=warn, badfn=badfn) if include: - im = matcher(root, cwd, normalize, [], include=include, default=default, - auditor=auditor, ctx=ctx, listsubrepos=listsubrepos, - warn=warn, badfn=None) + im = includematcher(root, cwd, normalize, [], include=include, + default=default, auditor=auditor, ctx=ctx, + listsubrepos=listsubrepos, warn=warn, badfn=None) m = intersectmatchers(m, im) if exclude: - em = matcher(root, cwd, normalize, [], include=exclude, default=default, - auditor=auditor, ctx=ctx, listsubrepos=listsubrepos, - warn=warn, badfn=None) + em = includematcher(root, cwd, normalize, [], include=exclude, + default=default, auditor=auditor, ctx=ctx, + listsubrepos=listsubrepos, warn=warn, badfn=None) m = differencematcher(m, em) return m @@ -311,13 +311,14 @@ def prefix(self): return not self.always() and not self.isexact() and not self.anypats() -class matcher(basematcher): +class patternmatcher(basematcher): def __init__(self, root, cwd, normalize, patterns, include=None, default='glob', auditor=None, ctx=None, listsubrepos=False, warn=None, badfn=None): - super(matcher, self).__init__(root, cwd, badfn, - relativeuipath=bool(include or patterns)) + super(patternmatcher, self).__init__(root, cwd, badfn, + relativeuipath=bool(include or + patterns)) if include is None: include = [] @@ -397,7 +398,97 @@ return self._always def __repr__(self): - return ('' % + return ('' % + (self.patternspat, self.includepat)) + +class includematcher(basematcher): + + def __init__(self, root, cwd, normalize, patterns, include=None, + default='glob', auditor=None, ctx=None, + listsubrepos=False, warn=None, badfn=None): + super(includematcher, self).__init__(root, cwd, badfn, + relativeuipath=bool(include or + patterns)) + if include is None: + include = [] + + self._anypats = bool(include) + self._anyincludepats = 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): + self._files = _explicitfiles(kindpats) + self._anypats = self._anypats or _anypats(kindpats) + self.patternspat, pm = _buildmatch(ctx, kindpats, '$', + listsubrepos, root) + matchfns.append(pm) + + if not matchfns: + m = util.always + self._always = True + elif len(matchfns) == 1: + m = matchfns[0] + else: + def m(f): + for matchfn in matchfns: + if not matchfn(f): + return False + return True + + self.matchfn = m + + @propertycache + def _dirs(self): + return set(util.dirs(self._fileset)) | {'.'} + + 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 + dir in self._dirs or + any(parentdir in self._fileset + for parentdir in util.finddirs(dir))) + + def anypats(self): + return self._anypats + + def always(self): + return self._always + + def __repr__(self): + return ('' % (self.patternspat, self.includepat)) class exactmatcher(basematcher): diff -r 369c2d5eeea3 -r 7095dbc266e3 tests/test-eolfilename.t --- a/tests/test-eolfilename.t Thu May 18 23:39:39 2017 -0700 +++ b/tests/test-eolfilename.t Fri May 19 22:36:14 2017 -0700 @@ -33,7 +33,7 @@ [255] $ echo foo > "$A" $ hg debugwalk - matcher: + matcher: f he\r (no-eol) (esc) llo he\r (no-eol) (esc) llo diff -r 369c2d5eeea3 -r 7095dbc266e3 tests/test-hgignore.t --- a/tests/test-hgignore.t Thu May 18 23:39:39 2017 -0700 +++ b/tests/test-hgignore.t Fri May 19 22:36:14 2017 -0700 @@ -164,7 +164,7 @@ A b.o $ hg debugignore - + $ hg debugignore b.o b.o is ignored diff -r 369c2d5eeea3 -r 7095dbc266e3 tests/test-walk.t --- a/tests/test-walk.t Thu May 18 23:39:39 2017 -0700 +++ b/tests/test-walk.t Fri May 19 22:36:14 2017 -0700 @@ -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 @@ -44,7 +44,7 @@ f mammals/Procyonidae/raccoon mammals/Procyonidae/raccoon f mammals/skunk mammals/skunk $ hg debugwalk -I. - 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 @@ -85,31 +85,31 @@ f mammals/Procyonidae/raccoon Procyonidae/raccoon f mammals/skunk skunk $ hg debugwalk -I '*k' - matcher: + matcher: f mammals/skunk skunk $ hg debugwalk -I 'glob:*k' - matcher: + matcher: f mammals/skunk skunk $ hg debugwalk -I 'relglob:*k' - matcher: + matcher: f beans/black ../beans/black 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: + matcher: f beans/black ../beans/black f fenugreek ../fenugreek f mammals/skunk skunk $ hg debugwalk -I 'relre:.*k$' - matcher: + matcher: f beans/black ../beans/black f fenugreek ../fenugreek f mammals/skunk skunk $ hg debugwalk -I 'path:beans' - matcher: + matcher: f beans/black ../beans/black f beans/borlotti ../beans/borlotti f beans/kidney ../beans/kidney @@ -117,7 +117,7 @@ f beans/pinto ../beans/pinto f beans/turtle ../beans/turtle $ hg debugwalk -I 'relpath:detour/../../beans' - matcher: + matcher: f beans/black ../beans/black f beans/borlotti ../beans/borlotti f beans/kidney ../beans/kidney @@ -126,27 +126,27 @@ f beans/turtle ../beans/turtle $ hg debugwalk 'rootfilesin:' - matcher: + matcher: f fennel ../fennel f fenugreek ../fenugreek f fiddlehead ../fiddlehead $ hg debugwalk -I 'rootfilesin:' - matcher: + matcher: f fennel ../fennel f fenugreek ../fenugreek f fiddlehead ../fiddlehead $ hg debugwalk 'rootfilesin:.' - matcher: + matcher: f fennel ../fennel f fenugreek ../fenugreek f fiddlehead ../fiddlehead $ hg debugwalk -I 'rootfilesin:.' - matcher: + matcher: f fennel ../fennel 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: + matcher: $ hg debugwalk 'rootfilesin:skunk' - matcher: + matcher: $ hg debugwalk -I 'rootfilesin:skunk' - matcher: + matcher: $ hg debugwalk 'rootfilesin:beans' - matcher: + matcher: f beans/black ../beans/black f beans/borlotti ../beans/borlotti f beans/kidney ../beans/kidney @@ -174,7 +174,7 @@ f beans/pinto ../beans/pinto f beans/turtle ../beans/turtle $ hg debugwalk -I '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: + matcher: f mammals/skunk skunk $ hg debugwalk 'rootfilesin:mammals/' - matcher: + matcher: f mammals/skunk skunk $ hg debugwalk -I 'rootfilesin:mammals/' - matcher: + 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,31 +209,31 @@ 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 f mammals/skunk skunk $ hg debugwalk -I. - matcher: + matcher: f mammals/Procyonidae/cacomistle Procyonidae/cacomistle f mammals/Procyonidae/coatimundi Procyonidae/coatimundi 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 @@ -263,7 +263,7 @@ $ cd .. $ hg debugwalk -Ibeans - matcher: + matcher: f beans/black beans/black f beans/borlotti beans/borlotti f beans/kidney beans/kidney @@ -271,56 +271,56 @@ f beans/pinto beans/pinto f beans/turtle beans/turtle $ hg debugwalk -I '{*,{b,m}*/*}k' - matcher: + matcher: f beans/black beans/black f fenugreek fenugreek f mammals/skunk mammals/skunk $ hg debugwalk -Ibeans mammals - matcher: , m2=> + matcher: , m2=> $ hg debugwalk -Inon-existent - matcher: + matcher: $ hg debugwalk -Inon-existent -Ibeans/black - matcher: + 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 f beans/pinto beans/pinto f beans/turtle beans/turtle $ hg debugwalk -Xbeans/black -Ibeans - matcher: , m2=> + matcher: , m2=> f beans/borlotti beans/borlotti f beans/kidney beans/kidney f beans/navy beans/navy 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=> + matcher: , m2=> $ hg debugwalk -Xbeans beans/black - matcher: , m2=> + matcher: , m2=> f beans/black beans/black exact $ hg debugwalk -Xbeans -Ibeans/black - matcher: , m2=> + 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 patterns: $ hg debugwalk glob:\* - matcher: + matcher: f fennel fennel f fenugreek fenugreek f fiddlehead fiddlehead @@ -371,19 +371,19 @@ 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 @@ #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,78 +430,78 @@ 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 $ $PYTHON -c "file('listfile0', 'wb').write('fenugreek\0new\0')" $ hg debugwalk -I 'listfile0:listfile0' - matcher: + matcher: f fenugreek fenugreek f new new $ $PYTHON -c "file('listfile', 'wb').write('fenugreek\nnew\r\nmammals/skunk\n')" $ hg debugwalk -I 'listfile:listfile' - matcher: + matcher: f fenugreek fenugreek f mammals/skunk mammals/skunk f new new $ 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 ..