menu threaded test: run the mainloop after export
[glib.git] / gio / gvfs.c
blobcbe7f2f33cfbb2948190d476c2969a8759d20752
1 /* GIO - GLib Input, Output and Streaming Library
2 *
3 * Copyright (C) 2006-2007 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library 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 GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * Author: Alexander Larsson <alexl@redhat.com>
23 #include "config.h"
24 #include <string.h>
25 #include "gvfs.h"
26 #include "glocalvfs.h"
27 #include "giomodule-priv.h"
28 #include "glibintl.h"
31 /**
32 * SECTION:gvfs
33 * @short_description: Virtual File System
34 * @include: gio/gio.h
36 * Entry point for using GIO functionality.
38 **/
40 G_DEFINE_TYPE (GVfs, g_vfs, G_TYPE_OBJECT);
42 static void
43 g_vfs_class_init (GVfsClass *klass)
47 static void
48 g_vfs_init (GVfs *vfs)
52 /**
53 * g_vfs_is_active:
54 * @vfs: a #GVfs.
56 * Checks if the VFS is active.
58 * Returns: %TRUE if construction of the @vfs was successful and it is now active.
59 **/
60 gboolean
61 g_vfs_is_active (GVfs *vfs)
63 GVfsClass *class;
65 g_return_val_if_fail (G_IS_VFS (vfs), FALSE);
67 class = G_VFS_GET_CLASS (vfs);
69 return (* class->is_active) (vfs);
73 /**
74 * g_vfs_get_file_for_path:
75 * @vfs: a #GVfs.
76 * @path: a string containing a VFS path.
78 * Gets a #GFile for @path.
80 * Returns: (transfer full): a #GFile.
81 * Free the returned object with g_object_unref().
82 **/
83 GFile *
84 g_vfs_get_file_for_path (GVfs *vfs,
85 const char *path)
87 GVfsClass *class;
89 g_return_val_if_fail (G_IS_VFS (vfs), NULL);
90 g_return_val_if_fail (path != NULL, NULL);
92 class = G_VFS_GET_CLASS (vfs);
94 return (* class->get_file_for_path) (vfs, path);
97 /**
98 * g_vfs_get_file_for_uri:
99 * @vfs: a#GVfs.
100 * @uri: a string containing a URI
102 * Gets a #GFile for @uri.
104 * This operation never fails, but the returned object
105 * might not support any I/O operation if the URI
106 * is malformed or if the URI scheme is not supported.
108 * Returns: (transfer full): a #GFile.
109 * Free the returned object with g_object_unref().
111 GFile *
112 g_vfs_get_file_for_uri (GVfs *vfs,
113 const char *uri)
115 GVfsClass *class;
117 g_return_val_if_fail (G_IS_VFS (vfs), NULL);
118 g_return_val_if_fail (uri != NULL, NULL);
120 class = G_VFS_GET_CLASS (vfs);
122 return (* class->get_file_for_uri) (vfs, uri);
126 * g_vfs_get_supported_uri_schemes:
127 * @vfs: a #GVfs.
129 * Gets a list of URI schemes supported by @vfs.
131 * Returns: (transfer none): a %NULL-terminated array of strings.
132 * The returned array belongs to GIO and must
133 * not be freed or modified.
135 const gchar * const *
136 g_vfs_get_supported_uri_schemes (GVfs *vfs)
138 GVfsClass *class;
140 g_return_val_if_fail (G_IS_VFS (vfs), NULL);
142 class = G_VFS_GET_CLASS (vfs);
144 return (* class->get_supported_uri_schemes) (vfs);
148 * g_vfs_parse_name:
149 * @vfs: a #GVfs.
150 * @parse_name: a string to be parsed by the VFS module.
152 * This operation never fails, but the returned object might
153 * not support any I/O operations if the @parse_name cannot
154 * be parsed by the #GVfs module.
156 * Returns: (transfer full): a #GFile for the given @parse_name.
157 * Free the returned object with g_object_unref().
159 GFile *
160 g_vfs_parse_name (GVfs *vfs,
161 const char *parse_name)
163 GVfsClass *class;
165 g_return_val_if_fail (G_IS_VFS (vfs), NULL);
166 g_return_val_if_fail (parse_name != NULL, NULL);
168 class = G_VFS_GET_CLASS (vfs);
170 return (* class->parse_name) (vfs, parse_name);
174 * g_vfs_get_default:
176 * Gets the default #GVfs for the system.
178 * Returns: (transfer none): a #GVfs.
180 GVfs *
181 g_vfs_get_default (void)
183 return _g_io_module_get_default (G_VFS_EXTENSION_POINT_NAME,
184 "GIO_USE_VFS",
185 (GIOModuleVerifyFunc)g_vfs_is_active);
189 * g_vfs_get_local:
191 * Gets the local #GVfs for the system.
193 * Returns: (transfer none): a #GVfs.
195 GVfs *
196 g_vfs_get_local (void)
198 static gsize vfs = 0;
200 if (g_once_init_enter (&vfs))
201 g_once_init_leave (&vfs, (gsize)_g_local_vfs_new ());
203 return G_VFS (vfs);