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>
25 #include <sys/types.h>
35 #include <sys/statfs.h>
37 #if HAVE_SYS_STATVFS_H
38 #include <sys/statvfs.h>
42 #elif HAVE_SYS_MOUNT_H
44 #include <sys/param.h>
46 #include <sys/mount.h>
49 #if defined(HAVE_STATFS) && defined(HAVE_STATVFS)
50 /* Some systems have both statfs and statvfs, pick the
51 most "native" for these */
52 # if defined(sun) && defined(__SVR4)
53 /* on solaris, statfs doesn't even have the
57 /* at least on linux, statfs is the actual syscall */
61 #elif defined(HAVE_STATFS)
65 #elif defined(HAVE_STATVFS)
71 #include "glocalfile.h"
72 #include "glocalfileinfo.h"
73 #include "glocalfileenumerator.h"
74 #include "glocalfileinputstream.h"
75 #include "glocalfileoutputstream.h"
76 #include "glocaldirectorymonitor.h"
77 #include "glocalfilemonitor.h"
78 #include "gmountprivate.h"
79 #include <glib/gstdio.h>
88 #define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
91 #define S_ISLNK(m) (0)
97 static void g_local_file_file_iface_init (GFileIface *iface);
99 static GFileAttributeInfoList *local_writable_attributes = NULL;
100 static GFileAttributeInfoList *local_writable_namespaces = NULL;
104 GObject parent_instance;
109 #define g_local_file_get_type _g_local_file_get_type
110 G_DEFINE_TYPE_WITH_CODE (GLocalFile, g_local_file, G_TYPE_OBJECT,
111 G_IMPLEMENT_INTERFACE (G_TYPE_FILE,
112 g_local_file_file_iface_init))
114 static char * find_mountpoint_for (const char *file, dev_t dev);
117 g_local_file_finalize (GObject *object)
121 local = G_LOCAL_FILE (object);
123 g_free (local->filename);
125 if (G_OBJECT_CLASS (g_local_file_parent_class)->finalize)
126 (*G_OBJECT_CLASS (g_local_file_parent_class)->finalize) (object);
130 g_local_file_class_init (GLocalFileClass *klass)
132 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
133 GFileAttributeInfoList *list;
135 gobject_class->finalize = g_local_file_finalize;
137 /* Set up attribute lists */
139 /* Writable attributes: */
141 list = g_file_attribute_info_list_new ();
143 g_file_attribute_info_list_add (list,
144 G_FILE_ATTRIBUTE_UNIX_MODE,
145 G_FILE_ATTRIBUTE_TYPE_UINT32,
146 G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
149 g_file_attribute_info_list_add (list,
150 G_FILE_ATTRIBUTE_UNIX_UID,
151 G_FILE_ATTRIBUTE_TYPE_UINT32,
152 G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
153 g_file_attribute_info_list_add (list,
154 G_FILE_ATTRIBUTE_UNIX_GID,
155 G_FILE_ATTRIBUTE_TYPE_UINT32,
156 G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
160 g_file_attribute_info_list_add (list,
161 G_FILE_ATTRIBUTE_STD_SYMLINK_TARGET,
162 G_FILE_ATTRIBUTE_TYPE_BYTE_STRING,
167 g_file_attribute_info_list_add (list,
168 G_FILE_ATTRIBUTE_TIME_MODIFIED,
169 G_FILE_ATTRIBUTE_TYPE_UINT64,
170 G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
171 g_file_attribute_info_list_add (list,
172 G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC,
173 G_FILE_ATTRIBUTE_TYPE_UINT32,
174 G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
175 g_file_attribute_info_list_add (list,
176 G_FILE_ATTRIBUTE_TIME_ACCESS,
177 G_FILE_ATTRIBUTE_TYPE_UINT64,
178 G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
179 g_file_attribute_info_list_add (list,
180 G_FILE_ATTRIBUTE_TIME_ACCESS_USEC,
181 G_FILE_ATTRIBUTE_TYPE_UINT32,
182 G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
185 local_writable_attributes = list;
187 /* Writable namespaces: */
189 list = g_file_attribute_info_list_new ();
192 g_file_attribute_info_list_add (list,
194 G_FILE_ATTRIBUTE_TYPE_STRING,
195 G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE |
196 G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
197 g_file_attribute_info_list_add (list,
199 G_FILE_ATTRIBUTE_TYPE_STRING,
200 G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
203 local_writable_namespaces = list;
207 g_local_file_init (GLocalFile *local)
213 canonicalize_filename (const char *filename)
215 char *canon, *start, *p, *q;
218 if (!g_path_is_absolute (filename))
220 cwd = g_get_current_dir ();
221 canon = g_build_filename (cwd, filename, NULL);
225 canon = g_strdup (filename);
227 start = (char *)g_path_skip_root (canon);
232 if (p[0] == '.' && (p[1] == 0 || G_IS_DIR_SEPARATOR (p[1])))
234 memmove (p, p+1, strlen (p+1)+1);
236 else if (p[0] == '.' && p[1] == '.' && (p[2] == 0 || G_IS_DIR_SEPARATOR (p[2])))
239 /* Skip previous separator */
243 while (p > start && !G_IS_DIR_SEPARATOR (*p))
245 if (G_IS_DIR_SEPARATOR (*p))
246 *p++ = G_DIR_SEPARATOR;
247 memmove (p, q, strlen (q)+1);
251 /* Skip until next separator */
252 while (*p != 0 && !G_IS_DIR_SEPARATOR (*p))
257 /* Canonicalize one separator */
258 *p++ = G_DIR_SEPARATOR;
262 /* Remove additional separators */
264 while (*q && G_IS_DIR_SEPARATOR (*q))
268 memmove (p, q, strlen (q)+1);
271 /* Remove trailing slashes */
272 if (p > start && G_IS_DIR_SEPARATOR (*(p-1)))
280 * @filename: filename of the file to create.
282 * Returns: new local #GFile.
285 _g_local_file_new (const char *filename)
289 local = g_object_new (G_TYPE_LOCAL_FILE, NULL);
290 local->filename = canonicalize_filename (filename);
292 return G_FILE (local);
296 g_local_file_is_native (GFile *file)
302 g_local_file_has_uri_scheme (GFile *file,
303 const char *uri_scheme)
305 return g_ascii_strcasecmp (uri_scheme, "file") == 0;
309 g_local_file_get_uri_scheme (GFile *file)
311 return g_strdup ("file");
315 g_local_file_get_basename (GFile *file)
317 return g_path_get_basename (G_LOCAL_FILE (file)->filename);
321 g_local_file_get_path (GFile *file)
323 return g_strdup (G_LOCAL_FILE (file)->filename);
327 g_local_file_get_uri (GFile *file)
329 return g_filename_to_uri (G_LOCAL_FILE (file)->filename, NULL, NULL);
333 get_filename_charset (const gchar **filename_charset)
335 const gchar **charsets;
338 is_utf8 = g_get_filename_charsets (&charsets);
340 if (filename_charset)
341 *filename_charset = charsets[0];
347 name_is_valid_for_display (const char *string,
348 gboolean is_valid_utf8)
352 if (!is_valid_utf8 &&
353 !g_utf8_validate (string, -1, NULL))
356 while ((c = *string++) != 0)
358 if (g_ascii_iscntrl(c))
366 g_local_file_get_parse_name (GFile *file)
368 const char *filename;
370 const gchar *charset;
372 char *roundtripped_filename;
373 gboolean free_utf8_filename;
374 gboolean is_valid_utf8;
376 filename = G_LOCAL_FILE (file)->filename;
377 if (get_filename_charset (&charset))
379 utf8_filename = (char *)filename;
380 free_utf8_filename = FALSE;
381 is_valid_utf8 = FALSE; /* Can't guarantee this */
385 utf8_filename = g_convert (filename, -1,
386 "UTF-8", charset, NULL, NULL, NULL);
387 free_utf8_filename = TRUE;
388 is_valid_utf8 = TRUE;
390 if (utf8_filename != NULL)
392 /* Make sure we can roundtrip: */
393 roundtripped_filename = g_convert (utf8_filename, -1,
394 charset, "UTF-8", NULL, NULL, NULL);
396 if (roundtripped_filename == NULL ||
397 strcmp (utf8_filename, roundtripped_filename) != 0)
399 g_free (utf8_filename);
400 utf8_filename = NULL;
406 if (utf8_filename != NULL &&
407 name_is_valid_for_display (utf8_filename, is_valid_utf8))
409 if (free_utf8_filename)
410 parse_name = utf8_filename;
412 parse_name = g_strdup (utf8_filename);
416 parse_name = g_filename_to_uri (filename, NULL, NULL);
417 if (free_utf8_filename)
418 g_free (utf8_filename);
425 g_local_file_get_parent (GFile *file)
427 GLocalFile *local = G_LOCAL_FILE (file);
428 const char *non_root;
433 non_root = g_path_skip_root (local->filename);
437 dirname = g_path_get_dirname (local->filename);
438 parent = _g_local_file_new (dirname);
444 g_local_file_dup (GFile *file)
446 GLocalFile *local = G_LOCAL_FILE (file);
448 return _g_local_file_new (local->filename);
452 g_local_file_hash (GFile *file)
454 GLocalFile *local = G_LOCAL_FILE (file);
456 return g_str_hash (local->filename);
460 g_local_file_equal (GFile *file1,
463 GLocalFile *local1 = G_LOCAL_FILE (file1);
464 GLocalFile *local2 = G_LOCAL_FILE (file2);
466 return g_str_equal (local1->filename, local2->filename);
470 match_prefix (const char *path,
475 prefix_len = strlen (prefix);
476 if (strncmp (path, prefix, prefix_len) != 0)
478 return path + prefix_len;
482 g_local_file_contains_file (GFile *parent,
485 GLocalFile *parent_local = G_LOCAL_FILE (parent);
486 GLocalFile *descendant_local = G_LOCAL_FILE (descendant);
487 const char *remainder;
489 remainder = match_prefix (descendant_local->filename, parent_local->filename);
490 if (remainder != NULL && G_IS_DIR_SEPARATOR (*remainder))
496 g_local_file_get_relative_path (GFile *parent,
499 GLocalFile *parent_local = G_LOCAL_FILE (parent);
500 GLocalFile *descendant_local = G_LOCAL_FILE (descendant);
501 const char *remainder;
503 remainder = match_prefix (descendant_local->filename, parent_local->filename);
505 if (remainder != NULL && G_IS_DIR_SEPARATOR (*remainder))
506 return g_strdup (remainder + 1);
511 g_local_file_resolve_relative_path (GFile *file,
512 const char *relative_path)
514 GLocalFile *local = G_LOCAL_FILE (file);
518 if (g_path_is_absolute (relative_path))
519 return _g_local_file_new (relative_path);
521 filename = g_build_filename (local->filename, relative_path, NULL);
522 child = _g_local_file_new (filename);
528 static GFileEnumerator *
529 g_local_file_enumerate_children (GFile *file,
530 const char *attributes,
531 GFileQueryInfoFlags flags,
532 GCancellable *cancellable,
535 GLocalFile *local = G_LOCAL_FILE (file);
536 return _g_local_file_enumerator_new (local->filename,
542 g_local_file_get_child_for_display_name (GFile *file,
543 const char *display_name,
546 GFile *parent, *new_file;
549 basename = g_filename_from_utf8 (display_name, -1, NULL, NULL, NULL);
550 if (basename == NULL)
552 g_set_error (error, G_IO_ERROR,
553 G_IO_ERROR_INVALID_FILENAME,
554 _("Invalid filename %s"), display_name);
558 parent = g_file_get_parent (file);
559 new_file = g_file_get_child (file, basename);
560 g_object_unref (parent);
568 get_fs_type (long f_type)
571 /* filesystem ids taken from linux manpage */
668 G_LOCK_DEFINE_STATIC(mount_info_hash);
669 static GHashTable *mount_info_hash = NULL;
670 static guint64 mount_info_hash_cache_time = 0;
673 MOUNT_INFO_READONLY = 1<<0
677 device_equal (gconstpointer v1,
680 return *(dev_t *)v1 == * (dev_t *)v2;
684 device_hash (gconstpointer v)
686 return (guint) *(dev_t *)v;
690 get_mount_info (GFileInfo *fs_info,
692 GFileAttributeMatcher *matcher)
696 gpointer info_as_ptr;
700 GUnixMountEntry *mount;
703 if (g_lstat (path, &buf) != 0)
706 G_LOCK (mount_info_hash);
708 if (mount_info_hash == NULL)
709 mount_info_hash = g_hash_table_new_full (device_hash, device_equal,
713 if (g_unix_mounts_changed_since (mount_info_hash_cache_time))
714 g_hash_table_remove_all (mount_info_hash);
716 got_info = g_hash_table_lookup_extended (mount_info_hash,
721 G_UNLOCK (mount_info_hash);
723 mount_info = GPOINTER_TO_UINT (info_as_ptr);
729 mountpoint = find_mountpoint_for (path, buf.st_dev);
730 if (mountpoint == NULL)
733 mount = g_get_unix_mount_at (mountpoint, &cache_time);
736 if (g_unix_mount_is_readonly (mount))
737 mount_info |= MOUNT_INFO_READONLY;
739 g_unix_mount_free (mount);
742 dev = g_new0 (dev_t, 1);
745 G_LOCK (mount_info_hash);
746 mount_info_hash_cache_time = cache_time;
747 g_hash_table_insert (mount_info_hash, dev, GUINT_TO_POINTER (mount_info));
748 G_UNLOCK (mount_info_hash);
751 if (mount_info & MOUNT_INFO_READONLY)
752 g_file_info_set_attribute_boolean (fs_info, G_FILE_ATTRIBUTE_FS_READONLY, TRUE);
758 g_local_file_query_filesystem_info (GFile *file,
759 const char *attributes,
760 GCancellable *cancellable,
763 GLocalFile *local = G_LOCAL_FILE (file);
770 struct statfs statfs_buffer;
772 #elif defined(USE_STATVFS)
773 struct statvfs statfs_buffer;
776 GFileAttributeMatcher *attribute_matcher;
783 statfs_result = statfs (local->filename, &statfs_buffer);
784 #elif STATFS_ARGS == 4
785 statfs_result = statfs (local->filename, &statfs_buffer,
786 sizeof (statfs_buffer), 0);
788 block_size = statfs_buffer.f_bsize;
790 #if defined(__linux__)
791 /* ncpfs does not know the amount of available and free space *
792 * assuming ncpfs is linux specific, if you are on a non-linux platform
793 * where ncpfs is available, please file a bug about it on bugzilla.gnome.org
795 if (statfs_buffer.f_bavail == 0 && statfs_buffer.f_bfree == 0 &&
796 /* linux/ncp_fs.h: NCP_SUPER_MAGIC == 0x564c */
797 statfs_buffer.f_type == 0x564c)
801 #elif defined(USE_STATVFS)
802 statfs_result = statvfs (local->filename, &statfs_buffer);
803 block_size = statfs_buffer.f_frsize;
806 if (statfs_result == -1)
808 g_set_error (error, G_IO_ERROR,
809 g_io_error_from_errno (errno),
810 _("Error getting filesystem info: %s"),
815 info = g_file_info_new ();
817 attribute_matcher = g_file_attribute_matcher_new (attributes);
819 if (g_file_attribute_matcher_matches (attribute_matcher,
820 G_FILE_ATTRIBUTE_FS_FREE))
823 gchar *localdir = g_path_get_dirname (local->filename);
824 wchar_t *wdirname = g_utf8_to_utf16 (localdir, -1, NULL, NULL, NULL);
828 if (GetDiskFreeSpaceExW (wdirname, &li, NULL, NULL))
829 g_file_info_set_attribute_uint64 (info, G_FILE_ATTRIBUTE_FS_FREE, (guint64)li.QuadPart);
832 g_file_info_set_attribute_uint64 (info, G_FILE_ATTRIBUTE_FS_FREE, block_size * statfs_buffer.f_bavail);
835 if (g_file_attribute_matcher_matches (attribute_matcher,
836 G_FILE_ATTRIBUTE_FS_SIZE))
839 gchar *localdir = g_path_get_dirname (local->filename);
840 wchar_t *wdirname = g_utf8_to_utf16 (localdir, -1, NULL, NULL, NULL);
844 if (GetDiskFreeSpaceExW (wdirname, NULL, &li, NULL))
845 g_file_info_set_attribute_uint64 (info, G_FILE_ATTRIBUTE_FS_SIZE, (guint64)li.QuadPart);
848 g_file_info_set_attribute_uint64 (info, G_FILE_ATTRIBUTE_FS_SIZE, block_size * statfs_buffer.f_blocks);
852 fstype = get_fs_type (statfs_buffer.f_type);
854 g_file_attribute_matcher_matches (attribute_matcher,
855 G_FILE_ATTRIBUTE_FS_TYPE))
856 g_file_info_set_attribute_string (info, G_FILE_ATTRIBUTE_FS_TYPE, fstype);
859 if (g_file_attribute_matcher_matches (attribute_matcher,
860 G_FILE_ATTRIBUTE_FS_READONLY))
863 /* need to implement with *unix_mount* */
865 get_mount_info (info, local->filename, attribute_matcher);
869 g_file_attribute_matcher_unref (attribute_matcher);
875 g_local_file_find_enclosing_mount (GFile *file,
876 GCancellable *cancellable,
879 GLocalFile *local = G_LOCAL_FILE (file);
884 if (g_lstat (local->filename, &buf) != 0)
886 g_set_error (error, G_IO_ERROR,
887 G_IO_ERROR_NOT_FOUND,
888 _("Containing mount does not exist"));
892 mountpoint = find_mountpoint_for (local->filename, buf.st_dev);
893 if (mountpoint == NULL)
895 g_set_error (error, G_IO_ERROR,
896 G_IO_ERROR_NOT_FOUND,
897 _("Containing mount does not exist"));
901 mount = _g_mount_get_for_mount_path (mountpoint);
906 g_set_error (error, G_IO_ERROR,
907 G_IO_ERROR_NOT_FOUND,
908 _("Containing mount does not exist"));
913 g_local_file_set_display_name (GFile *file,
914 const char *display_name,
915 GCancellable *cancellable,
918 GLocalFile *local, *new_local;
919 GFile *new_file, *parent;
923 parent = g_file_get_parent (file);
926 g_set_error (error, G_IO_ERROR,
928 _("Can't rename root directory"));
932 new_file = g_file_get_child_for_display_name (parent, display_name, error);
933 g_object_unref (parent);
935 if (new_file == NULL)
938 local = G_LOCAL_FILE (file);
939 new_local = G_LOCAL_FILE (new_file);
941 if (!(g_lstat (new_local->filename, &statbuf) == -1 &&
944 g_set_error (error, G_IO_ERROR,
946 _("Can't rename file, filename already exist"));
950 if (rename (local->filename, new_local->filename) == -1)
955 /* We can't get a rename file into itself error herer,
956 so this must be an invalid filename, on e.g. FAT */
957 g_set_error (error, G_IO_ERROR,
958 G_IO_ERROR_INVALID_FILENAME,
959 _("Invalid filename"));
961 g_set_error (error, G_IO_ERROR,
962 g_io_error_from_errno (errsv),
963 _("Error renaming file: %s"),
965 g_object_unref (new_file);
973 g_local_file_query_info (GFile *file,
974 const char *attributes,
975 GFileQueryInfoFlags flags,
976 GCancellable *cancellable,
979 GLocalFile *local = G_LOCAL_FILE (file);
981 GFileAttributeMatcher *matcher;
982 char *basename, *dirname;
983 GLocalParentFileInfo parent_info;
985 matcher = g_file_attribute_matcher_new (attributes);
987 basename = g_path_get_basename (local->filename);
989 dirname = g_path_get_dirname (local->filename);
990 _g_local_file_info_get_parent_info (dirname, matcher, &parent_info);
993 info = _g_local_file_info_get (basename, local->filename,
994 matcher, flags, &parent_info,
999 g_file_attribute_matcher_unref (matcher);
1004 static GFileAttributeInfoList *
1005 g_local_file_query_settable_attributes (GFile *file,
1006 GCancellable *cancellable,
1009 return g_file_attribute_info_list_ref (local_writable_attributes);
1012 static GFileAttributeInfoList *
1013 g_local_file_query_writable_namespaces (GFile *file,
1014 GCancellable *cancellable,
1017 return g_file_attribute_info_list_ref (local_writable_namespaces);
1021 g_local_file_set_attribute (GFile *file,
1022 const char *attribute,
1023 const GFileAttributeValue *value,
1024 GFileQueryInfoFlags flags,
1025 GCancellable *cancellable,
1028 GLocalFile *local = G_LOCAL_FILE (file);
1030 return _g_local_file_info_set_attribute (local->filename,
1039 g_local_file_set_attributes_from_info (GFile *file,
1041 GFileQueryInfoFlags flags,
1042 GCancellable *cancellable,
1045 GLocalFile *local = G_LOCAL_FILE (file);
1046 int res, chained_res;
1047 GFileIface* default_iface;
1049 res = _g_local_file_info_set_attributes (local->filename,
1055 error = NULL; /* Don't write over error if further errors */
1057 default_iface = g_type_default_interface_peek (G_TYPE_FILE);
1059 chained_res = (default_iface->set_attributes_from_info) (file, info, flags, cancellable, error);
1061 return res && chained_res;
1064 static GFileInputStream *
1065 g_local_file_read (GFile *file,
1066 GCancellable *cancellable,
1069 GLocalFile *local = G_LOCAL_FILE (file);
1073 fd = g_open (local->filename, O_RDONLY, 0);
1076 g_set_error (error, G_IO_ERROR,
1077 g_io_error_from_errno (errno),
1078 _("Error opening file: %s"),
1079 g_strerror (errno));
1083 if (fstat(fd, &buf) == 0 && S_ISDIR (buf.st_mode))
1086 g_set_error (error, G_IO_ERROR,
1087 G_IO_ERROR_IS_DIRECTORY,
1088 _("Can't open directory"));
1092 return _g_local_file_input_stream_new (fd);
1095 static GFileOutputStream *
1096 g_local_file_append_to (GFile *file,
1097 GFileCreateFlags flags,
1098 GCancellable *cancellable,
1101 return _g_local_file_output_stream_append (G_LOCAL_FILE (file)->filename,
1102 flags, cancellable, error);
1105 static GFileOutputStream *
1106 g_local_file_create (GFile *file,
1107 GFileCreateFlags flags,
1108 GCancellable *cancellable,
1111 return _g_local_file_output_stream_create (G_LOCAL_FILE (file)->filename,
1112 flags, cancellable, error);
1115 static GFileOutputStream *
1116 g_local_file_replace (GFile *file,
1118 gboolean make_backup,
1119 GFileCreateFlags flags,
1120 GCancellable *cancellable,
1123 return _g_local_file_output_stream_replace (G_LOCAL_FILE (file)->filename,
1124 etag, make_backup, flags,
1125 cancellable, error);
1130 g_local_file_delete (GFile *file,
1131 GCancellable *cancellable,
1134 GLocalFile *local = G_LOCAL_FILE (file);
1136 if (g_remove (local->filename) == -1)
1138 g_set_error (error, G_IO_ERROR,
1139 g_io_error_from_errno (errno),
1140 _("Error removing file: %s"),
1141 g_strerror (errno));
1149 strip_trailing_slashes (const char *path)
1154 path_copy = g_strdup (path);
1155 len = strlen (path_copy);
1156 while (len > 1 && path_copy[len-1] == '/')
1157 path_copy[--len] = 0;
1163 expand_symlink (const char *link)
1165 char *resolved, *canonical, *parent, *link2;
1166 char symlink_value[4096];
1174 res = readlink (link, symlink_value, sizeof (symlink_value) - 1);
1177 return g_strdup (link);
1178 symlink_value[res] = 0;
1181 if (g_path_is_absolute (symlink_value))
1182 return canonicalize_filename (symlink_value);
1185 link2 = strip_trailing_slashes (link);
1186 parent = g_path_get_dirname (link2);
1189 resolved = g_build_filename (parent, symlink_value, NULL);
1192 canonical = canonicalize_filename (resolved);
1201 get_parent (const char *path,
1205 struct stat parent_stat;
1209 path_copy = strip_trailing_slashes (path);
1211 parent = g_path_get_dirname (path_copy);
1212 if (strcmp (parent, ".") == 0 ||
1213 strcmp (parent, path_copy) == 0)
1222 if (g_lstat (parent, &parent_stat) != 0)
1228 if (S_ISLNK (parent_stat.st_mode))
1231 parent = expand_symlink (parent);
1236 if (num_recursions > 12)
1241 } while (S_ISLNK (parent_stat.st_mode));
1243 *parent_dev = parent_stat.st_dev;
1249 expand_all_symlinks (const char *path)
1251 char *parent, *parent_expanded;
1252 char *basename, *res;
1255 parent = get_parent (path, &parent_dev);
1258 parent_expanded = expand_all_symlinks (parent);
1260 basename = g_path_get_basename (path);
1261 res = g_build_filename (parent_expanded, basename, NULL);
1263 g_free (parent_expanded);
1266 res = g_strdup (path);
1272 find_mountpoint_for (const char *file,
1276 dev_t dir_dev, parent_dev;
1278 dir = g_strdup (file);
1283 parent = get_parent (dir, &parent_dev);
1287 if (parent_dev != dir_dev)
1301 find_topdir_for (const char *file)
1306 dir = get_parent (file, &dir_dev);
1310 return find_mountpoint_for (dir, dir_dev);
1316 get_unique_filename (const char *basename,
1322 return g_strdup (basename);
1324 dot = strchr (basename, '.');
1326 return g_strdup_printf ("%.*s.%d%s", dot - basename, basename, id, dot);
1328 return g_strdup_printf ("%s.%d", basename, id);
1332 path_has_prefix (const char *path,
1340 prefix_len = strlen (prefix);
1342 if (strncmp (path, prefix, prefix_len) == 0 &&
1343 (prefix_len == 0 || /* empty prefix always matches */
1344 prefix[prefix_len - 1] == '/' || /* last char in prefix was a /, so it must be in path too */
1345 path[prefix_len] == 0 ||
1346 path[prefix_len] == '/'))
1353 try_make_relative (const char *path,
1356 char *path2, *base2;
1359 path2 = expand_all_symlinks (path);
1360 base2 = expand_all_symlinks (base);
1363 if (path_has_prefix (path2, base2))
1365 relative = path2 + strlen (base2);
1366 while (*relative == '/')
1368 relative = g_strdup (relative);
1376 /* Failed, use abs path */
1377 return g_strdup (path);
1381 escape_trash_name (char *name)
1384 const gchar hex[16] = "0123456789ABCDEF";
1386 str = g_string_new ("");
1394 if (g_ascii_isprint (c))
1395 g_string_append_c (str, c);
1398 g_string_append_c (str, '%');
1399 g_string_append_c (str, hex[((guchar)c) >> 4]);
1400 g_string_append_c (str, hex[((guchar)c) & 0xf]);
1404 return g_string_free (str, FALSE);
1408 g_local_file_trash (GFile *file,
1409 GCancellable *cancellable,
1412 GLocalFile *local = G_LOCAL_FILE (file);
1413 struct stat file_stat, home_stat;
1414 const char *homedir;
1415 char *trashdir, *topdir, *infodir, *filesdir;
1416 char *basename, *trashname, *trashfile, *infoname, *infofile;
1417 char *original_name, *original_name_escaped;
1420 gboolean is_homedir_trash;
1421 char delete_time[32];
1424 struct stat trash_stat, global_stat;
1425 char *dirname, *globaldir;
1428 if (g_lstat (local->filename, &file_stat) != 0)
1430 g_set_error (error, G_IO_ERROR,
1431 g_io_error_from_errno (errno),
1432 _("Error trashing file: %s"),
1433 g_strerror (errno));
1437 homedir = g_get_home_dir ();
1438 g_stat (homedir, &home_stat);
1440 is_homedir_trash = FALSE;
1442 if (file_stat.st_dev == home_stat.st_dev)
1444 is_homedir_trash = TRUE;
1446 trashdir = g_build_filename (g_get_user_data_dir (), "Trash", NULL);
1447 if (g_mkdir_with_parents (trashdir, 0700) < 0)
1453 display_name = g_filename_display_name (trashdir);
1454 g_set_error (error, G_IO_ERROR,
1455 g_io_error_from_errno (err),
1456 _("Unable to create trash dir %s: %s"),
1457 display_name, g_strerror (err));
1458 g_free (display_name);
1462 topdir = g_strdup (g_get_user_data_dir ());
1467 g_warning ("Recycle bin not implemented");
1473 g_snprintf (uid_str, sizeof (uid_str), "%lu", (unsigned long)uid);
1475 topdir = find_topdir_for (local->filename);
1478 g_set_error (error, G_IO_ERROR,
1479 G_IO_ERROR_NOT_SUPPORTED,
1480 _("Unable to find toplevel directory for trash"));
1484 /* Try looking for global trash dir $topdir/.Trash/$uid */
1485 globaldir = g_build_filename (topdir, ".Trash", NULL);
1486 if (g_lstat (globaldir, &global_stat) == 0 &&
1487 S_ISDIR (global_stat.st_mode) &&
1488 (global_stat.st_mode & S_ISVTX) != 0)
1490 trashdir = g_build_filename (globaldir, uid_str, NULL);
1492 if (g_lstat (trashdir, &trash_stat) == 0)
1494 if (!S_ISDIR (trash_stat.st_mode) ||
1495 trash_stat.st_uid != uid)
1497 /* Not a directory or not owned by user, ignore */
1502 else if (g_mkdir (trashdir, 0700) == -1)
1510 if (trashdir == NULL)
1512 /* No global trash dir, or it failed the tests, fall back to $topdir/.Trash-$uid */
1513 dirname = g_strdup_printf (".Trash-%s", uid_str);
1514 trashdir = g_build_filename (topdir, dirname, NULL);
1517 if (g_lstat (trashdir, &trash_stat) == 0)
1519 if (!S_ISDIR (trash_stat.st_mode) ||
1520 trash_stat.st_uid != uid)
1522 /* Not a directory or not owned by user, ignore */
1527 else if (g_mkdir (trashdir, 0700) == -1)
1535 if (trashdir == NULL)
1538 g_set_error (error, G_IO_ERROR,
1539 G_IO_ERROR_NOT_SUPPORTED,
1540 _("Unable to find or create trash directory"));
1545 /* Trashdir points to the trash dir with the "info" and "files" subdirectories */
1547 infodir = g_build_filename (trashdir, "info", NULL);
1548 filesdir = g_build_filename (trashdir, "files", NULL);
1551 /* Make sure we have the subdirectories */
1552 if ((g_mkdir (infodir, 0700) == -1 && errno != EEXIST) ||
1553 (g_mkdir (filesdir, 0700) == -1 && errno != EEXIST))
1558 g_set_error (error, G_IO_ERROR,
1559 G_IO_ERROR_NOT_SUPPORTED,
1560 _("Unable to find or create trash directory"));
1564 basename = g_path_get_basename (local->filename);
1572 trashname = get_unique_filename (basename, i++);
1573 infoname = g_strconcat (trashname, ".trashinfo", NULL);
1574 infofile = g_build_filename (infodir, infoname, NULL);
1577 fd = open (infofile, O_CREAT | O_EXCL, 0666);
1578 } while (fd == -1 && errno == EEXIST);
1590 g_set_error (error, G_IO_ERROR,
1591 g_io_error_from_errno (errno),
1592 _("Unable to create trashed file: %s"),
1593 g_strerror (errno));
1599 /* TODO: Maybe we should verify that you can delete the file from the trash
1600 before moving it? OTOH, that is hard, as it needs a recursive scan */
1602 trashfile = g_build_filename (filesdir, trashname, NULL);
1606 if (g_rename (local->filename, trashfile) == -1)
1613 g_set_error (error, G_IO_ERROR,
1614 g_io_error_from_errno (errno),
1615 _("Unable to trash file: %s"),
1616 g_strerror (errno));
1622 /* TODO: Do we need to update mtime/atime here after the move? */
1624 /* Use absolute names for homedir */
1625 if (is_homedir_trash)
1626 original_name = g_strdup (local->filename);
1628 original_name = try_make_relative (local->filename, topdir);
1629 original_name_escaped = escape_trash_name (original_name);
1631 g_free (original_name);
1637 g_get_current_time (&now);
1638 strncpy (delete_time, g_time_val_to_iso8601 (&now), sizeof (delete_time));
1645 localtime_r (&t, &now);
1647 strftime(delete_time, sizeof (delete_time), "%Y-%m-%dT%H:%M:%S", &now);
1651 data = g_strdup_printf ("[Trash Info]\nPath=%s\nDeletionDate=%s\n",
1652 original_name_escaped, delete_time);
1654 g_file_set_contents (infofile, data, -1, NULL);
1658 g_free (original_name_escaped);
1665 g_local_file_make_directory (GFile *file,
1666 GCancellable *cancellable,
1669 GLocalFile *local = G_LOCAL_FILE (file);
1671 if (g_mkdir (local->filename, 0755) == -1)
1675 if (errsv == EINVAL)
1676 /* This must be an invalid filename, on e.g. FAT */
1677 g_set_error (error, G_IO_ERROR,
1678 G_IO_ERROR_INVALID_FILENAME,
1679 _("Invalid filename"));
1681 g_set_error (error, G_IO_ERROR,
1682 g_io_error_from_errno (errsv),
1683 _("Error removing file: %s"),
1684 g_strerror (errsv));
1692 g_local_file_make_symbolic_link (GFile *file,
1693 const char *symlink_value,
1694 GCancellable *cancellable,
1698 GLocalFile *local = G_LOCAL_FILE (file);
1700 if (symlink (symlink_value, local->filename) == -1)
1704 if (errsv == EINVAL)
1705 /* This must be an invalid filename, on e.g. FAT */
1706 g_set_error (error, G_IO_ERROR,
1707 G_IO_ERROR_INVALID_FILENAME,
1708 _("Invalid filename"));
1710 g_set_error (error, G_IO_ERROR,
1711 g_io_error_from_errno (errsv),
1712 _("Error making symbolic link: %s"),
1713 g_strerror (errsv));
1718 g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, "Symlinks not supported");
1725 g_local_file_copy (GFile *source,
1727 GFileCopyFlags flags,
1728 GCancellable *cancellable,
1729 GFileProgressCallback progress_callback,
1730 gpointer progress_callback_data,
1733 /* Fall back to default copy */
1734 g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, "Copy not supported");
1739 g_local_file_move (GFile *source,
1741 GFileCopyFlags flags,
1742 GCancellable *cancellable,
1743 GFileProgressCallback progress_callback,
1744 gpointer progress_callback_data,
1747 GLocalFile *local_source = G_LOCAL_FILE (source);
1748 GLocalFile *local_destination = G_LOCAL_FILE (destination);
1749 struct stat statbuf;
1750 gboolean destination_exist, source_is_dir;
1754 res = g_lstat (local_source->filename, &statbuf);
1757 g_set_error (error, G_IO_ERROR,
1758 g_io_error_from_errno (errno),
1759 _("Error moving file: %s"),
1760 g_strerror (errno));
1764 source_is_dir = S_ISDIR (statbuf.st_mode);
1766 destination_exist = FALSE;
1767 res = g_lstat (local_destination->filename, &statbuf);
1770 destination_exist = TRUE; /* Target file exists */
1772 if (flags & G_FILE_COPY_OVERWRITE)
1774 /* Always fail on dirs, even with overwrite */
1775 if (S_ISDIR (statbuf.st_mode))
1779 G_IO_ERROR_WOULD_MERGE,
1780 _("Can't move directory over directory"));
1789 _("Target file already exists"));
1794 if (flags & G_FILE_COPY_BACKUP && destination_exist)
1796 backup_name = g_strconcat (local_destination->filename, "~", NULL);
1797 if (rename (local_destination->filename, backup_name) == -1)
1801 G_IO_ERROR_CANT_CREATE_BACKUP,
1802 _("Backup file creation failed"));
1803 g_free (backup_name);
1806 g_free (backup_name);
1807 destination_exist = FALSE; /* It did, but no more */
1810 if (source_is_dir && destination_exist && (flags & G_FILE_COPY_OVERWRITE))
1812 /* Source is a dir, destination exists (and is not a dir, because that would have failed
1813 earlier), and we're overwriting. Manually remove the target so we can do the rename. */
1814 res = unlink (local_destination->filename);
1817 g_set_error (error, G_IO_ERROR,
1818 g_io_error_from_errno (errno),
1819 _("Error removing target file: %s"),
1820 g_strerror (errno));
1825 if (rename (local_source->filename, local_destination->filename) == -1)
1830 /* This will cause the fallback code to run */
1831 g_set_error (error, G_IO_ERROR,
1832 G_IO_ERROR_NOT_SUPPORTED,
1833 _("Move between mounts not supported"));
1834 else if (errsv == EINVAL)
1835 /* This must be an invalid filename, on e.g. FAT, or
1836 we're trying to move the file into itself...
1837 We return invalid filename for both... */
1838 g_set_error (error, G_IO_ERROR,
1839 G_IO_ERROR_INVALID_FILENAME,
1840 _("Invalid filename"));
1842 g_set_error (error, G_IO_ERROR,
1843 g_io_error_from_errno (errsv),
1844 _("Error moving file: %s"),
1845 g_strerror (errsv));
1852 static GDirectoryMonitor*
1853 g_local_file_monitor_dir (GFile *file,
1854 GFileMonitorFlags flags,
1855 GCancellable *cancellable)
1857 GLocalFile* local_file = G_LOCAL_FILE(file);
1858 return _g_local_directory_monitor_new (local_file->filename, flags);
1861 static GFileMonitor*
1862 g_local_file_monitor_file (GFile *file,
1863 GFileMonitorFlags flags,
1864 GCancellable *cancellable)
1866 GLocalFile* local_file = G_LOCAL_FILE(file);
1867 return _g_local_file_monitor_new (local_file->filename, flags);
1871 g_local_file_file_iface_init (GFileIface *iface)
1873 iface->dup = g_local_file_dup;
1874 iface->hash = g_local_file_hash;
1875 iface->equal = g_local_file_equal;
1876 iface->is_native = g_local_file_is_native;
1877 iface->has_uri_scheme = g_local_file_has_uri_scheme;
1878 iface->get_uri_scheme = g_local_file_get_uri_scheme;
1879 iface->get_basename = g_local_file_get_basename;
1880 iface->get_path = g_local_file_get_path;
1881 iface->get_uri = g_local_file_get_uri;
1882 iface->get_parse_name = g_local_file_get_parse_name;
1883 iface->get_parent = g_local_file_get_parent;
1884 iface->contains_file = g_local_file_contains_file;
1885 iface->get_relative_path = g_local_file_get_relative_path;
1886 iface->resolve_relative_path = g_local_file_resolve_relative_path;
1887 iface->get_child_for_display_name = g_local_file_get_child_for_display_name;
1888 iface->set_display_name = g_local_file_set_display_name;
1889 iface->enumerate_children = g_local_file_enumerate_children;
1890 iface->query_info = g_local_file_query_info;
1891 iface->query_filesystem_info = g_local_file_query_filesystem_info;
1892 iface->find_enclosing_mount = g_local_file_find_enclosing_mount;
1893 iface->query_settable_attributes = g_local_file_query_settable_attributes;
1894 iface->query_writable_namespaces = g_local_file_query_writable_namespaces;
1895 iface->set_attribute = g_local_file_set_attribute;
1896 iface->set_attributes_from_info = g_local_file_set_attributes_from_info;
1897 iface->read_fn = g_local_file_read;
1898 iface->append_to = g_local_file_append_to;
1899 iface->create = g_local_file_create;
1900 iface->replace = g_local_file_replace;
1901 iface->delete_file = g_local_file_delete;
1902 iface->trash = g_local_file_trash;
1903 iface->make_directory = g_local_file_make_directory;
1904 iface->make_symbolic_link = g_local_file_make_symbolic_link;
1905 iface->copy = g_local_file_copy;
1906 iface->move = g_local_file_move;
1907 iface->monitor_dir = g_local_file_monitor_dir;
1908 iface->monitor_file = g_local_file_monitor_file;