1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
3 /* GIO - GLib Input, Output and Streaming Library
5 * Copyright (C) 2006-2007 Red Hat, Inc.
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General
18 * Public License along with this library; if not, write to the
19 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
20 * Boston, MA 02111-1307, USA.
22 * Author: Alexander Larsson <alexl@redhat.com>
27 #include <sys/types.h>
33 #include "gioscheduler.h"
34 #include "glocalfile.h"
35 #include "gsimpleasyncresult.h"
36 #include "gfileattribute-priv.h"
37 #include "gpollfilemonitor.h"
39 #include "gfileinputstream.h"
40 #include "gfileoutputstream.h"
41 #include "gcancellable.h"
42 #include "gasyncresult.h"
50 * @short_description: File and Directory Handling
52 * @see_also: #GFileInfo, #GFileEnumerator
54 * #GFile is a high level abstraction for manipulating files on a
55 * virtual file system. #GFile<!-- -->s are lightweight, immutable
56 * objects that do no I/O upon creation. It is necessary to understand that
57 * #GFile objects do not represent files, merely an identifier for a file. All
58 * file content I/O is implemented as streaming operations (see #GInputStream and
61 * To construct a #GFile, you can use:
62 * g_file_new_for_path() if you have a path.
63 * g_file_new_for_uri() if you have a URI.
64 * g_file_new_for_commandline_arg() for a command line argument.
65 * g_file_parse_name() from a utf8 string gotten from g_file_get_parse_name().
67 * One way to think of a #GFile is as an abstraction of a pathname. For normal
68 * files the system pathname is what is stored internally, but as #GFile<!-- -->s
69 * are extensible it could also be something else that corresponds to a pathname
70 * in a userspace implementation of a filesystem.
72 * #GFile<!-- -->s make up hierarchies of directories and files that correspond to the
73 * files on a filesystem. You can move through the file system with #GFile using
74 * g_file_get_parent() to get an identifier for the parent directory, g_file_get_child()
75 * to get a child within a directory, g_file_resolve_relative_path() to resolve a relative
76 * path between two #GFile<!-- -->s. There can be multiple hierarchies, so you may not
77 * end up at the same root if you repeatedly call g_file_get_parent() on two different
80 * All #GFile<!-- -->s have a basename (get with g_file_get_basename()). These names
81 * are byte strings that are used to identify the file on the filesystem (relative to
82 * its parent directory) and there is no guarantees that they have any particular charset
83 * encoding or even make any sense at all. If you want to use filenames in a user
84 * interface you should use the display name that you can get by requesting the
85 * %G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME attribute with g_file_query_info().
86 * This is guaranteed to be in utf8 and can be used in a user interface. But always
87 * store the real basename or the #GFile to use to actually access the file, because
88 * there is no way to go from a display name to the actual name.
90 * Using #GFile as an identifier has the same weaknesses as using a path in that
91 * there may be multiple aliases for the same file. For instance, hard or
92 * soft links may cause two different #GFile<!-- -->s to refer to the same file.
93 * Other possible causes for aliases are: case insensitive filesystems, short
94 * and long names on Fat/NTFS, or bind mounts in Linux. If you want to check if
95 * two #GFile<!-- -->s point to the same file you can query for the
96 * %G_FILE_ATTRIBUTE_ID_FILE attribute. Note that #GFile does some trivial
97 * canonicalization of pathnames passed in, so that trivial differences in the
98 * path string used at creation (duplicated slashes, slash at end of path, "."
99 * or ".." path segments, etc) does not create different #GFile<!-- -->s.
101 * Many #GFile operations have both synchronous and asynchronous versions
102 * to suit your application. Asynchronous versions of synchronous functions
103 * simply have _async() appended to their function names. The asynchronous
104 * I/O functions call a #GAsyncReadyCallback which is then used to finalize
105 * the operation, producing a GAsyncResult which is then passed to the
106 * function's matching _finish() operation.
108 * Some #GFile operations do not have synchronous analogs, as they may
109 * take a very long time to finish, and blocking may leave an application
110 * unusable. Notable cases include:
111 * g_file_mount_mountable() to mount a mountable file.
112 * g_file_unmount_mountable() to unmount a mountable file.
113 * g_file_eject_mountable() to eject a mountable file.
115 * <para id="gfile-etag"><indexterm><primary>entity tag</primary></indexterm>
116 * One notable feature of #GFile<!-- -->s are entity tags, or "etags" for
117 * short. Entity tags are somewhat like a more abstract version of the
118 * traditional mtime, and can be used to quickly determine if the file has
119 * been modified from the version on the file system. See the HTTP 1.1
120 * <ulink url="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html">specification</ulink>
121 * for HTTP Etag headers, which are a very similar concept.
125 static void g_file_base_init (gpointer g_class);
126 static void g_file_class_init (gpointer g_class,
127 gpointer class_data);
129 static void g_file_real_query_info_async (GFile *file,
130 const char *attributes,
131 GFileQueryInfoFlags flags,
133 GCancellable *cancellable,
134 GAsyncReadyCallback callback,
136 static GFileInfo * g_file_real_query_info_finish (GFile *file,
139 static void g_file_real_query_filesystem_info_async (GFile *file,
140 const char *attributes,
142 GCancellable *cancellable,
143 GAsyncReadyCallback callback,
145 static GFileInfo * g_file_real_query_filesystem_info_finish (GFile *file,
148 static void g_file_real_enumerate_children_async (GFile *file,
149 const char *attributes,
150 GFileQueryInfoFlags flags,
152 GCancellable *cancellable,
153 GAsyncReadyCallback callback,
155 static GFileEnumerator * g_file_real_enumerate_children_finish (GFile *file,
158 static void g_file_real_read_async (GFile *file,
160 GCancellable *cancellable,
161 GAsyncReadyCallback callback,
163 static GFileInputStream * g_file_real_read_finish (GFile *file,
166 static void g_file_real_append_to_async (GFile *file,
167 GFileCreateFlags flags,
169 GCancellable *cancellable,
170 GAsyncReadyCallback callback,
172 static GFileOutputStream *g_file_real_append_to_finish (GFile *file,
175 static void g_file_real_create_async (GFile *file,
176 GFileCreateFlags flags,
178 GCancellable *cancellable,
179 GAsyncReadyCallback callback,
181 static GFileOutputStream *g_file_real_create_finish (GFile *file,
184 static void g_file_real_replace_async (GFile *file,
186 gboolean make_backup,
187 GFileCreateFlags flags,
189 GCancellable *cancellable,
190 GAsyncReadyCallback callback,
192 static GFileOutputStream *g_file_real_replace_finish (GFile *file,
195 static gboolean g_file_real_set_attributes_from_info (GFile *file,
197 GFileQueryInfoFlags flags,
198 GCancellable *cancellable,
200 static void g_file_real_set_display_name_async (GFile *file,
201 const char *display_name,
203 GCancellable *cancellable,
204 GAsyncReadyCallback callback,
206 static GFile * g_file_real_set_display_name_finish (GFile *file,
209 static void g_file_real_set_attributes_async (GFile *file,
211 GFileQueryInfoFlags flags,
213 GCancellable *cancellable,
214 GAsyncReadyCallback callback,
216 static gboolean g_file_real_set_attributes_finish (GFile *file,
220 static void g_file_real_find_enclosing_mount_async (GFile *file,
222 GCancellable *cancellable,
223 GAsyncReadyCallback callback,
225 static GMount * g_file_real_find_enclosing_mount_finish (GFile *file,
228 static void g_file_real_copy_async (GFile *source,
230 GFileCopyFlags flags,
232 GCancellable *cancellable,
233 GFileProgressCallback progress_callback,
234 gpointer progress_callback_data,
235 GAsyncReadyCallback callback,
237 static gboolean g_file_real_copy_finish (GFile *file,
242 g_file_get_type (void)
244 static volatile gsize g_define_type_id__volatile = 0;
246 if (g_once_init_enter (&g_define_type_id__volatile))
248 const GTypeInfo file_info =
250 sizeof (GFileIface), /* class_size */
251 g_file_base_init, /* base_init */
252 NULL, /* base_finalize */
254 NULL, /* class_finalize */
255 NULL, /* class_data */
260 GType g_define_type_id =
261 g_type_register_static (G_TYPE_INTERFACE, I_("GFile"),
264 g_type_interface_add_prerequisite (g_define_type_id, G_TYPE_OBJECT);
266 g_once_init_leave (&g_define_type_id__volatile, g_define_type_id);
269 return g_define_type_id__volatile;
273 g_file_class_init (gpointer g_class,
276 GFileIface *iface = g_class;
278 iface->enumerate_children_async = g_file_real_enumerate_children_async;
279 iface->enumerate_children_finish = g_file_real_enumerate_children_finish;
280 iface->set_display_name_async = g_file_real_set_display_name_async;
281 iface->set_display_name_finish = g_file_real_set_display_name_finish;
282 iface->query_info_async = g_file_real_query_info_async;
283 iface->query_info_finish = g_file_real_query_info_finish;
284 iface->query_filesystem_info_async = g_file_real_query_filesystem_info_async;
285 iface->query_filesystem_info_finish = g_file_real_query_filesystem_info_finish;
286 iface->set_attributes_async = g_file_real_set_attributes_async;
287 iface->set_attributes_finish = g_file_real_set_attributes_finish;
288 iface->read_async = g_file_real_read_async;
289 iface->read_finish = g_file_real_read_finish;
290 iface->append_to_async = g_file_real_append_to_async;
291 iface->append_to_finish = g_file_real_append_to_finish;
292 iface->create_async = g_file_real_create_async;
293 iface->create_finish = g_file_real_create_finish;
294 iface->replace_async = g_file_real_replace_async;
295 iface->replace_finish = g_file_real_replace_finish;
296 iface->find_enclosing_mount_async = g_file_real_find_enclosing_mount_async;
297 iface->find_enclosing_mount_finish = g_file_real_find_enclosing_mount_finish;
298 iface->set_attributes_from_info = g_file_real_set_attributes_from_info;
299 iface->copy_async = g_file_real_copy_async;
300 iface->copy_finish = g_file_real_copy_finish;
304 g_file_base_init (gpointer g_class)
311 * @file: input #GFile.
313 * Checks to see if a file is native to the platform.
315 * A native file s one expressed in the platform-native filename format,
316 * e.g. "C:\Windows" or "/usr/bin/". This does not mean the file is local,
317 * as it might be on a locally mounted remote filesystem.
319 * On some systems non-native files may be available using
320 * the native filesystem via a userspace filesystem (FUSE), in
321 * these cases this call will return %FALSE, but g_file_get_path()
322 * will still return a native path.
324 * This call does no blocking i/o.
326 * Returns: %TRUE if file is native.
329 g_file_is_native (GFile *file)
333 g_return_val_if_fail (G_IS_FILE (file), FALSE);
335 iface = G_FILE_GET_IFACE (file);
337 return (* iface->is_native) (file);
342 * g_file_has_uri_scheme:
343 * @file: input #GFile.
344 * @uri_scheme: a string containing a URI scheme.
346 * Checks to see if a #GFile has a given URI scheme.
348 * This call does no blocking i/o.
350 * Returns: %TRUE if #GFile's backend supports the
351 * given URI scheme, %FALSE if URI scheme is %NULL,
352 * not supported, or #GFile is invalid.
355 g_file_has_uri_scheme (GFile *file,
356 const char *uri_scheme)
360 g_return_val_if_fail (G_IS_FILE (file), FALSE);
361 g_return_val_if_fail (uri_scheme != NULL, FALSE);
363 iface = G_FILE_GET_IFACE (file);
365 return (* iface->has_uri_scheme) (file, uri_scheme);
370 * g_file_get_uri_scheme:
371 * @file: input #GFile.
373 * Gets the URI scheme for a #GFile.
374 * RFC 3986 decodes the scheme as:
376 * URI = scheme ":" hier-part [ "?" query ] [ "#" fragment ]
378 * Common schemes include "file", "http", "ftp", etc.
380 * This call does no blocking i/o.
382 * Returns: a string containing the URI scheme for the given
383 * #GFile. The returned string should be freed with g_free()
384 * when no longer needed.
387 g_file_get_uri_scheme (GFile *file)
391 g_return_val_if_fail (G_IS_FILE (file), NULL);
393 iface = G_FILE_GET_IFACE (file);
395 return (* iface->get_uri_scheme) (file);
400 * g_file_get_basename:
401 * @file: input #GFile.
403 * Gets the base name (the last component of the path) for a given #GFile.
405 * If called for the top level of a system (such as the filesystem root
406 * or a uri like sftp://host/) it will return a single directory separator
407 * (and on Windows, possibly a drive letter).
409 * The base name is a byte string (*not* UTF-8). It has no defined encoding
410 * or rules other than it may not contain zero bytes. If you want to use
411 * filenames in a user interface you should use the display name that you
412 * can get by requesting the %G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME
413 * attribute with g_file_query_info().
415 * This call does no blocking i/o.
417 * Returns: string containing the #GFile's base name, or %NULL
418 * if given #GFile is invalid. The returned string should be
419 * freed with g_free() when no longer needed.
422 g_file_get_basename (GFile *file)
426 g_return_val_if_fail (G_IS_FILE (file), NULL);
428 iface = G_FILE_GET_IFACE (file);
430 return (* iface->get_basename) (file);
435 * @file: input #GFile.
437 * Gets the local pathname for #GFile, if one exists.
439 * This call does no blocking i/o.
441 * Returns: string containing the #GFile's path, or %NULL if
442 * no such path exists. The returned string should be
443 * freed with g_free() when no longer needed.
446 g_file_get_path (GFile *file)
450 g_return_val_if_fail (G_IS_FILE (file), NULL);
452 iface = G_FILE_GET_IFACE (file);
454 return (* iface->get_path) (file);
459 * @file: input #GFile.
461 * Gets the URI for the @file.
463 * This call does no blocking i/o.
465 * Returns: a string containing the #GFile's URI.
466 * The returned string should be freed with g_free() when no longer needed.
469 g_file_get_uri (GFile *file)
473 g_return_val_if_fail (G_IS_FILE (file), NULL);
475 iface = G_FILE_GET_IFACE (file);
477 return (* iface->get_uri) (file);
481 * g_file_get_parse_name:
482 * @file: input #GFile.
484 * Gets the parse name of the @file.
485 * A parse name is a UTF-8 string that describes the
486 * file such that one can get the #GFile back using
487 * g_file_parse_name().
489 * This is generally used to show the #GFile as a nice
490 * full-pathname kind of string in a user interface,
491 * like in a location entry.
493 * For local files with names that can safely be converted
494 * to UTF8 the pathname is used, otherwise the IRI is used
495 * (a form of URI that allows UTF8 characters unescaped).
497 * This call does no blocking i/o.
499 * Returns: a string containing the #GFile's parse name. The returned
500 * string should be freed with g_free() when no longer needed.
503 g_file_get_parse_name (GFile *file)
507 g_return_val_if_fail (G_IS_FILE (file), NULL);
509 iface = G_FILE_GET_IFACE (file);
511 return (* iface->get_parse_name) (file);
516 * @file: input #GFile.
518 * Duplicates a #GFile handle. This operation does not duplicate
519 * the actual file or directory represented by the #GFile; see
520 * g_file_copy() if attempting to copy a file.
522 * This call does no blocking i/o.
524 * Returns: a new #GFile that is a duplicate of the given #GFile.
527 g_file_dup (GFile *file)
531 g_return_val_if_fail (G_IS_FILE (file), NULL);
533 iface = G_FILE_GET_IFACE (file);
535 return (* iface->dup) (file);
540 * @file: #gconstpointer to a #GFile.
542 * Creates a hash value for a #GFile.
544 * This call does no blocking i/o.
546 * Returns: 0 if @file is not a valid #GFile, otherwise an
547 * integer that can be used as hash value for the #GFile.
548 * This function is intended for easily hashing a #GFile to
549 * add to a #GHashTable or similar data structure.
552 g_file_hash (gconstpointer file)
556 g_return_val_if_fail (G_IS_FILE (file), 0);
558 iface = G_FILE_GET_IFACE (file);
560 return (* iface->hash) ((GFile *)file);
565 * @file1: the first #GFile.
566 * @file2: the second #GFile.
568 * Checks equality of two given #GFile<!-- -->s. Note that two
569 * #GFile<!-- -->s that differ can still refer to the same
570 * file on the filesystem due to various forms of filename
573 * This call does no blocking i/o.
575 * Returns: %TRUE if @file1 and @file2 are equal.
576 * %FALSE if either is not a #GFile.
579 g_file_equal (GFile *file1,
584 g_return_val_if_fail (G_IS_FILE (file1), FALSE);
585 g_return_val_if_fail (G_IS_FILE (file2), FALSE);
587 if (G_TYPE_FROM_INSTANCE (file1) != G_TYPE_FROM_INSTANCE (file2))
590 iface = G_FILE_GET_IFACE (file1);
592 return (* iface->equal) (file1, file2);
598 * @file: input #GFile.
600 * Gets the parent directory for the @file.
601 * If the @file represents the root directory of the
602 * file system, then %NULL will be returned.
604 * This call does no blocking i/o.
606 * Returns: a #GFile structure to the parent of the given
607 * #GFile or %NULL if there is no parent.
608 * Free the returned object with g_object_unref().
611 g_file_get_parent (GFile *file)
615 g_return_val_if_fail (G_IS_FILE (file), NULL);
617 iface = G_FILE_GET_IFACE (file);
619 return (* iface->get_parent) (file);
624 * @file: input #GFile.
625 * @name: string containing the child's basename.
627 * Gets a child of @file with basename equal to @name.
629 * Note that the file with that specific name might not exist, but
630 * you can still have a #GFile that points to it. You can use this
631 * for instance to create that file.
633 * This call does no blocking i/o.
635 * Returns: a #GFile to a child specified by @name.
636 * Free the returned object with g_object_unref().
639 g_file_get_child (GFile *file,
642 g_return_val_if_fail (G_IS_FILE (file), NULL);
643 g_return_val_if_fail (name != NULL, NULL);
645 return g_file_resolve_relative_path (file, name);
649 * g_file_get_child_for_display_name:
650 * @file: input #GFile.
651 * @display_name: string to a possible child.
654 * Gets the child of @file for a given @display_name (i.e. a UTF8
655 * version of the name). If this function fails, it returns %NULL and @error will be
656 * set. This is very useful when constructing a GFile for a new file
657 * and the user entered the filename in the user interface, for instance
658 * when you select a directory and type a filename in the file selector.
660 * This call does no blocking i/o.
662 * Returns: a #GFile to the specified child, or
663 * %NULL if the display name couldn't be converted.
664 * Free the returned object with g_object_unref().
667 g_file_get_child_for_display_name (GFile *file,
668 const char *display_name,
673 g_return_val_if_fail (G_IS_FILE (file), NULL);
674 g_return_val_if_fail (display_name != NULL, NULL);
676 iface = G_FILE_GET_IFACE (file);
678 return (* iface->get_child_for_display_name) (file, display_name, error);
683 * @file: input #GFile.
684 * @prefix: input #GFile.
686 * Checks whether @file has the prefix specified by @prefix. In other word,
687 * if the names of inital elements of @file<!-- -->s pathname match @prefix.
689 * This call does no i/o, as it works purely on names. As such it can
690 * sometimes return %FALSE even if @file is inside a @prefix (from a
691 * filesystem point of view), because the prefix of @file is an alias
694 * Returns: %TRUE if the @files's parent, grandparent, etc is @prefix.
698 g_file_has_prefix (GFile *file,
703 g_return_val_if_fail (G_IS_FILE (file), FALSE);
704 g_return_val_if_fail (G_IS_FILE (prefix), FALSE);
706 if (G_TYPE_FROM_INSTANCE (file) != G_TYPE_FROM_INSTANCE (prefix))
709 iface = G_FILE_GET_IFACE (file);
711 /* The vtable function differs in arg order since we're
712 using the old contains_file call */
713 return (* iface->prefix_matches) (prefix, file);
717 * g_file_get_relative_path:
718 * @parent: input #GFile.
719 * @descendant: input #GFile.
721 * Gets the path for @descendant relative to @parent.
723 * This call does no blocking i/o.
725 * Returns: string with the relative path from @descendant
726 * to @parent, or %NULL if @descendant doesn't have @parent as prefix.
727 * The returned string should be freed with g_free() when no longer needed.
730 g_file_get_relative_path (GFile *parent,
735 g_return_val_if_fail (G_IS_FILE (parent), NULL);
736 g_return_val_if_fail (G_IS_FILE (descendant), NULL);
738 if (G_TYPE_FROM_INSTANCE (parent) != G_TYPE_FROM_INSTANCE (descendant))
741 iface = G_FILE_GET_IFACE (parent);
743 return (* iface->get_relative_path) (parent, descendant);
747 * g_file_resolve_relative_path:
748 * @file: input #GFile.
749 * @relative_path: a given relative path string.
751 * Resolves a relative path for @file to an absolute path.
753 * This call does no blocking i/o.
755 * Returns: #GFile to the resolved path. %NULL if @relative_path
756 * is %NULL or if @file is invalid.
757 * Free the returned object with g_object_unref().
760 g_file_resolve_relative_path (GFile *file,
761 const char *relative_path)
765 g_return_val_if_fail (G_IS_FILE (file), NULL);
766 g_return_val_if_fail (relative_path != NULL, NULL);
768 iface = G_FILE_GET_IFACE (file);
770 return (* iface->resolve_relative_path) (file, relative_path);
774 * g_file_enumerate_children:
775 * @file: input #GFile.
776 * @attributes: an attribute query string.
777 * @flags: a set of #GFileQueryInfoFlags.
778 * @cancellable: optional #GCancellable object, %NULL to ignore.
779 * @error: #GError for error reporting.
781 * Gets the requested information about the files in a directory. The result
782 * is a #GFileEnumerator object that will give out #GFileInfo objects for
783 * all the files in the directory.
785 * The @attribute value is a string that specifies the file attributes that
786 * should be gathered. It is not an error if it's not possible to read a particular
787 * requested attribute from a file - it just won't be set. @attribute should
788 * be a comma-separated list of attribute or attribute wildcards. The wildcard "*"
789 * means all attributes, and a wildcard like "standard::*" means all attributes in the standard
790 * namespace. An example attribute query be "standard::*,owner::user".
791 * The standard attributes are available as defines, like #G_FILE_ATTRIBUTE_STANDARD_NAME.
793 * If @cancellable is not %NULL, then the operation can be cancelled by
794 * triggering the cancellable object from another thread. If the operation
795 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
797 * If the file does not exist, the G_IO_ERROR_NOT_FOUND error will be returned.
798 * If the file is not a directory, the G_FILE_ERROR_NOTDIR error will be returned.
799 * Other errors are possible too.
801 * Returns: A #GFileEnumerator if successful, %NULL on error.
802 * Free the returned object with g_object_unref().
805 g_file_enumerate_children (GFile *file,
806 const char *attributes,
807 GFileQueryInfoFlags flags,
808 GCancellable *cancellable,
814 g_return_val_if_fail (G_IS_FILE (file), NULL);
816 if (g_cancellable_set_error_if_cancelled (cancellable, error))
819 iface = G_FILE_GET_IFACE (file);
821 if (iface->enumerate_children == NULL)
823 g_set_error_literal (error, G_IO_ERROR,
824 G_IO_ERROR_NOT_SUPPORTED,
825 _("Operation not supported"));
829 return (* iface->enumerate_children) (file, attributes, flags,
834 * g_file_enumerate_children_async:
835 * @file: input #GFile.
836 * @attributes: an attribute query string.
837 * @flags: a set of #GFileQueryInfoFlags.
838 * @io_priority: the <link linkend="io-priority">I/O priority</link>
840 * @cancellable: optional #GCancellable object, %NULL to ignore.
841 * @callback: a #GAsyncReadyCallback to call when the request is satisfied
842 * @user_data: the data to pass to callback function
844 * Asynchronously gets the requested information about the files in a directory. The result
845 * is a #GFileEnumerator object that will give out #GFileInfo objects for
846 * all the files in the directory.
848 * For more details, see g_file_enumerate_children() which is
849 * the synchronous version of this call.
851 * When the operation is finished, @callback will be called. You can then call
852 * g_file_enumerate_children_finish() to get the result of the operation.
855 g_file_enumerate_children_async (GFile *file,
856 const char *attributes,
857 GFileQueryInfoFlags flags,
859 GCancellable *cancellable,
860 GAsyncReadyCallback callback,
865 g_return_if_fail (G_IS_FILE (file));
867 iface = G_FILE_GET_IFACE (file);
868 (* iface->enumerate_children_async) (file,
878 * g_file_enumerate_children_finish:
879 * @file: input #GFile.
880 * @res: a #GAsyncResult.
883 * Finishes an async enumerate children operation.
884 * See g_file_enumerate_children_async().
886 * Returns: a #GFileEnumerator or %NULL if an error occurred.
887 * Free the returned object with g_object_unref().
890 g_file_enumerate_children_finish (GFile *file,
896 g_return_val_if_fail (G_IS_FILE (file), NULL);
897 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
899 if (G_IS_SIMPLE_ASYNC_RESULT (res))
901 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
902 if (g_simple_async_result_propagate_error (simple, error))
906 iface = G_FILE_GET_IFACE (file);
907 return (* iface->enumerate_children_finish) (file, res, error);
911 * g_file_query_exists:
912 * @file: input #GFile.
913 * @cancellable: optional #GCancellable object, %NULL to ignore.
915 * Utility function to check if a particular file exists. This is
916 * implemented using g_file_query_info() and as such does blocking I/O.
918 * Note that in many cases it is racy to first check for file existence
919 * and then execute something based on the outcome of that, because the
920 * file might have been created or removed in between the operations. The
921 * general approach to handling that is to not check, but just do the
922 * operation and handle the errors as they come.
924 * As an example of race-free checking, take the case of reading a file, and
925 * if it doesn't exist, creating it. There are two racy versions: read it, and
926 * on error create it; and: check if it exists, if not create it. These
927 * can both result in two processes creating the file (with perhaps a partially
928 * written file as the result). The correct approach is to always try to create
929 * the file with g_file_create() which will either atomically create the file
930 * or fail with a G_IO_ERROR_EXISTS error.
932 * However, in many cases an existence check is useful in a user
933 * interface, for instance to make a menu item sensitive/insensitive, so that
934 * you don't have to fool users that something is possible and then just show
935 * and error dialog. If you do this, you should make sure to also handle the
936 * errors that can happen due to races when you execute the operation.
938 * Returns: %TRUE if the file exists (and can be detected without error), %FALSE otherwise (or if cancelled).
941 g_file_query_exists (GFile *file,
942 GCancellable *cancellable)
946 g_return_val_if_fail (G_IS_FILE(file), FALSE);
948 info = g_file_query_info (file, G_FILE_ATTRIBUTE_STANDARD_TYPE,
949 G_FILE_QUERY_INFO_NONE, cancellable, NULL);
952 g_object_unref (info);
960 * g_file_query_file_type:
961 * @file: input #GFile.
962 * @flags: a set of #GFileQueryInfoFlags passed to g_file_query_info().
963 * @cancellable: optional #GCancellable object, %NULL to ignore.
965 * Utility function to inspect the #GFileType of a file. This is
966 * implemented using g_file_query_info() and as such does blocking I/O.
968 * The primary use case of this method is to check if a file is a regular file,
969 * directory, or symlink.
971 * Returns: The #GFileType of the file and #G_FILE_TYPE_UNKNOWN if the file
977 g_file_query_file_type (GFile *file,
978 GFileQueryInfoFlags flags,
979 GCancellable *cancellable)
984 g_return_val_if_fail (G_IS_FILE(file), G_FILE_TYPE_UNKNOWN);
985 info = g_file_query_info (file, G_FILE_ATTRIBUTE_STANDARD_TYPE, flags,
989 file_type = g_file_info_get_file_type (info);
990 g_object_unref (info);
993 file_type = G_FILE_TYPE_UNKNOWN;
1000 * @file: input #GFile.
1001 * @attributes: an attribute query string.
1002 * @flags: a set of #GFileQueryInfoFlags.
1003 * @cancellable: optional #GCancellable object, %NULL to ignore.
1004 * @error: a #GError.
1006 * Gets the requested information about specified @file. The result
1007 * is a #GFileInfo object that contains key-value attributes (such as
1008 * the type or size of the file).
1010 * The @attribute value is a string that specifies the file attributes that
1011 * should be gathered. It is not an error if it's not possible to read a particular
1012 * requested attribute from a file - it just won't be set. @attribute should
1013 * be a comma-separated list of attribute or attribute wildcards. The wildcard "*"
1014 * means all attributes, and a wildcard like "standard::*" means all attributes in the standard
1015 * namespace. An example attribute query be "standard::*,owner::user".
1016 * The standard attributes are available as defines, like #G_FILE_ATTRIBUTE_STANDARD_NAME.
1018 * If @cancellable is not %NULL, then the operation can be cancelled by
1019 * triggering the cancellable object from another thread. If the operation
1020 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
1022 * For symlinks, normally the information about the target of the
1023 * symlink is returned, rather than information about the symlink itself.
1024 * However if you pass #G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS in @flags the
1025 * information about the symlink itself will be returned. Also, for symlinks
1026 * that point to non-existing files the information about the symlink itself
1029 * If the file does not exist, the G_IO_ERROR_NOT_FOUND error will be returned.
1030 * Other errors are possible too, and depend on what kind of filesystem the file is on.
1032 * Returns: a #GFileInfo for the given @file, or %NULL on error.
1033 * Free the returned object with g_object_unref().
1036 g_file_query_info (GFile *file,
1037 const char *attributes,
1038 GFileQueryInfoFlags flags,
1039 GCancellable *cancellable,
1044 g_return_val_if_fail (G_IS_FILE (file), NULL);
1046 if (g_cancellable_set_error_if_cancelled (cancellable, error))
1049 iface = G_FILE_GET_IFACE (file);
1051 if (iface->query_info == NULL)
1053 g_set_error_literal (error, G_IO_ERROR,
1054 G_IO_ERROR_NOT_SUPPORTED,
1055 _("Operation not supported"));
1059 return (* iface->query_info) (file, attributes, flags, cancellable, error);
1063 * g_file_query_info_async:
1064 * @file: input #GFile.
1065 * @attributes: an attribute query string.
1066 * @flags: a set of #GFileQueryInfoFlags.
1067 * @io_priority: the <link linkend="io-priority">I/O priority</link>
1069 * @cancellable: optional #GCancellable object, %NULL to ignore.
1070 * @callback: a #GAsyncReadyCallback to call when the request is satisfied
1071 * @user_data: the data to pass to callback function
1073 * Asynchronously gets the requested information about specified @file. The result
1074 * is a #GFileInfo object that contains key-value attributes (such as type or size
1077 * For more details, see g_file_query_info() which is
1078 * the synchronous version of this call.
1080 * When the operation is finished, @callback will be called. You can then call
1081 * g_file_query_info_finish() to get the result of the operation.
1084 g_file_query_info_async (GFile *file,
1085 const char *attributes,
1086 GFileQueryInfoFlags flags,
1088 GCancellable *cancellable,
1089 GAsyncReadyCallback callback,
1094 g_return_if_fail (G_IS_FILE (file));
1096 iface = G_FILE_GET_IFACE (file);
1097 (* iface->query_info_async) (file,
1107 * g_file_query_info_finish:
1108 * @file: input #GFile.
1109 * @res: a #GAsyncResult.
1110 * @error: a #GError.
1112 * Finishes an asynchronous file info query.
1113 * See g_file_query_info_async().
1115 * Returns: #GFileInfo for given @file or %NULL on error.
1116 * Free the returned object with g_object_unref().
1119 g_file_query_info_finish (GFile *file,
1125 g_return_val_if_fail (G_IS_FILE (file), NULL);
1126 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
1128 if (G_IS_SIMPLE_ASYNC_RESULT (res))
1130 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
1131 if (g_simple_async_result_propagate_error (simple, error))
1135 iface = G_FILE_GET_IFACE (file);
1136 return (* iface->query_info_finish) (file, res, error);
1140 * g_file_query_filesystem_info:
1141 * @file: input #GFile.
1142 * @attributes: an attribute query string.
1143 * @cancellable: optional #GCancellable object, %NULL to ignore.
1144 * @error: a #GError.
1146 * Similar to g_file_query_info(), but obtains information
1147 * about the filesystem the @file is on, rather than the file itself.
1148 * For instance the amount of space available and the type of
1151 * The @attribute value is a string that specifies the file attributes that
1152 * should be gathered. It is not an error if it's not possible to read a particular
1153 * requested attribute from a file - it just won't be set. @attribute should
1154 * be a comma-separated list of attribute or attribute wildcards. The wildcard "*"
1155 * means all attributes, and a wildcard like "fs:*" means all attributes in the fs
1156 * namespace. The standard namespace for filesystem attributes is "fs".
1157 * Common attributes of interest are #G_FILE_ATTRIBUTE_FILESYSTEM_SIZE
1158 * (the total size of the filesystem in bytes), #G_FILE_ATTRIBUTE_FILESYSTEM_FREE (number of
1159 * bytes available), and #G_FILE_ATTRIBUTE_FILESYSTEM_TYPE (type of the filesystem).
1161 * If @cancellable is not %NULL, then the operation can be cancelled by
1162 * triggering the cancellable object from another thread. If the operation
1163 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
1165 * If the file does not exist, the G_IO_ERROR_NOT_FOUND error will be returned.
1166 * Other errors are possible too, and depend on what kind of filesystem the file is on.
1168 * Returns: a #GFileInfo or %NULL if there was an error.
1169 * Free the returned object with g_object_unref().
1172 g_file_query_filesystem_info (GFile *file,
1173 const char *attributes,
1174 GCancellable *cancellable,
1179 g_return_val_if_fail (G_IS_FILE (file), NULL);
1181 if (g_cancellable_set_error_if_cancelled (cancellable, error))
1184 iface = G_FILE_GET_IFACE (file);
1186 if (iface->query_filesystem_info == NULL)
1188 g_set_error_literal (error, G_IO_ERROR,
1189 G_IO_ERROR_NOT_SUPPORTED,
1190 _("Operation not supported"));
1194 return (* iface->query_filesystem_info) (file, attributes, cancellable, error);
1198 * g_file_query_filesystem_info_async:
1199 * @file: input #GFile.
1200 * @attributes: an attribute query string.
1201 * @io_priority: the <link linkend="io-priority">I/O priority</link>
1203 * @cancellable: optional #GCancellable object, %NULL to ignore.
1204 * @callback: a #GAsyncReadyCallback to call when the request is satisfied
1205 * @user_data: the data to pass to callback function
1207 * Asynchronously gets the requested information about the filesystem
1208 * that the specified @file is on. The result is a #GFileInfo object
1209 * that contains key-value attributes (such as type or size for the
1212 * For more details, see g_file_query_filesystem_info() which is the
1213 * synchronous version of this call.
1215 * When the operation is finished, @callback will be called. You can
1216 * then call g_file_query_info_finish() to get the result of the
1220 g_file_query_filesystem_info_async (GFile *file,
1221 const char *attributes,
1223 GCancellable *cancellable,
1224 GAsyncReadyCallback callback,
1229 g_return_if_fail (G_IS_FILE (file));
1231 iface = G_FILE_GET_IFACE (file);
1232 (* iface->query_filesystem_info_async) (file,
1241 * g_file_query_filesystem_info_finish:
1242 * @file: input #GFile.
1243 * @res: a #GAsyncResult.
1244 * @error: a #GError.
1246 * Finishes an asynchronous filesystem info query. See
1247 * g_file_query_filesystem_info_async().
1249 * Returns: #GFileInfo for given @file or %NULL on error.
1250 * Free the returned object with g_object_unref().
1253 g_file_query_filesystem_info_finish (GFile *file,
1259 g_return_val_if_fail (G_IS_FILE (file), NULL);
1260 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
1262 if (G_IS_SIMPLE_ASYNC_RESULT (res))
1264 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
1265 if (g_simple_async_result_propagate_error (simple, error))
1269 iface = G_FILE_GET_IFACE (file);
1270 return (* iface->query_filesystem_info_finish) (file, res, error);
1274 * g_file_find_enclosing_mount:
1275 * @file: input #GFile.
1276 * @cancellable: optional #GCancellable object, %NULL to ignore.
1277 * @error: a #GError.
1279 * Gets a #GMount for the #GFile.
1281 * If the #GFileIface for @file does not have a mount (e.g. possibly a
1282 * remote share), @error will be set to %G_IO_ERROR_NOT_FOUND and %NULL
1285 * If @cancellable is not %NULL, then the operation can be cancelled by
1286 * triggering the cancellable object from another thread. If the operation
1287 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
1289 * Returns: a #GMount where the @file is located or %NULL on error.
1290 * Free the returned object with g_object_unref().
1293 g_file_find_enclosing_mount (GFile *file,
1294 GCancellable *cancellable,
1299 g_return_val_if_fail (G_IS_FILE (file), NULL);
1301 if (g_cancellable_set_error_if_cancelled (cancellable, error))
1304 iface = G_FILE_GET_IFACE (file);
1305 if (iface->find_enclosing_mount == NULL)
1308 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND,
1309 /* Translators: This is an error message when trying to find the
1310 * enclosing (user visible) mount of a file, but none exists. */
1311 _("Containing mount does not exist"));
1315 return (* iface->find_enclosing_mount) (file, cancellable, error);
1319 * g_file_find_enclosing_mount_async:
1321 * @io_priority: the <link linkend="io-priority">I/O priority</link>
1323 * @cancellable: optional #GCancellable object, %NULL to ignore.
1324 * @callback: a #GAsyncReadyCallback to call when the request is satisfied
1325 * @user_data: the data to pass to callback function
1327 * Asynchronously gets the mount for the file.
1329 * For more details, see g_file_find_enclosing_mount() which is
1330 * the synchronous version of this call.
1332 * When the operation is finished, @callback will be called. You can then call
1333 * g_file_find_enclosing_mount_finish() to get the result of the operation.
1336 g_file_find_enclosing_mount_async (GFile *file,
1338 GCancellable *cancellable,
1339 GAsyncReadyCallback callback,
1344 g_return_if_fail (G_IS_FILE (file));
1346 iface = G_FILE_GET_IFACE (file);
1347 (* iface->find_enclosing_mount_async) (file,
1355 * g_file_find_enclosing_mount_finish:
1357 * @res: a #GAsyncResult
1360 * Finishes an asynchronous find mount request.
1361 * See g_file_find_enclosing_mount_async().
1363 * Returns: #GMount for given @file or %NULL on error.
1364 * Free the returned object with g_object_unref().
1367 g_file_find_enclosing_mount_finish (GFile *file,
1373 g_return_val_if_fail (G_IS_FILE (file), NULL);
1374 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
1376 if (G_IS_SIMPLE_ASYNC_RESULT (res))
1378 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
1379 if (g_simple_async_result_propagate_error (simple, error))
1383 iface = G_FILE_GET_IFACE (file);
1384 return (* iface->find_enclosing_mount_finish) (file, res, error);
1390 * @file: #GFile to read.
1391 * @cancellable: a #GCancellable
1392 * @error: a #GError, or %NULL
1394 * Opens a file for reading. The result is a #GFileInputStream that
1395 * can be used to read the contents of the file.
1397 * If @cancellable is not %NULL, then the operation can be cancelled by
1398 * triggering the cancellable object from another thread. If the operation
1399 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
1401 * If the file does not exist, the G_IO_ERROR_NOT_FOUND error will be returned.
1402 * If the file is a directory, the G_IO_ERROR_IS_DIRECTORY error will be returned.
1403 * Other errors are possible too, and depend on what kind of filesystem the file is on.
1405 * Returns: #GFileInputStream or %NULL on error.
1406 * Free the returned object with g_object_unref().
1409 g_file_read (GFile *file,
1410 GCancellable *cancellable,
1415 g_return_val_if_fail (G_IS_FILE (file), NULL);
1417 if (g_cancellable_set_error_if_cancelled (cancellable, error))
1420 iface = G_FILE_GET_IFACE (file);
1422 if (iface->read_fn == NULL)
1424 g_set_error_literal (error, G_IO_ERROR,
1425 G_IO_ERROR_NOT_SUPPORTED,
1426 _("Operation not supported"));
1430 return (* iface->read_fn) (file, cancellable, error);
1435 * @file: input #GFile.
1436 * @flags: a set of #GFileCreateFlags.
1437 * @cancellable: optional #GCancellable object, %NULL to ignore.
1438 * @error: a #GError, or %NULL
1440 * Gets an output stream for appending data to the file. If
1441 * the file doesn't already exist it is created.
1443 * By default files created are generally readable by everyone,
1444 * but if you pass #G_FILE_CREATE_PRIVATE in @flags the file
1445 * will be made readable only to the current user, to the level that
1446 * is supported on the target filesystem.
1448 * If @cancellable is not %NULL, then the operation can be cancelled by
1449 * triggering the cancellable object from another thread. If the operation
1450 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
1452 * Some file systems don't allow all file names, and may
1453 * return an %G_IO_ERROR_INVALID_FILENAME error.
1454 * If the file is a directory the %G_IO_ERROR_IS_DIRECTORY error will be
1455 * returned. Other errors are possible too, and depend on what kind of
1456 * filesystem the file is on.
1458 * Returns: a #GFileOutputStream, or %NULL on error.
1459 * Free the returned object with g_object_unref().
1462 g_file_append_to (GFile *file,
1463 GFileCreateFlags flags,
1464 GCancellable *cancellable,
1469 g_return_val_if_fail (G_IS_FILE (file), NULL);
1471 if (g_cancellable_set_error_if_cancelled (cancellable, error))
1474 iface = G_FILE_GET_IFACE (file);
1476 if (iface->append_to == NULL)
1478 g_set_error_literal (error, G_IO_ERROR,
1479 G_IO_ERROR_NOT_SUPPORTED,
1480 _("Operation not supported"));
1484 return (* iface->append_to) (file, flags, cancellable, error);
1489 * @file: input #GFile.
1490 * @flags: a set of #GFileCreateFlags.
1491 * @cancellable: optional #GCancellable object, %NULL to ignore.
1492 * @error: a #GError, or %NULL
1494 * Creates a new file and returns an output stream for writing to it.
1495 * The file must not already exist.
1497 * By default files created are generally readable by everyone,
1498 * but if you pass #G_FILE_CREATE_PRIVATE in @flags the file
1499 * will be made readable only to the current user, to the level that
1500 * is supported on the target filesystem.
1502 * If @cancellable is not %NULL, then the operation can be cancelled by
1503 * triggering the cancellable object from another thread. If the operation
1504 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
1506 * If a file or directory with this name already exists the G_IO_ERROR_EXISTS
1507 * error will be returned.
1508 * Some file systems don't allow all file names, and may
1509 * return an G_IO_ERROR_INVALID_FILENAME error, and if the name
1510 * is to long G_IO_ERROR_FILENAME_TOO_LONG will be returned.
1511 * Other errors are possible too, and depend on what kind of
1512 * filesystem the file is on.
1514 * Returns: a #GFileOutputStream for the newly created file, or
1516 * Free the returned object with g_object_unref().
1519 g_file_create (GFile *file,
1520 GFileCreateFlags flags,
1521 GCancellable *cancellable,
1526 g_return_val_if_fail (G_IS_FILE (file), NULL);
1528 if (g_cancellable_set_error_if_cancelled (cancellable, error))
1531 iface = G_FILE_GET_IFACE (file);
1533 if (iface->create == NULL)
1535 g_set_error_literal (error, G_IO_ERROR,
1536 G_IO_ERROR_NOT_SUPPORTED,
1537 _("Operation not supported"));
1541 return (* iface->create) (file, flags, cancellable, error);
1546 * @file: input #GFile.
1547 * @etag: an optional <link linkend="gfile-etag">entity tag</link> for the
1548 * current #GFile, or #NULL to ignore.
1549 * @make_backup: %TRUE if a backup should be created.
1550 * @flags: a set of #GFileCreateFlags.
1551 * @cancellable: optional #GCancellable object, %NULL to ignore.
1552 * @error: a #GError, or %NULL
1554 * Returns an output stream for overwriting the file, possibly
1555 * creating a backup copy of the file first. If the file doesn't exist,
1556 * it will be created.
1558 * This will try to replace the file in the safest way possible so
1559 * that any errors during the writing will not affect an already
1560 * existing copy of the file. For instance, for local files it
1561 * may write to a temporary file and then atomically rename over
1562 * the destination when the stream is closed.
1564 * By default files created are generally readable by everyone,
1565 * but if you pass #G_FILE_CREATE_PRIVATE in @flags the file
1566 * will be made readable only to the current user, to the level that
1567 * is supported on the target filesystem.
1569 * If @cancellable is not %NULL, then the operation can be cancelled by
1570 * triggering the cancellable object from another thread. If the operation
1571 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
1573 * If you pass in a non-#NULL @etag value, then this value is
1574 * compared to the current entity tag of the file, and if they differ
1575 * an G_IO_ERROR_WRONG_ETAG error is returned. This generally means
1576 * that the file has been changed since you last read it. You can get
1577 * the new etag from g_file_output_stream_get_etag() after you've
1578 * finished writing and closed the #GFileOutputStream. When you load
1579 * a new file you can use g_file_input_stream_query_info() to get
1580 * the etag of the file.
1582 * If @make_backup is %TRUE, this function will attempt to make a backup
1583 * of the current file before overwriting it. If this fails a G_IO_ERROR_CANT_CREATE_BACKUP
1584 * error will be returned. If you want to replace anyway, try again with
1585 * @make_backup set to %FALSE.
1587 * If the file is a directory the G_IO_ERROR_IS_DIRECTORY error will be returned,
1588 * and if the file is some other form of non-regular file then a
1589 * G_IO_ERROR_NOT_REGULAR_FILE error will be returned.
1590 * Some file systems don't allow all file names, and may
1591 * return an G_IO_ERROR_INVALID_FILENAME error, and if the name
1592 * is to long G_IO_ERROR_FILENAME_TOO_LONG will be returned.
1593 * Other errors are possible too, and depend on what kind of
1594 * filesystem the file is on.
1596 * Returns: a #GFileOutputStream or %NULL on error.
1597 * Free the returned object with g_object_unref().
1600 g_file_replace (GFile *file,
1602 gboolean make_backup,
1603 GFileCreateFlags flags,
1604 GCancellable *cancellable,
1609 g_return_val_if_fail (G_IS_FILE (file), NULL);
1611 if (g_cancellable_set_error_if_cancelled (cancellable, error))
1614 iface = G_FILE_GET_IFACE (file);
1616 if (iface->replace == NULL)
1618 g_set_error_literal (error, G_IO_ERROR,
1619 G_IO_ERROR_NOT_SUPPORTED,
1620 _("Operation not supported"));
1625 /* Handle empty tag string as NULL in consistent way. */
1626 if (etag && *etag == 0)
1629 return (* iface->replace) (file, etag, make_backup, flags, cancellable, error);
1633 * g_file_read_async:
1634 * @file: input #GFile.
1635 * @io_priority: the <link linkend="io-priority">I/O priority</link>
1637 * @cancellable: optional #GCancellable object, %NULL to ignore.
1638 * @callback: a #GAsyncReadyCallback to call when the request is satisfied
1639 * @user_data: the data to pass to callback function
1641 * Asynchronously opens @file for reading.
1643 * For more details, see g_file_read() which is
1644 * the synchronous version of this call.
1646 * When the operation is finished, @callback will be called. You can then call
1647 * g_file_read_finish() to get the result of the operation.
1650 g_file_read_async (GFile *file,
1652 GCancellable *cancellable,
1653 GAsyncReadyCallback callback,
1658 g_return_if_fail (G_IS_FILE (file));
1660 iface = G_FILE_GET_IFACE (file);
1661 (* iface->read_async) (file,
1669 * g_file_read_finish:
1670 * @file: input #GFile.
1671 * @res: a #GAsyncResult.
1672 * @error: a #GError, or %NULL
1674 * Finishes an asynchronous file read operation started with
1675 * g_file_read_async().
1677 * Returns: a #GFileInputStream or %NULL on error.
1678 * Free the returned object with g_object_unref().
1681 g_file_read_finish (GFile *file,
1687 g_return_val_if_fail (G_IS_FILE (file), NULL);
1688 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
1690 if (G_IS_SIMPLE_ASYNC_RESULT (res))
1692 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
1693 if (g_simple_async_result_propagate_error (simple, error))
1697 iface = G_FILE_GET_IFACE (file);
1698 return (* iface->read_finish) (file, res, error);
1702 * g_file_append_to_async:
1703 * @file: input #GFile.
1704 * @flags: a set of #GFileCreateFlags.
1705 * @io_priority: the <link linkend="io-priority">I/O priority</link>
1707 * @cancellable: optional #GCancellable object, %NULL to ignore.
1708 * @callback: a #GAsyncReadyCallback to call when the request is satisfied
1709 * @user_data: the data to pass to callback function
1711 * Asynchronously opens @file for appending.
1713 * For more details, see g_file_append_to() which is
1714 * the synchronous version of this call.
1716 * When the operation is finished, @callback will be called. You can then call
1717 * g_file_append_to_finish() to get the result of the operation.
1720 g_file_append_to_async (GFile *file,
1721 GFileCreateFlags flags,
1723 GCancellable *cancellable,
1724 GAsyncReadyCallback callback,
1729 g_return_if_fail (G_IS_FILE (file));
1731 iface = G_FILE_GET_IFACE (file);
1732 (* iface->append_to_async) (file,
1741 * g_file_append_to_finish:
1742 * @file: input #GFile.
1743 * @res: #GAsyncResult
1744 * @error: a #GError, or %NULL
1746 * Finishes an asynchronous file append operation started with
1747 * g_file_append_to_async().
1749 * Returns: a valid #GFileOutputStream or %NULL on error.
1750 * Free the returned object with g_object_unref().
1753 g_file_append_to_finish (GFile *file,
1759 g_return_val_if_fail (G_IS_FILE (file), NULL);
1760 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
1762 if (G_IS_SIMPLE_ASYNC_RESULT (res))
1764 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
1765 if (g_simple_async_result_propagate_error (simple, error))
1769 iface = G_FILE_GET_IFACE (file);
1770 return (* iface->append_to_finish) (file, res, error);
1774 * g_file_create_async:
1775 * @file: input #GFile.
1776 * @flags: a set of #GFileCreateFlags.
1777 * @io_priority: the <link linkend="io-priority">I/O priority</link>
1779 * @cancellable: optional #GCancellable object, %NULL to ignore.
1780 * @callback: a #GAsyncReadyCallback to call when the request is satisfied
1781 * @user_data: the data to pass to callback function
1783 * Asynchronously creates a new file and returns an output stream for writing to it.
1784 * The file must not already exist.
1786 * For more details, see g_file_create() which is
1787 * the synchronous version of this call.
1789 * When the operation is finished, @callback will be called. You can then call
1790 * g_file_create_finish() to get the result of the operation.
1793 g_file_create_async (GFile *file,
1794 GFileCreateFlags flags,
1796 GCancellable *cancellable,
1797 GAsyncReadyCallback callback,
1802 g_return_if_fail (G_IS_FILE (file));
1804 iface = G_FILE_GET_IFACE (file);
1805 (* iface->create_async) (file,
1814 * g_file_create_finish:
1815 * @file: input #GFile.
1816 * @res: a #GAsyncResult.
1817 * @error: a #GError, or %NULL
1819 * Finishes an asynchronous file create operation started with
1820 * g_file_create_async().
1822 * Returns: a #GFileOutputStream or %NULL on error.
1823 * Free the returned object with g_object_unref().
1826 g_file_create_finish (GFile *file,
1832 g_return_val_if_fail (G_IS_FILE (file), NULL);
1833 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
1835 if (G_IS_SIMPLE_ASYNC_RESULT (res))
1837 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
1838 if (g_simple_async_result_propagate_error (simple, error))
1842 iface = G_FILE_GET_IFACE (file);
1843 return (* iface->create_finish) (file, res, error);
1847 * g_file_replace_async:
1848 * @file: input #GFile.
1849 * @etag: an <link linkend="gfile-etag">entity tag</link> for the
1850 * current #GFile, or NULL to ignore.
1851 * @make_backup: %TRUE if a backup should be created.
1852 * @flags: a set of #GFileCreateFlags.
1853 * @io_priority: the <link linkend="io-priority">I/O priority</link>
1855 * @cancellable: optional #GCancellable object, %NULL to ignore.
1856 * @callback: a #GAsyncReadyCallback to call when the request is satisfied
1857 * @user_data: the data to pass to callback function
1859 * Asynchronously overwrites the file, replacing the contents, possibly
1860 * creating a backup copy of the file first.
1862 * For more details, see g_file_replace() which is
1863 * the synchronous version of this call.
1865 * When the operation is finished, @callback will be called. You can then call
1866 * g_file_replace_finish() to get the result of the operation.
1869 g_file_replace_async (GFile *file,
1871 gboolean make_backup,
1872 GFileCreateFlags flags,
1874 GCancellable *cancellable,
1875 GAsyncReadyCallback callback,
1880 g_return_if_fail (G_IS_FILE (file));
1882 iface = G_FILE_GET_IFACE (file);
1883 (* iface->replace_async) (file,
1894 * g_file_replace_finish:
1895 * @file: input #GFile.
1896 * @res: a #GAsyncResult.
1897 * @error: a #GError, or %NULL
1899 * Finishes an asynchronous file replace operation started with
1900 * g_file_replace_async().
1902 * Returns: a #GFileOutputStream, or %NULL on error.
1903 * Free the returned object with g_object_unref().
1906 g_file_replace_finish (GFile *file,
1912 g_return_val_if_fail (G_IS_FILE (file), NULL);
1913 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
1915 if (G_IS_SIMPLE_ASYNC_RESULT (res))
1917 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
1918 if (g_simple_async_result_propagate_error (simple, error))
1922 iface = G_FILE_GET_IFACE (file);
1923 return (* iface->replace_finish) (file, res, error);
1927 copy_symlink (GFile *destination,
1928 GFileCopyFlags flags,
1929 GCancellable *cancellable,
1934 gboolean tried_delete;
1936 GFileType file_type;
1938 tried_delete = FALSE;
1942 if (!g_file_make_symbolic_link (destination, target, cancellable, &my_error))
1944 /* Maybe it already existed, and we want to overwrite? */
1945 if (!tried_delete && (flags & G_FILE_COPY_OVERWRITE) &&
1946 my_error->domain == G_IO_ERROR && my_error->code == G_IO_ERROR_EXISTS)
1948 g_error_free (my_error);
1951 /* Don't overwrite if the destination is a directory */
1952 info = g_file_query_info (destination, G_FILE_ATTRIBUTE_STANDARD_TYPE,
1953 G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS,
1954 cancellable, &my_error);
1957 file_type = g_file_info_get_file_type (info);
1958 g_object_unref (info);
1960 if (file_type == G_FILE_TYPE_DIRECTORY)
1962 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_IS_DIRECTORY,
1963 _("Can't copy over directory"));
1968 if (!g_file_delete (destination, cancellable, error))
1971 tried_delete = TRUE;
1975 g_propagate_error (error, my_error);
1982 static GInputStream *
1983 open_source_for_copy (GFile *source,
1985 GFileCopyFlags flags,
1986 GCancellable *cancellable,
1992 GFileType file_type;
1995 in = (GInputStream *)g_file_read (source, cancellable, &my_error);
1999 /* There was an error opening the source, try to set a good error for it: */
2001 if (my_error->domain == G_IO_ERROR && my_error->code == G_IO_ERROR_IS_DIRECTORY)
2003 /* The source is a directory, don't fail with WOULD_RECURSE immediately,
2004 * as that is less useful to the app. Better check for errors on the
2007 g_error_free (my_error);
2010 info = g_file_query_info (destination, G_FILE_ATTRIBUTE_STANDARD_TYPE,
2011 G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS,
2012 cancellable, &my_error);
2015 file_type = g_file_info_get_file_type (info);
2016 g_object_unref (info);
2018 if (flags & G_FILE_COPY_OVERWRITE)
2020 if (file_type == G_FILE_TYPE_DIRECTORY)
2022 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_WOULD_MERGE,
2023 _("Can't copy directory over directory"));
2026 /* continue to would_recurse error */
2030 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_EXISTS,
2031 _("Target file exists"));
2037 /* Error getting info from target, return that error
2038 * (except for NOT_FOUND, which is no error here)
2040 if (my_error->domain != G_IO_ERROR && my_error->code != G_IO_ERROR_NOT_FOUND)
2042 g_propagate_error (error, my_error);
2045 g_error_free (my_error);
2048 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_WOULD_RECURSE,
2049 _("Can't recursively copy directory"));
2053 g_propagate_error (error, my_error);
2058 should_copy (GFileAttributeInfo *info,
2062 return info->flags & G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED;
2063 return info->flags & G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE;
2067 build_attribute_list_for_copy (GFileAttributeInfoList *attributes,
2068 GFileAttributeInfoList *namespaces,
2076 s = g_string_new ("");
2080 for (i = 0; i < attributes->n_infos; i++)
2082 if (should_copy (&attributes->infos[i], as_move))
2087 g_string_append_c (s, ',');
2089 g_string_append (s, attributes->infos[i].name);
2096 for (i = 0; i < namespaces->n_infos; i++)
2098 if (should_copy (&namespaces->infos[i], as_move))
2103 g_string_append_c (s, ',');
2105 g_string_append (s, namespaces->infos[i].name);
2106 g_string_append (s, ":*");
2111 return g_string_free (s, FALSE);
2115 * g_file_copy_attributes:
2116 * @source: a #GFile with attributes.
2117 * @destination: a #GFile to copy attributes to.
2118 * @flags: a set of #GFileCopyFlags.
2119 * @cancellable: optional #GCancellable object, %NULL to ignore.
2120 * @error: a #GError, %NULL to ignore.
2122 * Copies the file attributes from @source to @destination.
2124 * Normally only a subset of the file attributes are copied,
2125 * those that are copies in a normal file copy operation
2126 * (which for instance does not include e.g. mtime). However
2127 * if #G_FILE_COPY_ALL_METADATA is specified in @flags, then
2128 * all the metadata that is possible to copy is copied.
2130 * Returns: %TRUE if the attributes were copied successfully, %FALSE otherwise.
2133 g_file_copy_attributes (GFile *source,
2135 GFileCopyFlags flags,
2136 GCancellable *cancellable,
2139 GFileAttributeInfoList *attributes, *namespaces;
2140 char *attrs_to_read;
2144 gboolean source_nofollow_symlinks;
2146 as_move = flags & G_FILE_COPY_ALL_METADATA;
2147 source_nofollow_symlinks = flags & G_FILE_COPY_NOFOLLOW_SYMLINKS;
2149 /* Ignore errors here, if the target supports no attributes there is nothing to copy */
2150 attributes = g_file_query_settable_attributes (destination, cancellable, NULL);
2151 namespaces = g_file_query_writable_namespaces (destination, cancellable, NULL);
2153 if (attributes == NULL && namespaces == NULL)
2156 attrs_to_read = build_attribute_list_for_copy (attributes, namespaces, as_move);
2158 /* Ignore errors here, if we can't read some info (e.g. if it doesn't exist)
2159 * we just don't copy it.
2161 info = g_file_query_info (source, attrs_to_read,
2162 source_nofollow_symlinks ? G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS:0,
2166 g_free (attrs_to_read);
2171 res = g_file_set_attributes_from_info (destination,
2175 g_object_unref (info);
2178 g_file_attribute_info_list_unref (attributes);
2179 g_file_attribute_info_list_unref (namespaces);
2184 /* Closes the streams */
2186 copy_stream_with_progress (GInputStream *in,
2189 GCancellable *cancellable,
2190 GFileProgressCallback progress_callback,
2191 gpointer progress_callback_data,
2194 gssize n_read, n_written;
2195 goffset current_size;
2196 char buffer[1024*64], *p;
2202 info = g_file_input_stream_query_info (G_FILE_INPUT_STREAM (in),
2203 G_FILE_ATTRIBUTE_STANDARD_SIZE,
2207 if (g_file_info_has_attribute (info, G_FILE_ATTRIBUTE_STANDARD_SIZE))
2208 total_size = g_file_info_get_size (info);
2209 g_object_unref (info);
2212 if (total_size == -1)
2214 info = g_file_query_info (source,
2215 G_FILE_ATTRIBUTE_STANDARD_SIZE,
2216 G_FILE_QUERY_INFO_NONE,
2220 if (g_file_info_has_attribute (info, G_FILE_ATTRIBUTE_STANDARD_SIZE))
2221 total_size = g_file_info_get_size (info);
2222 g_object_unref (info);
2226 if (total_size == -1)
2233 n_read = g_input_stream_read (in, buffer, sizeof (buffer), cancellable, error);
2243 current_size += n_read;
2248 n_written = g_output_stream_write (out, p, n_read, cancellable, error);
2249 if (n_written == -1)
2256 n_read -= n_written;
2262 if (progress_callback)
2263 progress_callback (current_size, total_size, progress_callback_data);
2267 error = NULL; /* Ignore further errors */
2269 /* Make sure we send full copied size */
2270 if (progress_callback)
2271 progress_callback (current_size, total_size, progress_callback_data);
2273 /* Don't care about errors in source here */
2274 g_input_stream_close (in, cancellable, NULL);
2276 /* But write errors on close are bad! */
2277 if (!g_output_stream_close (out, cancellable, error))
2280 g_object_unref (in);
2281 g_object_unref (out);
2287 file_copy_fallback (GFile *source,
2289 GFileCopyFlags flags,
2290 GCancellable *cancellable,
2291 GFileProgressCallback progress_callback,
2292 gpointer progress_callback_data,
2300 /* Maybe copy the symlink? */
2301 if (flags & G_FILE_COPY_NOFOLLOW_SYMLINKS)
2303 info = g_file_query_info (source,
2304 G_FILE_ATTRIBUTE_STANDARD_TYPE "," G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET,
2305 G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS,
2311 if (g_file_info_get_file_type (info) == G_FILE_TYPE_SYMBOLIC_LINK &&
2312 (target = g_file_info_get_symlink_target (info)) != NULL)
2314 if (!copy_symlink (destination, flags, cancellable, target, error))
2316 g_object_unref (info);
2320 g_object_unref (info);
2324 g_object_unref (info);
2327 in = open_source_for_copy (source, destination, flags, cancellable, error);
2331 if (flags & G_FILE_COPY_OVERWRITE)
2333 out = (GOutputStream *)g_file_replace (destination,
2335 flags & G_FILE_COPY_BACKUP,
2337 cancellable, error);
2341 out = (GOutputStream *)g_file_create (destination, 0, cancellable, error);
2346 g_object_unref (in);
2350 if (!copy_stream_with_progress (in, out, source, cancellable,
2351 progress_callback, progress_callback_data,
2357 /* Ignore errors here. Failure to copy metadata is not a hard error */
2358 g_file_copy_attributes (source, destination,
2359 flags, cancellable, NULL);
2366 * @source: input #GFile.
2367 * @destination: destination #GFile
2368 * @flags: set of #GFileCopyFlags
2369 * @cancellable: optional #GCancellable object, %NULL to ignore.
2370 * @progress_callback: function to callback with progress information
2371 * @progress_callback_data: user data to pass to @progress_callback
2372 * @error: #GError to set on error, or %NULL
2374 * Copies the file @source to the location specified by @destination.
2375 * Can not handle recursive copies of directories.
2377 * If the flag #G_FILE_COPY_OVERWRITE is specified an already
2378 * existing @destination file is overwritten.
2380 * If the flag #G_FILE_COPY_NOFOLLOW_SYMLINKS is specified then symlinks
2381 * will be copied as symlinks, otherwise the target of the
2382 * @source symlink will be copied.
2384 * If @cancellable is not %NULL, then the operation can be cancelled by
2385 * triggering the cancellable object from another thread. If the operation
2386 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
2388 * If @progress_callback is not %NULL, then the operation can be monitored by
2389 * setting this to a #GFileProgressCallback function. @progress_callback_data
2390 * will be passed to this function. It is guaranteed that this callback will
2391 * be called after all data has been transferred with the total number of bytes
2392 * copied during the operation.
2394 * If the @source file does not exist then the G_IO_ERROR_NOT_FOUND
2395 * error is returned, independent on the status of the @destination.
2397 * If #G_FILE_COPY_OVERWRITE is not specified and the target exists, then the
2398 * error G_IO_ERROR_EXISTS is returned.
2400 * If trying to overwrite a file over a directory the G_IO_ERROR_IS_DIRECTORY
2401 * error is returned. If trying to overwrite a directory with a directory the
2402 * G_IO_ERROR_WOULD_MERGE error is returned.
2404 * If the source is a directory and the target does not exist, or #G_FILE_COPY_OVERWRITE is
2405 * specified and the target is a file, then the G_IO_ERROR_WOULD_RECURSE error
2408 * If you are interested in copying the #GFile object itself (not the on-disk
2409 * file), see g_file_dup().
2411 * Returns: %TRUE on success, %FALSE otherwise.
2414 g_file_copy (GFile *source,
2416 GFileCopyFlags flags,
2417 GCancellable *cancellable,
2418 GFileProgressCallback progress_callback,
2419 gpointer progress_callback_data,
2426 g_return_val_if_fail (G_IS_FILE (source), FALSE);
2427 g_return_val_if_fail (G_IS_FILE (destination), FALSE);
2429 if (g_cancellable_set_error_if_cancelled (cancellable, error))
2432 iface = G_FILE_GET_IFACE (destination);
2436 res = (* iface->copy) (source, destination,
2438 progress_callback, progress_callback_data,
2444 if (my_error->domain != G_IO_ERROR || my_error->code != G_IO_ERROR_NOT_SUPPORTED)
2446 g_propagate_error (error, my_error);
2451 /* If the types are different, and the destination method failed
2452 also try the source method */
2453 if (G_OBJECT_TYPE (source) != G_OBJECT_TYPE (destination))
2455 iface = G_FILE_GET_IFACE (source);
2460 res = (* iface->copy) (source, destination,
2462 progress_callback, progress_callback_data,
2468 if (my_error->domain != G_IO_ERROR || my_error->code != G_IO_ERROR_NOT_SUPPORTED)
2470 g_propagate_error (error, my_error);
2476 return file_copy_fallback (source, destination, flags, cancellable,
2477 progress_callback, progress_callback_data,
2482 * g_file_copy_async:
2483 * @source: input #GFile.
2484 * @destination: destination #GFile
2485 * @flags: set of #GFileCopyFlags
2486 * @io_priority: the <link linkend="io-priority">I/O priority</link>
2488 * @cancellable: optional #GCancellable object, %NULL to ignore.
2489 * @progress_callback: function to callback with progress information
2490 * @progress_callback_data: user data to pass to @progress_callback
2491 * @callback: a #GAsyncReadyCallback to call when the request is satisfied
2492 * @user_data: the data to pass to callback function
2494 * Copies the file @source to the location specified by @destination
2495 * asynchronously. For details of the behaviour, see g_file_copy().
2497 * If @progress_callback is not %NULL, then that function that will be called
2498 * just like in g_file_copy(), however the callback will run in the main loop,
2499 * not in the thread that is doing the I/O operation.
2501 * When the operation is finished, @callback will be called. You can then call
2502 * g_file_copy_finish() to get the result of the operation.
2505 g_file_copy_async (GFile *source,
2507 GFileCopyFlags flags,
2509 GCancellable *cancellable,
2510 GFileProgressCallback progress_callback,
2511 gpointer progress_callback_data,
2512 GAsyncReadyCallback callback,
2517 g_return_if_fail (G_IS_FILE (source));
2518 g_return_if_fail (G_IS_FILE (destination));
2520 iface = G_FILE_GET_IFACE (source);
2521 (* iface->copy_async) (source,
2527 progress_callback_data,
2533 * g_file_copy_finish:
2534 * @file: input #GFile.
2535 * @res: a #GAsyncResult.
2536 * @error: a #GError, or %NULL
2538 * Finishes copying the file started with
2539 * g_file_copy_async().
2541 * Returns: a %TRUE on success, %FALSE on error.
2544 g_file_copy_finish (GFile *file,
2550 g_return_val_if_fail (G_IS_FILE (file), FALSE);
2551 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), FALSE);
2553 if (G_IS_SIMPLE_ASYNC_RESULT (res))
2555 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
2557 if (g_simple_async_result_propagate_error (simple, error))
2561 iface = G_FILE_GET_IFACE (file);
2562 return (* iface->copy_finish) (file, res, error);
2567 * @source: #GFile pointing to the source location.
2568 * @destination: #GFile pointing to the destination location.
2569 * @flags: set of #GFileCopyFlags.
2570 * @cancellable: optional #GCancellable object, %NULL to ignore.
2571 * @progress_callback: #GFileProgressCallback function for updates.
2572 * @progress_callback_data: gpointer to user data for the callback function.
2573 * @error: #GError for returning error conditions, or %NULL
2576 * Tries to move the file or directory @source to the location specified by @destination.
2577 * If native move operations are supported then this is used, otherwise a copy + delete
2578 * fallback is used. The native implementation may support moving directories (for instance
2579 * on moves inside the same filesystem), but the fallback code does not.
2581 * If the flag #G_FILE_COPY_OVERWRITE is specified an already
2582 * existing @destination file is overwritten.
2584 * If the flag #G_FILE_COPY_NOFOLLOW_SYMLINKS is specified then symlinks
2585 * will be copied as symlinks, otherwise the target of the
2586 * @source symlink will be copied.
2588 * If @cancellable is not %NULL, then the operation can be cancelled by
2589 * triggering the cancellable object from another thread. If the operation
2590 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
2592 * If @progress_callback is not %NULL, then the operation can be monitored by
2593 * setting this to a #GFileProgressCallback function. @progress_callback_data
2594 * will be passed to this function. It is guaranteed that this callback will
2595 * be called after all data has been transferred with the total number of bytes
2596 * copied during the operation.
2598 * If the @source file does not exist then the G_IO_ERROR_NOT_FOUND
2599 * error is returned, independent on the status of the @destination.
2601 * If #G_FILE_COPY_OVERWRITE is not specified and the target exists, then the
2602 * error G_IO_ERROR_EXISTS is returned.
2604 * If trying to overwrite a file over a directory the G_IO_ERROR_IS_DIRECTORY
2605 * error is returned. If trying to overwrite a directory with a directory the
2606 * G_IO_ERROR_WOULD_MERGE error is returned.
2608 * If the source is a directory and the target does not exist, or #G_FILE_COPY_OVERWRITE is
2609 * specified and the target is a file, then the G_IO_ERROR_WOULD_RECURSE error
2610 * may be returned (if the native move operation isn't available).
2612 * Returns: %TRUE on successful move, %FALSE otherwise.
2615 g_file_move (GFile *source,
2617 GFileCopyFlags flags,
2618 GCancellable *cancellable,
2619 GFileProgressCallback progress_callback,
2620 gpointer progress_callback_data,
2627 g_return_val_if_fail (G_IS_FILE (source), FALSE);
2628 g_return_val_if_fail (G_IS_FILE (destination), FALSE);
2630 if (g_cancellable_set_error_if_cancelled (cancellable, error))
2633 iface = G_FILE_GET_IFACE (destination);
2637 res = (* iface->move) (source, destination,
2639 progress_callback, progress_callback_data,
2645 if (my_error->domain != G_IO_ERROR || my_error->code != G_IO_ERROR_NOT_SUPPORTED)
2647 g_propagate_error (error, my_error);
2652 /* If the types are different, and the destination method failed
2653 also try the source method */
2654 if (G_OBJECT_TYPE (source) != G_OBJECT_TYPE (destination))
2656 iface = G_FILE_GET_IFACE (source);
2661 res = (* iface->move) (source, destination,
2663 progress_callback, progress_callback_data,
2669 if (my_error->domain != G_IO_ERROR || my_error->code != G_IO_ERROR_NOT_SUPPORTED)
2671 g_propagate_error (error, my_error);
2677 if (flags & G_FILE_COPY_NO_FALLBACK_FOR_MOVE)
2679 g_set_error_literal (error, G_IO_ERROR,
2680 G_IO_ERROR_NOT_SUPPORTED,
2681 _("Operation not supported"));
2685 flags |= G_FILE_COPY_ALL_METADATA;
2686 if (!g_file_copy (source, destination, flags, cancellable,
2687 progress_callback, progress_callback_data,
2691 return g_file_delete (source, cancellable, error);
2695 * g_file_make_directory
2696 * @file: input #GFile.
2697 * @cancellable: optional #GCancellable object, %NULL to ignore.
2698 * @error: a #GError, or %NULL
2700 * Creates a directory. Note that this will only create a child directory of
2701 * the immediate parent directory of the path or URI given by the #GFile. To
2702 * recursively create directories, see g_file_make_directory_with_parents().
2703 * This function will fail if the parent directory does not exist, setting
2704 * @error to %G_IO_ERROR_NOT_FOUND. If the file system doesn't support creating
2705 * directories, this function will fail, setting @error to
2706 * %G_IO_ERROR_NOT_SUPPORTED.
2708 * If @cancellable is not %NULL, then the operation can be cancelled by
2709 * triggering the cancellable object from another thread. If the operation
2710 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
2712 * Returns: %TRUE on successful creation, %FALSE otherwise.
2715 g_file_make_directory (GFile *file,
2716 GCancellable *cancellable,
2721 g_return_val_if_fail (G_IS_FILE (file), FALSE);
2723 if (g_cancellable_set_error_if_cancelled (cancellable, error))
2726 iface = G_FILE_GET_IFACE (file);
2728 if (iface->make_directory == NULL)
2730 g_set_error_literal (error, G_IO_ERROR,
2731 G_IO_ERROR_NOT_SUPPORTED,
2732 _("Operation not supported"));
2736 return (* iface->make_directory) (file, cancellable, error);
2740 * g_file_make_directory_with_parents:
2741 * @file: input #GFile.
2742 * @cancellable: optional #GCancellable object, %NULL to ignore.
2743 * @error: a #GError, or %NULL
2745 * Creates a directory and any parent directories that may not exist similar to
2746 * 'mkdir -p'. If the file system does not support creating directories, this
2747 * function will fail, setting @error to %G_IO_ERROR_NOT_SUPPORTED.
2749 * If @cancellable is not %NULL, then the operation can be cancelled by
2750 * triggering the cancellable object from another thread. If the operation
2751 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
2753 * Returns: %TRUE if all directories have been successfully created, %FALSE
2759 g_file_make_directory_with_parents (GFile *file,
2760 GCancellable *cancellable,
2764 GFile *parent_file, *work_file;
2765 GList *list = NULL, *l;
2766 GError *my_error = NULL;
2768 if (g_cancellable_set_error_if_cancelled (cancellable, error))
2771 result = g_file_make_directory (file, cancellable, &my_error);
2772 if (result || my_error->code != G_IO_ERROR_NOT_FOUND)
2775 g_propagate_error (error, my_error);
2781 while (!result && my_error->code == G_IO_ERROR_NOT_FOUND)
2783 g_clear_error (&my_error);
2785 parent_file = g_file_get_parent (work_file);
2786 if (parent_file == NULL)
2788 result = g_file_make_directory (parent_file, cancellable, &my_error);
2790 if (!result && my_error->code == G_IO_ERROR_NOT_FOUND)
2791 list = g_list_prepend (list, parent_file);
2793 work_file = parent_file;
2796 for (l = list; result && l; l = l->next)
2798 result = g_file_make_directory ((GFile *) l->data, cancellable, &my_error);
2802 while (list != NULL)
2804 g_object_unref ((GFile *) list->data);
2805 list = g_list_remove (list, list->data);
2810 g_propagate_error (error, my_error);
2814 return g_file_make_directory (file, cancellable, error);
2818 * g_file_make_symbolic_link:
2819 * @file: input #GFile.
2820 * @symlink_value: a string with the value of the new symlink.
2821 * @cancellable: optional #GCancellable object, %NULL to ignore.
2822 * @error: a #GError.
2824 * Creates a symbolic link.
2826 * If @cancellable is not %NULL, then the operation can be cancelled by
2827 * triggering the cancellable object from another thread. If the operation
2828 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
2830 * Returns: %TRUE on the creation of a new symlink, %FALSE otherwise.
2833 g_file_make_symbolic_link (GFile *file,
2834 const char *symlink_value,
2835 GCancellable *cancellable,
2840 g_return_val_if_fail (G_IS_FILE (file), FALSE);
2841 g_return_val_if_fail (symlink_value != NULL, FALSE);
2843 if (g_cancellable_set_error_if_cancelled (cancellable, error))
2846 if (*symlink_value == '\0')
2848 g_set_error_literal (error, G_IO_ERROR,
2849 G_IO_ERROR_INVALID_ARGUMENT,
2850 _("Invalid symlink value given"));
2854 iface = G_FILE_GET_IFACE (file);
2856 if (iface->make_symbolic_link == NULL)
2858 g_set_error_literal (error, G_IO_ERROR,
2859 G_IO_ERROR_NOT_SUPPORTED,
2860 _("Operation not supported"));
2864 return (* iface->make_symbolic_link) (file, symlink_value, cancellable, error);
2869 * @file: input #GFile.
2870 * @cancellable: optional #GCancellable object, %NULL to ignore.
2871 * @error: a #GError, or %NULL
2873 * Deletes a file. If the @file is a directory, it will only be deleted if it
2876 * If @cancellable is not %NULL, then the operation can be cancelled by
2877 * triggering the cancellable object from another thread. If the operation
2878 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
2880 * Returns: %TRUE if the file was deleted. %FALSE otherwise.
2883 g_file_delete (GFile *file,
2884 GCancellable *cancellable,
2889 g_return_val_if_fail (G_IS_FILE (file), FALSE);
2891 if (g_cancellable_set_error_if_cancelled (cancellable, error))
2894 iface = G_FILE_GET_IFACE (file);
2896 if (iface->delete_file == NULL)
2898 g_set_error_literal (error, G_IO_ERROR,
2899 G_IO_ERROR_NOT_SUPPORTED,
2900 _("Operation not supported"));
2904 return (* iface->delete_file) (file, cancellable, error);
2909 * @file: #GFile to send to trash.
2910 * @cancellable: optional #GCancellable object, %NULL to ignore.
2911 * @error: a #GError, or %NULL
2913 * Sends @file to the "Trashcan", if possible. This is similar to
2914 * deleting it, but the user can recover it before emptying the trashcan.
2915 * Not all file systems support trashing, so this call can return the
2916 * %G_IO_ERROR_NOT_SUPPORTED error.
2919 * If @cancellable is not %NULL, then the operation can be cancelled by
2920 * triggering the cancellable object from another thread. If the operation
2921 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
2923 * Returns: %TRUE on successful trash, %FALSE otherwise.
2926 g_file_trash (GFile *file,
2927 GCancellable *cancellable,
2932 g_return_val_if_fail (G_IS_FILE (file), FALSE);
2934 if (g_cancellable_set_error_if_cancelled (cancellable, error))
2937 iface = G_FILE_GET_IFACE (file);
2939 if (iface->trash == NULL)
2941 g_set_error_literal (error,
2942 G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
2943 _("Trash not supported"));
2947 return (* iface->trash) (file, cancellable, error);
2951 * g_file_set_display_name:
2952 * @file: input #GFile.
2953 * @display_name: a string.
2954 * @cancellable: optional #GCancellable object, %NULL to ignore.
2955 * @error: a #GError, or %NULL
2957 * Renames @file to the specified display name.
2959 * The display name is converted from UTF8 to the correct encoding for the target
2960 * filesystem if possible and the @file is renamed to this.
2962 * If you want to implement a rename operation in the user interface the edit name
2963 * (#G_FILE_ATTRIBUTE_STANDARD_EDIT_NAME) should be used as the initial value in the rename
2964 * widget, and then the result after editing should be passed to g_file_set_display_name().
2966 * On success the resulting converted filename is returned.
2968 * If @cancellable is not %NULL, then the operation can be cancelled by
2969 * triggering the cancellable object from another thread. If the operation
2970 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
2972 * Returns: a #GFile specifying what @file was renamed to, or %NULL
2973 * if there was an error.
2974 * Free the returned object with g_object_unref().
2977 g_file_set_display_name (GFile *file,
2978 const char *display_name,
2979 GCancellable *cancellable,
2984 g_return_val_if_fail (G_IS_FILE (file), NULL);
2985 g_return_val_if_fail (display_name != NULL, NULL);
2987 if (strchr (display_name, G_DIR_SEPARATOR) != NULL)
2991 G_IO_ERROR_INVALID_ARGUMENT,
2992 _("File names cannot contain '%c'"), G_DIR_SEPARATOR);
2996 if (g_cancellable_set_error_if_cancelled (cancellable, error))
2999 iface = G_FILE_GET_IFACE (file);
3001 return (* iface->set_display_name) (file, display_name, cancellable, error);
3005 * g_file_set_display_name_async:
3006 * @file: input #GFile.
3007 * @display_name: a string.
3008 * @io_priority: the <link linkend="io-priority">I/O priority</link>
3010 * @cancellable: optional #GCancellable object, %NULL to ignore.
3011 * @callback: a #GAsyncReadyCallback to call when the request is satisfied
3012 * @user_data: the data to pass to callback function
3014 * Asynchronously sets the display name for a given #GFile.
3016 * For more details, see g_set_display_name() which is
3017 * the synchronous version of this call.
3019 * When the operation is finished, @callback will be called. You can then call
3020 * g_file_set_display_name_finish() to get the result of the operation.
3023 g_file_set_display_name_async (GFile *file,
3024 const char *display_name,
3026 GCancellable *cancellable,
3027 GAsyncReadyCallback callback,
3032 g_return_if_fail (G_IS_FILE (file));
3033 g_return_if_fail (display_name != NULL);
3035 iface = G_FILE_GET_IFACE (file);
3036 (* iface->set_display_name_async) (file,
3045 * g_file_set_display_name_finish:
3046 * @file: input #GFile.
3047 * @res: a #GAsyncResult.
3048 * @error: a #GError, or %NULL
3050 * Finishes setting a display name started with
3051 * g_file_set_display_name_async().
3053 * Returns: a #GFile or %NULL on error.
3054 * Free the returned object with g_object_unref().
3057 g_file_set_display_name_finish (GFile *file,
3063 g_return_val_if_fail (G_IS_FILE (file), NULL);
3064 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
3066 if (G_IS_SIMPLE_ASYNC_RESULT (res))
3068 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
3069 if (g_simple_async_result_propagate_error (simple, error))
3073 iface = G_FILE_GET_IFACE (file);
3074 return (* iface->set_display_name_finish) (file, res, error);
3078 * g_file_query_settable_attributes:
3079 * @file: input #GFile.
3080 * @cancellable: optional #GCancellable object, %NULL to ignore.
3081 * @error: a #GError, or %NULL
3083 * Obtain the list of settable attributes for the file.
3085 * Returns the type and full attribute name of all the attributes
3086 * that can be set on this file. This doesn't mean setting it will always
3087 * succeed though, you might get an access failure, or some specific
3088 * file may not support a specific attribute.
3090 * If @cancellable is not %NULL, then the operation can be cancelled by
3091 * triggering the cancellable object from another thread. If the operation
3092 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3094 * Returns: a #GFileAttributeInfoList describing the settable attributes.
3095 * When you are done with it, release it with g_file_attribute_info_list_unref()
3097 GFileAttributeInfoList *
3098 g_file_query_settable_attributes (GFile *file,
3099 GCancellable *cancellable,
3104 GFileAttributeInfoList *list;
3106 g_return_val_if_fail (G_IS_FILE (file), NULL);
3108 if (g_cancellable_set_error_if_cancelled (cancellable, error))
3111 iface = G_FILE_GET_IFACE (file);
3113 if (iface->query_settable_attributes == NULL)
3114 return g_file_attribute_info_list_new ();
3117 list = (* iface->query_settable_attributes) (file, cancellable, &my_error);
3121 if (my_error->domain == G_IO_ERROR && my_error->code == G_IO_ERROR_NOT_SUPPORTED)
3123 list = g_file_attribute_info_list_new ();
3124 g_error_free (my_error);
3127 g_propagate_error (error, my_error);
3134 * g_file_query_writable_namespaces:
3135 * @file: input #GFile.
3136 * @cancellable: optional #GCancellable object, %NULL to ignore.
3137 * @error: a #GError, or %NULL
3139 * Obtain the list of attribute namespaces where new attributes
3140 * can be created by a user. An example of this is extended
3141 * attributes (in the "xattr" namespace).
3143 * If @cancellable is not %NULL, then the operation can be cancelled by
3144 * triggering the cancellable object from another thread. If the operation
3145 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3147 * Returns: a #GFileAttributeInfoList describing the writable namespaces.
3148 * When you are done with it, release it with g_file_attribute_info_list_unref()
3150 GFileAttributeInfoList *
3151 g_file_query_writable_namespaces (GFile *file,
3152 GCancellable *cancellable,
3157 GFileAttributeInfoList *list;
3159 g_return_val_if_fail (G_IS_FILE (file), NULL);
3161 if (g_cancellable_set_error_if_cancelled (cancellable, error))
3164 iface = G_FILE_GET_IFACE (file);
3166 if (iface->query_writable_namespaces == NULL)
3167 return g_file_attribute_info_list_new ();
3170 list = (* iface->query_writable_namespaces) (file, cancellable, &my_error);
3174 if (my_error->domain == G_IO_ERROR && my_error->code == G_IO_ERROR_NOT_SUPPORTED)
3176 list = g_file_attribute_info_list_new ();
3177 g_error_free (my_error);
3180 g_propagate_error (error, my_error);
3187 * g_file_set_attribute:
3188 * @file: input #GFile.
3189 * @attribute: a string containing the attribute's name.
3190 * @type: The type of the attribute
3191 * @value_p: a pointer to the value (or the pointer itself if the type is a pointer type)
3192 * @flags: a set of #GFileQueryInfoFlags.
3193 * @cancellable: optional #GCancellable object, %NULL to ignore.
3194 * @error: a #GError, or %NULL
3196 * Sets an attribute in the file with attribute name @attribute to @value.
3198 * If @cancellable is not %NULL, then the operation can be cancelled by
3199 * triggering the cancellable object from another thread. If the operation
3200 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3202 * Returns: %TRUE if the attribute was set, %FALSE otherwise.
3205 g_file_set_attribute (GFile *file,
3206 const char *attribute,
3207 GFileAttributeType type,
3209 GFileQueryInfoFlags flags,
3210 GCancellable *cancellable,
3215 g_return_val_if_fail (G_IS_FILE (file), FALSE);
3216 g_return_val_if_fail (attribute != NULL && *attribute != '\0', FALSE);
3218 if (g_cancellable_set_error_if_cancelled (cancellable, error))
3221 iface = G_FILE_GET_IFACE (file);
3223 if (iface->set_attribute == NULL)
3225 g_set_error_literal (error, G_IO_ERROR,
3226 G_IO_ERROR_NOT_SUPPORTED,
3227 _("Operation not supported"));
3231 return (* iface->set_attribute) (file, attribute, type, value_p, flags, cancellable, error);
3235 * g_file_set_attributes_from_info:
3236 * @file: input #GFile.
3237 * @info: a #GFileInfo.
3238 * @flags: #GFileQueryInfoFlags
3239 * @cancellable: optional #GCancellable object, %NULL to ignore.
3240 * @error: a #GError, or %NULL
3242 * Tries to set all attributes in the #GFileInfo on the target values,
3243 * not stopping on the first error.
3245 * If there is any error during this operation then @error will be set to
3246 * the first error. Error on particular fields are flagged by setting
3247 * the "status" field in the attribute value to
3248 * %G_FILE_ATTRIBUTE_STATUS_ERROR_SETTING, which means you can also detect
3251 * If @cancellable is not %NULL, then the operation can be cancelled by
3252 * triggering the cancellable object from another thread. If the operation
3253 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3255 * Returns: %TRUE if there was any error, %FALSE otherwise.
3258 g_file_set_attributes_from_info (GFile *file,
3260 GFileQueryInfoFlags flags,
3261 GCancellable *cancellable,
3266 g_return_val_if_fail (G_IS_FILE (file), FALSE);
3267 g_return_val_if_fail (G_IS_FILE_INFO (info), FALSE);
3269 if (g_cancellable_set_error_if_cancelled (cancellable, error))
3272 g_file_info_clear_status (info);
3274 iface = G_FILE_GET_IFACE (file);
3276 return (* iface->set_attributes_from_info) (file,
3285 g_file_real_set_attributes_from_info (GFile *file,
3287 GFileQueryInfoFlags flags,
3288 GCancellable *cancellable,
3294 GFileAttributeValue *value;
3298 attributes = g_file_info_list_attributes (info, NULL);
3300 for (i = 0; attributes[i] != NULL; i++)
3302 value = _g_file_info_get_attribute_value (info, attributes[i]);
3304 if (value->status != G_FILE_ATTRIBUTE_STATUS_UNSET)
3307 if (!g_file_set_attribute (file, attributes[i],
3308 value->type, _g_file_attribute_value_peek_as_pointer (value),
3309 flags, cancellable, error))
3311 value->status = G_FILE_ATTRIBUTE_STATUS_ERROR_SETTING;
3313 /* Don't set error multiple times */
3317 value->status = G_FILE_ATTRIBUTE_STATUS_SET;
3320 g_strfreev (attributes);
3326 * g_file_set_attributes_async:
3327 * @file: input #GFile.
3328 * @info: a #GFileInfo.
3329 * @flags: a #GFileQueryInfoFlags.
3330 * @io_priority: the <link linkend="io-priority">I/O priority</link>
3332 * @cancellable: optional #GCancellable object, %NULL to ignore.
3333 * @callback: a #GAsyncReadyCallback.
3334 * @user_data: a #gpointer.
3336 * Asynchronously sets the attributes of @file with @info.
3338 * For more details, see g_file_set_attributes_from_info() which is
3339 * the synchronous version of this call.
3341 * When the operation is finished, @callback will be called. You can then call
3342 * g_file_set_attributes_finish() to get the result of the operation.
3345 g_file_set_attributes_async (GFile *file,
3347 GFileQueryInfoFlags flags,
3349 GCancellable *cancellable,
3350 GAsyncReadyCallback callback,
3355 g_return_if_fail (G_IS_FILE (file));
3356 g_return_if_fail (G_IS_FILE_INFO (info));
3358 iface = G_FILE_GET_IFACE (file);
3359 (* iface->set_attributes_async) (file,
3369 * g_file_set_attributes_finish:
3370 * @file: input #GFile.
3371 * @result: a #GAsyncResult.
3372 * @info: a #GFileInfo.
3373 * @error: a #GError, or %NULL
3375 * Finishes setting an attribute started in g_file_set_attributes_async().
3377 * Returns: %TRUE if the attributes were set correctly, %FALSE otherwise.
3380 g_file_set_attributes_finish (GFile *file,
3381 GAsyncResult *result,
3387 g_return_val_if_fail (G_IS_FILE (file), FALSE);
3388 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
3390 /* No standard handling of errors here, as we must set info even
3393 iface = G_FILE_GET_IFACE (file);
3394 return (* iface->set_attributes_finish) (file, result, info, error);
3398 * g_file_set_attribute_string:
3399 * @file: input #GFile.
3400 * @attribute: a string containing the attribute's name.
3401 * @value: a string containing the attribute's value.
3402 * @flags: #GFileQueryInfoFlags.
3403 * @cancellable: optional #GCancellable object, %NULL to ignore.
3404 * @error: a #GError, or %NULL
3406 * Sets @attribute of type %G_FILE_ATTRIBUTE_TYPE_STRING to @value.
3407 * If @attribute is of a different type, this operation will fail.
3409 * If @cancellable is not %NULL, then the operation can be cancelled by
3410 * triggering the cancellable object from another thread. If the operation
3411 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3413 * Returns: %TRUE if the @attribute was successfully set, %FALSE otherwise.
3416 g_file_set_attribute_string (GFile *file,
3417 const char *attribute,
3419 GFileQueryInfoFlags flags,
3420 GCancellable *cancellable,
3423 return g_file_set_attribute (file, attribute,
3424 G_FILE_ATTRIBUTE_TYPE_STRING, (gpointer)value,
3425 flags, cancellable, error);
3429 * g_file_set_attribute_byte_string:
3430 * @file: input #GFile.
3431 * @attribute: a string containing the attribute's name.
3432 * @value: a string containing the attribute's new value.
3433 * @flags: a #GFileQueryInfoFlags.
3434 * @cancellable: optional #GCancellable object, %NULL to ignore.
3435 * @error: a #GError, or %NULL
3437 * Sets @attribute of type %G_FILE_ATTRIBUTE_TYPE_BYTE_STRING to @value.
3438 * If @attribute is of a different type, this operation will fail,
3441 * If @cancellable is not %NULL, then the operation can be cancelled by
3442 * triggering the cancellable object from another thread. If the operation
3443 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3445 * Returns: %TRUE if the @attribute was successfully set to @value
3446 * in the @file, %FALSE otherwise.
3449 g_file_set_attribute_byte_string (GFile *file,
3450 const char *attribute,
3452 GFileQueryInfoFlags flags,
3453 GCancellable *cancellable,
3456 return g_file_set_attribute (file, attribute,
3457 G_FILE_ATTRIBUTE_TYPE_BYTE_STRING, (gpointer)value,
3458 flags, cancellable, error);
3462 * g_file_set_attribute_uint32:
3463 * @file: input #GFile.
3464 * @attribute: a string containing the attribute's name.
3465 * @value: a #guint32 containing the attribute's new value.
3466 * @flags: a #GFileQueryInfoFlags.
3467 * @cancellable: optional #GCancellable object, %NULL to ignore.
3468 * @error: a #GError, or %NULL
3470 * Sets @attribute of type %G_FILE_ATTRIBUTE_TYPE_UINT32 to @value.
3471 * If @attribute is of a different type, this operation will fail.
3473 * If @cancellable is not %NULL, then the operation can be cancelled by
3474 * triggering the cancellable object from another thread. If the operation
3475 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3477 * Returns: %TRUE if the @attribute was successfully set to @value
3478 * in the @file, %FALSE otherwise.
3481 g_file_set_attribute_uint32 (GFile *file,
3482 const char *attribute,
3484 GFileQueryInfoFlags flags,
3485 GCancellable *cancellable,
3488 return g_file_set_attribute (file, attribute,
3489 G_FILE_ATTRIBUTE_TYPE_UINT32, &value,
3490 flags, cancellable, error);
3494 * g_file_set_attribute_int32:
3495 * @file: input #GFile.
3496 * @attribute: a string containing the attribute's name.
3497 * @value: a #gint32 containing the attribute's new value.
3498 * @flags: a #GFileQueryInfoFlags.
3499 * @cancellable: optional #GCancellable object, %NULL to ignore.
3500 * @error: a #GError, or %NULL
3502 * Sets @attribute of type %G_FILE_ATTRIBUTE_TYPE_INT32 to @value.
3503 * If @attribute is of a different type, this operation will fail.
3505 * If @cancellable is not %NULL, then the operation can be cancelled by
3506 * triggering the cancellable object from another thread. If the operation
3507 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3509 * Returns: %TRUE if the @attribute was successfully set to @value
3510 * in the @file, %FALSE otherwise.
3513 g_file_set_attribute_int32 (GFile *file,
3514 const char *attribute,
3516 GFileQueryInfoFlags flags,
3517 GCancellable *cancellable,
3520 return g_file_set_attribute (file, attribute,
3521 G_FILE_ATTRIBUTE_TYPE_INT32, &value,
3522 flags, cancellable, error);
3526 * g_file_set_attribute_uint64:
3527 * @file: input #GFile.
3528 * @attribute: a string containing the attribute's name.
3529 * @value: a #guint64 containing the attribute's new value.
3530 * @flags: a #GFileQueryInfoFlags.
3531 * @cancellable: optional #GCancellable object, %NULL to ignore.
3532 * @error: a #GError, or %NULL
3534 * Sets @attribute of type %G_FILE_ATTRIBUTE_TYPE_UINT64 to @value.
3535 * If @attribute is of a different type, this operation will fail.
3537 * If @cancellable is not %NULL, then the operation can be cancelled by
3538 * triggering the cancellable object from another thread. If the operation
3539 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3541 * Returns: %TRUE if the @attribute was successfully set to @value
3542 * in the @file, %FALSE otherwise.
3545 g_file_set_attribute_uint64 (GFile *file,
3546 const char *attribute,
3548 GFileQueryInfoFlags flags,
3549 GCancellable *cancellable,
3552 return g_file_set_attribute (file, attribute,
3553 G_FILE_ATTRIBUTE_TYPE_UINT64, &value,
3554 flags, cancellable, error);
3558 * g_file_set_attribute_int64:
3559 * @file: input #GFile.
3560 * @attribute: a string containing the attribute's name.
3561 * @value: a #guint64 containing the attribute's new value.
3562 * @flags: a #GFileQueryInfoFlags.
3563 * @cancellable: optional #GCancellable object, %NULL to ignore.
3564 * @error: a #GError, or %NULL
3566 * Sets @attribute of type %G_FILE_ATTRIBUTE_TYPE_INT64 to @value.
3567 * If @attribute is of a different type, this operation will fail.
3569 * If @cancellable is not %NULL, then the operation can be cancelled by
3570 * triggering the cancellable object from another thread. If the operation
3571 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3573 * Returns: %TRUE if the @attribute was successfully set, %FALSE otherwise.
3576 g_file_set_attribute_int64 (GFile *file,
3577 const char *attribute,
3579 GFileQueryInfoFlags flags,
3580 GCancellable *cancellable,
3583 return g_file_set_attribute (file, attribute,
3584 G_FILE_ATTRIBUTE_TYPE_INT64, &value,
3585 flags, cancellable, error);
3589 * g_file_mount_mountable:
3590 * @file: input #GFile.
3591 * @flags: flags affecting the operation
3592 * @mount_operation: a #GMountOperation, or %NULL to avoid user interaction.
3593 * @cancellable: optional #GCancellable object, %NULL to ignore.
3594 * @callback: a #GAsyncReadyCallback to call when the request is satisfied, or %NULL.
3595 * @user_data: the data to pass to callback function
3597 * Mounts a file of type G_FILE_TYPE_MOUNTABLE.
3598 * Using @mount_operation, you can request callbacks when, for instance,
3599 * passwords are needed during authentication.
3601 * If @cancellable is not %NULL, then the operation can be cancelled by
3602 * triggering the cancellable object from another thread. If the operation
3603 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3605 * When the operation is finished, @callback will be called. You can then call
3606 * g_file_mount_mountable_finish() to get the result of the operation.
3609 g_file_mount_mountable (GFile *file,
3610 GMountMountFlags flags,
3611 GMountOperation *mount_operation,
3612 GCancellable *cancellable,
3613 GAsyncReadyCallback callback,
3618 g_return_if_fail (G_IS_FILE (file));
3620 iface = G_FILE_GET_IFACE (file);
3622 if (iface->mount_mountable == NULL)
3624 g_simple_async_report_error_in_idle (G_OBJECT (file),
3628 G_IO_ERROR_NOT_SUPPORTED,
3629 _("Operation not supported"));
3633 (* iface->mount_mountable) (file,
3642 * g_file_mount_mountable_finish:
3643 * @file: input #GFile.
3644 * @result: a #GAsyncResult.
3645 * @error: a #GError, or %NULL
3647 * Finishes a mount operation. See g_file_mount_mountable() for details.
3649 * Finish an asynchronous mount operation that was started
3650 * with g_file_mount_mountable().
3652 * Returns: a #GFile or %NULL on error.
3653 * Free the returned object with g_object_unref().
3656 g_file_mount_mountable_finish (GFile *file,
3657 GAsyncResult *result,
3662 g_return_val_if_fail (G_IS_FILE (file), NULL);
3663 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), NULL);
3665 if (G_IS_SIMPLE_ASYNC_RESULT (result))
3667 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
3668 if (g_simple_async_result_propagate_error (simple, error))
3672 iface = G_FILE_GET_IFACE (file);
3673 return (* iface->mount_mountable_finish) (file, result, error);
3677 * g_file_unmount_mountable:
3678 * @file: input #GFile.
3679 * @flags: flags affecting the operation
3680 * @cancellable: optional #GCancellable object, %NULL to ignore.
3681 * @callback: a #GAsyncReadyCallback to call when the request is satisfied, or %NULL.
3682 * @user_data: the data to pass to callback function
3684 * Unmounts a file of type G_FILE_TYPE_MOUNTABLE.
3686 * If @cancellable is not %NULL, then the operation can be cancelled by
3687 * triggering the cancellable object from another thread. If the operation
3688 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3690 * When the operation is finished, @callback will be called. You can then call
3691 * g_file_unmount_mountable_finish() to get the result of the operation.
3694 g_file_unmount_mountable (GFile *file,
3695 GMountUnmountFlags flags,
3696 GCancellable *cancellable,
3697 GAsyncReadyCallback callback,
3702 g_return_if_fail (G_IS_FILE (file));
3704 iface = G_FILE_GET_IFACE (file);
3706 if (iface->unmount_mountable == NULL)
3708 g_simple_async_report_error_in_idle (G_OBJECT (file),
3712 G_IO_ERROR_NOT_SUPPORTED,
3713 _("Operation not supported"));
3717 (* iface->unmount_mountable) (file,
3725 * g_file_unmount_mountable_finish:
3726 * @file: input #GFile.
3727 * @result: a #GAsyncResult.
3728 * @error: a #GError, or %NULL
3730 * Finishes an unmount operation, see g_file_unmount_mountable() for details.
3732 * Finish an asynchronous unmount operation that was started
3733 * with g_file_unmount_mountable().
3735 * Returns: %TRUE if the operation finished successfully. %FALSE
3739 g_file_unmount_mountable_finish (GFile *file,
3740 GAsyncResult *result,
3745 g_return_val_if_fail (G_IS_FILE (file), FALSE);
3746 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
3748 if (G_IS_SIMPLE_ASYNC_RESULT (result))
3750 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
3751 if (g_simple_async_result_propagate_error (simple, error))
3755 iface = G_FILE_GET_IFACE (file);
3756 return (* iface->unmount_mountable_finish) (file, result, error);
3760 * g_file_eject_mountable:
3761 * @file: input #GFile.
3762 * @flags: flags affecting the operation
3763 * @cancellable: optional #GCancellable object, %NULL to ignore.
3764 * @callback: a #GAsyncReadyCallback to call when the request is satisfied, or %NULL.
3765 * @user_data: the data to pass to callback function
3767 * Starts an asynchronous eject on a mountable.
3768 * When this operation has completed, @callback will be called with
3769 * @user_user data, and the operation can be finalized with
3770 * g_file_eject_mountable_finish().
3772 * If @cancellable is not %NULL, then the operation can be cancelled by
3773 * triggering the cancellable object from another thread. If the operation
3774 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3777 g_file_eject_mountable (GFile *file,
3778 GMountUnmountFlags flags,
3779 GCancellable *cancellable,
3780 GAsyncReadyCallback callback,
3785 g_return_if_fail (G_IS_FILE (file));
3787 iface = G_FILE_GET_IFACE (file);
3789 if (iface->eject_mountable == NULL)
3791 g_simple_async_report_error_in_idle (G_OBJECT (file),
3795 G_IO_ERROR_NOT_SUPPORTED,
3796 _("Operation not supported"));
3800 (* iface->eject_mountable) (file,
3808 * g_file_eject_mountable_finish:
3809 * @file: input #GFile.
3810 * @result: a #GAsyncResult.
3811 * @error: a #GError, or %NULL
3813 * Finishes an asynchronous eject operation started by
3814 * g_file_eject_mountable().
3816 * Returns: %TRUE if the @file was ejected successfully. %FALSE
3820 g_file_eject_mountable_finish (GFile *file,
3821 GAsyncResult *result,
3826 g_return_val_if_fail (G_IS_FILE (file), FALSE);
3827 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
3829 if (G_IS_SIMPLE_ASYNC_RESULT (result))
3831 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
3832 if (g_simple_async_result_propagate_error (simple, error))
3836 iface = G_FILE_GET_IFACE (file);
3837 return (* iface->eject_mountable_finish) (file, result, error);
3841 * g_file_monitor_directory:
3842 * @file: input #GFile.
3843 * @flags: a set of #GFileMonitorFlags.
3844 * @cancellable: optional #GCancellable object, %NULL to ignore.
3845 * @error: a #GError, or %NULL.
3847 * Obtains a directory monitor for the given file.
3848 * This may fail if directory monitoring is not supported.
3850 * If @cancellable is not %NULL, then the operation can be cancelled by
3851 * triggering the cancellable object from another thread. If the operation
3852 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3854 * Returns: a #GFileMonitor for the given @file, or %NULL on error.
3855 * Free the returned object with g_object_unref().
3858 g_file_monitor_directory (GFile *file,
3859 GFileMonitorFlags flags,
3860 GCancellable *cancellable,
3865 g_return_val_if_fail (G_IS_FILE (file), NULL);
3867 if (g_cancellable_set_error_if_cancelled (cancellable, error))
3870 iface = G_FILE_GET_IFACE (file);
3872 if (iface->monitor_dir == NULL)
3874 g_set_error_literal (error, G_IO_ERROR,
3875 G_IO_ERROR_NOT_SUPPORTED,
3876 _("Operation not supported"));
3880 return (* iface->monitor_dir) (file, flags, cancellable, error);
3884 * g_file_monitor_file:
3885 * @file: input #GFile.
3886 * @flags: a set of #GFileMonitorFlags.
3887 * @cancellable: optional #GCancellable object, %NULL to ignore.
3888 * @error: a #GError, or %NULL.
3890 * Obtains a file monitor for the given file. If no file notification
3891 * mechanism exists, then regular polling of the file is used.
3893 * If @cancellable is not %NULL, then the operation can be cancelled by
3894 * triggering the cancellable object from another thread. If the operation
3895 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3897 * Returns: a #GFileMonitor for the given @file, or %NULL on error.
3898 * Free the returned object with g_object_unref().
3901 g_file_monitor_file (GFile *file,
3902 GFileMonitorFlags flags,
3903 GCancellable *cancellable,
3907 GFileMonitor *monitor;
3909 g_return_val_if_fail (G_IS_FILE (file), NULL);
3911 if (g_cancellable_set_error_if_cancelled (cancellable, error))
3914 iface = G_FILE_GET_IFACE (file);
3918 if (iface->monitor_file)
3919 monitor = (* iface->monitor_file) (file, flags, cancellable, NULL);
3921 /* Fallback to polling */
3922 if (monitor == NULL)
3923 monitor = _g_poll_file_monitor_new (file);
3930 * @file: input #GFile
3931 * @flags: a set of #GFileMonitorFlags
3932 * @cancellable: optional #GCancellable object, %NULL to ignore
3933 * @error: a #GError, or %NULL
3935 * Obtains a file or directory monitor for the given file, depending
3936 * on the type of the file.
3938 * If @cancellable is not %NULL, then the operation can be cancelled by
3939 * triggering the cancellable object from another thread. If the operation
3940 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3942 * Returns: a #GFileMonitor for the given @file, or %NULL on error.
3943 * Free the returned object with g_object_unref().
3948 g_file_monitor (GFile *file,
3949 GFileMonitorFlags flags,
3950 GCancellable *cancellable,
3953 if (g_file_query_file_type (file, 0, cancellable) == G_FILE_TYPE_DIRECTORY)
3954 return g_file_monitor_directory (file, flags, cancellable, error);
3956 return g_file_monitor_file (file, flags, cancellable, error);
3959 /********************************************
3960 * Default implementation of async ops *
3961 ********************************************/
3965 GFileQueryInfoFlags flags;
3967 } QueryInfoAsyncData;
3970 query_info_data_free (QueryInfoAsyncData *data)
3973 g_object_unref (data->info);
3974 g_free (data->attributes);
3979 query_info_async_thread (GSimpleAsyncResult *res,
3981 GCancellable *cancellable)
3983 GError *error = NULL;
3984 QueryInfoAsyncData *data;
3987 data = g_simple_async_result_get_op_res_gpointer (res);
3989 info = g_file_query_info (G_FILE (object), data->attributes, data->flags, cancellable, &error);
3993 g_simple_async_result_set_from_error (res, error);
3994 g_error_free (error);
4001 g_file_real_query_info_async (GFile *file,
4002 const char *attributes,
4003 GFileQueryInfoFlags flags,
4005 GCancellable *cancellable,
4006 GAsyncReadyCallback callback,
4009 GSimpleAsyncResult *res;
4010 QueryInfoAsyncData *data;
4012 data = g_new0 (QueryInfoAsyncData, 1);
4013 data->attributes = g_strdup (attributes);
4014 data->flags = flags;
4016 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_query_info_async);
4017 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)query_info_data_free);
4019 g_simple_async_result_run_in_thread (res, query_info_async_thread, io_priority, cancellable);
4020 g_object_unref (res);
4024 g_file_real_query_info_finish (GFile *file,
4028 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
4029 QueryInfoAsyncData *data;
4031 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_query_info_async);
4033 data = g_simple_async_result_get_op_res_gpointer (simple);
4035 return g_object_ref (data->info);
4043 } QueryFilesystemInfoAsyncData;
4046 query_filesystem_info_data_free (QueryFilesystemInfoAsyncData *data)
4049 g_object_unref (data->info);
4050 g_free (data->attributes);
4055 query_filesystem_info_async_thread (GSimpleAsyncResult *res,
4057 GCancellable *cancellable)
4059 GError *error = NULL;
4060 QueryFilesystemInfoAsyncData *data;
4063 data = g_simple_async_result_get_op_res_gpointer (res);
4065 info = g_file_query_filesystem_info (G_FILE (object), data->attributes, cancellable, &error);
4069 g_simple_async_result_set_from_error (res, error);
4070 g_error_free (error);
4077 g_file_real_query_filesystem_info_async (GFile *file,
4078 const char *attributes,
4080 GCancellable *cancellable,
4081 GAsyncReadyCallback callback,
4084 GSimpleAsyncResult *res;
4085 QueryFilesystemInfoAsyncData *data;
4087 data = g_new0 (QueryFilesystemInfoAsyncData, 1);
4088 data->attributes = g_strdup (attributes);
4090 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_query_filesystem_info_async);
4091 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)query_filesystem_info_data_free);
4093 g_simple_async_result_run_in_thread (res, query_filesystem_info_async_thread, io_priority, cancellable);
4094 g_object_unref (res);
4098 g_file_real_query_filesystem_info_finish (GFile *file,
4102 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
4103 QueryFilesystemInfoAsyncData *data;
4105 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_query_filesystem_info_async);
4107 data = g_simple_async_result_get_op_res_gpointer (simple);
4109 return g_object_ref (data->info);
4116 GFileQueryInfoFlags flags;
4117 GFileEnumerator *enumerator;
4118 } EnumerateChildrenAsyncData;
4121 enumerate_children_data_free (EnumerateChildrenAsyncData *data)
4123 if (data->enumerator)
4124 g_object_unref (data->enumerator);
4125 g_free (data->attributes);
4130 enumerate_children_async_thread (GSimpleAsyncResult *res,
4132 GCancellable *cancellable)
4134 GError *error = NULL;
4135 EnumerateChildrenAsyncData *data;
4136 GFileEnumerator *enumerator;
4138 data = g_simple_async_result_get_op_res_gpointer (res);
4140 enumerator = g_file_enumerate_children (G_FILE (object), data->attributes, data->flags, cancellable, &error);
4142 if (enumerator == NULL)
4144 g_simple_async_result_set_from_error (res, error);
4145 g_error_free (error);
4148 data->enumerator = enumerator;
4152 g_file_real_enumerate_children_async (GFile *file,
4153 const char *attributes,
4154 GFileQueryInfoFlags flags,
4156 GCancellable *cancellable,
4157 GAsyncReadyCallback callback,
4160 GSimpleAsyncResult *res;
4161 EnumerateChildrenAsyncData *data;
4163 data = g_new0 (EnumerateChildrenAsyncData, 1);
4164 data->attributes = g_strdup (attributes);
4165 data->flags = flags;
4167 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_enumerate_children_async);
4168 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)enumerate_children_data_free);
4170 g_simple_async_result_run_in_thread (res, enumerate_children_async_thread, io_priority, cancellable);
4171 g_object_unref (res);
4174 static GFileEnumerator *
4175 g_file_real_enumerate_children_finish (GFile *file,
4179 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
4180 EnumerateChildrenAsyncData *data;
4182 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_enumerate_children_async);
4184 data = g_simple_async_result_get_op_res_gpointer (simple);
4185 if (data->enumerator)
4186 return g_object_ref (data->enumerator);
4192 open_read_async_thread (GSimpleAsyncResult *res,
4194 GCancellable *cancellable)
4197 GFileInputStream *stream;
4198 GError *error = NULL;
4200 iface = G_FILE_GET_IFACE (object);
4202 if (iface->read_fn == NULL)
4204 g_set_error_literal (error, G_IO_ERROR,
4205 G_IO_ERROR_NOT_SUPPORTED,
4206 _("Operation not supported"));
4208 g_simple_async_result_set_from_error (res, error);
4209 g_error_free (error);
4214 stream = iface->read_fn (G_FILE (object), cancellable, &error);
4218 g_simple_async_result_set_from_error (res, error);
4219 g_error_free (error);
4222 g_simple_async_result_set_op_res_gpointer (res, stream, g_object_unref);
4226 g_file_real_read_async (GFile *file,
4228 GCancellable *cancellable,
4229 GAsyncReadyCallback callback,
4232 GSimpleAsyncResult *res;
4234 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_read_async);
4236 g_simple_async_result_run_in_thread (res, open_read_async_thread, io_priority, cancellable);
4237 g_object_unref (res);
4240 static GFileInputStream *
4241 g_file_real_read_finish (GFile *file,
4245 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
4248 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_read_async);
4250 op = g_simple_async_result_get_op_res_gpointer (simple);
4252 return g_object_ref (op);
4258 append_to_async_thread (GSimpleAsyncResult *res,
4260 GCancellable *cancellable)
4263 GFileCreateFlags *data;
4264 GFileOutputStream *stream;
4265 GError *error = NULL;
4267 iface = G_FILE_GET_IFACE (object);
4269 data = g_simple_async_result_get_op_res_gpointer (res);
4271 stream = iface->append_to (G_FILE (object), *data, cancellable, &error);
4275 g_simple_async_result_set_from_error (res, error);
4276 g_error_free (error);
4279 g_simple_async_result_set_op_res_gpointer (res, stream, g_object_unref);
4283 g_file_real_append_to_async (GFile *file,
4284 GFileCreateFlags flags,
4286 GCancellable *cancellable,
4287 GAsyncReadyCallback callback,
4290 GFileCreateFlags *data;
4291 GSimpleAsyncResult *res;
4293 data = g_new0 (GFileCreateFlags, 1);
4296 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_append_to_async);
4297 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)g_free);
4299 g_simple_async_result_run_in_thread (res, append_to_async_thread, io_priority, cancellable);
4300 g_object_unref (res);
4303 static GFileOutputStream *
4304 g_file_real_append_to_finish (GFile *file,
4308 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
4311 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_append_to_async);
4313 op = g_simple_async_result_get_op_res_gpointer (simple);
4315 return g_object_ref (op);
4321 create_async_thread (GSimpleAsyncResult *res,
4323 GCancellable *cancellable)
4326 GFileCreateFlags *data;
4327 GFileOutputStream *stream;
4328 GError *error = NULL;
4330 iface = G_FILE_GET_IFACE (object);
4332 data = g_simple_async_result_get_op_res_gpointer (res);
4334 stream = iface->create (G_FILE (object), *data, cancellable, &error);
4338 g_simple_async_result_set_from_error (res, error);
4339 g_error_free (error);
4342 g_simple_async_result_set_op_res_gpointer (res, stream, g_object_unref);
4346 g_file_real_create_async (GFile *file,
4347 GFileCreateFlags flags,
4349 GCancellable *cancellable,
4350 GAsyncReadyCallback callback,
4353 GFileCreateFlags *data;
4354 GSimpleAsyncResult *res;
4356 data = g_new0 (GFileCreateFlags, 1);
4359 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_create_async);
4360 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)g_free);
4362 g_simple_async_result_run_in_thread (res, create_async_thread, io_priority, cancellable);
4363 g_object_unref (res);
4366 static GFileOutputStream *
4367 g_file_real_create_finish (GFile *file,
4371 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
4374 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_create_async);
4376 op = g_simple_async_result_get_op_res_gpointer (simple);
4378 return g_object_ref (op);
4384 GFileOutputStream *stream;
4386 gboolean make_backup;
4387 GFileCreateFlags flags;
4391 replace_async_data_free (ReplaceAsyncData *data)
4394 g_object_unref (data->stream);
4395 g_free (data->etag);
4400 replace_async_thread (GSimpleAsyncResult *res,
4402 GCancellable *cancellable)
4405 GFileOutputStream *stream;
4406 GError *error = NULL;
4407 ReplaceAsyncData *data;
4409 iface = G_FILE_GET_IFACE (object);
4411 data = g_simple_async_result_get_op_res_gpointer (res);
4413 stream = iface->replace (G_FILE (object),
4422 g_simple_async_result_set_from_error (res, error);
4423 g_error_free (error);
4426 data->stream = stream;
4430 g_file_real_replace_async (GFile *file,
4432 gboolean make_backup,
4433 GFileCreateFlags flags,
4435 GCancellable *cancellable,
4436 GAsyncReadyCallback callback,
4439 GSimpleAsyncResult *res;
4440 ReplaceAsyncData *data;
4442 data = g_new0 (ReplaceAsyncData, 1);
4443 data->etag = g_strdup (etag);
4444 data->make_backup = make_backup;
4445 data->flags = flags;
4447 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_replace_async);
4448 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)replace_async_data_free);
4450 g_simple_async_result_run_in_thread (res, replace_async_thread, io_priority, cancellable);
4451 g_object_unref (res);
4454 static GFileOutputStream *
4455 g_file_real_replace_finish (GFile *file,
4459 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
4460 ReplaceAsyncData *data;
4462 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_replace_async);
4464 data = g_simple_async_result_get_op_res_gpointer (simple);
4466 return g_object_ref (data->stream);
4474 } SetDisplayNameAsyncData;
4477 set_display_name_data_free (SetDisplayNameAsyncData *data)
4479 g_free (data->name);
4481 g_object_unref (data->file);
4486 set_display_name_async_thread (GSimpleAsyncResult *res,
4488 GCancellable *cancellable)
4490 GError *error = NULL;
4491 SetDisplayNameAsyncData *data;
4494 data = g_simple_async_result_get_op_res_gpointer (res);
4496 file = g_file_set_display_name (G_FILE (object), data->name, cancellable, &error);
4500 g_simple_async_result_set_from_error (res, error);
4501 g_error_free (error);
4508 g_file_real_set_display_name_async (GFile *file,
4509 const char *display_name,
4511 GCancellable *cancellable,
4512 GAsyncReadyCallback callback,
4515 GSimpleAsyncResult *res;
4516 SetDisplayNameAsyncData *data;
4518 data = g_new0 (SetDisplayNameAsyncData, 1);
4519 data->name = g_strdup (display_name);
4521 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_set_display_name_async);
4522 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)set_display_name_data_free);
4524 g_simple_async_result_run_in_thread (res, set_display_name_async_thread, io_priority, cancellable);
4525 g_object_unref (res);
4529 g_file_real_set_display_name_finish (GFile *file,
4533 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
4534 SetDisplayNameAsyncData *data;
4536 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_set_display_name_async);
4538 data = g_simple_async_result_get_op_res_gpointer (simple);
4540 return g_object_ref (data->file);
4546 GFileQueryInfoFlags flags;
4553 set_info_data_free (SetInfoAsyncData *data)
4556 g_object_unref (data->info);
4558 g_error_free (data->error);
4563 set_info_async_thread (GSimpleAsyncResult *res,
4565 GCancellable *cancellable)
4567 SetInfoAsyncData *data;
4569 data = g_simple_async_result_get_op_res_gpointer (res);
4572 data->res = g_file_set_attributes_from_info (G_FILE (object),
4580 g_file_real_set_attributes_async (GFile *file,
4582 GFileQueryInfoFlags flags,
4584 GCancellable *cancellable,
4585 GAsyncReadyCallback callback,
4588 GSimpleAsyncResult *res;
4589 SetInfoAsyncData *data;
4591 data = g_new0 (SetInfoAsyncData, 1);
4592 data->info = g_file_info_dup (info);
4593 data->flags = flags;
4595 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_set_attributes_async);
4596 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)set_info_data_free);
4598 g_simple_async_result_run_in_thread (res, set_info_async_thread, io_priority, cancellable);
4599 g_object_unref (res);
4603 g_file_real_set_attributes_finish (GFile *file,
4608 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
4609 SetInfoAsyncData *data;
4611 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_set_attributes_async);
4613 data = g_simple_async_result_get_op_res_gpointer (simple);
4616 *info = g_object_ref (data->info);
4618 if (error != NULL && data->error)
4619 *error = g_error_copy (data->error);
4625 find_enclosing_mount_async_thread (GSimpleAsyncResult *res,
4627 GCancellable *cancellable)
4629 GError *error = NULL;
4632 mount = g_file_find_enclosing_mount (G_FILE (object), cancellable, &error);
4636 g_simple_async_result_set_from_error (res, error);
4637 g_error_free (error);
4640 g_simple_async_result_set_op_res_gpointer (res, mount, (GDestroyNotify)g_object_unref);
4644 g_file_real_find_enclosing_mount_async (GFile *file,
4646 GCancellable *cancellable,
4647 GAsyncReadyCallback callback,
4650 GSimpleAsyncResult *res;
4652 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_find_enclosing_mount_async);
4654 g_simple_async_result_run_in_thread (res, find_enclosing_mount_async_thread, io_priority, cancellable);
4655 g_object_unref (res);
4659 g_file_real_find_enclosing_mount_finish (GFile *file,
4663 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
4666 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_find_enclosing_mount_async);
4668 mount = g_simple_async_result_get_op_res_gpointer (simple);
4669 return g_object_ref (mount);
4676 GFileCopyFlags flags;
4677 GFileProgressCallback progress_cb;
4678 gpointer progress_cb_data;
4679 GIOSchedulerJob *job;
4683 copy_async_data_free (CopyAsyncData *data)
4685 g_object_unref (data->source);
4686 g_object_unref (data->destination);
4691 CopyAsyncData *data;
4692 goffset current_num_bytes;
4693 goffset total_num_bytes;
4697 copy_async_progress_in_main (gpointer user_data)
4699 ProgressData *progress = user_data;
4700 CopyAsyncData *data = progress->data;
4702 data->progress_cb (progress->current_num_bytes,
4703 progress->total_num_bytes,
4704 data->progress_cb_data);
4710 mainloop_barrier (gpointer user_data)
4712 /* Does nothing, but ensures all queued idles before
4719 copy_async_progress_callback (goffset current_num_bytes,
4720 goffset total_num_bytes,
4723 CopyAsyncData *data = user_data;
4724 ProgressData *progress;
4726 progress = g_new (ProgressData, 1);
4727 progress->data = data;
4728 progress->current_num_bytes = current_num_bytes;
4729 progress->total_num_bytes = total_num_bytes;
4731 g_io_scheduler_job_send_to_mainloop_async (data->job,
4732 copy_async_progress_in_main,
4738 copy_async_thread (GIOSchedulerJob *job,
4739 GCancellable *cancellable,
4742 GSimpleAsyncResult *res;
4743 CopyAsyncData *data;
4748 data = g_simple_async_result_get_op_res_gpointer (res);
4752 result = g_file_copy (data->source,
4756 (data->progress_cb != NULL) ? copy_async_progress_callback : NULL,
4760 /* Ensure all progress callbacks are done running in main thread */
4761 if (data->progress_cb != NULL)
4762 g_io_scheduler_job_send_to_mainloop (job,
4768 g_simple_async_result_set_from_error (res, error);
4769 g_error_free (error);
4772 g_simple_async_result_complete_in_idle (res);
4778 g_file_real_copy_async (GFile *source,
4780 GFileCopyFlags flags,
4782 GCancellable *cancellable,
4783 GFileProgressCallback progress_callback,
4784 gpointer progress_callback_data,
4785 GAsyncReadyCallback callback,
4788 GSimpleAsyncResult *res;
4789 CopyAsyncData *data;
4791 data = g_new0 (CopyAsyncData, 1);
4792 data->source = g_object_ref (source);
4793 data->destination = g_object_ref (destination);
4794 data->flags = flags;
4795 data->progress_cb = progress_callback;
4796 data->progress_cb_data = progress_callback_data;
4798 res = g_simple_async_result_new (G_OBJECT (source), callback, user_data, g_file_real_copy_async);
4799 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)copy_async_data_free);
4801 g_io_scheduler_push_job (copy_async_thread, res, g_object_unref, io_priority, cancellable);
4805 g_file_real_copy_finish (GFile *file,
4809 /* Error handled in g_file_copy_finish() */
4814 /********************************************
4815 * Default VFS operations *
4816 ********************************************/
4819 * g_file_new_for_path:
4820 * @path: a string containing a relative or absolute path.
4822 * Constructs a #GFile for a given path. This operation never
4823 * fails, but the returned object might not support any I/O
4824 * operation if @path is malformed.
4826 * Returns: a new #GFile for the given @path.
4829 g_file_new_for_path (const char *path)
4831 g_return_val_if_fail (path != NULL, NULL);
4833 return g_vfs_get_file_for_path (g_vfs_get_default (), path);
4837 * g_file_new_for_uri:
4838 * @uri: a string containing a URI.
4840 * Constructs a #GFile for a given URI. This operation never
4841 * fails, but the returned object might not support any I/O
4842 * operation if @uri is malformed or if the uri type is
4845 * Returns: a #GFile for the given @uri.
4848 g_file_new_for_uri (const char *uri)
4850 g_return_val_if_fail (uri != NULL, NULL);
4852 return g_vfs_get_file_for_uri (g_vfs_get_default (), uri);
4856 * g_file_parse_name:
4857 * @parse_name: a file name or path to be parsed.
4859 * Constructs a #GFile with the given @parse_name (i.e. something given by g_file_get_parse_name()).
4860 * This operation never fails, but the returned object might not support any I/O
4861 * operation if the @parse_name cannot be parsed.
4863 * Returns: a new #GFile.
4866 g_file_parse_name (const char *parse_name)
4868 g_return_val_if_fail (parse_name != NULL, NULL);
4870 return g_vfs_parse_name (g_vfs_get_default (), parse_name);
4874 is_valid_scheme_character (char c)
4876 return g_ascii_isalnum (c) || c == '+' || c == '-' || c == '.';
4879 /* Following RFC 2396, valid schemes are built like:
4880 * scheme = alpha *( alpha | digit | "+" | "-" | "." )
4883 has_valid_scheme (const char *uri)
4889 if (!g_ascii_isalpha (*p))
4894 } while (is_valid_scheme_character (*p));
4900 * g_file_new_for_commandline_arg:
4901 * @arg: a command line string.
4903 * Creates a #GFile with the given argument from the command line. The value of
4904 * @arg can be either a URI, an absolute path or a relative path resolved
4905 * relative to the current working directory.
4906 * This operation never fails, but the returned object might not support any
4907 * I/O operation if @arg points to a malformed path.
4909 * Returns: a new #GFile.
4912 g_file_new_for_commandline_arg (const char *arg)
4918 g_return_val_if_fail (arg != NULL, NULL);
4920 if (g_path_is_absolute (arg))
4921 return g_file_new_for_path (arg);
4923 if (has_valid_scheme (arg))
4924 return g_file_new_for_uri (arg);
4926 current_dir = g_get_current_dir ();
4927 filename = g_build_filename (current_dir, arg, NULL);
4928 g_free (current_dir);
4930 file = g_file_new_for_path (filename);
4937 * g_file_mount_enclosing_volume:
4938 * @location: input #GFile.
4939 * @flags: flags affecting the operation
4940 * @mount_operation: a #GMountOperation or %NULL to avoid user interaction.
4941 * @cancellable: optional #GCancellable object, %NULL to ignore.
4942 * @callback: a #GAsyncReadyCallback to call when the request is satisfied, or %NULL.
4943 * @user_data: the data to pass to callback function
4945 * Starts a @mount_operation, mounting the volume that contains the file @location.
4947 * When this operation has completed, @callback will be called with
4948 * @user_user data, and the operation can be finalized with
4949 * g_file_mount_enclosing_volume_finish().
4951 * If @cancellable is not %NULL, then the operation can be cancelled by
4952 * triggering the cancellable object from another thread. If the operation
4953 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
4956 g_file_mount_enclosing_volume (GFile *location,
4957 GMountMountFlags flags,
4958 GMountOperation *mount_operation,
4959 GCancellable *cancellable,
4960 GAsyncReadyCallback callback,
4965 g_return_if_fail (G_IS_FILE (location));
4967 iface = G_FILE_GET_IFACE (location);
4969 if (iface->mount_enclosing_volume == NULL)
4971 g_simple_async_report_error_in_idle (G_OBJECT (location),
4972 callback, user_data,
4973 G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
4974 _("volume doesn't implement mount"));
4979 (* iface->mount_enclosing_volume) (location, flags, mount_operation, cancellable, callback, user_data);
4984 * g_file_mount_enclosing_volume_finish:
4985 * @location: input #GFile.
4986 * @result: a #GAsyncResult.
4987 * @error: a #GError, or %NULL
4989 * Finishes a mount operation started by g_file_mount_enclosing_volume().
4991 * Returns: %TRUE if successful. If an error
4992 * has occurred, this function will return %FALSE and set @error
4993 * appropriately if present.
4996 g_file_mount_enclosing_volume_finish (GFile *location,
4997 GAsyncResult *result,
5002 g_return_val_if_fail (G_IS_FILE (location), FALSE);
5003 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
5005 if (G_IS_SIMPLE_ASYNC_RESULT (result))
5007 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
5008 if (g_simple_async_result_propagate_error (simple, error))
5012 iface = G_FILE_GET_IFACE (location);
5014 return (* iface->mount_enclosing_volume_finish) (location, result, error);
5017 /********************************************
5018 * Utility functions *
5019 ********************************************/
5022 * g_file_query_default_handler:
5023 * @file: a #GFile to open.
5024 * @cancellable: optional #GCancellable object, %NULL to ignore.
5025 * @error: a #GError, or %NULL
5027 * Returns the #GAppInfo that is registered as the default
5028 * application to handle the file specified by @file.
5030 * If @cancellable is not %NULL, then the operation can be cancelled by
5031 * triggering the cancellable object from another thread. If the operation
5032 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
5034 * Returns: a #GAppInfo if the handle was found, %NULL if there were errors.
5035 * When you are done with it, release it with g_object_unref()
5038 g_file_query_default_handler (GFile *file,
5039 GCancellable *cancellable,
5043 const char *content_type;
5048 uri_scheme = g_file_get_uri_scheme (file);
5049 appinfo = g_app_info_get_default_for_uri_scheme (uri_scheme);
5050 g_free (uri_scheme);
5052 if (appinfo != NULL)
5055 info = g_file_query_info (file,
5056 G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE,
5065 content_type = g_file_info_get_content_type (info);
5068 /* Don't use is_native(), as we want to support fuse paths if availible */
5069 path = g_file_get_path (file);
5070 appinfo = g_app_info_get_default_for_type (content_type,
5075 g_object_unref (info);
5077 if (appinfo != NULL)
5080 g_set_error_literal (error, G_IO_ERROR,
5081 G_IO_ERROR_NOT_SUPPORTED,
5082 _("No application is registered as handling this file"));
5088 #define GET_CONTENT_BLOCK_SIZE 8192
5091 * g_file_load_contents:
5092 * @file: input #GFile.
5093 * @cancellable: optional #GCancellable object, %NULL to ignore.
5094 * @contents: a location to place the contents of the file.
5095 * @length: a location to place the length of the contents of the file,
5096 * or %NULL if the length is not needed
5097 * @etag_out: a location to place the current entity tag for the file,
5098 * or %NULL if the entity tag is not needed
5099 * @error: a #GError, or %NULL
5101 * Loads the content of the file into memory. The data is always
5102 * zero-terminated, but this is not included in the resultant @length.
5103 * The returned @content should be freed with g_free() when no longer
5106 * If @cancellable is not %NULL, then the operation can be cancelled by
5107 * triggering the cancellable object from another thread. If the operation
5108 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
5110 * Returns: %TRUE if the @file's contents were successfully loaded.
5111 * %FALSE if there were errors.
5114 g_file_load_contents (GFile *file,
5115 GCancellable *cancellable,
5121 GFileInputStream *in;
5122 GByteArray *content;
5127 g_return_val_if_fail (G_IS_FILE (file), FALSE);
5128 g_return_val_if_fail (contents != NULL, FALSE);
5130 in = g_file_read (file, cancellable, error);
5134 content = g_byte_array_new ();
5137 g_byte_array_set_size (content, pos + GET_CONTENT_BLOCK_SIZE + 1);
5138 while ((res = g_input_stream_read (G_INPUT_STREAM (in),
5139 content->data + pos,
5140 GET_CONTENT_BLOCK_SIZE,
5141 cancellable, error)) > 0)
5144 g_byte_array_set_size (content, pos + GET_CONTENT_BLOCK_SIZE + 1);
5151 info = g_file_input_stream_query_info (in,
5152 G_FILE_ATTRIBUTE_ETAG_VALUE,
5157 *etag_out = g_strdup (g_file_info_get_etag (info));
5158 g_object_unref (info);
5162 /* Ignore errors on close */
5163 g_input_stream_close (G_INPUT_STREAM (in), cancellable, NULL);
5164 g_object_unref (in);
5168 /* error is set already */
5169 g_byte_array_free (content, TRUE);
5176 /* Zero terminate (we got an extra byte allocated for this */
5177 content->data[pos] = 0;
5179 *contents = (char *)g_byte_array_free (content, FALSE);
5187 GCancellable *cancellable;
5188 GFileReadMoreCallback read_more_callback;
5189 GAsyncReadyCallback callback;
5191 GByteArray *content;
5198 load_contents_data_free (LoadContentsData *data)
5201 g_error_free (data->error);
5202 if (data->cancellable)
5203 g_object_unref (data->cancellable);
5205 g_byte_array_free (data->content, TRUE);
5206 g_free (data->etag);
5207 g_object_unref (data->file);
5212 load_contents_close_callback (GObject *obj,
5213 GAsyncResult *close_res,
5216 GInputStream *stream = G_INPUT_STREAM (obj);
5217 LoadContentsData *data = user_data;
5218 GSimpleAsyncResult *res;
5220 /* Ignore errors here, we're only reading anyway */
5221 g_input_stream_close_finish (stream, close_res, NULL);
5222 g_object_unref (stream);
5224 res = g_simple_async_result_new (G_OBJECT (data->file),
5227 g_file_load_contents_async);
5228 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)load_contents_data_free);
5229 g_simple_async_result_complete (res);
5230 g_object_unref (res);
5234 load_contents_fstat_callback (GObject *obj,
5235 GAsyncResult *stat_res,
5238 GInputStream *stream = G_INPUT_STREAM (obj);
5239 LoadContentsData *data = user_data;
5242 info = g_file_input_stream_query_info_finish (G_FILE_INPUT_STREAM (stream),
5246 data->etag = g_strdup (g_file_info_get_etag (info));
5247 g_object_unref (info);
5250 g_input_stream_close_async (stream, 0,
5252 load_contents_close_callback, data);
5256 load_contents_read_callback (GObject *obj,
5257 GAsyncResult *read_res,
5260 GInputStream *stream = G_INPUT_STREAM (obj);
5261 LoadContentsData *data = user_data;
5262 GError *error = NULL;
5265 read_size = g_input_stream_read_finish (stream, read_res, &error);
5269 /* Error or EOF, close the file */
5270 data->error = error;
5271 g_input_stream_close_async (stream, 0,
5273 load_contents_close_callback, data);
5275 else if (read_size == 0)
5277 g_file_input_stream_query_info_async (G_FILE_INPUT_STREAM (stream),
5278 G_FILE_ATTRIBUTE_ETAG_VALUE,
5281 load_contents_fstat_callback,
5284 else if (read_size > 0)
5286 data->pos += read_size;
5288 g_byte_array_set_size (data->content,
5289 data->pos + GET_CONTENT_BLOCK_SIZE);
5292 if (data->read_more_callback &&
5293 !data->read_more_callback ((char *)data->content->data, data->pos, data->user_data))
5294 g_file_input_stream_query_info_async (G_FILE_INPUT_STREAM (stream),
5295 G_FILE_ATTRIBUTE_ETAG_VALUE,
5298 load_contents_fstat_callback,
5301 g_input_stream_read_async (stream,
5302 data->content->data + data->pos,
5303 GET_CONTENT_BLOCK_SIZE,
5306 load_contents_read_callback,
5312 load_contents_open_callback (GObject *obj,
5313 GAsyncResult *open_res,
5316 GFile *file = G_FILE (obj);
5317 GFileInputStream *stream;
5318 LoadContentsData *data = user_data;
5319 GError *error = NULL;
5320 GSimpleAsyncResult *res;
5322 stream = g_file_read_finish (file, open_res, &error);
5326 g_byte_array_set_size (data->content,
5327 data->pos + GET_CONTENT_BLOCK_SIZE);
5328 g_input_stream_read_async (G_INPUT_STREAM (stream),
5329 data->content->data + data->pos,
5330 GET_CONTENT_BLOCK_SIZE,
5333 load_contents_read_callback,
5339 res = g_simple_async_result_new_from_error (G_OBJECT (data->file),
5343 g_simple_async_result_complete (res);
5344 g_error_free (error);
5345 load_contents_data_free (data);
5346 g_object_unref (res);
5351 * g_file_load_partial_contents_async:
5352 * @file: input #GFile.
5353 * @cancellable: optional #GCancellable object, %NULL to ignore.
5354 * @read_more_callback: a #GFileReadMoreCallback to receive partial data and to specify whether further data should be read.
5355 * @callback: a #GAsyncReadyCallback to call when the request is satisfied
5356 * @user_data: the data to pass to the callback functions.
5358 * Reads the partial contents of a file. A #GFileReadMoreCallback should be
5359 * used to stop reading from the file when appropriate, else this function
5360 * will behave exactly as g_file_load_contents_async(). This operation
5361 * can be finished by g_file_load_partial_contents_finish().
5363 * Users of this function should be aware that @user_data is passed to
5364 * both the @read_more_callback and the @callback.
5366 * If @cancellable is not %NULL, then the operation can be cancelled by
5367 * triggering the cancellable object from another thread. If the operation
5368 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
5371 g_file_load_partial_contents_async (GFile *file,
5372 GCancellable *cancellable,
5373 GFileReadMoreCallback read_more_callback,
5374 GAsyncReadyCallback callback,
5377 LoadContentsData *data;
5379 g_return_if_fail (G_IS_FILE (file));
5381 data = g_new0 (LoadContentsData, 1);
5384 data->cancellable = g_object_ref (cancellable);
5385 data->read_more_callback = read_more_callback;
5386 data->callback = callback;
5387 data->user_data = user_data;
5388 data->content = g_byte_array_new ();
5389 data->file = g_object_ref (file);
5391 g_file_read_async (file,
5394 load_contents_open_callback,
5399 * g_file_load_partial_contents_finish:
5400 * @file: input #GFile.
5401 * @res: a #GAsyncResult.
5402 * @contents: a location to place the contents of the file.
5403 * @length: a location to place the length of the contents of the file,
5404 * or %NULL if the length is not needed
5405 * @etag_out: a location to place the current entity tag for the file,
5406 * or %NULL if the entity tag is not needed
5407 * @error: a #GError, or %NULL
5409 * Finishes an asynchronous partial load operation that was started
5410 * with g_file_load_partial_contents_async(). The data is always
5411 * zero-terminated, but this is not included in the resultant @length.
5412 * The returned @content should be freed with g_free() when no longer
5415 * Returns: %TRUE if the load was successful. If %FALSE and @error is
5416 * present, it will be set appropriately.
5419 g_file_load_partial_contents_finish (GFile *file,
5426 GSimpleAsyncResult *simple;
5427 LoadContentsData *data;
5429 g_return_val_if_fail (G_IS_FILE (file), FALSE);
5430 g_return_val_if_fail (G_IS_SIMPLE_ASYNC_RESULT (res), FALSE);
5431 g_return_val_if_fail (contents != NULL, FALSE);
5433 simple = G_SIMPLE_ASYNC_RESULT (res);
5435 if (g_simple_async_result_propagate_error (simple, error))
5438 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_load_contents_async);
5440 data = g_simple_async_result_get_op_res_gpointer (simple);
5444 g_propagate_error (error, data->error);
5453 *length = data->pos;
5457 *etag_out = data->etag;
5461 /* Zero terminate */
5462 g_byte_array_set_size (data->content, data->pos + 1);
5463 data->content->data[data->pos] = 0;
5465 *contents = (char *)g_byte_array_free (data->content, FALSE);
5466 data->content = NULL;
5472 * g_file_load_contents_async:
5473 * @file: input #GFile.
5474 * @cancellable: optional #GCancellable object, %NULL to ignore.
5475 * @callback: a #GAsyncReadyCallback to call when the request is satisfied
5476 * @user_data: the data to pass to callback function
5478 * Starts an asynchronous load of the @file's contents.
5480 * For more details, see g_file_load_contents() which is
5481 * the synchronous version of this call.
5483 * When the load operation has completed, @callback will be called
5484 * with @user data. To finish the operation, call
5485 * g_file_load_contents_finish() with the #GAsyncResult returned by
5488 * If @cancellable is not %NULL, then the operation can be cancelled by
5489 * triggering the cancellable object from another thread. If the operation
5490 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
5493 g_file_load_contents_async (GFile *file,
5494 GCancellable *cancellable,
5495 GAsyncReadyCallback callback,
5498 g_file_load_partial_contents_async (file,
5501 callback, user_data);
5505 * g_file_load_contents_finish:
5506 * @file: input #GFile.
5507 * @res: a #GAsyncResult.
5508 * @contents: a location to place the contents of the file.
5509 * @length: a location to place the length of the contents of the file,
5510 * or %NULL if the length is not needed
5511 * @etag_out: a location to place the current entity tag for the file,
5512 * or %NULL if the entity tag is not needed
5513 * @error: a #GError, or %NULL
5515 * Finishes an asynchronous load of the @file's contents.
5516 * The contents are placed in @contents, and @length is set to the
5517 * size of the @contents string. The @content should be freed with
5518 * g_free() when no longer needed. If @etag_out is present, it will be
5519 * set to the new entity tag for the @file.
5521 * Returns: %TRUE if the load was successful. If %FALSE and @error is
5522 * present, it will be set appropriately.
5525 g_file_load_contents_finish (GFile *file,
5532 return g_file_load_partial_contents_finish (file,
5541 * g_file_replace_contents:
5542 * @file: input #GFile.
5543 * @contents: a string containing the new contents for @file.
5544 * @length: the length of @contents in bytes.
5545 * @etag: the old <link linkend="gfile-etag">entity tag</link>
5546 * for the document, or %NULL
5547 * @make_backup: %TRUE if a backup should be created.
5548 * @flags: a set of #GFileCreateFlags.
5549 * @new_etag: a location to a new <link linkend="gfile-etag">entity tag</link>
5550 * for the document. This should be freed with g_free() when no longer
5552 * @cancellable: optional #GCancellable object, %NULL to ignore.
5553 * @error: a #GError, or %NULL
5555 * Replaces the contents of @file with @contents of @length bytes.
5557 * If @etag is specified (not %NULL) any existing file must have that etag, or
5558 * the error %G_IO_ERROR_WRONG_ETAG will be returned.
5560 * If @make_backup is %TRUE, this function will attempt to make a backup of @file.
5562 * If @cancellable is not %NULL, then the operation can be cancelled by
5563 * triggering the cancellable object from another thread. If the operation
5564 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
5566 * The returned @new_etag can be used to verify that the file hasn't changed the
5567 * next time it is saved over.
5569 * Returns: %TRUE if successful. If an error
5570 * has occurred, this function will return %FALSE and set @error
5571 * appropriately if present.
5574 g_file_replace_contents (GFile *file,
5575 const char *contents,
5578 gboolean make_backup,
5579 GFileCreateFlags flags,
5581 GCancellable *cancellable,
5584 GFileOutputStream *out;
5585 gsize pos, remainder;
5589 g_return_val_if_fail (G_IS_FILE (file), FALSE);
5590 g_return_val_if_fail (contents != NULL, FALSE);
5592 out = g_file_replace (file, etag, make_backup, flags, cancellable, error);
5598 while (remainder > 0 &&
5599 (res = g_output_stream_write (G_OUTPUT_STREAM (out),
5601 MIN (remainder, GET_CONTENT_BLOCK_SIZE),
5609 if (remainder > 0 && res < 0)
5611 /* Ignore errors on close */
5612 g_output_stream_close (G_OUTPUT_STREAM (out), cancellable, NULL);
5613 g_object_unref (out);
5615 /* error is set already */
5619 ret = g_output_stream_close (G_OUTPUT_STREAM (out), cancellable, error);
5622 *new_etag = g_file_output_stream_get_etag (out);
5624 g_object_unref (out);
5632 GCancellable *cancellable;
5633 GAsyncReadyCallback callback;
5635 const char *content;
5639 } ReplaceContentsData;
5642 replace_contents_data_free (ReplaceContentsData *data)
5645 g_error_free (data->error);
5646 if (data->cancellable)
5647 g_object_unref (data->cancellable);
5648 g_object_unref (data->file);
5649 g_free (data->etag);
5654 replace_contents_close_callback (GObject *obj,
5655 GAsyncResult *close_res,
5658 GOutputStream *stream = G_OUTPUT_STREAM (obj);
5659 ReplaceContentsData *data = user_data;
5660 GSimpleAsyncResult *res;
5662 /* Ignore errors here, we're only reading anyway */
5663 g_output_stream_close_finish (stream, close_res, NULL);
5664 g_object_unref (stream);
5666 data->etag = g_file_output_stream_get_etag (G_FILE_OUTPUT_STREAM (stream));
5668 res = g_simple_async_result_new (G_OBJECT (data->file),
5671 g_file_replace_contents_async);
5672 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)replace_contents_data_free);
5673 g_simple_async_result_complete (res);
5674 g_object_unref (res);
5678 replace_contents_write_callback (GObject *obj,
5679 GAsyncResult *read_res,
5682 GOutputStream *stream = G_OUTPUT_STREAM (obj);
5683 ReplaceContentsData *data = user_data;
5684 GError *error = NULL;
5687 write_size = g_output_stream_write_finish (stream, read_res, &error);
5689 if (write_size <= 0)
5691 /* Error or EOF, close the file */
5693 data->error = error;
5694 g_output_stream_close_async (stream, 0,
5696 replace_contents_close_callback, data);
5698 else if (write_size > 0)
5700 data->pos += write_size;
5702 if (data->pos >= data->length)
5703 g_output_stream_close_async (stream, 0,
5705 replace_contents_close_callback, data);
5707 g_output_stream_write_async (stream,
5708 data->content + data->pos,
5709 data->length - data->pos,
5712 replace_contents_write_callback,
5718 replace_contents_open_callback (GObject *obj,
5719 GAsyncResult *open_res,
5722 GFile *file = G_FILE (obj);
5723 GFileOutputStream *stream;
5724 ReplaceContentsData *data = user_data;
5725 GError *error = NULL;
5726 GSimpleAsyncResult *res;
5728 stream = g_file_replace_finish (file, open_res, &error);
5732 g_output_stream_write_async (G_OUTPUT_STREAM (stream),
5733 data->content + data->pos,
5734 data->length - data->pos,
5737 replace_contents_write_callback,
5743 res = g_simple_async_result_new_from_error (G_OBJECT (data->file),
5747 g_simple_async_result_complete (res);
5748 g_error_free (error);
5749 replace_contents_data_free (data);
5750 g_object_unref (res);
5755 * g_file_replace_contents_async:
5756 * @file: input #GFile.
5757 * @contents: string of contents to replace the file with.
5758 * @length: the length of @contents in bytes.
5759 * @etag: a new <link linkend="gfile-etag">entity tag</link> for the @file, or %NULL
5760 * @make_backup: %TRUE if a backup should be created.
5761 * @flags: a set of #GFileCreateFlags.
5762 * @cancellable: optional #GCancellable object, %NULL to ignore.
5763 * @callback: a #GAsyncReadyCallback to call when the request is satisfied
5764 * @user_data: the data to pass to callback function
5766 * Starts an asynchronous replacement of @file with the given
5767 * @contents of @length bytes. @etag will replace the document's
5768 * current entity tag.
5770 * When this operation has completed, @callback will be called with
5771 * @user_user data, and the operation can be finalized with
5772 * g_file_replace_contents_finish().
5774 * If @cancellable is not %NULL, then the operation can be cancelled by
5775 * triggering the cancellable object from another thread. If the operation
5776 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
5778 * If @make_backup is %TRUE, this function will attempt to
5779 * make a backup of @file.
5782 g_file_replace_contents_async (GFile *file,
5783 const char *contents,
5786 gboolean make_backup,
5787 GFileCreateFlags flags,
5788 GCancellable *cancellable,
5789 GAsyncReadyCallback callback,
5792 ReplaceContentsData *data;
5794 g_return_if_fail (G_IS_FILE (file));
5795 g_return_if_fail (contents != NULL);
5797 data = g_new0 (ReplaceContentsData, 1);
5800 data->cancellable = g_object_ref (cancellable);
5801 data->callback = callback;
5802 data->user_data = user_data;
5803 data->content = contents;
5804 data->length = length;
5806 data->file = g_object_ref (file);
5808 g_file_replace_async (file,
5814 replace_contents_open_callback,
5819 * g_file_replace_contents_finish:
5820 * @file: input #GFile.
5821 * @res: a #GAsyncResult.
5822 * @new_etag: a location of a new <link linkend="gfile-etag">entity tag</link>
5823 * for the document. This should be freed with g_free() when it is no
5824 * longer needed, or %NULL
5825 * @error: a #GError, or %NULL
5827 * Finishes an asynchronous replace of the given @file. See
5828 * g_file_replace_contents_async(). Sets @new_etag to the new entity
5829 * tag for the document, if present.
5831 * Returns: %TRUE on success, %FALSE on failure.
5834 g_file_replace_contents_finish (GFile *file,
5839 GSimpleAsyncResult *simple;
5840 ReplaceContentsData *data;
5842 g_return_val_if_fail (G_IS_FILE (file), FALSE);
5843 g_return_val_if_fail (G_IS_SIMPLE_ASYNC_RESULT (res), FALSE);
5845 simple = G_SIMPLE_ASYNC_RESULT (res);
5847 if (g_simple_async_result_propagate_error (simple, error))
5850 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_replace_contents_async);
5852 data = g_simple_async_result_get_op_res_gpointer (simple);
5856 g_propagate_error (error, data->error);
5864 *new_etag = data->etag;
5865 data->etag = NULL; /* Take ownership */
5871 #define __G_FILE_C__
5872 #include "gioaliasdef.c"