Fixed read_directory(): Leave us stuck at EOF - GnomeVFS behaves that way.
[ntfsprogs-gnomevfs.git] / src / gnome-vfs-module.c
1 /* $Id$
2  * gnome-vfs init/shutdown implementation of interface to libntfs
3  * Copyright (C) 2003 Jan Kratochvil <project-captive@jankratochvil.net>
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; exactly version 2 of June 1991 is required
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19
20 #include "config.h"
21
22 #include "gnome-vfs-method.h"
23 #include <libgnomevfs/gnome-vfs-module.h>
24 #include <glib/gmessages.h>
25 #include <glib/gutils.h>        /* for g_atexit() */
26
27
28 /* filesystem-module-scope lock for _any_ libntfs access */
29 G_LOCK_DEFINE(libntfs);
30
31
32 static void vfs_module_shutdown_atexit(void);
33
34
35 /**
36  * vfs_module_init:
37  * @method_name: FIXME
38  * @args: FIXME
39  *
40  * FIXME
41  *
42  * Returns: FIXME
43  */
44 GnomeVFSMethod *vfs_module_init(const char *method_name,const char *args)
45 {
46 GnomeVFSMethod *libntfs_gnomevfs_method_ptr;
47
48         g_return_val_if_fail(method_name!=NULL,NULL);
49         /* 'args' may be NULL if not supplied. */
50
51         libntfs_gnomevfs_method_ptr=libntfs_gnomevfs_method_init(
52                         method_name,    /* method_name */
53                         args);  /* args */
54
55         g_atexit(vfs_module_shutdown_atexit);
56
57         return libntfs_gnomevfs_method_ptr;
58 }
59
60
61 /**
62  * vfs_module_shutdown:
63  */
64 void vfs_module_shutdown(GnomeVFSMethod *method)
65 {
66         /* 'method' may be NULL iff we are called from vfs_module_shutdown_atexit() */
67
68         libntfs_gnomevfs_method_shutdown();
69 }
70
71
72 static void vfs_module_shutdown_atexit(void)
73 {
74         vfs_module_shutdown(NULL);
75 }