1 /* GIO - GLib Input, Output and Streaming Library
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>
26 #include "glocalvfs.h"
27 #include "gresourcefile.h"
28 #include "giomodule-priv.h"
34 * @short_description: Virtual File System
37 * Entry point for using GIO functionality.
41 G_DEFINE_TYPE (GVfs, g_vfs, G_TYPE_OBJECT);
44 g_vfs_class_init (GVfsClass *klass)
49 g_vfs_init (GVfs *vfs)
57 * Checks if the VFS is active.
59 * Returns: %TRUE if construction of the @vfs was successful
60 * and it is now active.
63 g_vfs_is_active (GVfs *vfs)
67 g_return_val_if_fail (G_IS_VFS (vfs), FALSE);
69 class = G_VFS_GET_CLASS (vfs);
71 return (* class->is_active) (vfs);
76 * g_vfs_get_file_for_path:
78 * @path: a string containing a VFS path.
80 * Gets a #GFile for @path.
82 * Returns: (transfer full): a #GFile.
83 * Free the returned object with g_object_unref().
86 g_vfs_get_file_for_path (GVfs *vfs,
91 g_return_val_if_fail (G_IS_VFS (vfs), NULL);
92 g_return_val_if_fail (path != NULL, NULL);
94 class = G_VFS_GET_CLASS (vfs);
96 return (* class->get_file_for_path) (vfs, path);
100 * g_vfs_get_file_for_uri:
102 * @uri: a string containing a URI
104 * Gets a #GFile for @uri.
106 * This operation never fails, but the returned object
107 * might not support any I/O operation if the URI
108 * is malformed or if the URI scheme is not supported.
110 * Returns: (transfer full): a #GFile.
111 * Free the returned object with g_object_unref().
114 g_vfs_get_file_for_uri (GVfs *vfs,
119 g_return_val_if_fail (G_IS_VFS (vfs), NULL);
120 g_return_val_if_fail (uri != NULL, NULL);
122 class = G_VFS_GET_CLASS (vfs);
124 /* This is an unfortunate placement, but we really
125 * need to check this before chaining to the vfs,
126 * because we want to support resource uris for
127 * all vfs:es, even those that predate resources.
129 if (g_str_has_prefix (uri, "resource:"))
130 return _g_resource_file_new (uri);
132 return (* class->get_file_for_uri) (vfs, uri);
136 * g_vfs_get_supported_uri_schemes:
139 * Gets a list of URI schemes supported by @vfs.
141 * Returns: (transfer none): a %NULL-terminated array of strings.
142 * The returned array belongs to GIO and must
143 * not be freed or modified.
145 const gchar * const *
146 g_vfs_get_supported_uri_schemes (GVfs *vfs)
150 g_return_val_if_fail (G_IS_VFS (vfs), NULL);
152 class = G_VFS_GET_CLASS (vfs);
154 return (* class->get_supported_uri_schemes) (vfs);
160 * @parse_name: a string to be parsed by the VFS module.
162 * This operation never fails, but the returned object might
163 * not support any I/O operations if the @parse_name cannot
164 * be parsed by the #GVfs module.
166 * Returns: (transfer full): a #GFile for the given @parse_name.
167 * Free the returned object with g_object_unref().
170 g_vfs_parse_name (GVfs *vfs,
171 const char *parse_name)
175 g_return_val_if_fail (G_IS_VFS (vfs), NULL);
176 g_return_val_if_fail (parse_name != NULL, NULL);
178 class = G_VFS_GET_CLASS (vfs);
180 if (g_str_has_prefix (parse_name, "resource:"))
181 return _g_resource_file_new (parse_name);
183 return (* class->parse_name) (vfs, parse_name);
189 * Gets the default #GVfs for the system.
191 * Returns: (transfer none): a #GVfs.
194 g_vfs_get_default (void)
196 return _g_io_module_get_default (G_VFS_EXTENSION_POINT_NAME,
198 (GIOModuleVerifyFunc)g_vfs_is_active);
204 * Gets the local #GVfs for the system.
206 * Returns: (transfer none): a #GVfs.
209 g_vfs_get_local (void)
211 static gsize vfs = 0;
213 if (g_once_init_enter (&vfs))
214 g_once_init_leave (&vfs, (gsize)_g_local_vfs_new ());