mercurial/scmutil.py
changeset 18213 c38a62af000e
parent 18206 2c1276825e93
child 18315 216230643ae2
--- a/mercurial/scmutil.py	Sat Dec 22 19:41:11 2012 +0100
+++ b/mercurial/scmutil.py	Fri Jan 04 01:07:25 2013 +0100
@@ -382,6 +382,18 @@
 
 filteropener = filtervfs
 
+class readonlyvfs(abstractvfs, auditvfs):
+    '''Wrapper vfs preventing any writing.'''
+
+    def __init__(self, vfs):
+        auditvfs.__init__(self, vfs)
+
+    def __call__(self, path, mode='r', *args, **kw):
+        if mode not in ('r', 'rb'):
+            raise util.Abort('this vfs is read only')
+        return self.vfs(path, mode, *args, **kw)
+
+
 def canonpath(root, cwd, myname, auditor=None):
     '''return the canonical path of myname, given cwd and root'''
     if util.endswithsep(root):