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>
53 #if defined(HAVE_STATFS) && defined(HAVE_STATVFS)
54 /* Some systems have both statfs and statvfs, pick the
55 most "native" for these */
56 # if !defined(HAVE_STRUCT_STATFS_F_BAVAIL)
57 /* on solaris and irix, statfs doesn't even have the
61 /* at least on linux, statfs is the actual syscall */
65 #elif defined(HAVE_STATFS)
69 #elif defined(HAVE_STATVFS)
75 #include "gfileattribute.h"
76 #include "glocalfile.h"
77 #include "glocalfileinfo.h"
78 #include "glocalfileenumerator.h"
79 #include "glocalfileinputstream.h"
80 #include "glocalfileoutputstream.h"
81 #include "glocalfileiostream.h"
82 #include "glocaldirectorymonitor.h"
83 #include "glocalfilemonitor.h"
84 #include "gmountprivate.h"
85 #include "gunixmounts.h"
87 #include <glib/gstdio.h>
91 #define _WIN32_WINNT 0x0500
96 #ifndef FILE_READ_ONLY_VOLUME
97 #define FILE_READ_ONLY_VOLUME 0x00080000
101 #define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
104 #define S_ISLNK(m) (0)
108 #include "gioalias.h"
110 static void g_local_file_file_iface_init (GFileIface *iface);
112 static GFileAttributeInfoList *local_writable_attributes = NULL;
113 static /* GFileAttributeInfoList * */ gsize local_writable_namespaces = 0;
117 GObject parent_instance;
122 #define g_local_file_get_type _g_local_file_get_type
123 G_DEFINE_TYPE_WITH_CODE (GLocalFile, g_local_file, G_TYPE_OBJECT,
124 G_IMPLEMENT_INTERFACE (G_TYPE_FILE,
125 g_local_file_file_iface_init))
127 static char *find_mountpoint_for (const char *file, dev_t dev);
130 g_local_file_finalize (GObject *object)
134 local = G_LOCAL_FILE (object);
136 g_free (local->filename);
138 G_OBJECT_CLASS (g_local_file_parent_class)->finalize (object);
142 g_local_file_class_init (GLocalFileClass *klass)
144 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
145 GFileAttributeInfoList *list;
147 gobject_class->finalize = g_local_file_finalize;
149 /* Set up attribute lists */
151 /* Writable attributes: */
153 list = g_file_attribute_info_list_new ();
155 g_file_attribute_info_list_add (list,
156 G_FILE_ATTRIBUTE_UNIX_MODE,
157 G_FILE_ATTRIBUTE_TYPE_UINT32,
158 G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE |
159 G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
162 g_file_attribute_info_list_add (list,
163 G_FILE_ATTRIBUTE_UNIX_UID,
164 G_FILE_ATTRIBUTE_TYPE_UINT32,
165 G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
166 g_file_attribute_info_list_add (list,
167 G_FILE_ATTRIBUTE_UNIX_GID,
168 G_FILE_ATTRIBUTE_TYPE_UINT32,
169 G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
173 g_file_attribute_info_list_add (list,
174 G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET,
175 G_FILE_ATTRIBUTE_TYPE_BYTE_STRING,
180 g_file_attribute_info_list_add (list,
181 G_FILE_ATTRIBUTE_TIME_MODIFIED,
182 G_FILE_ATTRIBUTE_TYPE_UINT64,
183 G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE |
184 G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
185 g_file_attribute_info_list_add (list,
186 G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC,
187 G_FILE_ATTRIBUTE_TYPE_UINT32,
188 G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE |
189 G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
190 /* When copying, the target file is accessed. Replicating
191 * the source access time does not make sense in this case.
193 g_file_attribute_info_list_add (list,
194 G_FILE_ATTRIBUTE_TIME_ACCESS,
195 G_FILE_ATTRIBUTE_TYPE_UINT64,
196 G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
197 g_file_attribute_info_list_add (list,
198 G_FILE_ATTRIBUTE_TIME_ACCESS_USEC,
199 G_FILE_ATTRIBUTE_TYPE_UINT32,
200 G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
203 local_writable_attributes = list;
207 g_local_file_init (GLocalFile *local)
213 canonicalize_filename (const char *filename)
215 char *canon, *start, *p, *q;
219 if (!g_path_is_absolute (filename))
221 cwd = g_get_current_dir ();
222 canon = g_build_filename (cwd, filename, NULL);
226 canon = g_strdup (filename);
228 start = (char *)g_path_skip_root (canon);
232 /* This shouldn't really happen, as g_get_current_dir() should
233 return an absolute pathname, but bug 573843 shows this is
234 not always happening */
236 return g_build_filename (G_DIR_SEPARATOR_S, filename, NULL);
239 /* POSIX allows double slashes at the start to
240 * mean something special (as does windows too).
241 * So, "//" != "/", but more than two slashes
247 G_IS_DIR_SEPARATOR (*p);
254 memmove (start, start+i, strlen (start+i)+1);
260 if (p[0] == '.' && (p[1] == 0 || G_IS_DIR_SEPARATOR (p[1])))
262 memmove (p, p+1, strlen (p+1)+1);
264 else if (p[0] == '.' && p[1] == '.' && (p[2] == 0 || G_IS_DIR_SEPARATOR (p[2])))
267 /* Skip previous separator */
271 while (p > start && !G_IS_DIR_SEPARATOR (*p))
273 if (G_IS_DIR_SEPARATOR (*p))
274 *p++ = G_DIR_SEPARATOR;
275 memmove (p, q, strlen (q)+1);
279 /* Skip until next separator */
280 while (*p != 0 && !G_IS_DIR_SEPARATOR (*p))
285 /* Canonicalize one separator */
286 *p++ = G_DIR_SEPARATOR;
290 /* Remove additional separators */
292 while (*q && G_IS_DIR_SEPARATOR (*q))
296 memmove (p, q, strlen (q)+1);
299 /* Remove trailing slashes */
300 if (p > start && G_IS_DIR_SEPARATOR (*(p-1)))
307 _g_local_file_new (const char *filename)
311 local = g_object_new (G_TYPE_LOCAL_FILE, NULL);
312 local->filename = canonicalize_filename (filename);
314 return G_FILE (local);
318 g_local_file_is_native (GFile *file)
324 g_local_file_has_uri_scheme (GFile *file,
325 const char *uri_scheme)
327 return g_ascii_strcasecmp (uri_scheme, "file") == 0;
331 g_local_file_get_uri_scheme (GFile *file)
333 return g_strdup ("file");
337 g_local_file_get_basename (GFile *file)
339 return g_path_get_basename (G_LOCAL_FILE (file)->filename);
343 g_local_file_get_path (GFile *file)
345 return g_strdup (G_LOCAL_FILE (file)->filename);
349 g_local_file_get_uri (GFile *file)
351 return g_filename_to_uri (G_LOCAL_FILE (file)->filename, NULL, NULL);
355 get_filename_charset (const gchar **filename_charset)
357 const gchar **charsets;
360 is_utf8 = g_get_filename_charsets (&charsets);
362 if (filename_charset)
363 *filename_charset = charsets[0];
369 name_is_valid_for_display (const char *string,
370 gboolean is_valid_utf8)
374 if (!is_valid_utf8 &&
375 !g_utf8_validate (string, -1, NULL))
378 while ((c = *string++) != 0)
380 if (g_ascii_iscntrl (c))
388 g_local_file_get_parse_name (GFile *file)
390 const char *filename;
392 const gchar *charset;
394 char *roundtripped_filename;
395 gboolean free_utf8_filename;
396 gboolean is_valid_utf8;
399 filename = G_LOCAL_FILE (file)->filename;
400 if (get_filename_charset (&charset))
402 utf8_filename = (char *)filename;
403 free_utf8_filename = FALSE;
404 is_valid_utf8 = FALSE; /* Can't guarantee this */
408 utf8_filename = g_convert (filename, -1,
409 "UTF-8", charset, NULL, NULL, NULL);
410 free_utf8_filename = TRUE;
411 is_valid_utf8 = TRUE;
413 if (utf8_filename != NULL)
415 /* Make sure we can roundtrip: */
416 roundtripped_filename = g_convert (utf8_filename, -1,
417 charset, "UTF-8", NULL, NULL, NULL);
419 if (roundtripped_filename == NULL ||
420 strcmp (filename, roundtripped_filename) != 0)
422 g_free (utf8_filename);
423 utf8_filename = NULL;
426 g_free (roundtripped_filename);
430 if (utf8_filename != NULL &&
431 name_is_valid_for_display (utf8_filename, is_valid_utf8))
433 if (free_utf8_filename)
434 parse_name = utf8_filename;
436 parse_name = g_strdup (utf8_filename);
440 escaped_path = g_uri_escape_string (filename,
441 G_URI_RESERVED_CHARS_ALLOWED_IN_PATH_ELEMENT "/",
443 parse_name = g_strconcat ("file://",
444 (*escaped_path != '/') ? "/" : "",
448 g_free (escaped_path);
450 if (free_utf8_filename)
451 g_free (utf8_filename);
458 g_local_file_get_parent (GFile *file)
460 GLocalFile *local = G_LOCAL_FILE (file);
461 const char *non_root;
466 non_root = g_path_skip_root (local->filename);
470 dirname = g_path_get_dirname (local->filename);
471 parent = _g_local_file_new (dirname);
477 g_local_file_dup (GFile *file)
479 GLocalFile *local = G_LOCAL_FILE (file);
481 return _g_local_file_new (local->filename);
485 g_local_file_hash (GFile *file)
487 GLocalFile *local = G_LOCAL_FILE (file);
489 return g_str_hash (local->filename);
493 g_local_file_equal (GFile *file1,
496 GLocalFile *local1 = G_LOCAL_FILE (file1);
497 GLocalFile *local2 = G_LOCAL_FILE (file2);
499 return g_str_equal (local1->filename, local2->filename);
503 match_prefix (const char *path,
508 prefix_len = strlen (prefix);
509 if (strncmp (path, prefix, prefix_len) != 0)
512 /* Handle the case where prefix is the root, so that
513 * the IS_DIR_SEPRARATOR check below works */
514 if (prefix_len > 0 &&
515 G_IS_DIR_SEPARATOR (prefix[prefix_len-1]))
518 return path + prefix_len;
522 g_local_file_prefix_matches (GFile *parent,
525 GLocalFile *parent_local = G_LOCAL_FILE (parent);
526 GLocalFile *descendant_local = G_LOCAL_FILE (descendant);
527 const char *remainder;
529 remainder = match_prefix (descendant_local->filename, parent_local->filename);
530 if (remainder != NULL && G_IS_DIR_SEPARATOR (*remainder))
536 g_local_file_get_relative_path (GFile *parent,
539 GLocalFile *parent_local = G_LOCAL_FILE (parent);
540 GLocalFile *descendant_local = G_LOCAL_FILE (descendant);
541 const char *remainder;
543 remainder = match_prefix (descendant_local->filename, parent_local->filename);
545 if (remainder != NULL && G_IS_DIR_SEPARATOR (*remainder))
546 return g_strdup (remainder + 1);
551 g_local_file_resolve_relative_path (GFile *file,
552 const char *relative_path)
554 GLocalFile *local = G_LOCAL_FILE (file);
558 if (g_path_is_absolute (relative_path))
559 return _g_local_file_new (relative_path);
561 filename = g_build_filename (local->filename, relative_path, NULL);
562 child = _g_local_file_new (filename);
568 static GFileEnumerator *
569 g_local_file_enumerate_children (GFile *file,
570 const char *attributes,
571 GFileQueryInfoFlags flags,
572 GCancellable *cancellable,
575 GLocalFile *local = G_LOCAL_FILE (file);
576 return _g_local_file_enumerator_new (local,
582 g_local_file_get_child_for_display_name (GFile *file,
583 const char *display_name,
589 basename = g_filename_from_utf8 (display_name, -1, NULL, NULL, NULL);
590 if (basename == NULL)
592 g_set_error (error, G_IO_ERROR,
593 G_IO_ERROR_INVALID_FILENAME,
594 _("Invalid filename %s"), display_name);
598 new_file = g_file_get_child (file, basename);
606 get_fs_type (long f_type)
608 /* filesystem ids taken from linux manpage */
713 G_LOCK_DEFINE_STATIC(mount_info_hash);
714 static GHashTable *mount_info_hash = NULL;
715 static guint64 mount_info_hash_cache_time = 0;
718 MOUNT_INFO_READONLY = 1<<0
722 device_equal (gconstpointer v1,
725 return *(dev_t *)v1 == *(dev_t *)v2;
729 device_hash (gconstpointer v)
731 return (guint) *(dev_t *)v;
735 get_mount_info (GFileInfo *fs_info,
737 GFileAttributeMatcher *matcher)
741 gpointer info_as_ptr;
745 GUnixMountEntry *mount;
748 if (g_lstat (path, &buf) != 0)
751 G_LOCK (mount_info_hash);
753 if (mount_info_hash == NULL)
754 mount_info_hash = g_hash_table_new_full (device_hash, device_equal,
758 if (g_unix_mounts_changed_since (mount_info_hash_cache_time))
759 g_hash_table_remove_all (mount_info_hash);
761 got_info = g_hash_table_lookup_extended (mount_info_hash,
766 G_UNLOCK (mount_info_hash);
768 mount_info = GPOINTER_TO_UINT (info_as_ptr);
774 mountpoint = find_mountpoint_for (path, buf.st_dev);
775 if (mountpoint == NULL)
776 mountpoint = g_strdup ("/");
778 mount = g_unix_mount_at (mountpoint, &cache_time);
781 if (g_unix_mount_is_readonly (mount))
782 mount_info |= MOUNT_INFO_READONLY;
784 g_unix_mount_free (mount);
789 dev = g_new0 (dev_t, 1);
792 G_LOCK (mount_info_hash);
793 mount_info_hash_cache_time = cache_time;
794 g_hash_table_insert (mount_info_hash, dev, GUINT_TO_POINTER (mount_info));
795 G_UNLOCK (mount_info_hash);
798 if (mount_info & MOUNT_INFO_READONLY)
799 g_file_info_set_attribute_boolean (fs_info, G_FILE_ATTRIBUTE_FILESYSTEM_READONLY, TRUE);
807 is_xp_or_later (void)
809 static int result = -1;
814 OSVERSIONINFOEX ver_info = {0};
815 DWORDLONG cond_mask = 0;
816 int op = VER_GREATER_EQUAL;
818 ver_info.dwOSVersionInfoSize = sizeof ver_info;
819 ver_info.dwMajorVersion = 5;
820 ver_info.dwMinorVersion = 1;
822 VER_SET_CONDITION (cond_mask, VER_MAJORVERSION, op);
823 VER_SET_CONDITION (cond_mask, VER_MINORVERSION, op);
825 result = VerifyVersionInfo (&ver_info,
826 VER_MAJORVERSION | VER_MINORVERSION,
829 result = ((DWORD)(LOBYTE (LOWORD (GetVersion ())))) >= 5;
837 get_volume_for_path (const char *path)
843 wpath = g_utf8_to_utf16 (path, -1, NULL, NULL, NULL);
844 result = g_new (wchar_t, MAX_PATH);
846 if (!GetVolumePathNameW (wpath, result, MAX_PATH))
848 char *msg = g_win32_error_message (GetLastError ());
849 g_critical ("GetVolumePathName failed: %s", msg);
856 len = wcslen (result);
857 if (len > 0 && result[len-1] != L'\\')
859 result = g_renew (wchar_t, result, len + 2);
869 find_mountpoint_for (const char *file, dev_t dev)
874 wpath = get_volume_for_path (file);
878 utf8_path = g_utf16_to_utf8 (wpath, -1, NULL, NULL, NULL);
885 get_filesystem_readonly (GFileInfo *info,
890 rootdir = get_volume_for_path (path);
894 if (is_xp_or_later ())
897 if (GetVolumeInformationW (rootdir, NULL, 0, NULL, NULL, &flags, NULL, 0))
898 g_file_info_set_attribute_boolean (info, G_FILE_ATTRIBUTE_FILESYSTEM_READONLY,
899 (flags & FILE_READ_ONLY_VOLUME) != 0);
903 if (GetDriveTypeW (rootdir) == DRIVE_CDROM)
904 g_file_info_set_attribute_boolean (info, G_FILE_ATTRIBUTE_FILESYSTEM_READONLY, TRUE);
911 #endif /* G_OS_WIN32 */
914 g_local_file_query_filesystem_info (GFile *file,
915 const char *attributes,
916 GCancellable *cancellable,
919 GLocalFile *local = G_LOCAL_FILE (file);
921 int statfs_result = 0;
927 struct statfs statfs_buffer;
928 #elif defined(USE_STATVFS)
929 struct statvfs statfs_buffer;
932 GFileAttributeMatcher *attribute_matcher;
939 statfs_result = statfs (local->filename, &statfs_buffer);
940 #elif STATFS_ARGS == 4
941 statfs_result = statfs (local->filename, &statfs_buffer,
942 sizeof (statfs_buffer), 0);
944 block_size = statfs_buffer.f_bsize;
946 /* Many backends can't report free size (for instance the gvfs fuse
947 backend for backend not supporting this), and set f_bfree to 0,
948 but it can be 0 for real too. We treat the availible == 0 and
949 free == 0 case as "both of these are invalid".
952 if (statfs_result == 0 &&
953 statfs_buffer.f_bavail == 0 && statfs_buffer.f_bfree == 0)
957 #elif defined(USE_STATVFS)
958 statfs_result = statvfs (local->filename, &statfs_buffer);
959 block_size = statfs_buffer.f_frsize;
962 if (statfs_result == -1)
966 g_set_error (error, G_IO_ERROR,
967 g_io_error_from_errno (errsv),
968 _("Error getting filesystem info: %s"),
973 info = g_file_info_new ();
975 attribute_matcher = g_file_attribute_matcher_new (attributes);
978 g_file_attribute_matcher_matches (attribute_matcher,
979 G_FILE_ATTRIBUTE_FILESYSTEM_FREE))
982 gchar *localdir = g_path_get_dirname (local->filename);
983 wchar_t *wdirname = g_utf8_to_utf16 (localdir, -1, NULL, NULL, NULL);
987 if (GetDiskFreeSpaceExW (wdirname, &li, NULL, NULL))
988 g_file_info_set_attribute_uint64 (info, G_FILE_ATTRIBUTE_FILESYSTEM_FREE, (guint64)li.QuadPart);
991 g_file_info_set_attribute_uint64 (info, G_FILE_ATTRIBUTE_FILESYSTEM_FREE, block_size * statfs_buffer.f_bavail);
995 g_file_attribute_matcher_matches (attribute_matcher,
996 G_FILE_ATTRIBUTE_FILESYSTEM_SIZE))
999 gchar *localdir = g_path_get_dirname (local->filename);
1000 wchar_t *wdirname = g_utf8_to_utf16 (localdir, -1, NULL, NULL, NULL);
1004 if (GetDiskFreeSpaceExW (wdirname, NULL, &li, NULL))
1005 g_file_info_set_attribute_uint64 (info, G_FILE_ATTRIBUTE_FILESYSTEM_SIZE, (guint64)li.QuadPart);
1008 g_file_info_set_attribute_uint64 (info, G_FILE_ATTRIBUTE_FILESYSTEM_SIZE, block_size * statfs_buffer.f_blocks);
1012 #if defined(HAVE_STRUCT_STATFS_F_FSTYPENAME)
1013 fstype = g_strdup(statfs_buffer.f_fstypename);
1015 fstype = get_fs_type (statfs_buffer.f_type);
1018 #elif defined(USE_STATVFS) && defined(HAVE_STRUCT_STATVFS_F_BASETYPE)
1019 fstype = g_strdup(statfs_buffer.f_basetype);
1024 g_file_attribute_matcher_matches (attribute_matcher,
1025 G_FILE_ATTRIBUTE_FILESYSTEM_TYPE))
1026 g_file_info_set_attribute_string (info, G_FILE_ATTRIBUTE_FILESYSTEM_TYPE, fstype);
1029 if (g_file_attribute_matcher_matches (attribute_matcher,
1030 G_FILE_ATTRIBUTE_FILESYSTEM_READONLY))
1033 get_filesystem_readonly (info, local->filename);
1035 get_mount_info (info, local->filename, attribute_matcher);
1039 g_file_attribute_matcher_unref (attribute_matcher);
1045 g_local_file_find_enclosing_mount (GFile *file,
1046 GCancellable *cancellable,
1049 GLocalFile *local = G_LOCAL_FILE (file);
1054 if (g_lstat (local->filename, &buf) != 0)
1056 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND,
1057 /* Translators: This is an error message when trying to
1058 * find the enclosing (user visible) mount of a file, but
1060 _("Containing mount does not exist"));
1064 mountpoint = find_mountpoint_for (local->filename, buf.st_dev);
1065 if (mountpoint == NULL)
1067 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND,
1068 /* Translators: This is an error message when trying to
1069 * find the enclosing (user visible) mount of a file, but
1071 _("Containing mount does not exist"));
1075 mount = _g_mount_get_for_mount_path (mountpoint, cancellable);
1076 g_free (mountpoint);
1080 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND,
1081 /* Translators: This is an error message when trying to find
1082 * the enclosing (user visible) mount of a file, but none
1084 _("Containing mount does not exist"));
1089 g_local_file_set_display_name (GFile *file,
1090 const char *display_name,
1091 GCancellable *cancellable,
1094 GLocalFile *local, *new_local;
1095 GFile *new_file, *parent;
1101 parent = g_file_get_parent (file);
1104 g_set_error_literal (error, G_IO_ERROR,
1106 _("Can't rename root directory"));
1110 new_file = g_file_get_child_for_display_name (parent, display_name, error);
1111 g_object_unref (parent);
1113 if (new_file == NULL)
1115 local = G_LOCAL_FILE (file);
1116 new_local = G_LOCAL_FILE (new_file);
1118 if (g_lstat (new_local->filename, &statbuf) == -1)
1122 if (errsv != ENOENT)
1124 g_set_error (error, G_IO_ERROR,
1125 g_io_error_from_errno (errsv),
1126 _("Error renaming file: %s"),
1127 g_strerror (errsv));
1133 g_set_error_literal (error, G_IO_ERROR,
1135 _("Can't rename file, filename already exist"));
1139 if (g_rename (local->filename, new_local->filename) == -1)
1143 if (errsv == EINVAL)
1144 /* We can't get a rename file into itself error herer,
1145 so this must be an invalid filename, on e.g. FAT */
1146 g_set_error_literal (error, G_IO_ERROR,
1147 G_IO_ERROR_INVALID_FILENAME,
1148 _("Invalid filename"));
1150 g_set_error (error, G_IO_ERROR,
1151 g_io_error_from_errno (errsv),
1152 _("Error renaming file: %s"),
1153 g_strerror (errsv));
1154 g_object_unref (new_file);
1158 vfs = g_vfs_get_default ();
1159 class = G_VFS_GET_CLASS (vfs);
1160 if (class->local_file_moved)
1161 class->local_file_moved (vfs, local->filename, new_local->filename);
1167 g_local_file_query_info (GFile *file,
1168 const char *attributes,
1169 GFileQueryInfoFlags flags,
1170 GCancellable *cancellable,
1173 GLocalFile *local = G_LOCAL_FILE (file);
1175 GFileAttributeMatcher *matcher;
1176 char *basename, *dirname;
1177 GLocalParentFileInfo parent_info;
1179 matcher = g_file_attribute_matcher_new (attributes);
1181 basename = g_path_get_basename (local->filename);
1183 dirname = g_path_get_dirname (local->filename);
1184 _g_local_file_info_get_parent_info (dirname, matcher, &parent_info);
1187 info = _g_local_file_info_get (basename, local->filename,
1188 matcher, flags, &parent_info,
1192 _g_local_file_info_free_parent_info (&parent_info);
1195 g_file_attribute_matcher_unref (matcher);
1200 static GFileAttributeInfoList *
1201 g_local_file_query_settable_attributes (GFile *file,
1202 GCancellable *cancellable,
1205 return g_file_attribute_info_list_ref (local_writable_attributes);
1208 static GFileAttributeInfoList *
1209 g_local_file_query_writable_namespaces (GFile *file,
1210 GCancellable *cancellable,
1213 GFileAttributeInfoList *list;
1217 if (g_once_init_enter (&local_writable_namespaces))
1219 /* Writable namespaces: */
1221 list = g_file_attribute_info_list_new ();
1224 g_file_attribute_info_list_add (list,
1226 G_FILE_ATTRIBUTE_TYPE_STRING,
1227 G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE |
1228 G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
1229 g_file_attribute_info_list_add (list,
1231 G_FILE_ATTRIBUTE_TYPE_STRING,
1232 G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
1235 vfs = g_vfs_get_default ();
1236 class = G_VFS_GET_CLASS (vfs);
1237 if (class->add_writable_namespaces)
1238 class->add_writable_namespaces (vfs, list);
1240 g_once_init_leave (&local_writable_namespaces, (gsize)list);
1242 list = (GFileAttributeInfoList *)local_writable_namespaces;
1244 return g_file_attribute_info_list_ref (list);
1248 g_local_file_set_attribute (GFile *file,
1249 const char *attribute,
1250 GFileAttributeType type,
1252 GFileQueryInfoFlags flags,
1253 GCancellable *cancellable,
1256 GLocalFile *local = G_LOCAL_FILE (file);
1258 return _g_local_file_info_set_attribute (local->filename,
1268 g_local_file_set_attributes_from_info (GFile *file,
1270 GFileQueryInfoFlags flags,
1271 GCancellable *cancellable,
1274 GLocalFile *local = G_LOCAL_FILE (file);
1275 int res, chained_res;
1276 GFileIface *default_iface;
1278 res = _g_local_file_info_set_attributes (local->filename,
1284 error = NULL; /* Don't write over error if further errors */
1286 default_iface = g_type_default_interface_peek (G_TYPE_FILE);
1288 chained_res = (default_iface->set_attributes_from_info) (file, info, flags, cancellable, error);
1290 return res && chained_res;
1293 static GFileInputStream *
1294 g_local_file_read (GFile *file,
1295 GCancellable *cancellable,
1298 GLocalFile *local = G_LOCAL_FILE (file);
1302 fd = g_open (local->filename, O_RDONLY|O_BINARY, 0);
1307 g_set_error (error, G_IO_ERROR,
1308 g_io_error_from_errno (errsv),
1309 _("Error opening file: %s"),
1310 g_strerror (errsv));
1314 if (fstat(fd, &buf) == 0 && S_ISDIR (buf.st_mode))
1317 g_set_error_literal (error, G_IO_ERROR,
1318 G_IO_ERROR_IS_DIRECTORY,
1319 _("Can't open directory"));
1323 return _g_local_file_input_stream_new (fd);
1326 static GFileOutputStream *
1327 g_local_file_append_to (GFile *file,
1328 GFileCreateFlags flags,
1329 GCancellable *cancellable,
1332 return _g_local_file_output_stream_append (G_LOCAL_FILE (file)->filename,
1333 flags, cancellable, error);
1336 static GFileOutputStream *
1337 g_local_file_create (GFile *file,
1338 GFileCreateFlags flags,
1339 GCancellable *cancellable,
1342 return _g_local_file_output_stream_create (G_LOCAL_FILE (file)->filename,
1344 flags, cancellable, error);
1347 static GFileOutputStream *
1348 g_local_file_replace (GFile *file,
1350 gboolean make_backup,
1351 GFileCreateFlags flags,
1352 GCancellable *cancellable,
1355 return _g_local_file_output_stream_replace (G_LOCAL_FILE (file)->filename,
1357 etag, make_backup, flags,
1358 cancellable, error);
1361 static GFileIOStream *
1362 g_local_file_open_readwrite (GFile *file,
1363 GCancellable *cancellable,
1366 GFileOutputStream *output;
1369 output = _g_local_file_output_stream_open (G_LOCAL_FILE (file)->filename,
1371 cancellable, error);
1375 res = _g_local_file_io_stream_new (G_LOCAL_FILE_OUTPUT_STREAM (output));
1376 g_object_unref (output);
1380 static GFileIOStream *
1381 g_local_file_create_readwrite (GFile *file,
1382 GFileCreateFlags flags,
1383 GCancellable *cancellable,
1386 GFileOutputStream *output;
1389 output = _g_local_file_output_stream_create (G_LOCAL_FILE (file)->filename,
1391 cancellable, error);
1395 res = _g_local_file_io_stream_new (G_LOCAL_FILE_OUTPUT_STREAM (output));
1396 g_object_unref (output);
1400 static GFileIOStream *
1401 g_local_file_replace_readwrite (GFile *file,
1403 gboolean make_backup,
1404 GFileCreateFlags flags,
1405 GCancellable *cancellable,
1408 GFileOutputStream *output;
1411 output = _g_local_file_output_stream_replace (G_LOCAL_FILE (file)->filename,
1413 etag, make_backup, flags,
1414 cancellable, error);
1418 res = _g_local_file_io_stream_new (G_LOCAL_FILE_OUTPUT_STREAM (output));
1419 g_object_unref (output);
1424 g_local_file_delete (GFile *file,
1425 GCancellable *cancellable,
1428 GLocalFile *local = G_LOCAL_FILE (file);
1432 if (g_remove (local->filename) == -1)
1436 /* Posix allows EEXIST too, but the more sane error
1437 is G_IO_ERROR_NOT_FOUND, and it's what nautilus
1439 if (errsv == EEXIST)
1442 g_set_error (error, G_IO_ERROR,
1443 g_io_error_from_errno (errsv),
1444 _("Error removing file: %s"),
1445 g_strerror (errsv));
1449 vfs = g_vfs_get_default ();
1450 class = G_VFS_GET_CLASS (vfs);
1451 if (class->local_file_removed)
1452 class->local_file_removed (vfs, local->filename);
1458 strip_trailing_slashes (const char *path)
1463 path_copy = g_strdup (path);
1464 len = strlen (path_copy);
1465 while (len > 1 && path_copy[len-1] == '/')
1466 path_copy[--len] = 0;
1472 expand_symlink (const char *link)
1474 char *resolved, *canonical, *parent, *link2;
1475 char symlink_value[4096];
1483 res = readlink (link, symlink_value, sizeof (symlink_value) - 1);
1486 return g_strdup (link);
1487 symlink_value[res] = 0;
1490 if (g_path_is_absolute (symlink_value))
1491 return canonicalize_filename (symlink_value);
1494 link2 = strip_trailing_slashes (link);
1495 parent = g_path_get_dirname (link2);
1498 resolved = g_build_filename (parent, symlink_value, NULL);
1501 canonical = canonicalize_filename (resolved);
1510 get_parent (const char *path,
1514 GStatBuf parent_stat;
1518 path_copy = strip_trailing_slashes (path);
1520 parent = g_path_get_dirname (path_copy);
1521 if (strcmp (parent, ".") == 0 ||
1522 strcmp (parent, path_copy) == 0)
1532 if (g_lstat (parent, &parent_stat) != 0)
1538 if (S_ISLNK (parent_stat.st_mode))
1541 parent = expand_symlink (parent);
1546 if (num_recursions > 12)
1551 } while (S_ISLNK (parent_stat.st_mode));
1553 *parent_dev = parent_stat.st_dev;
1559 expand_all_symlinks (const char *path)
1561 char *parent, *parent_expanded;
1562 char *basename, *res;
1565 parent = get_parent (path, &parent_dev);
1568 parent_expanded = expand_all_symlinks (parent);
1570 basename = g_path_get_basename (path);
1571 res = g_build_filename (parent_expanded, basename, NULL);
1573 g_free (parent_expanded);
1576 res = g_strdup (path);
1584 find_mountpoint_for (const char *file,
1588 dev_t dir_dev, parent_dev;
1590 dir = g_strdup (file);
1595 parent = get_parent (dir, &parent_dev);
1599 if (parent_dev != dir_dev)
1611 find_topdir_for (const char *file)
1616 dir = get_parent (file, &dir_dev);
1620 return find_mountpoint_for (dir, dir_dev);
1624 get_unique_filename (const char *basename,
1630 return g_strdup (basename);
1632 dot = strchr (basename, '.');
1634 return g_strdup_printf ("%.*s.%d%s", (int)(dot - basename), basename, id, dot);
1636 return g_strdup_printf ("%s.%d", basename, id);
1640 path_has_prefix (const char *path,
1648 prefix_len = strlen (prefix);
1650 if (strncmp (path, prefix, prefix_len) == 0 &&
1651 (prefix_len == 0 || /* empty prefix always matches */
1652 prefix[prefix_len - 1] == '/' || /* last char in prefix was a /, so it must be in path too */
1653 path[prefix_len] == 0 ||
1654 path[prefix_len] == '/'))
1661 try_make_relative (const char *path,
1664 char *path2, *base2;
1667 path2 = expand_all_symlinks (path);
1668 base2 = expand_all_symlinks (base);
1671 if (path_has_prefix (path2, base2))
1673 relative = path2 + strlen (base2);
1674 while (*relative == '/')
1676 relative = g_strdup (relative);
1684 /* Failed, use abs path */
1685 return g_strdup (path);
1689 escape_trash_name (char *name)
1692 const gchar hex[16] = "0123456789ABCDEF";
1694 str = g_string_new ("");
1702 if (g_ascii_isprint (c))
1703 g_string_append_c (str, c);
1706 g_string_append_c (str, '%');
1707 g_string_append_c (str, hex[((guchar)c) >> 4]);
1708 g_string_append_c (str, hex[((guchar)c) & 0xf]);
1712 return g_string_free (str, FALSE);
1716 _g_local_file_has_trash_dir (const char *dirname, dev_t dir_dev)
1718 static gsize home_dev_set = 0;
1719 static dev_t home_dev;
1720 char *topdir, *globaldir, *trashdir, *tmpname;
1723 GStatBuf global_stat, trash_stat;
1726 if (g_once_init_enter (&home_dev_set))
1730 g_stat (g_get_home_dir (), &home_stat);
1731 home_dev = home_stat.st_dev;
1732 g_once_init_leave (&home_dev_set, 1);
1735 /* Assume we can trash to the home */
1736 if (dir_dev == home_dev)
1739 topdir = find_mountpoint_for (dirname, dir_dev);
1743 globaldir = g_build_filename (topdir, ".Trash", NULL);
1744 if (g_lstat (globaldir, &global_stat) == 0 &&
1745 S_ISDIR (global_stat.st_mode) &&
1746 (global_stat.st_mode & S_ISVTX) != 0)
1748 /* got a toplevel sysadmin created dir, assume we
1749 * can trash to it (we should be able to create a dir)
1750 * This fails for the FAT case where the ownership of
1751 * that dir would be wrong though..
1759 /* No global trash dir, or it failed the tests, fall back to $topdir/.Trash-$uid */
1761 g_snprintf (uid_str, sizeof (uid_str), "%lu", (unsigned long) uid);
1763 tmpname = g_strdup_printf (".Trash-%s", uid_str);
1764 trashdir = g_build_filename (topdir, tmpname, NULL);
1767 if (g_lstat (trashdir, &trash_stat) == 0)
1771 return S_ISDIR (trash_stat.st_mode) &&
1772 trash_stat.st_uid == uid;
1776 /* User specific trash didn't exist, can we create it? */
1777 res = g_access (topdir, W_OK) == 0;
1785 g_local_file_trash (GFile *file,
1786 GCancellable *cancellable,
1789 GLocalFile *local = G_LOCAL_FILE (file);
1790 GStatBuf file_stat, home_stat;
1791 const char *homedir;
1792 char *trashdir, *topdir, *infodir, *filesdir;
1793 char *basename, *trashname, *trashfile, *infoname, *infofile;
1794 char *original_name, *original_name_escaped;
1797 gboolean is_homedir_trash;
1798 char delete_time[32];
1800 GStatBuf trash_stat, global_stat;
1801 char *dirname, *globaldir;
1805 if (g_lstat (local->filename, &file_stat) != 0)
1809 g_set_error (error, G_IO_ERROR,
1810 g_io_error_from_errno (errsv),
1811 _("Error trashing file: %s"),
1812 g_strerror (errsv));
1816 homedir = g_get_home_dir ();
1817 g_stat (homedir, &home_stat);
1819 is_homedir_trash = FALSE;
1821 if (file_stat.st_dev == home_stat.st_dev)
1823 is_homedir_trash = TRUE;
1825 trashdir = g_build_filename (g_get_user_data_dir (), "Trash", NULL);
1826 if (g_mkdir_with_parents (trashdir, 0700) < 0)
1831 display_name = g_filename_display_name (trashdir);
1832 g_set_error (error, G_IO_ERROR,
1833 g_io_error_from_errno (errsv),
1834 _("Unable to create trash dir %s: %s"),
1835 display_name, g_strerror (errsv));
1836 g_free (display_name);
1840 topdir = g_strdup (g_get_user_data_dir ());
1848 g_snprintf (uid_str, sizeof (uid_str), "%lu", (unsigned long)uid);
1850 topdir = find_topdir_for (local->filename);
1853 g_set_error_literal (error, G_IO_ERROR,
1854 G_IO_ERROR_NOT_SUPPORTED,
1855 _("Unable to find toplevel directory for trash"));
1859 /* Try looking for global trash dir $topdir/.Trash/$uid */
1860 globaldir = g_build_filename (topdir, ".Trash", NULL);
1861 if (g_lstat (globaldir, &global_stat) == 0 &&
1862 S_ISDIR (global_stat.st_mode) &&
1863 (global_stat.st_mode & S_ISVTX) != 0)
1865 trashdir = g_build_filename (globaldir, uid_str, NULL);
1867 if (g_lstat (trashdir, &trash_stat) == 0)
1869 if (!S_ISDIR (trash_stat.st_mode) ||
1870 trash_stat.st_uid != uid)
1872 /* Not a directory or not owned by user, ignore */
1877 else if (g_mkdir (trashdir, 0700) == -1)
1885 if (trashdir == NULL)
1887 gboolean tried_create;
1889 /* No global trash dir, or it failed the tests, fall back to $topdir/.Trash-$uid */
1890 dirname = g_strdup_printf (".Trash-%s", uid_str);
1891 trashdir = g_build_filename (topdir, dirname, NULL);
1894 tried_create = FALSE;
1897 if (g_lstat (trashdir, &trash_stat) == 0)
1899 if (!S_ISDIR (trash_stat.st_mode) ||
1900 trash_stat.st_uid != uid)
1902 /* Remove the failed directory */
1904 g_remove (trashdir);
1906 /* Not a directory or not owned by user, ignore */
1913 if (!tried_create &&
1914 g_mkdir (trashdir, 0700) != -1)
1916 /* Ensure that the created dir has the right uid etc.
1917 This might fail on e.g. a FAT dir */
1918 tried_create = TRUE;
1929 if (trashdir == NULL)
1932 g_set_error_literal (error, G_IO_ERROR,
1933 G_IO_ERROR_NOT_SUPPORTED,
1934 _("Unable to find or create trash directory"));
1939 /* Trashdir points to the trash dir with the "info" and "files" subdirectories */
1941 infodir = g_build_filename (trashdir, "info", NULL);
1942 filesdir = g_build_filename (trashdir, "files", NULL);
1945 /* Make sure we have the subdirectories */
1946 if ((g_mkdir (infodir, 0700) == -1 && errno != EEXIST) ||
1947 (g_mkdir (filesdir, 0700) == -1 && errno != EEXIST))
1952 g_set_error_literal (error, G_IO_ERROR,
1953 G_IO_ERROR_NOT_SUPPORTED,
1954 _("Unable to find or create trash directory"));
1958 basename = g_path_get_basename (local->filename);
1966 trashname = get_unique_filename (basename, i++);
1967 infoname = g_strconcat (trashname, ".trashinfo", NULL);
1968 infofile = g_build_filename (infodir, infoname, NULL);
1971 fd = open (infofile, O_CREAT | O_EXCL, 0666);
1972 } while (fd == -1 && errno == EEXIST);
1986 g_set_error (error, G_IO_ERROR,
1987 g_io_error_from_errno (errsv),
1988 _("Unable to create trashing info file: %s"),
1989 g_strerror (errsv));
1995 /* TODO: Maybe we should verify that you can delete the file from the trash
1996 before moving it? OTOH, that is hard, as it needs a recursive scan */
1998 trashfile = g_build_filename (filesdir, trashname, NULL);
2002 if (g_rename (local->filename, trashfile) == -1)
2012 /* The trash dir was actually on another fs anyway!?
2013 This can happen when the same device is mounted multiple
2014 times, or with bind mounts of the same fs. */
2015 g_set_error (error, G_IO_ERROR,
2016 G_IO_ERROR_NOT_SUPPORTED,
2017 _("Unable to trash file: %s"),
2018 g_strerror (errsv));
2020 g_set_error (error, G_IO_ERROR,
2021 g_io_error_from_errno (errsv),
2022 _("Unable to trash file: %s"),
2023 g_strerror (errsv));
2027 vfs = g_vfs_get_default ();
2028 class = G_VFS_GET_CLASS (vfs);
2029 if (class->local_file_moved)
2030 class->local_file_moved (vfs, local->filename, trashfile);
2034 /* TODO: Do we need to update mtime/atime here after the move? */
2036 /* Use absolute names for homedir */
2037 if (is_homedir_trash)
2038 original_name = g_strdup (local->filename);
2040 original_name = try_make_relative (local->filename, topdir);
2041 original_name_escaped = escape_trash_name (original_name);
2043 g_free (original_name);
2050 localtime_r (&t, &now);
2052 strftime(delete_time, sizeof (delete_time), "%Y-%m-%dT%H:%M:%S", &now);
2055 data = g_strdup_printf ("[Trash Info]\nPath=%s\nDeletionDate=%s\n",
2056 original_name_escaped, delete_time);
2058 g_file_set_contents (infofile, data, -1, NULL);
2062 g_free (original_name_escaped);
2067 #else /* G_OS_WIN32 */
2069 _g_local_file_has_trash_dir (const char *dirname, dev_t dir_dev)
2071 return FALSE; /* XXX ??? */
2075 g_local_file_trash (GFile *file,
2076 GCancellable *cancellable,
2079 GLocalFile *local = G_LOCAL_FILE (file);
2080 SHFILEOPSTRUCTW op = {0};
2085 wfilename = g_utf8_to_utf16 (local->filename, -1, NULL, &len, NULL);
2086 /* SHFILEOPSTRUCT.pFrom is double-zero-terminated */
2087 wfilename = g_renew (wchar_t, wfilename, len + 2);
2088 wfilename[len + 1] = 0;
2090 op.wFunc = FO_DELETE;
2091 op.pFrom = wfilename;
2092 op.fFlags = FOF_ALLOWUNDO;
2094 success = SHFileOperationW (&op) == 0;
2096 if (success && op.fAnyOperationsAborted)
2098 if (cancellable && !g_cancellable_is_cancelled (cancellable))
2099 g_cancellable_cancel (cancellable);
2100 g_set_error (error, G_IO_ERROR,
2101 G_IO_ERROR_CANCELLED,
2102 _("Unable to trash file: %s"),
2103 _("Operation was cancelled"));
2107 g_set_error (error, G_IO_ERROR,
2109 _("Unable to trash file: %s"),
2110 _("internal error"));
2115 #endif /* G_OS_WIN32 */
2118 g_local_file_make_directory (GFile *file,
2119 GCancellable *cancellable,
2122 GLocalFile *local = G_LOCAL_FILE (file);
2124 if (g_mkdir (local->filename, 0777) == -1)
2128 if (errsv == EINVAL)
2129 /* This must be an invalid filename, on e.g. FAT */
2130 g_set_error_literal (error, G_IO_ERROR,
2131 G_IO_ERROR_INVALID_FILENAME,
2132 _("Invalid filename"));
2134 g_set_error (error, G_IO_ERROR,
2135 g_io_error_from_errno (errsv),
2136 _("Error creating directory: %s"),
2137 g_strerror (errsv));
2145 g_local_file_make_symbolic_link (GFile *file,
2146 const char *symlink_value,
2147 GCancellable *cancellable,
2151 GLocalFile *local = G_LOCAL_FILE (file);
2153 if (symlink (symlink_value, local->filename) == -1)
2157 if (errsv == EINVAL)
2158 /* This must be an invalid filename, on e.g. FAT */
2159 g_set_error_literal (error, G_IO_ERROR,
2160 G_IO_ERROR_INVALID_FILENAME,
2161 _("Invalid filename"));
2162 else if (errsv == EPERM)
2163 g_set_error (error, G_IO_ERROR,
2164 G_IO_ERROR_NOT_SUPPORTED,
2165 _("Filesystem does not support symbolic links"));
2167 g_set_error (error, G_IO_ERROR,
2168 g_io_error_from_errno (errsv),
2169 _("Error making symbolic link: %s"),
2170 g_strerror (errsv));
2175 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, "Symlinks not supported");
2182 g_local_file_copy (GFile *source,
2184 GFileCopyFlags flags,
2185 GCancellable *cancellable,
2186 GFileProgressCallback progress_callback,
2187 gpointer progress_callback_data,
2190 /* Fall back to default copy */
2191 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, "Copy not supported");
2196 g_local_file_move (GFile *source,
2198 GFileCopyFlags flags,
2199 GCancellable *cancellable,
2200 GFileProgressCallback progress_callback,
2201 gpointer progress_callback_data,
2204 GLocalFile *local_source, *local_destination;
2206 gboolean destination_exist, source_is_dir;
2213 if (!G_IS_LOCAL_FILE (source) ||
2214 !G_IS_LOCAL_FILE (destination))
2216 /* Fall back to default move */
2217 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, "Move not supported");
2221 local_source = G_LOCAL_FILE (source);
2222 local_destination = G_LOCAL_FILE (destination);
2224 res = g_lstat (local_source->filename, &statbuf);
2229 g_set_error (error, G_IO_ERROR,
2230 g_io_error_from_errno (errsv),
2231 _("Error moving file: %s"),
2232 g_strerror (errsv));
2236 source_is_dir = S_ISDIR (statbuf.st_mode);
2237 source_size = statbuf.st_size;
2239 destination_exist = FALSE;
2240 res = g_lstat (local_destination->filename, &statbuf);
2243 destination_exist = TRUE; /* Target file exists */
2245 if (flags & G_FILE_COPY_OVERWRITE)
2247 /* Always fail on dirs, even with overwrite */
2248 if (S_ISDIR (statbuf.st_mode))
2251 g_set_error_literal (error,
2253 G_IO_ERROR_WOULD_MERGE,
2254 _("Can't move directory over directory"));
2256 g_set_error_literal (error,
2258 G_IO_ERROR_IS_DIRECTORY,
2259 _("Can't copy over directory"));
2265 g_set_error_literal (error,
2268 _("Target file exists"));
2273 if (flags & G_FILE_COPY_BACKUP && destination_exist)
2275 backup_name = g_strconcat (local_destination->filename, "~", NULL);
2276 if (g_rename (local_destination->filename, backup_name) == -1)
2278 g_set_error_literal (error,
2280 G_IO_ERROR_CANT_CREATE_BACKUP,
2281 _("Backup file creation failed"));
2282 g_free (backup_name);
2285 g_free (backup_name);
2286 destination_exist = FALSE; /* It did, but no more */
2289 if (source_is_dir && destination_exist && (flags & G_FILE_COPY_OVERWRITE))
2291 /* Source is a dir, destination exists (and is not a dir, because that would have failed
2292 earlier), and we're overwriting. Manually remove the target so we can do the rename. */
2293 res = g_unlink (local_destination->filename);
2298 g_set_error (error, G_IO_ERROR,
2299 g_io_error_from_errno (errsv),
2300 _("Error removing target file: %s"),
2301 g_strerror (errsv));
2306 if (g_rename (local_source->filename, local_destination->filename) == -1)
2311 /* This will cause the fallback code to run */
2312 g_set_error_literal (error, G_IO_ERROR,
2313 G_IO_ERROR_NOT_SUPPORTED,
2314 _("Move between mounts not supported"));
2315 else if (errsv == EINVAL)
2316 /* This must be an invalid filename, on e.g. FAT, or
2317 we're trying to move the file into itself...
2318 We return invalid filename for both... */
2319 g_set_error_literal (error, G_IO_ERROR,
2320 G_IO_ERROR_INVALID_FILENAME,
2321 _("Invalid filename"));
2323 g_set_error (error, G_IO_ERROR,
2324 g_io_error_from_errno (errsv),
2325 _("Error moving file: %s"),
2326 g_strerror (errsv));
2330 vfs = g_vfs_get_default ();
2331 class = G_VFS_GET_CLASS (vfs);
2332 if (class->local_file_moved)
2333 class->local_file_moved (vfs, local_source->filename, local_destination->filename);
2335 /* Make sure we send full copied size */
2336 if (progress_callback)
2337 progress_callback (source_size, source_size, progress_callback_data);
2342 static GFileMonitor*
2343 g_local_file_monitor_dir (GFile *file,
2344 GFileMonitorFlags flags,
2345 GCancellable *cancellable,
2348 GLocalFile* local_file = G_LOCAL_FILE(file);
2349 return _g_local_directory_monitor_new (local_file->filename, flags, error);
2352 static GFileMonitor*
2353 g_local_file_monitor_file (GFile *file,
2354 GFileMonitorFlags flags,
2355 GCancellable *cancellable,
2358 GLocalFile* local_file = G_LOCAL_FILE(file);
2359 return _g_local_file_monitor_new (local_file->filename, flags, error);
2363 g_local_file_file_iface_init (GFileIface *iface)
2365 iface->dup = g_local_file_dup;
2366 iface->hash = g_local_file_hash;
2367 iface->equal = g_local_file_equal;
2368 iface->is_native = g_local_file_is_native;
2369 iface->has_uri_scheme = g_local_file_has_uri_scheme;
2370 iface->get_uri_scheme = g_local_file_get_uri_scheme;
2371 iface->get_basename = g_local_file_get_basename;
2372 iface->get_path = g_local_file_get_path;
2373 iface->get_uri = g_local_file_get_uri;
2374 iface->get_parse_name = g_local_file_get_parse_name;
2375 iface->get_parent = g_local_file_get_parent;
2376 iface->prefix_matches = g_local_file_prefix_matches;
2377 iface->get_relative_path = g_local_file_get_relative_path;
2378 iface->resolve_relative_path = g_local_file_resolve_relative_path;
2379 iface->get_child_for_display_name = g_local_file_get_child_for_display_name;
2380 iface->set_display_name = g_local_file_set_display_name;
2381 iface->enumerate_children = g_local_file_enumerate_children;
2382 iface->query_info = g_local_file_query_info;
2383 iface->query_filesystem_info = g_local_file_query_filesystem_info;
2384 iface->find_enclosing_mount = g_local_file_find_enclosing_mount;
2385 iface->query_settable_attributes = g_local_file_query_settable_attributes;
2386 iface->query_writable_namespaces = g_local_file_query_writable_namespaces;
2387 iface->set_attribute = g_local_file_set_attribute;
2388 iface->set_attributes_from_info = g_local_file_set_attributes_from_info;
2389 iface->read_fn = g_local_file_read;
2390 iface->append_to = g_local_file_append_to;
2391 iface->create = g_local_file_create;
2392 iface->replace = g_local_file_replace;
2393 iface->open_readwrite = g_local_file_open_readwrite;
2394 iface->create_readwrite = g_local_file_create_readwrite;
2395 iface->replace_readwrite = g_local_file_replace_readwrite;
2396 iface->delete_file = g_local_file_delete;
2397 iface->trash = g_local_file_trash;
2398 iface->make_directory = g_local_file_make_directory;
2399 iface->make_symbolic_link = g_local_file_make_symbolic_link;
2400 iface->copy = g_local_file_copy;
2401 iface->move = g_local_file_move;
2402 iface->monitor_dir = g_local_file_monitor_dir;
2403 iface->monitor_file = g_local_file_monitor_file;
2405 iface->supports_thread_contexts = TRUE;