From patchwork Thu May 25 18:24:51 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [10, of, 17] match: remove support for non-include patterns from includematcher From: via Mercurial-devel X-Patchwork-Id: 20911 Message-Id: <9f9099e03196c6ede46b.1495736691@martinvonz.svl.corp.google.com> To: mercurial-devel@mercurial-scm.org Date: Thu, 25 May 2017 11:24:51 -0700 # HG changeset patch # User Martin von Zweigbergk # Date 1495226194 25200 # Fri May 19 13:36:34 2017 -0700 # Node ID 9f9099e03196c6ede46bbf9d0c367c65d97865e7 # Parent a7c4d6b78a7544294001bb642162f9087a8013e8 match: remove support for non-include patterns from includematcher The includematcher will always get at least one include pattern and will never get a non-include pattern, so we can remove most of the code in it. This patch does mostly straight-forward deletions of code. We will clean up further later. diff --git a/mercurial/match.py b/mercurial/match.py --- a/mercurial/match.py +++ b/mercurial/match.py @@ -149,14 +149,14 @@ default=default, auditor=auditor, ctx=ctx, listsubrepos=listsubrepos, warn=warn, badfn=badfn) if include: - im = includematcher(root, cwd, normalize, [], include=include, - default=default, auditor=auditor, ctx=ctx, - listsubrepos=listsubrepos, warn=warn, badfn=None) + im = includematcher(root, cwd, normalize, include, auditor=auditor, + ctx=ctx, listsubrepos=listsubrepos, warn=warn, + badfn=None) m = intersectmatchers(m, im) if exclude: - em = includematcher(root, cwd, normalize, [], include=exclude, - default=default, auditor=auditor, ctx=ctx, - listsubrepos=listsubrepos, warn=warn, badfn=None) + em = includematcher(root, cwd, normalize, exclude, auditor=auditor, + ctx=ctx, listsubrepos=listsubrepos, warn=warn, + badfn=None) m = differencematcher(m, em) return m @@ -404,95 +404,38 @@ class includematcher(basematcher): - def __init__(self, root, cwd, normalize, patterns, include=None, - default='glob', auditor=None, ctx=None, + def __init__(self, root, cwd, normalize, include, auditor=None, ctx=None, listsubrepos=False, warn=None, badfn=None): super(includematcher, self).__init__(root, cwd, badfn) - if include is None: - include = [] - self._anypats = bool(include) - self._anyincludepats = False - self._always = False - self._pathrestricted = bool(include or patterns) - self.patternspat = None - self.includepat = None - + kindpats = normalize(include, 'glob', root, cwd, auditor, warn) + self.includepat, im = _buildmatch(ctx, kindpats, '(?:/|$)', + listsubrepos, root) + self._anyincludepats = _anypats(kindpats) + roots, dirs = _rootsanddirs(kindpats) # roots are directories which are recursively included. - self._includeroots = set() + self._includeroots = set(roots) # 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 - - def uipath(self, f): - return (self._pathrestricted and self.rel(f)) or self.abs(f) - - @propertycache - def _dirs(self): - return set(util.dirs(self._fileset)) | {'.'} + self._includedirs = set(dirs) + self.matchfn = im def visitdir(self, dir): - if self.prefix() and dir in self._fileset: + if not self._anyincludepats and dir in self._includeroots: + # The condition above is essentially self.prefix() for includes 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))) + 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 True def anypats(self): - return self._anypats - - def always(self): - return self._always + return True def __repr__(self): - return ('' % - (self.patternspat, self.includepat)) + return ('' % self.includepat) class exactmatcher(basematcher): diff --git a/tests/test-hgignore.t b/tests/test-hgignore.t --- a/tests/test-hgignore.t +++ b/tests/test-hgignore.t @@ -164,7 +164,7 @@ A b.o $ hg debugignore - + $ hg debugignore b.o b.o is ignored diff --git a/tests/test-walk.t b/tests/test-walk.t --- a/tests/test-walk.t +++ b/tests/test-walk.t @@ -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 @@ -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 @@ -131,7 +131,7 @@ f fenugreek ../fenugreek f fiddlehead ../fiddlehead $ hg debugwalk -I 'rootfilesin:' - matcher: + matcher: f fennel ../fennel f fenugreek ../fenugreek f fiddlehead ../fiddlehead @@ -141,12 +141,12 @@ 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 @@ -160,11 +160,11 @@ $ hg debugwalk 'rootfilesin:fennel' matcher: $ hg debugwalk -I 'rootfilesin:fennel' - matcher: + matcher: $ hg debugwalk 'rootfilesin:skunk' matcher: $ hg debugwalk -I 'rootfilesin:skunk' - matcher: + matcher: $ hg debugwalk 'rootfilesin:beans' matcher: f beans/black ../beans/black @@ -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 @@ -185,16 +185,16 @@ matcher: f mammals/skunk skunk $ hg debugwalk -I 'rootfilesin:mammals' - matcher: + matcher: f mammals/skunk skunk $ hg debugwalk 'rootfilesin:mammals/' 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 @@ -215,7 +215,7 @@ 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 @@ -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,53 +271,53 @@ 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: 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: @@ -481,12 +481,12 @@ $ $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