Skip to content
Snippets Groups Projects
Commit 8095306c authored by Adrian Buehlmann's avatar Adrian Buehlmann
Browse files

store: move __contains__() implementation from class fncache into fncachestore

This restores the previous semantics of fncache.__contains__().

(a followup to b9a56b816ff2)
parent 8ce53574
No related branches found
No related tags found
No related merge requests found
......@@ -426,6 +426,6 @@
self._dirty = True
self.entries.add(fn)
def __contains__(self, path):
def __contains__(self, fn):
if self.entries is None:
self._load()
......@@ -430,15 +430,6 @@
if self.entries is None:
self._load()
# Check for files (exact match)
if path + ".i" in self.entries:
return True
# Now check for directories (prefix match)
if not path.endswith('/'):
path += '/'
for e in self.entries:
if e.startswith(path):
return True
return False
return fn in self.entries
def __iter__(self):
if self.entries is None:
......@@ -524,7 +515,16 @@
def __contains__(self, path):
'''Checks if the store contains path'''
path = "/".join(("data", path))
return path in self.fncache
# check for files (exact match)
if path + '.i' in self.fncache:
return True
# now check for directories (prefix match)
if not path.endswith('/'):
path += '/'
for e in self.fncache:
if e.startswith(path):
return True
return False
def store(requirements, path, vfstype):
if 'store' in requirements:
......
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