diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2004-11-11 15:20:05 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2004-11-11 15:20:05 +0000 |
commit | 30e8eb3e135291717eceaae69162fceb91d30aa1 (patch) | |
tree | 1db0567746719aeebe993981e2744d0340cfcc3e /python/README | |
parent | 3d60e7641b52ac98d789ab091c6ada143dba5f69 (diff) | |
download | libfuse-30e8eb3e135291717eceaae69162fceb91d30aa1.tar.gz |
move perl python and lufis directories one level up
Diffstat (limited to 'python/README')
-rw-r--r-- | python/README | 92 |
1 files changed, 0 insertions, 92 deletions
diff --git a/python/README b/python/README deleted file mode 100644 index 2a3af2b..0000000 --- a/python/README +++ /dev/null @@ -1,92 +0,0 @@ -#@+leo-ver=4 -#@+node:@file README -#@@language - -Refer to the INSTALL file for build/install instructions - -General Information -=================== - -This is a Python[1] interface to FUSE[2]. - -FUSE (Filesystem in USErspace) is a simple interface for userspace -programs to export a virtual filesystem to the linux kernel. FUSE -also aims to provide a secure method for non privileged users to -create and mount their own filesystem implementations. - -When run from the commandline, "fuse.py" simply reexports the root -filesystem within the mount point as example/fusexmp does in the main -FUSE distribution. It also offers a class, fuse.Fuse, which can be -subclassed to create a filesystem. fuse.Xmp is the example filesystem -implementation. - -In your subclass of fuse, add attributes with the expected names -("getattr", "readlink", etc) and call signatures (refer to fuse.Xmp) -then call main(). Make it runnable as a #! script, and mount with - fusermount <mount point> <script name> -for some reason, - fusermount <mount point> python <script name> -does not seem to work. (why?) - -Update -====== - -Updated 13-Dec-2003 by David McNab <david@rebirthing.co.nz> - - - changed Makefile to use Pyton distutils - - added setup.py for distutils - - - added 'code.leo' file for convenience of those who use the Leo - code editor (leo.sf.net) - - - added support for 'statfs' and 'fsync' methods (refer xmp.py) - -Updated Dec 2003 by David McNab <david@rebirthing.co.nz>: - - - added support for 'release' events (ie when file gets closed) - - added __init__ to base class, which picks off parameters and - stores them as instance attributes: - - self.mountpoint - the mountpoint as given in the mount command - - self.optlist - unnamed options (eg 'rw', 'exec' etc) - - self.optdict - named options (eg, '-o arg1=val1,arg2=val2...' from mount cmd) - - fixed incompatibility issues with recent pythons (original was broken - under python2.3) - -Limitations -=========== - -This is minimally tested, though I think I have exercised each function. -There's no documentation, docstrings, or tests. - -Python's lstat() does not return some fields which must be filled in -(st_blksize, st_blocks, st_ino), and _fusemodule assumes that the return -value from the lstat() method is identical to Python's lstat(). This -limitation should be lifted, and some standard order chosen for these -three values. For now, though, default values are chosen and du returns a -number similar to the "real" one. - -The Python Global Interpreter Lock is not handled, so using -fuse.MULTITHREAD will not work. Modifying the PROLOGUE and EPILOGUE -functions may take care of this. For now, just run without -fuse.MULTITHREAD in flags. - -Author -====== - -I'm Jeff Epler <jepler@unpythonic.dhs.org>. I've been dabbling in -Python for nearly 7 years now, and interested (despite the lack of a -real practical use) in userspace filesystems ever since I couldn't get -userfs to compile way back in '93 or so. FUSE is cool, but i'm still -not sure what it's good for in practical terms. - -I don't know how high a level of interest I'll maintain in this project, -so if you want to do something with it feel free to do so. Like FUSE, -this software is distributed under the terms of the GNU General Public -License, Version 2. Future versions, if any, will be available at [3]. - - -[1] http://www.python.org -[2] http://sourceforge.net/projects/avf/ -[3] http://unpythonic.dhs.org/~jepler/fuse/ -#@-node:@file README -#@-leo |