Signed-off-by: Anders Kaseorg <andersk@mit.edu>
"""
match = self.map.match(path)
if match is None:
"""
match = self.map.match(path)
if match is None:
controller = match.pop('controller')
result = getattr(self, controller)(**match)
if type(result) is str:
controller = match.pop('controller')
result = getattr(self, controller)(**match)
if type(result) is str:
predetermined based on which it is.
"""
obj = self._get_file(path)
predetermined based on which it is.
"""
obj = self._get_file(path)
+ if type(obj) is NoEntry:
return -errno.ENOENT
st = RouteStat()
return -errno.ENOENT
st = RouteStat()
of the file
"""
obj = self._get_file(path)
of the file
"""
obj = self._get_file(path)
+ if type(obj) is NoEntry:
return -errno.ENOENT
elif type(obj) in (Directory, Symlink):
return -errno.EINVAL
return -errno.ENOENT
elif type(obj) in (Directory, Symlink):
return -errno.EINVAL
-class TreeEntry(object):
+class TreeKey(object):
+ pass
+
+class NoEntry(TreeKey):
+ pass
+
+class TreeEntry(TreeKey):
default_mode = 0444
def __new__(cls, contents, mode=None):
default_mode = 0444
def __new__(cls, contents, mode=None):