mc/vfs
Roland Illig a0aef5042d * ext.c: Fixed FIXME by passing around a reference to a VFS. 2004-12-06 23:27:23 +00:00
..
extfs * extfs/patchfs.in: Allow extraction and deletion of patches 2004-11-16 23:00:40 +00:00
samba * samba/lib/util.c (tmpdir): Use MC_TMPDIR environment variable. 2004-08-20 21:05:02 +00:00
.cvsignore *.sor added. 2001-06-01 13:39:53 +00:00
COPYING.LGPL 1999-06-01 Robert Brady <rwb197@ecs.soton.ac.uk> 1999-06-22 19:56:36 +00:00
ChangeLog * ext.c: Fixed FIXME by passing around a reference to a VFS. 2004-12-06 23:27:23 +00:00
HACKING Initial version of technical documentation for VFS. 2003-10-30 05:52:35 +00:00
Makefile.am Added vfs-impl.h to the list of headers. 2004-08-17 00:48:28 +00:00
README * README: Add explanation for using GPL licensed code from 2004-10-23 12:32:21 +00:00
README.fish Typos. 2003-06-02 19:47:30 +00:00
cpio.c * cpio.c (cpio_create_entry): Added initial support for the Special 2004-11-03 20:32:35 +00:00
direntry.c * direntry.c (vfs_s_readlink): Correctly calculate link length. 2004-11-29 18:44:49 +00:00
extfs.c * ext.c: Fixed FIXME by passing around a reference to a VFS. 2004-12-06 23:27:23 +00:00
fish.c * fish.c(fish_file_store): Fix typo fix 2004-11-29 20:15:22 +00:00
ftpfs.c * ftpfs.c: Add fallback to type int if socklen_t is not provided. 2004-11-02 21:53:55 +00:00
ftpfs.h Moved the declaration of the init_*fs functions into specialized headers (*fs.h or vfs-impl.h). 2004-08-17 09:17:43 +00:00
gc.c Splittet the vfs.h header into a user's part (vfs.h) and an implementor's part (vfs-impl.h). 2004-08-16 23:18:42 +00:00
gc.h Splittet the vfs.h header into a user's part (vfs.h) and an implementor's part (vfs-impl.h). 2004-08-16 23:18:42 +00:00
local.c * direntry.c (vfs_s_free_entry): g_free handles NULL argument too, 2004-09-24 23:00:18 +00:00
local.h Moved the declaration of the init_*fs functions into specialized headers (*fs.h or vfs-impl.h). 2004-08-17 09:17:43 +00:00
mcfs.c * mcfs.c: Add INADDR_NONE definition for SunOS. 2004-10-21 23:07:54 +00:00
mcfs.h Moved the declaration of the init_*fs functions into specialized headers (*fs.h or vfs-impl.h). 2004-08-17 09:17:43 +00:00
mcfsutil.c * Code cleanup: Added const qualifier for variables and 2004-08-29 17:15:23 +00:00
mcfsutil.h * Code cleanup: Added const qualifier for variables and 2004-08-29 17:15:23 +00:00
mcserv.c * mcfs.c: Add INADDR_NONE definition for SunOS. 2004-10-21 23:07:54 +00:00
sfs.c * local.c (local_readlink): Make "size" size_t. 2004-09-02 14:12:21 +00:00
smbfs.c * smbfs.c (smbfs_open_readwrite): Comment out flags games, 2004-10-25 08:15:19 +00:00
smbfs.h Moved the declaration of the init_*fs functions into specialized headers (*fs.h or vfs-impl.h). 2004-08-17 09:17:43 +00:00
tar.c * tar.c (tar_read_header): Skip over records containing 2004-12-01 08:43:25 +00:00
tcputil.c * tcputil.c: Split mcfs-specific part to 2002-10-05 01:02:07 +00:00
tcputil.h * tcputil.c: Split mcfs-specific part to 2002-10-05 01:02:07 +00:00
undelfs.c * undelfs.c (undelfs_open): Use g_try_malloc() instead 2004-10-16 19:19:27 +00:00
utilvfs.c * cpio.c (cpio_create_entry): Added initial support for the Special 2004-11-03 20:38:56 +00:00
utilvfs.h Const-ified the vfs_find[ug]id functions. 2004-08-17 09:48:15 +00:00
vfs-impl.h * tar.c (tar_read_header): Fix missed *. 2004-09-02 13:57:59 +00:00
vfs.c * vfs.c: Changed types for mc_chmod, mc_chown, mc_mknod to mode_t, 2004-11-16 16:16:08 +00:00
vfs.h * vfs.c: Changed types for mc_chmod, mc_chown, mc_mknod to mode_t, 2004-11-16 16:16:08 +00:00
xdirentry.h * xdirentry.h (linear_start): Use off_t for offset. 2004-10-06 18:04:15 +00:00

README

NOTE: Although vfs has been meant to be implemented as a separate
entity redistributable under the LGPL in its current implementation it
uses GPLed code from src/. So there are two possibilities if you want
to use vfs:

1. Distribute your copy of vfs under the GPL. Then you can freely
include the GPLed functions from the rest of the mc source code.

2. Distribute your copy of vfs under the LGPL. Then you cannot include
the functions outside the vfs subdirectory. You must then either
rewrite them or work around them in other ways.

========================================================================

Hi!

I'm midnight commander's vfs layer. Before you start hacking me,
please read this file. I'm integral part of midnight commander, but I
try to go out and live my life myself as a shared library, too. That
means that I should try to use as little functions from midnight as
possible (so I'm tiny, nice and people like me), that I should not
pollute name space by unnecessary symbols (so I do not crash fellow
programs) and that I should have a clean interface between myself and
midnight.

Because I'm rather close to midnight, try to:

* Keep updating ChangeLog file.

* Keep the indentation as the rest of the code. Following could help
you with your friend emacs:

(defun mc-c-mode ()
	"C mode with adjusted defaults for use with the Midnight commander."
	(interactive)
	(c-mode)
	(c-set-style "K&R")
	(setq	c-indent-level 4
		c-continued-statement-offset 4
		c-brace-offset 0
		c-argdecl-indent 4
		c-label-offset -4
		c-brace-imaginary-offset 0
		c-continued-brace-offset 0
		c-tab-always-indent nil
		c-basic-offset 4
		tab-width 8
		comment-column 60))

(setq auto-mode-alist (cons '(".*/mc/.*\\.[ch]$" . mc-c-mode)
                       auto-mode-alist))

And because I'm trying to live life on my own as libvfs.so, try to:

* Make sure all exported symbols are defined in vfs.h and begin with
'vfs_'.

* Do not make any references from midnight into modules like tar. It
would probably pollute name space and midnight would depend on concrete
configuration of libvfs. mc_setctl() and mc_ctl() are your
friends. (And mine too :-).

							 Pavel Machek
							 pavel@ucw.cz

PS: If you'd like to use my features in whole operating system, you
might want to link me to rpc.nfsd. On
http://atrey.karlin.mff.cuni.cz/~pavel/podfuk/podfuk.html you'll find
how to do it.

PPS: I have a friend, shared library called avfs, which is LD_PRELOAD
capable. You can reach her at http://www.inf.bme.hu/~mszeredi/avfs.