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>
24 #include "glocalvfs.h"
25 #include "glocalfile.h"
26 #include <gio/gdummyfile.h>
27 #include <sys/types.h>
39 struct _GLocalVfsClass
41 GVfsClass parent_class;
45 #define g_local_vfs_get_type _g_local_vfs_get_type
46 G_DEFINE_TYPE (GLocalVfs, g_local_vfs, G_TYPE_VFS)
49 g_local_vfs_finalize (GObject *object)
52 G_OBJECT_CLASS (g_local_vfs_parent_class)->finalize (object);
56 g_local_vfs_init (GLocalVfs *vfs)
63 * Returns a new #GVfs handle for a local vfs.
65 * Returns: a new #GVfs handle.
68 _g_local_vfs_new (void)
70 return g_object_new (G_TYPE_LOCAL_VFS, NULL);
74 g_local_vfs_get_file_for_path (GVfs *vfs,
77 return _g_local_file_new (path);
81 g_local_vfs_get_file_for_uri (GVfs *vfs,
87 path = g_filename_from_uri (uri, NULL, NULL);
90 file = _g_local_file_new (path);
92 file = _g_dummy_file_new (uri);
99 static const gchar * const *
100 g_local_vfs_get_supported_uri_schemes (GVfs *vfs)
102 static const gchar * uri_schemes[] = { "file", NULL };
108 g_local_vfs_parse_name (GVfs *vfs,
109 const char *parse_name)
115 const char *user_start, *user_end;
117 struct passwd *passwd_file_entry;
119 g_return_val_if_fail (G_IS_VFS (vfs), NULL);
120 g_return_val_if_fail (parse_name != NULL, NULL);
122 if (g_ascii_strncasecmp ("file:", parse_name, 5) == 0)
123 filename = g_filename_from_uri (parse_name, NULL, NULL);
126 if (*parse_name == '~')
129 user_start = parse_name;
131 while (*parse_name != 0 && *parse_name != '/')
134 user_end = parse_name;
136 if (user_end == user_start)
137 user_prefix = g_strdup (g_get_home_dir());
141 user_name = g_strndup (user_start, user_end - user_start);
142 passwd_file_entry = getpwnam (user_name);
145 if (passwd_file_entry != NULL &&
146 passwd_file_entry->pw_dir != NULL)
147 user_prefix = g_strdup (passwd_file_entry->pw_dir);
150 user_prefix = g_strdup (g_get_home_dir ());
155 rest = g_filename_from_utf8 (user_end, -1, NULL, NULL, NULL);
157 filename = g_build_filename (user_prefix, rest, NULL);
159 g_free (user_prefix);
162 filename = g_filename_from_utf8 (parse_name, -1, NULL, NULL, NULL);
165 if (filename == NULL)
166 filename = g_strdup (parse_name);
168 file = _g_local_file_new (filename);
175 g_local_vfs_is_active (GVfs *vfs)
181 g_local_vfs_class_init (GLocalVfsClass *class)
183 GObjectClass *object_class;
184 GVfsClass *vfs_class;
186 object_class = (GObjectClass *) class;
188 object_class->finalize = g_local_vfs_finalize;
190 vfs_class = G_VFS_CLASS (class);
192 vfs_class->name = "local";
193 vfs_class->priority = 0;
195 vfs_class->is_active = g_local_vfs_is_active;
196 vfs_class->get_file_for_path = g_local_vfs_get_file_for_path;
197 vfs_class->get_file_for_uri = g_local_vfs_get_file_for_uri;
198 vfs_class->get_supported_uri_schemes = g_local_vfs_get_supported_uri_schemes;
199 vfs_class->parse_name = g_local_vfs_parse_name;