Rename: client/libcaptive-gnomevfs/ -> client/gnomevfs/
[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
28 /* filesystem-module-scope lock for _any_ libcaptive access */
29 G_LOCK_DEFINE(libcaptive);
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 *captive_gnomevfs_method_ptr;
47
48         g_return_val_if_fail(method_name!=NULL,NULL);
49         g_return_val_if_fail(args!=NULL,NULL);  /* 'args' may be null if not supplied */
50
51         captive_gnomevfs_method_ptr=captive_gnomevfs_method_init(
52                         method_name,    /* method_name */
53                         args);  /* captive_args */
54
55         g_atexit(vfs_module_shutdown_atexit);
56
57         return captive_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         captive_gnomevfs_method_shutdown();
69 }
70
71
72 static void vfs_module_shutdown_atexit(void)
73 {
74         vfs_module_shutdown(NULL);
75 }