Split out the extension point registration code to its own function.
[platform/upstream/glib.git] / gio / glocalvfs.c
1 /* GIO - GLib Input, Output and Streaming Library
2  * 
3  * Copyright (C) 2006-2007 Red Hat, Inc.
4  *
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.
9  *
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.
14  *
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.
19  *
20  * Author: Alexander Larsson <alexl@redhat.com>
21  */
22
23 #include "config.h"
24 #include "glocalvfs.h"
25 #include "glocalfile.h"
26 #include "giomodule.h"
27 #include "giomodule-priv.h"
28 #include "gvfs.h"
29 #include <gio/gdummyfile.h>
30 #include <sys/types.h>
31 #ifdef HAVE_PWD_H
32 #include <pwd.h>
33 #endif
34
35 #include "gioalias.h"
36
37 struct _GLocalVfs
38 {
39   GVfs parent;
40 };
41
42 struct _GLocalVfsClass
43 {
44   GVfsClass parent_class;
45   
46 };
47
48 #define g_local_vfs_get_type _g_local_vfs_get_type
49 G_DEFINE_TYPE_WITH_CODE (GLocalVfs, g_local_vfs, G_TYPE_VFS,
50                          _g_io_modules_ensure_extension_points_registered ();
51                          g_io_extension_point_implement (G_VFS_EXTENSION_POINT_NAME,
52                                                          g_define_type_id,
53                                                          "local",
54                                                          0))
55 static void
56 g_local_vfs_finalize (GObject *object)
57 {
58   /* must chain up */
59   G_OBJECT_CLASS (g_local_vfs_parent_class)->finalize (object);
60 }
61
62 static void
63 g_local_vfs_init (GLocalVfs *vfs)
64 {
65 }
66
67 /**
68  * g_local_vfs_new:
69  *
70  * Returns a new #GVfs handle for a local vfs.
71  *
72  * Returns: a new #GVfs handle.
73  **/
74 GVfs *
75 _g_local_vfs_new (void)
76 {
77   return g_object_new (G_TYPE_LOCAL_VFS, NULL);
78 }
79
80 static GFile *
81 g_local_vfs_get_file_for_path (GVfs       *vfs,
82                                const char *path)
83 {
84   return _g_local_file_new (path);
85 }
86
87 static GFile *
88 g_local_vfs_get_file_for_uri (GVfs       *vfs,
89                               const char *uri)
90 {
91   char *path;
92   GFile *file;
93
94   path = g_filename_from_uri (uri, NULL, NULL);
95
96   if (path != NULL)
97     file = _g_local_file_new (path);
98   else
99     file = _g_dummy_file_new (uri);
100
101   g_free (path);
102
103   return file;
104 }
105
106 static const gchar * const *
107 g_local_vfs_get_supported_uri_schemes (GVfs *vfs)
108 {
109   static const gchar * uri_schemes[] = { "file", NULL };
110
111   return uri_schemes;
112 }
113
114 static GFile *
115 g_local_vfs_parse_name (GVfs       *vfs,
116                         const char *parse_name)
117 {
118   GFile *file;
119   char *filename;
120   char *user_prefix;
121   const char *user_start, *user_end;
122   char *rest;
123   
124   g_return_val_if_fail (G_IS_VFS (vfs), NULL);
125   g_return_val_if_fail (parse_name != NULL, NULL);
126
127   if (g_ascii_strncasecmp ("file:", parse_name, 5) == 0)
128     filename = g_filename_from_uri (parse_name, NULL, NULL);
129   else
130     {
131       if (*parse_name == '~')
132         {
133           parse_name ++;
134           user_start = parse_name;
135           
136           while (*parse_name != 0 && *parse_name != '/')
137             parse_name++;
138           
139           user_end = parse_name;
140
141           if (user_end == user_start)
142             user_prefix = g_strdup (g_get_home_dir ());
143           else
144             {
145 #ifdef HAVE_PWD_H
146               struct passwd *passwd_file_entry;
147               char *user_name;
148
149               user_name = g_strndup (user_start, user_end - user_start);
150               passwd_file_entry = getpwnam (user_name);
151               g_free (user_name);
152               
153               if (passwd_file_entry != NULL &&
154                   passwd_file_entry->pw_dir != NULL)
155                 user_prefix = g_strdup (passwd_file_entry->pw_dir);
156               else
157 #endif
158                 user_prefix = g_strdup (g_get_home_dir ());
159             }
160
161           rest = NULL;
162           if (*user_end != 0)
163             rest = g_filename_from_utf8 (user_end, -1, NULL, NULL, NULL);
164           
165           filename = g_build_filename (user_prefix, rest, NULL);
166           g_free (rest);
167           g_free (user_prefix);
168         }
169       else
170         filename = g_filename_from_utf8 (parse_name, -1, NULL, NULL, NULL);
171     }
172   
173   if (filename == NULL)
174     filename = g_strdup (parse_name);
175     
176   file = _g_local_file_new (filename);
177   g_free (filename);
178
179   return file;
180 }
181
182 static gboolean
183 g_local_vfs_is_active (GVfs *vfs)
184 {
185   return TRUE;
186 }
187
188 static void
189 g_local_vfs_class_init (GLocalVfsClass *class)
190 {
191   GObjectClass *object_class;
192   GVfsClass *vfs_class;
193   
194   object_class = (GObjectClass *) class;
195
196   object_class->finalize = g_local_vfs_finalize;
197
198   vfs_class = G_VFS_CLASS (class);
199
200   vfs_class->is_active = g_local_vfs_is_active;
201   vfs_class->get_file_for_path = g_local_vfs_get_file_for_path;
202   vfs_class->get_file_for_uri = g_local_vfs_get_file_for_uri;
203   vfs_class->get_supported_uri_schemes = g_local_vfs_get_supported_uri_schemes;
204   vfs_class->parse_name = g_local_vfs_parse_name;
205 }