GPL-2.0 requirement relaxed for GPL-2.0+ requirement.
[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; either version 2 of the License, or
8  * (at your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20
21 #include "config.h"
22
23 #include "gnome-vfs-method.h"
24 #include <libgnomevfs/gnome-vfs-module.h>
25 #include <glib/gmessages.h>
26 #include <glib/gutils.h>        /* for g_atexit() */
27
28
29 /* filesystem-module-scope lock for _any_ libntfs access */
30 G_LOCK_DEFINE(libntfs);
31
32
33 static void vfs_module_shutdown_atexit(void);
34
35
36 /**
37  * vfs_module_init:
38  * @method_name: FIXME
39  * @args: FIXME
40  *
41  * FIXME
42  *
43  * Returns: FIXME
44  */
45 GnomeVFSMethod *vfs_module_init(const char *method_name,const char *args)
46 {
47 GnomeVFSMethod *libntfs_gnomevfs_method_ptr;
48
49         g_return_val_if_fail(method_name!=NULL,NULL);
50         /* 'args' may be NULL if not supplied. */
51
52         libntfs_gnomevfs_method_ptr=libntfs_gnomevfs_method_init(
53                         method_name,    /* method_name */
54                         args);  /* args */
55
56         g_atexit(vfs_module_shutdown_atexit);
57
58         return libntfs_gnomevfs_method_ptr;
59 }
60
61
62 /**
63  * vfs_module_shutdown:
64  */
65 void vfs_module_shutdown(GnomeVFSMethod *method)
66 {
67         /* 'method' may be NULL iff we are called from vfs_module_shutdown_atexit() */
68
69         libntfs_gnomevfs_method_shutdown();
70 }
71
72
73 static void vfs_module_shutdown_atexit(void)
74 {
75         vfs_module_shutdown(NULL);
76 }