X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/python-routefs.git/blobdiff_plain/28c8a7e679b0251974b1c21e582f65abac9babac..ca61e30d8f2b2a794374ab3f424df9d5337e778a:/routefs/__init__.py diff --git a/routefs/__init__.py b/routefs/__init__.py index 1abbf9a..8d620e6 100644 --- a/routefs/__init__.py +++ b/routefs/__init__.py @@ -5,10 +5,6 @@ lets you focus on the directory tree instead of the system calls. RouteFS uses the Routes library developed for Pylons. URLs were inspired by filesystems, and now you can have filesystems inspired by URLs. - -When developing a descendent of RouteFS, any methods defined in that -class are considered "controllers", and receive any other parameters -specified by the URL as keyword arguments. """ import fuse @@ -35,37 +31,25 @@ class RouteStat(fuse.Stat): self.st_mtime = 0 self.st_ctime = 0 -class RouteMeta(type): - """ - Metaclass to calculate controller methods - - Routes needs to be pre-seeded with a list of "controllers". For - all descendents of RouteFS, the list of controllers is defined to - be any non-private methods of the class that were not in the - RouteFS class. - """ - def __init__(cls, classname, bases, dict_): - super(RouteMeta, cls).__init__(classname, bases, dict_) - if bases != (fuse.Fuse,): - new_funcs = set(dict_.keys()).difference(dir(RouteFS)) - cls.controllers([func for func in new_funcs \ - if not func.startswith('_')]) - class RouteFS(fuse.Fuse): """ RouteFS: Web 2.0 for filesystems + + Any method that will be used as the controller in a Routes mapping + (either by explicitly specifying the controller or by using the + ':controller' variable) must be added to RouteFS.controllers """ - __metaclass__ = RouteMeta + controllers = [] def __init__(self, *args, **kwargs): super(RouteFS, self).__init__(*args, **kwargs) - self.map = self.make_map() - self.map.create_regs(self.controller_list) - - def make_map(self): + self.map.create_regs(self.controllers) + + @property + def map(self): """ - This method should be overridden by descendents of RouteFS to - define the routing for the filesystem + This property should be overridden by descendents of RouteFS + to define the routing for the filesystem """ m = routes.Mapper() @@ -73,10 +57,6 @@ class RouteFS(fuse.Fuse): return m - @classmethod - def controllers(cls, lst): - cls.controller_list = lst - def _get_file(self, path): """ Find the filesystem entry object for a given path @@ -86,6 +66,8 @@ class RouteFS(fuse.Fuse): return NoEntry() controller = match.pop('controller') result = getattr(self, controller)(**match) + if result is None: + return NoEntry() if type(result) is str: result = File(result) if type(result) is list: @@ -97,12 +79,7 @@ class RouteFS(fuse.Fuse): If the path referred to is a directory, return the elements of that diectory """ - obj = self._get_file(path) - if type(obj) is not Directory: - return - else: - for member in ['.', '..'] + obj: - yield fuse.Direntry(str(member)) + return self._get_file(path).readdir(offset) def getattr(self, path): """ @@ -118,33 +95,44 @@ class RouteFS(fuse.Fuse): If the path specified is a file, return the requested portion 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 - else: - return obj[offset:offset + length] + return self._get_file(path).read(length, offset) def readlink(self, path): """ If the path specified is a symlink, return the target """ - obj = self._get_file(path) - if obj is None: - return -errno.ENOENT - elif type(obj) is not Symlink: - return -errno.EINVAL - else: - return obj + return self._get_file(path).readlink() + + def write(self, path, buf, offset): + """ + If the path specified is a file, call the appropriate member + on the file + """ + return self._get_file(path).write(buf, offset) class TreeKey(object): def getattr(self): return -errno.EINVAL + def readdir(self, offset): + return -errno.EINVAL + def read(self, length, offset): + return -errno.EINVAL + def readlink(self): + return -errno.EINVAL + def write(self, length, offset): + return -errno.EINVAL class NoEntry(TreeKey): def getattr(self): return -errno.ENOENT + def readdir(self, offset): + return -errno.ENOENT + def read(self, length, offset): + return -errno.ENOENT + def readlink(self): + return -errno.ENOENT + def write(self, length, offset): + return -errno.ENOENT class TreeEntry(TreeKey): default_mode = 0444 @@ -173,6 +161,10 @@ class Directory(TreeEntry, list): st.st_nlink = 2 return st + def readdir(self, offset): + for member in ['.', '..'] + self: + yield fuse.Direntry(str(member)) + class Symlink(TreeEntry, str): """ A dummy class representing something that should be a symlink @@ -186,6 +178,9 @@ class Symlink(TreeEntry, str): st.st_size = len(self) return st + def readlink(self): + return self + class File(TreeEntry, str): """ A dummy class representing something that should be a file @@ -199,6 +194,9 @@ class File(TreeEntry, str): st.st_size = len(self) return st + def read(self, length, offset): + return self[offset:offset + length] + def main(cls): """ A convenience function for initializing a RouteFS filesystem