mc/vfs
2002-04-19 07:25:32 +00:00
..
extfs * extfs/trpm: update to work with rpm 4.x. 2002-04-12 16:27:59 +00:00
samba * samba/lib/debug.c: Remove syslog support. 2002-02-27 14:17:45 +00:00
.cvsignore
callback.h
ChangeLog * vfs.c (vfs_init) [!WITH_MCFS]: Don't register mcfs. 2002-04-19 07:25:32 +00:00
container.c
container.h
COPYING.LGPL
cpio.c * cpio.c (cpio_skip_padding): Handle old ASCII format. 2002-04-12 13:16:00 +00:00
direntry.c * direntry.c (vfs_s_resolve_symlink): Comment out buggy code. 2002-03-06 08:46:35 +00:00
extfs.c * extfs.c (extfs_open): Only create a new entry if it has not 2002-02-19 21:32:24 +00:00
extfs.h
fish.c * fish.c (file_store): Fix incorrect format string 2001-10-20 07:04:31 +00:00
fish.h
ftpfs.c * direntry.c (vfs_s_retrieve_file): Use off_t for total 2002-02-08 09:42:38 +00:00
ftpfs.h
local.c
local.h
Make-alone.am * Makefile.am: rename to ... 2001-12-31 06:48:47 +00:00
Makefile.am * Makefile.am: Don't compile mcserv if VFS is disabled. 2002-02-20 03:07:42 +00:00
mcfs.c
mcfs.h
mcserv.c
names.c
names.h
README
README.fish
sfs.c
smbfs.c * Makefile.am (AM_CFLAGS): Add -DCONFIGDIR=\""@configdir@"\" 2002-01-11 08:24:17 +00:00
smbfs.h * smbfs.h: Declare smbfs_set_debug. 2001-10-24 08:16:16 +00:00
tar.c * vfs.h: Remove all tricks with system headers, they all should 2002-01-21 21:26:49 +00:00
tar.h
tcputil.c * tcputil.c (rpc_get): Add missing va_end()s. Fix memory leaking. 2001-10-25 07:57:15 +00:00
tcputil.h
undelfs.c * undelfs.c: Use ext2_ino_t to avoid warnings with e2fsprogs 2001-11-14 17:57:06 +00:00
util-alone.c * vfs.h: Remove OS/2 specific code. 2002-01-17 07:32:32 +00:00
util-alone.h
utilvfs.c
utilvfs.h
vfs.c * vfs.c (vfs_init) [!WITH_MCFS]: Don't register mcfs. 2002-04-19 07:25:32 +00:00
vfs.h * direntry.c (vfs_s_retrieve_file): Use off_t for total 2002-02-08 09:42:38 +00:00
xdirentry.h

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.