Skip to content
Snippets Groups Projects
Commit 79a86a95 authored by Pierre-Yves David's avatar Pierre-Yves David
Browse files

pathauditor: add a way to skip file system check

We need to be able to skip it when looking at data within the history.
Doing them in all cases leads to buggy behavior like issue4749.
parent 6d29ce25
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,8 @@
- under top-level .hg
- starts at the root of a windows drive
- contains ".."
More check are also done about the file system states:
- traverses a symlink (e.g. a/symlink_here/b)
- inside a nested repository (a callback can be used to approve
some nested repositories, e.g., subrepositories)
......@@ -26,5 +28,9 @@
- traverses a symlink (e.g. a/symlink_here/b)
- inside a nested repository (a callback can be used to approve
some nested repositories, e.g., subrepositories)
The file system checks are only done when 'realfs' is set to True (the
default). They should be disable then we are auditing path for operation on
stored history.
'''
......@@ -29,6 +35,6 @@
'''
def __init__(self, root, callback=None):
def __init__(self, root, callback=None, realfs=True):
self.audited = set()
self.auditeddir = set()
self.root = root
......@@ -32,6 +38,7 @@
self.audited = set()
self.auditeddir = set()
self.root = root
self._realfs = realfs
self.callback = callback
if os.path.lexists(root) and not util.checkcase(root):
self.normcase = util.normcase
......@@ -81,7 +88,8 @@
normprefix = os.sep.join(normparts)
if normprefix in self.auditeddir:
break
self._checkfs(prefix, path)
if self._realfs:
self._checkfs(prefix, path)
prefixes.append(normprefix)
parts.pop()
normparts.pop()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment