[start of port to win32/msvc] HAVE_UNIST_H and _pipe() only include
[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 <gio/gdummyfile.h>
27 #include <sys/types.h>
28 #ifdef HAVE_PWD_H
29 #include <pwd.h>
30 #endif
31
32 #include "gioalias.h"
33
34 struct _GLocalVfs
35 {
36   GVfs parent;
37 };
38
39 struct _GLocalVfsClass
40 {
41   GVfsClass parent_class;
42   
43 };
44
45 #define g_local_vfs_get_type _g_local_vfs_get_type
46 G_DEFINE_TYPE (GLocalVfs, g_local_vfs, G_TYPE_VFS)
47  
48 static void
49 g_local_vfs_finalize (GObject *object)
50 {
51   /* must chain up */
52   G_OBJECT_CLASS (g_local_vfs_parent_class)->finalize (object);
53 }
54
55 static void
56 g_local_vfs_init (GLocalVfs *vfs)
57 {
58 }
59
60 /**
61  * g_local_vfs_new:
62  *
63  * Returns a new #GVfs handle for a local vfs.
64  *
65  * Returns: a new #GVfs handle.
66  **/
67 GVfs *
68 _g_local_vfs_new (void)
69 {
70   return g_object_new (G_TYPE_LOCAL_VFS, NULL);
71 }
72
73 static GFile *
74 g_local_vfs_get_file_for_path (GVfs       *vfs,
75                                const char *path)
76 {
77   return _g_local_file_new (path);
78 }
79
80 static GFile *
81 g_local_vfs_get_file_for_uri (GVfs       *vfs,
82                               const char *uri)
83 {
84   char *path;
85   GFile *file;
86
87   path = g_filename_from_uri (uri, NULL, NULL);
88
89   if (path != NULL)
90     file = _g_local_file_new (path);
91   else
92     file = _g_dummy_file_new (uri);
93
94   g_free (path);
95
96   return file;
97 }
98
99 static const gchar * const *
100 g_local_vfs_get_supported_uri_schemes (GVfs *vfs)
101 {
102   static const gchar * uri_schemes[] = { "file", NULL };
103
104   return uri_schemes;
105 }
106
107 static GFile *
108 g_local_vfs_parse_name (GVfs       *vfs,
109                         const char *parse_name)
110 {
111   GFile *file;
112   char *filename;
113   char *user_name;
114   char *user_prefix;
115   const char *user_start, *user_end;
116   char *rest;
117   struct passwd *passwd_file_entry;
118   
119   g_return_val_if_fail (G_IS_VFS (vfs), NULL);
120   g_return_val_if_fail (parse_name != NULL, NULL);
121
122   if (g_ascii_strncasecmp ("file:", parse_name, 5) == 0)
123     filename = g_filename_from_uri (parse_name, NULL, NULL);
124   else
125     {
126       if (*parse_name == '~')
127         {
128           parse_name ++;
129           user_start = parse_name;
130           
131           while (*parse_name != 0 && *parse_name != '/')
132             parse_name++;
133           
134           user_end = parse_name;
135
136           if (user_end == user_start)
137             user_prefix = g_strdup (g_get_home_dir());
138           else
139             {
140 #ifdef HAVE_PWD_H
141               user_name = g_strndup (user_start, user_end - user_start);
142               passwd_file_entry = getpwnam (user_name);
143               g_free (user_name);
144               
145               if (passwd_file_entry != NULL &&
146                   passwd_file_entry->pw_dir != NULL)
147                 user_prefix = g_strdup (passwd_file_entry->pw_dir);
148               else
149 #endif
150                 user_prefix = g_strdup (g_get_home_dir ());
151             }
152
153           rest = NULL;
154           if (*user_end != 0)
155             rest = g_filename_from_utf8 (user_end, -1, NULL, NULL, NULL);
156           
157           filename = g_build_filename (user_prefix, rest, NULL);
158           g_free (rest);
159           g_free (user_prefix);
160         }
161       else
162         filename = g_filename_from_utf8 (parse_name, -1, NULL, NULL, NULL);
163     }
164   
165   if (filename == NULL)
166     filename = g_strdup (parse_name);
167     
168   file = _g_local_file_new (filename);
169   g_free (filename);
170
171   return file;
172 }
173
174 static gboolean
175 g_local_vfs_is_active (GVfs *vfs)
176 {
177   return TRUE;
178 }
179
180 static void
181 g_local_vfs_class_init (GLocalVfsClass *class)
182 {
183   GObjectClass *object_class;
184   GVfsClass *vfs_class;
185   
186   object_class = (GObjectClass *) class;
187
188   object_class->finalize = g_local_vfs_finalize;
189
190   vfs_class = G_VFS_CLASS (class);
191
192   vfs_class->name = "local";
193   vfs_class->priority = 0;
194   
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;
200 }