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, see <http://www.gnu.org/licenses/>.
18 * Author: Alexander Larsson <alexl@redhat.com>
23 #include <sys/types.h>
30 #include <glib/gstdio.h>
33 #include "gcancellable.h"
34 #include "glocalfileoutputstream.h"
35 #include "gfileinfo.h"
36 #include "glocalfileinfo.h"
40 #include "gfiledescriptorbased.h"
46 #define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
49 #define S_ISREG(m) (((m) & _S_IFMT) == _S_IFREG)
57 struct _GLocalFileOutputStreamPrivate {
59 char *original_filename;
60 char *backup_filename;
62 guint sync_on_close : 1;
68 static void g_file_descriptor_based_iface_init (GFileDescriptorBasedIface *iface);
71 #define g_local_file_output_stream_get_type _g_local_file_output_stream_get_type
73 G_DEFINE_TYPE_WITH_CODE (GLocalFileOutputStream, g_local_file_output_stream, G_TYPE_FILE_OUTPUT_STREAM,
74 G_ADD_PRIVATE (GLocalFileOutputStream)
75 G_IMPLEMENT_INTERFACE (G_TYPE_FILE_DESCRIPTOR_BASED,
76 g_file_descriptor_based_iface_init))
78 G_DEFINE_TYPE_WITH_CODE (GLocalFileOutputStream, g_local_file_output_stream, G_TYPE_FILE_OUTPUT_STREAM,
79 G_ADD_PRIVATE (GLocalFileOutputStream))
83 /* Some of the file replacement code was based on the code from gedit,
84 * relicenced to LGPL with permissions from the authors.
87 #define BACKUP_EXTENSION "~"
89 static gssize g_local_file_output_stream_write (GOutputStream *stream,
92 GCancellable *cancellable,
94 static gboolean g_local_file_output_stream_close (GOutputStream *stream,
95 GCancellable *cancellable,
97 static GFileInfo *g_local_file_output_stream_query_info (GFileOutputStream *stream,
98 const char *attributes,
99 GCancellable *cancellable,
101 static char * g_local_file_output_stream_get_etag (GFileOutputStream *stream);
102 static goffset g_local_file_output_stream_tell (GFileOutputStream *stream);
103 static gboolean g_local_file_output_stream_can_seek (GFileOutputStream *stream);
104 static gboolean g_local_file_output_stream_seek (GFileOutputStream *stream,
107 GCancellable *cancellable,
109 static gboolean g_local_file_output_stream_can_truncate (GFileOutputStream *stream);
110 static gboolean g_local_file_output_stream_truncate (GFileOutputStream *stream,
112 GCancellable *cancellable,
115 static int g_local_file_output_stream_get_fd (GFileDescriptorBased *stream);
119 g_local_file_output_stream_finalize (GObject *object)
121 GLocalFileOutputStream *file;
123 file = G_LOCAL_FILE_OUTPUT_STREAM (object);
125 g_free (file->priv->tmp_filename);
126 g_free (file->priv->original_filename);
127 g_free (file->priv->backup_filename);
128 g_free (file->priv->etag);
130 G_OBJECT_CLASS (g_local_file_output_stream_parent_class)->finalize (object);
134 g_local_file_output_stream_class_init (GLocalFileOutputStreamClass *klass)
136 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
137 GOutputStreamClass *stream_class = G_OUTPUT_STREAM_CLASS (klass);
138 GFileOutputStreamClass *file_stream_class = G_FILE_OUTPUT_STREAM_CLASS (klass);
140 gobject_class->finalize = g_local_file_output_stream_finalize;
142 stream_class->write_fn = g_local_file_output_stream_write;
143 stream_class->close_fn = g_local_file_output_stream_close;
144 file_stream_class->query_info = g_local_file_output_stream_query_info;
145 file_stream_class->get_etag = g_local_file_output_stream_get_etag;
146 file_stream_class->tell = g_local_file_output_stream_tell;
147 file_stream_class->can_seek = g_local_file_output_stream_can_seek;
148 file_stream_class->seek = g_local_file_output_stream_seek;
149 file_stream_class->can_truncate = g_local_file_output_stream_can_truncate;
150 file_stream_class->truncate_fn = g_local_file_output_stream_truncate;
155 g_file_descriptor_based_iface_init (GFileDescriptorBasedIface *iface)
157 iface->get_fd = g_local_file_output_stream_get_fd;
162 g_local_file_output_stream_init (GLocalFileOutputStream *stream)
164 stream->priv = g_local_file_output_stream_get_instance_private (stream);
165 stream->priv->do_close = TRUE;
169 g_local_file_output_stream_write (GOutputStream *stream,
172 GCancellable *cancellable,
175 GLocalFileOutputStream *file;
178 file = G_LOCAL_FILE_OUTPUT_STREAM (stream);
182 if (g_cancellable_set_error_if_cancelled (cancellable, error))
184 res = write (file->priv->fd, buffer, count);
192 g_set_error (error, G_IO_ERROR,
193 g_io_error_from_errno (errsv),
194 _("Error writing to file: %s"),
205 _g_local_file_output_stream_set_do_close (GLocalFileOutputStream *out,
208 out->priv->do_close = do_close;
212 _g_local_file_output_stream_really_close (GLocalFileOutputStream *file,
213 GCancellable *cancellable,
216 GLocalFileStat final_stat;
219 if (file->priv->sync_on_close &&
220 fsync (file->priv->fd) != 0)
224 g_set_error (error, G_IO_ERROR,
225 g_io_error_from_errno (errsv),
226 _("Error writing to file: %s"),
234 /* Must close before renaming on Windows, so just do the close first
235 * in all cases for now.
237 if (_fstati64 (file->priv->fd, &final_stat) == 0)
238 file->priv->etag = _g_local_file_info_create_etag (&final_stat);
240 if (!g_close (file->priv->fd, NULL))
244 g_set_error (error, G_IO_ERROR,
245 g_io_error_from_errno (errsv),
246 _("Error closing file: %s"),
253 if (file->priv->tmp_filename)
255 /* We need to move the temp file to its final place,
256 * and possibly create the backup file
259 if (file->priv->backup_filename)
261 if (g_cancellable_set_error_if_cancelled (cancellable, error))
265 /* create original -> backup link, the original is then renamed over */
266 if (g_unlink (file->priv->backup_filename) != 0 &&
271 g_set_error (error, G_IO_ERROR,
272 G_IO_ERROR_CANT_CREATE_BACKUP,
273 _("Error removing old backup link: %s"),
278 if (link (file->priv->original_filename, file->priv->backup_filename) != 0)
280 /* link failed or is not supported, try rename */
281 if (g_rename (file->priv->original_filename, file->priv->backup_filename) != 0)
285 g_set_error (error, G_IO_ERROR,
286 G_IO_ERROR_CANT_CREATE_BACKUP,
287 _("Error creating backup copy: %s"),
293 /* If link not supported, just rename... */
294 if (g_rename (file->priv->original_filename, file->priv->backup_filename) != 0)
298 g_set_error (error, G_IO_ERROR,
299 G_IO_ERROR_CANT_CREATE_BACKUP,
300 _("Error creating backup copy: %s"),
308 if (g_cancellable_set_error_if_cancelled (cancellable, error))
311 /* tmp -> original */
312 if (g_rename (file->priv->tmp_filename, file->priv->original_filename) != 0)
316 g_set_error (error, G_IO_ERROR,
317 g_io_error_from_errno (errsv),
318 _("Error renaming temporary file: %s"),
323 g_clear_pointer (&file->priv->tmp_filename, g_free);
326 if (g_cancellable_set_error_if_cancelled (cancellable, error))
329 #ifndef G_OS_WIN32 /* Already did the fstat() and close() above on Win32 */
331 if (fstat (file->priv->fd, &final_stat) == 0)
332 file->priv->etag = _g_local_file_info_create_etag (&final_stat);
334 if (!g_close (file->priv->fd, NULL))
338 g_set_error (error, G_IO_ERROR,
339 g_io_error_from_errno (errsv),
340 _("Error closing file: %s"),
351 /* A simple try to close the fd in case we fail before the actual close */
352 (void) g_close (file->priv->fd, NULL);
354 if (file->priv->tmp_filename)
355 g_unlink (file->priv->tmp_filename);
362 g_local_file_output_stream_close (GOutputStream *stream,
363 GCancellable *cancellable,
366 GLocalFileOutputStream *file;
368 file = G_LOCAL_FILE_OUTPUT_STREAM (stream);
370 if (file->priv->do_close)
371 return _g_local_file_output_stream_really_close (file,
378 g_local_file_output_stream_get_etag (GFileOutputStream *stream)
380 GLocalFileOutputStream *file;
382 file = G_LOCAL_FILE_OUTPUT_STREAM (stream);
384 return g_strdup (file->priv->etag);
388 g_local_file_output_stream_tell (GFileOutputStream *stream)
390 GLocalFileOutputStream *file;
393 file = G_LOCAL_FILE_OUTPUT_STREAM (stream);
395 pos = lseek (file->priv->fd, 0, SEEK_CUR);
397 if (pos == (off_t)-1)
404 g_local_file_output_stream_can_seek (GFileOutputStream *stream)
406 GLocalFileOutputStream *file;
409 file = G_LOCAL_FILE_OUTPUT_STREAM (stream);
411 pos = lseek (file->priv->fd, 0, SEEK_CUR);
413 if (pos == (off_t)-1 && errno == ESPIPE)
420 seek_type_to_lseek (GSeekType type)
437 g_local_file_output_stream_seek (GFileOutputStream *stream,
440 GCancellable *cancellable,
443 GLocalFileOutputStream *file;
446 file = G_LOCAL_FILE_OUTPUT_STREAM (stream);
448 pos = lseek (file->priv->fd, offset, seek_type_to_lseek (type));
450 if (pos == (off_t)-1)
454 g_set_error (error, G_IO_ERROR,
455 g_io_error_from_errno (errsv),
456 _("Error seeking in file: %s"),
465 g_local_file_output_stream_can_truncate (GFileOutputStream *stream)
467 /* We can't truncate pipes and stuff where we can't seek */
468 return g_local_file_output_stream_can_seek (stream);
472 g_local_file_output_stream_truncate (GFileOutputStream *stream,
474 GCancellable *cancellable,
477 GLocalFileOutputStream *file;
480 file = G_LOCAL_FILE_OUTPUT_STREAM (stream);
484 res = g_win32_ftruncate (file->priv->fd, size);
486 res = ftruncate (file->priv->fd, size);
495 if (g_cancellable_set_error_if_cancelled (cancellable, error))
500 g_set_error (error, G_IO_ERROR,
501 g_io_error_from_errno (errsv),
502 _("Error truncating file: %s"),
512 g_local_file_output_stream_query_info (GFileOutputStream *stream,
513 const char *attributes,
514 GCancellable *cancellable,
517 GLocalFileOutputStream *file;
519 file = G_LOCAL_FILE_OUTPUT_STREAM (stream);
521 if (g_cancellable_set_error_if_cancelled (cancellable, error))
524 return _g_local_file_info_get_from_fd (file->priv->fd,
530 _g_local_file_output_stream_new (int fd)
532 GLocalFileOutputStream *stream;
534 stream = g_object_new (G_TYPE_LOCAL_FILE_OUTPUT_STREAM, NULL);
535 stream->priv->fd = fd;
536 return G_FILE_OUTPUT_STREAM (stream);
540 set_error_from_open_errno (const char *filename,
546 /* This must be an invalid filename, on e.g. FAT */
547 g_set_error_literal (error, G_IO_ERROR,
548 G_IO_ERROR_INVALID_FILENAME,
549 _("Invalid filename"));
552 char *display_name = g_filename_display_name (filename);
553 g_set_error (error, G_IO_ERROR,
554 g_io_error_from_errno (errsv),
555 _("Error opening file '%s': %s"),
556 display_name, g_strerror (errsv));
557 g_free (display_name);
561 static GFileOutputStream *
562 output_stream_open (const char *filename,
565 GCancellable *cancellable,
568 GLocalFileOutputStream *stream;
571 fd = g_open (filename, open_flags, mode);
574 set_error_from_open_errno (filename, error);
578 stream = g_object_new (G_TYPE_LOCAL_FILE_OUTPUT_STREAM, NULL);
579 stream->priv->fd = fd;
580 return G_FILE_OUTPUT_STREAM (stream);
584 _g_local_file_output_stream_open (const char *filename,
586 GCancellable *cancellable,
591 if (g_cancellable_set_error_if_cancelled (cancellable, error))
594 open_flags = O_BINARY;
596 open_flags |= O_RDWR;
598 open_flags |= O_WRONLY;
600 return output_stream_open (filename, open_flags, 0666, cancellable, error);
604 mode_from_flags_or_info (GFileCreateFlags flags,
605 GFileInfo *reference_info)
607 if (flags & G_FILE_CREATE_PRIVATE)
609 else if (reference_info && g_file_info_has_attribute (reference_info, "unix::mode"))
610 return g_file_info_get_attribute_uint32 (reference_info, "unix::mode") & (~S_IFMT);
616 _g_local_file_output_stream_create (const char *filename,
618 GFileCreateFlags flags,
619 GFileInfo *reference_info,
620 GCancellable *cancellable,
626 if (g_cancellable_set_error_if_cancelled (cancellable, error))
629 mode = mode_from_flags_or_info (flags, reference_info);
631 open_flags = O_CREAT | O_EXCL | O_BINARY;
633 open_flags |= O_RDWR;
635 open_flags |= O_WRONLY;
637 return output_stream_open (filename, open_flags, mode, cancellable, error);
641 _g_local_file_output_stream_append (const char *filename,
642 GFileCreateFlags flags,
643 GCancellable *cancellable,
648 if (g_cancellable_set_error_if_cancelled (cancellable, error))
651 if (flags & G_FILE_CREATE_PRIVATE)
656 return output_stream_open (filename, O_CREAT | O_APPEND | O_WRONLY | O_BINARY, mode,
661 create_backup_filename (const char *filename)
663 return g_strconcat (filename, BACKUP_EXTENSION, NULL);
666 #define BUFSIZE 8192 /* size of normal write buffer */
669 copy_file_data (gint sfd,
675 const gchar *write_buffer;
677 gssize bytes_to_write;
678 gssize bytes_written;
680 buffer = g_malloc (BUFSIZE);
684 bytes_read = read (sfd, buffer, BUFSIZE);
685 if (bytes_read == -1)
692 g_set_error (error, G_IO_ERROR,
693 g_io_error_from_errno (errsv),
694 _("Error reading from file: %s"),
700 bytes_to_write = bytes_read;
701 write_buffer = buffer;
705 bytes_written = write (dfd, write_buffer, bytes_to_write);
706 if (bytes_written == -1)
713 g_set_error (error, G_IO_ERROR,
714 g_io_error_from_errno (errsv),
715 _("Error writing to file: %s"),
721 bytes_to_write -= bytes_written;
722 write_buffer += bytes_written;
724 while (bytes_to_write > 0);
726 } while ((bytes_read != 0) && (ret == TRUE));
734 handle_overwrite_open (const char *filename,
737 gboolean create_backup,
738 char **temp_filename,
739 GFileCreateFlags flags,
740 GFileInfo *reference_info,
741 GCancellable *cancellable,
745 GLocalFileStat original_stat;
752 mode = mode_from_flags_or_info (flags, reference_info);
754 /* We only need read access to the original file if we are creating a backup.
755 * We also add O_CREATE to avoid a race if the file was just removed */
756 if (create_backup || readable)
757 open_flags = O_RDWR | O_CREAT | O_BINARY;
759 open_flags = O_WRONLY | O_CREAT | O_BINARY;
761 /* Some systems have O_NOFOLLOW, which lets us avoid some races
762 * when finding out if the file we opened was a symlink */
765 fd = g_open (filename, open_flags | O_NOFOLLOW, mode);
766 if (fd == -1 && errno == ELOOP)
768 /* Could be a symlink, or it could be a regular ELOOP error,
769 * but then the next open will fail too. */
771 fd = g_open (filename, open_flags, mode);
774 fd = g_open (filename, open_flags, mode);
775 /* This is racy, but we do it as soon as possible to minimize the race */
776 is_symlink = g_file_test (filename, G_FILE_TEST_IS_SYMLINK);
782 char *display_name = g_filename_display_name (filename);
783 g_set_error (error, G_IO_ERROR,
784 g_io_error_from_errno (errsv),
785 _("Error opening file '%s': %s"),
786 display_name, g_strerror (errsv));
787 g_free (display_name);
792 res = _fstati64 (fd, &original_stat);
794 res = fstat (fd, &original_stat);
800 char *display_name = g_filename_display_name (filename);
801 g_set_error (error, G_IO_ERROR,
802 g_io_error_from_errno (errsv),
803 _("Error when getting information for file '%s': %s"),
804 display_name, g_strerror (errsv));
805 g_free (display_name);
809 /* not a regular file */
810 if (!S_ISREG (original_stat.st_mode))
812 if (S_ISDIR (original_stat.st_mode))
813 g_set_error_literal (error,
815 G_IO_ERROR_IS_DIRECTORY,
816 _("Target file is a directory"));
818 g_set_error_literal (error,
820 G_IO_ERROR_NOT_REGULAR_FILE,
821 _("Target file is not a regular file"));
827 current_etag = _g_local_file_info_create_etag (&original_stat);
828 if (strcmp (etag, current_etag) != 0)
830 g_set_error_literal (error,
832 G_IO_ERROR_WRONG_ETAG,
833 _("The file was externally modified"));
834 g_free (current_etag);
837 g_free (current_etag);
840 /* We use two backup strategies.
841 * The first one (which is faster) consist in saving to a
842 * tmp file then rename the original file to the backup and the
843 * tmp file to the original name. This is fast but doesn't work
844 * when the file is a link (hard or symbolic) or when we can't
845 * write to the current dir or can't set the permissions on the
847 * The second strategy consist simply in copying the old file
848 * to a backup file and rewrite the contents of the file.
851 if ((flags & G_FILE_CREATE_REPLACE_DESTINATION) ||
852 (!(original_stat.st_nlink > 1) && !is_symlink))
854 char *dirname, *tmp_filename;
857 dirname = g_path_get_dirname (filename);
858 tmp_filename = g_build_filename (dirname, ".goutputstream-XXXXXX", NULL);
861 tmpfd = g_mkstemp_full (tmp_filename, (readable ? O_RDWR : O_WRONLY) | O_BINARY, mode);
864 g_free (tmp_filename);
865 goto fallback_strategy;
868 /* try to keep permissions (unless replacing) */
870 if ( ! (flags & G_FILE_CREATE_REPLACE_DESTINATION) &&
873 fchown (tmpfd, original_stat.st_uid, original_stat.st_gid) == -1 ||
876 fchmod (tmpfd, original_stat.st_mode) == -1 ||
882 GLocalFileStat tmp_statbuf;
886 tres = _fstati64 (tmpfd, &tmp_statbuf);
888 tres = fstat (tmpfd, &tmp_statbuf);
890 /* Check that we really needed to change something */
892 original_stat.st_uid != tmp_statbuf.st_uid ||
893 original_stat.st_gid != tmp_statbuf.st_gid ||
894 original_stat.st_mode != tmp_statbuf.st_mode)
896 (void) g_close (tmpfd, NULL);
897 g_unlink (tmp_filename);
898 g_free (tmp_filename);
899 goto fallback_strategy;
903 (void) g_close (fd, NULL);
904 *temp_filename = tmp_filename;
912 #if defined(HAVE_FCHOWN) && defined(HAVE_FCHMOD)
913 struct stat tmp_statbuf;
915 char *backup_filename;
918 backup_filename = create_backup_filename (filename);
920 if (g_unlink (backup_filename) == -1 && errno != ENOENT)
922 g_set_error_literal (error,
924 G_IO_ERROR_CANT_CREATE_BACKUP,
925 _("Backup file creation failed"));
926 g_free (backup_filename);
930 bfd = g_open (backup_filename,
931 O_WRONLY | O_CREAT | O_EXCL | O_BINARY,
932 original_stat.st_mode & 0777);
936 g_set_error_literal (error,
938 G_IO_ERROR_CANT_CREATE_BACKUP,
939 _("Backup file creation failed"));
940 g_free (backup_filename);
944 /* If needed, Try to set the group of the backup same as the
945 * original file. If this fails, set the protection
946 * bits for the group same as the protection bits for
948 #if defined(HAVE_FCHOWN) && defined(HAVE_FCHMOD)
949 if (fstat (bfd, &tmp_statbuf) != 0)
951 g_set_error_literal (error,
953 G_IO_ERROR_CANT_CREATE_BACKUP,
954 _("Backup file creation failed"));
955 g_unlink (backup_filename);
956 g_free (backup_filename);
960 if ((original_stat.st_gid != tmp_statbuf.st_gid) &&
961 fchown (bfd, (uid_t) -1, original_stat.st_gid) != 0)
964 (original_stat.st_mode & 0707) |
965 ((original_stat.st_mode & 07) << 3)) != 0)
967 g_set_error_literal (error,
969 G_IO_ERROR_CANT_CREATE_BACKUP,
970 _("Backup file creation failed"));
971 g_unlink (backup_filename);
972 (void) g_close (bfd, NULL);
973 g_free (backup_filename);
979 if (!copy_file_data (fd, bfd, NULL))
981 g_set_error_literal (error,
983 G_IO_ERROR_CANT_CREATE_BACKUP,
984 _("Backup file creation failed"));
985 g_unlink (backup_filename);
986 (void) g_close (bfd, NULL);
987 g_free (backup_filename);
992 (void) g_close (bfd, NULL);
993 g_free (backup_filename);
995 /* Seek back to the start of the file after the backup copy */
996 if (lseek (fd, 0, SEEK_SET) == -1)
1000 g_set_error (error, G_IO_ERROR,
1001 g_io_error_from_errno (errsv),
1002 _("Error seeking in file: %s"),
1003 g_strerror (errsv));
1008 if (flags & G_FILE_CREATE_REPLACE_DESTINATION)
1010 (void) g_close (fd, NULL);
1012 if (g_unlink (filename) != 0)
1016 g_set_error (error, G_IO_ERROR,
1017 g_io_error_from_errno (errsv),
1018 _("Error removing old file: %s"),
1019 g_strerror (errsv));
1024 open_flags = O_RDWR | O_CREAT | O_BINARY;
1026 open_flags = O_WRONLY | O_CREAT | O_BINARY;
1027 fd = g_open (filename, open_flags, mode);
1031 char *display_name = g_filename_display_name (filename);
1032 g_set_error (error, G_IO_ERROR,
1033 g_io_error_from_errno (errsv),
1034 _("Error opening file '%s': %s"),
1035 display_name, g_strerror (errsv));
1036 g_free (display_name);
1042 /* Truncate the file at the start */
1044 if (g_win32_ftruncate (fd, 0) == -1)
1046 if (ftruncate (fd, 0) == -1)
1051 g_set_error (error, G_IO_ERROR,
1052 g_io_error_from_errno (errsv),
1053 _("Error truncating file: %s"),
1054 g_strerror (errsv));
1062 (void) g_close (fd, NULL);
1068 _g_local_file_output_stream_replace (const char *filename,
1071 gboolean create_backup,
1072 GFileCreateFlags flags,
1073 GFileInfo *reference_info,
1074 GCancellable *cancellable,
1077 GLocalFileOutputStream *stream;
1081 gboolean sync_on_close;
1084 if (g_cancellable_set_error_if_cancelled (cancellable, error))
1089 mode = mode_from_flags_or_info (flags, reference_info);
1090 sync_on_close = FALSE;
1092 /* If the file doesn't exist, create it */
1093 open_flags = O_CREAT | O_EXCL | O_BINARY;
1095 open_flags |= O_RDWR;
1097 open_flags |= O_WRONLY;
1098 fd = g_open (filename, open_flags, mode);
1100 if (fd == -1 && errno == EEXIST)
1102 /* The file already exists */
1103 fd = handle_overwrite_open (filename, readable, etag,
1104 create_backup, &temp_file,
1105 flags, reference_info,
1106 cancellable, error);
1110 /* If the final destination exists, we want to sync the newly written
1111 * file to ensure the data is on disk when we rename over the destination.
1112 * otherwise if we get a system crash we can lose both the new and the
1113 * old file on some filesystems. (I.E. those that don't guarantee the
1114 * data is written to the disk before the metadata.)
1116 sync_on_close = TRUE;
1120 set_error_from_open_errno (filename, error);
1125 stream = g_object_new (G_TYPE_LOCAL_FILE_OUTPUT_STREAM, NULL);
1126 stream->priv->fd = fd;
1127 stream->priv->sync_on_close = sync_on_close;
1128 stream->priv->tmp_filename = temp_file;
1130 stream->priv->backup_filename = create_backup_filename (filename);
1131 stream->priv->original_filename = g_strdup (filename);
1133 return G_FILE_OUTPUT_STREAM (stream);
1137 _g_local_file_output_stream_get_fd (GLocalFileOutputStream *stream)
1139 g_return_val_if_fail (G_IS_LOCAL_FILE_OUTPUT_STREAM (stream), -1);
1140 return stream->priv->fd;
1145 g_local_file_output_stream_get_fd (GFileDescriptorBased *fd_based)
1147 GLocalFileOutputStream *stream = G_LOCAL_FILE_OUTPUT_STREAM (fd_based);
1148 return _g_local_file_output_stream_get_fd (stream);