# HG changeset patch # User Martin von Zweigbergk # Date 1522774696 25200 # Node ID ac42e39b1b77d1bdd72b43df1a3bf26ea1e3a5d8 # Parent c50078fc32f31b3e425a6e65158aeff963c2aa99 narrow: move manifestlog overrides to core With this and the previous patch, I couldn't measure any significant difference from `hg files -r .` in a FireFox repo with 65k files. I tried with both a flat-manifest and a tree-manifest version of it. Neither had the narrow extension enabled. Differential Revision: https://phab.mercurial-scm.org/D3046 diff -r c50078fc32f3 -r ac42e39b1b77 hgext/narrow/narrowrepo.py --- a/hgext/narrow/narrowrepo.py Mon Apr 02 23:46:04 2018 -0700 +++ b/hgext/narrow/narrowrepo.py Tue Apr 03 09:58:16 2018 -0700 @@ -50,12 +50,6 @@ class narrowrepository(repo.__class__): - @cacheprop('00manifest.i') - def manifestlog(self): - mfl = super(narrowrepository, self).manifestlog - narrowrevlog.makenarrowmanifestlog(mfl, self) - return mfl - def file(self, f): fl = super(narrowrepository, self).file(f) narrowrevlog.makenarrowfilelog(fl, self.narrowmatch()) diff -r c50078fc32f3 -r ac42e39b1b77 hgext/narrow/narrowrevlog.py --- a/hgext/narrow/narrowrevlog.py Mon Apr 02 23:46:04 2018 -0700 +++ b/hgext/narrow/narrowrevlog.py Tue Apr 03 09:58:16 2018 -0700 @@ -8,7 +8,6 @@ from __future__ import absolute_import from mercurial import ( - manifest, revlog, util, ) @@ -30,14 +29,6 @@ # load time. pass -def makenarrowmanifestlog(mfl, repo): - class narrowmanifestlog(mfl.__class__): - def get(self, dir, node, verify=True): - if not repo.narrowmatch().visitdir(dir[:-1] or '.'): - return manifest.excludeddirmanifestctx(dir, node) - return super(narrowmanifestlog, self).get(dir, node, verify=verify) - mfl.__class__ = narrowmanifestlog - def makenarrowfilelog(fl, narrowmatch): class narrowfilelog(fl.__class__): def renamed(self, node): diff -r c50078fc32f3 -r ac42e39b1b77 mercurial/manifest.py --- a/mercurial/manifest.py Mon Apr 02 23:46:04 2018 -0700 +++ b/mercurial/manifest.py Tue Apr 03 09:58:16 2018 -0700 @@ -1303,6 +1303,9 @@ if node in self._dirmancache.get(dir, ()): return self._dirmancache[dir][node] + if not self._narrowmatch.always(): + if not self._narrowmatch.visitdir(dir[:-1] or '.'): + return excludeddirmanifestctx(dir, node) if dir: if self._revlog._treeondisk: if verify: