merge: disable the whole filesystem access loop if [_realfs] is false
authorArseniy Alekseyev <aalekseyev@janestreet.com>
Wed, 04 Jan 2023 17:03:15 +0000
changeset 49888 76d1e9f229fe
parent 49887 1b701d425c37
child 49889 c7624b1ac8b4
merge: disable the whole filesystem access loop if [_realfs] is false This makes it clearer that [auditeddir] is only relevant for [_realfs] checkers, and makes the non-realfs checkers more performant.
mercurial/pathutil.py
--- a/mercurial/pathutil.py	Wed Jan 04 16:48:32 2023 +0000
+++ b/mercurial/pathutil.py	Wed Jan 04 17:03:15 2023 +0000
@@ -108,22 +108,22 @@
                         % (path, pycompat.bytestr(base))
                     )
 
-        parts.pop()
-        # It's important that we check the path parts starting from the root.
-        # We don't want to add "foo/bar/baz" to auditeddir before checking if
-        # there's a "foo/.hg" directory. This also means we won't accidentally
-        # traverse a symlink into some other filesystem (which is potentially
-        # expensive to access).
-        for i in range(len(parts)):
-            prefix = pycompat.ossep.join(parts[: i + 1])
-            if prefix in self.auditeddir:
-                continue
-            if self._realfs:
+        if self._realfs:
+            parts.pop()
+            # It's important that we check the path parts starting from the root.
+            # We don't want to add "foo/bar/baz" to auditeddir before checking if
+            # there's a "foo/.hg" directory. This also means we won't accidentally
+            # traverse a symlink into some other filesystem (which is potentially
+            # expensive to access).
+            for i in range(len(parts)):
+                prefix = pycompat.ossep.join(parts[: i + 1])
+                if prefix in self.auditeddir:
+                    continue
                 res = self._checkfs_exists(prefix, path)
-            if self._cached:
-                self.auditeddir.add(prefix)
-            if not res:
-                break
+                if self._cached:
+                    self.auditeddir.add(prefix)
+                if not res:
+                    break
 
         if self._cached:
             self.audited.add(path)