Initial original import from: fuse-2.4.2-2.fc4
[captive.git] / src / client / gnomevfs / gnome-vfs-module.c
1 /* $Id$
2  * gnome-vfs init/shutdown implementation of interface to libcaptive
3  * Copyright (C) 2002-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 #include <captive/client.h>
28
29
30 /* filesystem-module-scope lock for _any_ libcaptive access */
31 G_LOCK_DEFINE(libcaptive);
32
33
34 static void vfs_module_shutdown_atexit(void);
35
36
37 /**
38  * vfs_module_init:
39  * @method_name: FIXME
40  * @args: FIXME
41  *
42  * FIXME
43  *
44  * Returns: FIXME
45  */
46 GnomeVFSMethod *vfs_module_init(const char *method_name,const char *args)
47 {
48 GnomeVFSMethod *captive_gnomevfs_method_ptr;
49
50         g_return_val_if_fail(method_name!=NULL,NULL);
51         g_return_val_if_fail(args!=NULL,NULL);  /* 'args' may be null if not supplied */
52
53         captive_standalone_init();
54
55         captive_gnomevfs_method_ptr=captive_gnomevfs_method_init(
56                         method_name,    /* method_name */
57                         args);  /* captive_args */
58
59         g_atexit(vfs_module_shutdown_atexit);
60
61         return captive_gnomevfs_method_ptr;
62 }
63
64
65 /**
66  * vfs_module_shutdown:
67  */
68 void vfs_module_shutdown(GnomeVFSMethod *method)
69 {
70         /* 'method' may be NULL iff we are called from vfs_module_shutdown_atexit() */
71
72         captive_gnomevfs_method_shutdown();
73 }
74
75
76 static void vfs_module_shutdown_atexit(void)
77 {
78         vfs_module_shutdown(NULL);
79 }