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>
33 #include <sys/types.h>
39 #include "gioscheduler.h"
40 #include "gsimpleasyncresult.h"
41 #include "gfileattribute-priv.h"
42 #include "gfiledescriptorbased.h"
43 #include "gpollfilemonitor.h"
45 #include "gfileinputstream.h"
46 #include "gfileoutputstream.h"
47 #include "gcancellable.h"
48 #include "gasyncresult.h"
55 * @short_description: File and Directory Handling
57 * @see_also: #GFileInfo, #GFileEnumerator
59 * #GFile is a high level abstraction for manipulating files on a
60 * virtual file system. #GFile<!-- -->s are lightweight, immutable
61 * objects that do no I/O upon creation. It is necessary to understand that
62 * #GFile objects do not represent files, merely an identifier for a file. All
63 * file content I/O is implemented as streaming operations (see #GInputStream and
66 * To construct a #GFile, you can use:
67 * g_file_new_for_path() if you have a path.
68 * g_file_new_for_uri() if you have a URI.
69 * g_file_new_for_commandline_arg() for a command line argument.
70 * g_file_parse_name() from a utf8 string gotten from g_file_get_parse_name().
72 * One way to think of a #GFile is as an abstraction of a pathname. For normal
73 * files the system pathname is what is stored internally, but as #GFile<!-- -->s
74 * are extensible it could also be something else that corresponds to a pathname
75 * in a userspace implementation of a filesystem.
77 * #GFile<!-- -->s make up hierarchies of directories and files that correspond to the
78 * files on a filesystem. You can move through the file system with #GFile using
79 * g_file_get_parent() to get an identifier for the parent directory, g_file_get_child()
80 * to get a child within a directory, g_file_resolve_relative_path() to resolve a relative
81 * path between two #GFile<!-- -->s. There can be multiple hierarchies, so you may not
82 * end up at the same root if you repeatedly call g_file_get_parent() on two different
85 * All #GFile<!-- -->s have a basename (get with g_file_get_basename()). These names
86 * are byte strings that are used to identify the file on the filesystem (relative to
87 * its parent directory) and there is no guarantees that they have any particular charset
88 * encoding or even make any sense at all. If you want to use filenames in a user
89 * interface you should use the display name that you can get by requesting the
90 * %G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME attribute with g_file_query_info().
91 * This is guaranteed to be in utf8 and can be used in a user interface. But always
92 * store the real basename or the #GFile to use to actually access the file, because
93 * there is no way to go from a display name to the actual name.
95 * Using #GFile as an identifier has the same weaknesses as using a path in that
96 * there may be multiple aliases for the same file. For instance, hard or
97 * soft links may cause two different #GFile<!-- -->s to refer to the same file.
98 * Other possible causes for aliases are: case insensitive filesystems, short
99 * and long names on Fat/NTFS, or bind mounts in Linux. If you want to check if
100 * two #GFile<!-- -->s point to the same file you can query for the
101 * %G_FILE_ATTRIBUTE_ID_FILE attribute. Note that #GFile does some trivial
102 * canonicalization of pathnames passed in, so that trivial differences in the
103 * path string used at creation (duplicated slashes, slash at end of path, "."
104 * or ".." path segments, etc) does not create different #GFile<!-- -->s.
106 * Many #GFile operations have both synchronous and asynchronous versions
107 * to suit your application. Asynchronous versions of synchronous functions
108 * simply have _async() appended to their function names. The asynchronous
109 * I/O functions call a #GAsyncReadyCallback which is then used to finalize
110 * the operation, producing a GAsyncResult which is then passed to the
111 * function's matching _finish() operation.
113 * Some #GFile operations do not have synchronous analogs, as they may
114 * take a very long time to finish, and blocking may leave an application
115 * unusable. Notable cases include:
116 * g_file_mount_mountable() to mount a mountable file.
117 * g_file_unmount_mountable_with_operation() to unmount a mountable file.
118 * g_file_eject_mountable_with_operation() to eject a mountable file.
120 * <para id="gfile-etag"><indexterm><primary>entity tag</primary></indexterm>
121 * One notable feature of #GFile<!-- -->s are entity tags, or "etags" for
122 * short. Entity tags are somewhat like a more abstract version of the
123 * traditional mtime, and can be used to quickly determine if the file has
124 * been modified from the version on the file system. See the HTTP 1.1
125 * <ulink url="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html">specification</ulink>
126 * for HTTP Etag headers, which are a very similar concept.
130 static void g_file_real_query_info_async (GFile *file,
131 const char *attributes,
132 GFileQueryInfoFlags flags,
134 GCancellable *cancellable,
135 GAsyncReadyCallback callback,
137 static GFileInfo * g_file_real_query_info_finish (GFile *file,
140 static void g_file_real_query_filesystem_info_async (GFile *file,
141 const char *attributes,
143 GCancellable *cancellable,
144 GAsyncReadyCallback callback,
146 static GFileInfo * g_file_real_query_filesystem_info_finish (GFile *file,
149 static void g_file_real_enumerate_children_async (GFile *file,
150 const char *attributes,
151 GFileQueryInfoFlags flags,
153 GCancellable *cancellable,
154 GAsyncReadyCallback callback,
156 static GFileEnumerator * g_file_real_enumerate_children_finish (GFile *file,
159 static void g_file_real_read_async (GFile *file,
161 GCancellable *cancellable,
162 GAsyncReadyCallback callback,
164 static GFileInputStream * g_file_real_read_finish (GFile *file,
167 static void g_file_real_append_to_async (GFile *file,
168 GFileCreateFlags flags,
170 GCancellable *cancellable,
171 GAsyncReadyCallback callback,
173 static GFileOutputStream *g_file_real_append_to_finish (GFile *file,
176 static void g_file_real_create_async (GFile *file,
177 GFileCreateFlags flags,
179 GCancellable *cancellable,
180 GAsyncReadyCallback callback,
182 static GFileOutputStream *g_file_real_create_finish (GFile *file,
185 static void g_file_real_replace_async (GFile *file,
187 gboolean make_backup,
188 GFileCreateFlags flags,
190 GCancellable *cancellable,
191 GAsyncReadyCallback callback,
193 static GFileOutputStream *g_file_real_replace_finish (GFile *file,
196 static void g_file_real_open_readwrite_async (GFile *file,
198 GCancellable *cancellable,
199 GAsyncReadyCallback callback,
201 static GFileIOStream * g_file_real_open_readwrite_finish (GFile *file,
204 static void g_file_real_create_readwrite_async (GFile *file,
205 GFileCreateFlags flags,
207 GCancellable *cancellable,
208 GAsyncReadyCallback callback,
210 static GFileIOStream * g_file_real_create_readwrite_finish (GFile *file,
213 static void g_file_real_replace_readwrite_async (GFile *file,
215 gboolean make_backup,
216 GFileCreateFlags flags,
218 GCancellable *cancellable,
219 GAsyncReadyCallback callback,
221 static GFileIOStream * g_file_real_replace_readwrite_finish (GFile *file,
224 static gboolean g_file_real_set_attributes_from_info (GFile *file,
226 GFileQueryInfoFlags flags,
227 GCancellable *cancellable,
229 static void g_file_real_set_display_name_async (GFile *file,
230 const char *display_name,
232 GCancellable *cancellable,
233 GAsyncReadyCallback callback,
235 static GFile * g_file_real_set_display_name_finish (GFile *file,
238 static void g_file_real_set_attributes_async (GFile *file,
240 GFileQueryInfoFlags flags,
242 GCancellable *cancellable,
243 GAsyncReadyCallback callback,
245 static gboolean g_file_real_set_attributes_finish (GFile *file,
249 static void g_file_real_find_enclosing_mount_async (GFile *file,
251 GCancellable *cancellable,
252 GAsyncReadyCallback callback,
254 static GMount * g_file_real_find_enclosing_mount_finish (GFile *file,
257 static void g_file_real_copy_async (GFile *source,
259 GFileCopyFlags flags,
261 GCancellable *cancellable,
262 GFileProgressCallback progress_callback,
263 gpointer progress_callback_data,
264 GAsyncReadyCallback callback,
266 static gboolean g_file_real_copy_finish (GFile *file,
270 typedef GFileIface GFileInterface;
271 G_DEFINE_INTERFACE (GFile, g_file, G_TYPE_OBJECT)
274 g_file_default_init (GFileIface *iface)
276 iface->enumerate_children_async = g_file_real_enumerate_children_async;
277 iface->enumerate_children_finish = g_file_real_enumerate_children_finish;
278 iface->set_display_name_async = g_file_real_set_display_name_async;
279 iface->set_display_name_finish = g_file_real_set_display_name_finish;
280 iface->query_info_async = g_file_real_query_info_async;
281 iface->query_info_finish = g_file_real_query_info_finish;
282 iface->query_filesystem_info_async = g_file_real_query_filesystem_info_async;
283 iface->query_filesystem_info_finish = g_file_real_query_filesystem_info_finish;
284 iface->set_attributes_async = g_file_real_set_attributes_async;
285 iface->set_attributes_finish = g_file_real_set_attributes_finish;
286 iface->read_async = g_file_real_read_async;
287 iface->read_finish = g_file_real_read_finish;
288 iface->append_to_async = g_file_real_append_to_async;
289 iface->append_to_finish = g_file_real_append_to_finish;
290 iface->create_async = g_file_real_create_async;
291 iface->create_finish = g_file_real_create_finish;
292 iface->replace_async = g_file_real_replace_async;
293 iface->replace_finish = g_file_real_replace_finish;
294 iface->open_readwrite_async = g_file_real_open_readwrite_async;
295 iface->open_readwrite_finish = g_file_real_open_readwrite_finish;
296 iface->create_readwrite_async = g_file_real_create_readwrite_async;
297 iface->create_readwrite_finish = g_file_real_create_readwrite_finish;
298 iface->replace_readwrite_async = g_file_real_replace_readwrite_async;
299 iface->replace_readwrite_finish = g_file_real_replace_readwrite_finish;
300 iface->find_enclosing_mount_async = g_file_real_find_enclosing_mount_async;
301 iface->find_enclosing_mount_finish = g_file_real_find_enclosing_mount_finish;
302 iface->set_attributes_from_info = g_file_real_set_attributes_from_info;
303 iface->copy_async = g_file_real_copy_async;
304 iface->copy_finish = g_file_real_copy_finish;
310 * @file: input #GFile.
312 * Checks to see if a file is native to the platform.
314 * A native file s one expressed in the platform-native filename format,
315 * e.g. "C:\Windows" or "/usr/bin/". This does not mean the file is local,
316 * as it might be on a locally mounted remote filesystem.
318 * On some systems non-native files may be available using
319 * the native filesystem via a userspace filesystem (FUSE), in
320 * these cases this call will return %FALSE, but g_file_get_path()
321 * will still return a native path.
323 * This call does no blocking i/o.
325 * Returns: %TRUE if file is native.
328 g_file_is_native (GFile *file)
332 g_return_val_if_fail (G_IS_FILE (file), FALSE);
334 iface = G_FILE_GET_IFACE (file);
336 return (* iface->is_native) (file);
341 * g_file_has_uri_scheme:
342 * @file: input #GFile.
343 * @uri_scheme: a string containing a URI scheme.
345 * Checks to see if a #GFile has a given URI scheme.
347 * This call does no blocking i/o.
349 * Returns: %TRUE if #GFile's backend supports the
350 * given URI scheme, %FALSE if URI scheme is %NULL,
351 * not supported, or #GFile is invalid.
354 g_file_has_uri_scheme (GFile *file,
355 const char *uri_scheme)
359 g_return_val_if_fail (G_IS_FILE (file), FALSE);
360 g_return_val_if_fail (uri_scheme != NULL, FALSE);
362 iface = G_FILE_GET_IFACE (file);
364 return (* iface->has_uri_scheme) (file, uri_scheme);
369 * g_file_get_uri_scheme:
370 * @file: input #GFile.
372 * Gets the URI scheme for a #GFile.
373 * RFC 3986 decodes the scheme as:
375 * URI = scheme ":" hier-part [ "?" query ] [ "#" fragment ]
377 * Common schemes include "file", "http", "ftp", etc.
379 * This call does no blocking i/o.
381 * Returns: a string containing the URI scheme for the given
382 * #GFile. The returned string should be freed with g_free()
383 * when no longer needed.
386 g_file_get_uri_scheme (GFile *file)
390 g_return_val_if_fail (G_IS_FILE (file), NULL);
392 iface = G_FILE_GET_IFACE (file);
394 return (* iface->get_uri_scheme) (file);
399 * g_file_get_basename:
400 * @file: input #GFile.
402 * Gets the base name (the last component of the path) for a given #GFile.
404 * If called for the top level of a system (such as the filesystem root
405 * or a uri like sftp://host/) it will return a single directory separator
406 * (and on Windows, possibly a drive letter).
408 * The base name is a byte string (*not* UTF-8). It has no defined encoding
409 * or rules other than it may not contain zero bytes. If you want to use
410 * filenames in a user interface you should use the display name that you
411 * can get by requesting the %G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME
412 * attribute with g_file_query_info().
414 * This call does no blocking i/o.
416 * Returns: string containing the #GFile's base name, or %NULL
417 * if given #GFile is invalid. The returned string should be
418 * freed with g_free() when no longer needed.
421 g_file_get_basename (GFile *file)
425 g_return_val_if_fail (G_IS_FILE (file), NULL);
427 iface = G_FILE_GET_IFACE (file);
429 return (* iface->get_basename) (file);
434 * @file: input #GFile.
436 * Gets the local pathname for #GFile, if one exists.
438 * This call does no blocking i/o.
440 * Returns: string containing the #GFile's path, or %NULL if
441 * no such path exists. The returned string should be
442 * freed with g_free() when no longer needed.
445 g_file_get_path (GFile *file)
449 g_return_val_if_fail (G_IS_FILE (file), NULL);
451 iface = G_FILE_GET_IFACE (file);
453 return (* iface->get_path) (file);
458 * @file: input #GFile.
460 * Gets the URI for the @file.
462 * This call does no blocking i/o.
464 * Returns: a string containing the #GFile's URI.
465 * The returned string should be freed with g_free() when no longer needed.
468 g_file_get_uri (GFile *file)
472 g_return_val_if_fail (G_IS_FILE (file), NULL);
474 iface = G_FILE_GET_IFACE (file);
476 return (* iface->get_uri) (file);
480 * g_file_get_parse_name:
481 * @file: input #GFile.
483 * Gets the parse name of the @file.
484 * A parse name is a UTF-8 string that describes the
485 * file such that one can get the #GFile back using
486 * g_file_parse_name().
488 * This is generally used to show the #GFile as a nice
489 * full-pathname kind of string in a user interface,
490 * like in a location entry.
492 * For local files with names that can safely be converted
493 * to UTF8 the pathname is used, otherwise the IRI is used
494 * (a form of URI that allows UTF8 characters unescaped).
496 * This call does no blocking i/o.
498 * Returns: a string containing the #GFile's parse name. The returned
499 * string should be freed with g_free() when no longer needed.
502 g_file_get_parse_name (GFile *file)
506 g_return_val_if_fail (G_IS_FILE (file), NULL);
508 iface = G_FILE_GET_IFACE (file);
510 return (* iface->get_parse_name) (file);
515 * @file: input #GFile.
517 * Duplicates a #GFile handle. This operation does not duplicate
518 * the actual file or directory represented by the #GFile; see
519 * g_file_copy() if attempting to copy a file.
521 * This call does no blocking i/o.
523 * Returns: (transfer full): a new #GFile that is a duplicate of the given #GFile.
526 g_file_dup (GFile *file)
530 g_return_val_if_fail (G_IS_FILE (file), NULL);
532 iface = G_FILE_GET_IFACE (file);
534 return (* iface->dup) (file);
539 * @file: #gconstpointer to a #GFile.
541 * Creates a hash value for a #GFile.
543 * 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: (transfer full): 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 * @parent: the parent to check for, or %NULL
627 * Checks if @file has a parent, and optionally, if it is @parent.
629 * If @parent is %NULL then this function returns %TRUE if @file has any
630 * parent at all. If @parent is non-%NULL then %TRUE is only returned
631 * if @file is a child of @parent.
633 * Returns: %TRUE if @file is a child of @parent (or any parent in the
634 * case that @parent is %NULL).
639 g_file_has_parent (GFile *file,
642 GFile *actual_parent;
645 g_return_val_if_fail (G_IS_FILE (file), FALSE);
646 g_return_val_if_fail (parent == NULL || G_IS_FILE (parent), FALSE);
648 actual_parent = g_file_get_parent (file);
650 if (actual_parent != NULL)
653 result = g_file_equal (parent, actual_parent);
657 g_object_unref (actual_parent);
667 * @file: input #GFile.
668 * @name: string containing the child's basename.
670 * Gets a child of @file with basename equal to @name.
672 * Note that the file with that specific name might not exist, but
673 * you can still have a #GFile that points to it. You can use this
674 * for instance to create that file.
676 * This call does no blocking i/o.
678 * Returns: (transfer full): a #GFile to a child specified by @name.
679 * Free the returned object with g_object_unref().
682 g_file_get_child (GFile *file,
685 g_return_val_if_fail (G_IS_FILE (file), NULL);
686 g_return_val_if_fail (name != NULL, NULL);
688 return g_file_resolve_relative_path (file, name);
692 * g_file_get_child_for_display_name:
693 * @file: input #GFile.
694 * @display_name: string to a possible child.
697 * Gets the child of @file for a given @display_name (i.e. a UTF8
698 * version of the name). If this function fails, it returns %NULL and @error will be
699 * set. This is very useful when constructing a GFile for a new file
700 * and the user entered the filename in the user interface, for instance
701 * when you select a directory and type a filename in the file selector.
703 * This call does no blocking i/o.
705 * Returns: (transfer full): a #GFile to the specified child, or
706 * %NULL if the display name couldn't be converted.
707 * Free the returned object with g_object_unref().
710 g_file_get_child_for_display_name (GFile *file,
711 const char *display_name,
716 g_return_val_if_fail (G_IS_FILE (file), NULL);
717 g_return_val_if_fail (display_name != NULL, NULL);
719 iface = G_FILE_GET_IFACE (file);
721 return (* iface->get_child_for_display_name) (file, display_name, error);
726 * @file: input #GFile.
727 * @prefix: input #GFile.
729 * Checks whether @file has the prefix specified by @prefix. In other word,
730 * if the names of inital elements of @file<!-- -->s pathname match @prefix.
731 * Only full pathname elements are matched, so a path like /foo is not
732 * considered a prefix of /foobar, only of /foo/bar.
734 * This call does no i/o, as it works purely on names. As such it can
735 * sometimes return %FALSE even if @file is inside a @prefix (from a
736 * filesystem point of view), because the prefix of @file is an alias
739 * Virtual: prefix_matches
740 * Returns: %TRUE if the @files's parent, grandparent, etc is @prefix.
744 g_file_has_prefix (GFile *file,
749 g_return_val_if_fail (G_IS_FILE (file), FALSE);
750 g_return_val_if_fail (G_IS_FILE (prefix), FALSE);
752 if (G_TYPE_FROM_INSTANCE (file) != G_TYPE_FROM_INSTANCE (prefix))
755 iface = G_FILE_GET_IFACE (file);
757 /* The vtable function differs in arg order since we're
758 using the old contains_file call */
759 return (* iface->prefix_matches) (prefix, file);
763 * g_file_get_relative_path:
764 * @parent: input #GFile.
765 * @descendant: input #GFile.
767 * Gets the path for @descendant relative to @parent.
769 * This call does no blocking i/o.
771 * Returns: string with the relative path from @descendant
772 * to @parent, or %NULL if @descendant doesn't have @parent as prefix.
773 * The returned string should be freed with g_free() when no longer needed.
776 g_file_get_relative_path (GFile *parent,
781 g_return_val_if_fail (G_IS_FILE (parent), NULL);
782 g_return_val_if_fail (G_IS_FILE (descendant), NULL);
784 if (G_TYPE_FROM_INSTANCE (parent) != G_TYPE_FROM_INSTANCE (descendant))
787 iface = G_FILE_GET_IFACE (parent);
789 return (* iface->get_relative_path) (parent, descendant);
793 * g_file_resolve_relative_path:
794 * @file: input #GFile.
795 * @relative_path: a given relative path string.
797 * Resolves a relative path for @file to an absolute path.
799 * This call does no blocking i/o.
801 * Returns: (transfer full): #GFile to the resolved path. %NULL if @relative_path
802 * is %NULL or if @file is invalid.
803 * Free the returned object with g_object_unref().
806 g_file_resolve_relative_path (GFile *file,
807 const char *relative_path)
811 g_return_val_if_fail (G_IS_FILE (file), NULL);
812 g_return_val_if_fail (relative_path != NULL, NULL);
814 iface = G_FILE_GET_IFACE (file);
816 return (* iface->resolve_relative_path) (file, relative_path);
820 * g_file_enumerate_children:
821 * @file: input #GFile.
822 * @attributes: an attribute query string.
823 * @flags: a set of #GFileQueryInfoFlags.
824 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
825 * @error: #GError for error reporting.
827 * Gets the requested information about the files in a directory. The result
828 * is a #GFileEnumerator object that will give out #GFileInfo objects for
829 * all the files in the directory.
831 * The @attributes value is a string that specifies the file attributes that
832 * should be gathered. It is not an error if it's not possible to read a particular
833 * requested attribute from a file - it just won't be set. @attributes should
834 * be a comma-separated list of attributes or attribute wildcards. The wildcard "*"
835 * means all attributes, and a wildcard like "standard::*" means all attributes in the standard
836 * namespace. An example attribute query be "standard::*,owner::user".
837 * The standard attributes are available as defines, like #G_FILE_ATTRIBUTE_STANDARD_NAME.
839 * If @cancellable is not %NULL, then the operation can be cancelled by
840 * triggering the cancellable object from another thread. If the operation
841 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
843 * If the file does not exist, the G_IO_ERROR_NOT_FOUND error will be returned.
844 * If the file is not a directory, the G_FILE_ERROR_NOTDIR error will be returned.
845 * Other errors are possible too.
847 * Returns: (transfer full): A #GFileEnumerator if successful, %NULL on error.
848 * Free the returned object with g_object_unref().
851 g_file_enumerate_children (GFile *file,
852 const char *attributes,
853 GFileQueryInfoFlags flags,
854 GCancellable *cancellable,
860 g_return_val_if_fail (G_IS_FILE (file), NULL);
862 if (g_cancellable_set_error_if_cancelled (cancellable, error))
865 iface = G_FILE_GET_IFACE (file);
867 if (iface->enumerate_children == NULL)
869 g_set_error_literal (error, G_IO_ERROR,
870 G_IO_ERROR_NOT_SUPPORTED,
871 _("Operation not supported"));
875 return (* iface->enumerate_children) (file, attributes, flags,
880 * g_file_enumerate_children_async:
881 * @file: input #GFile.
882 * @attributes: an attribute query string.
883 * @flags: a set of #GFileQueryInfoFlags.
884 * @io_priority: the <link linkend="io-priority">I/O priority</link>
886 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
887 * @callback: (scope async): a #GAsyncReadyCallback to call when the
888 * request is satisfied
889 * @user_data: (closure): the data to pass to callback function
891 * Asynchronously gets the requested information about the files in a directory. The result
892 * is a #GFileEnumerator object that will give out #GFileInfo objects for
893 * all the files in the directory.
895 * For more details, see g_file_enumerate_children() which is
896 * the synchronous version of this call.
898 * When the operation is finished, @callback will be called. You can then call
899 * g_file_enumerate_children_finish() to get the result of the operation.
902 g_file_enumerate_children_async (GFile *file,
903 const char *attributes,
904 GFileQueryInfoFlags flags,
906 GCancellable *cancellable,
907 GAsyncReadyCallback callback,
912 g_return_if_fail (G_IS_FILE (file));
914 iface = G_FILE_GET_IFACE (file);
915 (* iface->enumerate_children_async) (file,
925 * g_file_enumerate_children_finish:
926 * @file: input #GFile.
927 * @res: a #GAsyncResult.
930 * Finishes an async enumerate children operation.
931 * See g_file_enumerate_children_async().
933 * Returns: (transfer full): a #GFileEnumerator or %NULL if an error occurred.
934 * Free the returned object with g_object_unref().
937 g_file_enumerate_children_finish (GFile *file,
943 g_return_val_if_fail (G_IS_FILE (file), NULL);
944 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
946 if (G_IS_SIMPLE_ASYNC_RESULT (res))
948 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
949 if (g_simple_async_result_propagate_error (simple, error))
953 iface = G_FILE_GET_IFACE (file);
954 return (* iface->enumerate_children_finish) (file, res, error);
958 * g_file_query_exists:
959 * @file: input #GFile.
960 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
962 * Utility function to check if a particular file exists. This is
963 * implemented using g_file_query_info() and as such does blocking I/O.
965 * Note that in many cases it is racy to first check for file existence
966 * and then execute something based on the outcome of that, because the
967 * file might have been created or removed in between the operations. The
968 * general approach to handling that is to not check, but just do the
969 * operation and handle the errors as they come.
971 * As an example of race-free checking, take the case of reading a file, and
972 * if it doesn't exist, creating it. There are two racy versions: read it, and
973 * on error create it; and: check if it exists, if not create it. These
974 * can both result in two processes creating the file (with perhaps a partially
975 * written file as the result). The correct approach is to always try to create
976 * the file with g_file_create() which will either atomically create the file
977 * or fail with a G_IO_ERROR_EXISTS error.
979 * However, in many cases an existence check is useful in a user
980 * interface, for instance to make a menu item sensitive/insensitive, so that
981 * you don't have to fool users that something is possible and then just show
982 * and error dialog. If you do this, you should make sure to also handle the
983 * errors that can happen due to races when you execute the operation.
985 * Returns: %TRUE if the file exists (and can be detected without error), %FALSE otherwise (or if cancelled).
988 g_file_query_exists (GFile *file,
989 GCancellable *cancellable)
993 g_return_val_if_fail (G_IS_FILE(file), FALSE);
995 info = g_file_query_info (file, G_FILE_ATTRIBUTE_STANDARD_TYPE,
996 G_FILE_QUERY_INFO_NONE, cancellable, NULL);
999 g_object_unref (info);
1007 * g_file_query_file_type:
1008 * @file: input #GFile.
1009 * @flags: a set of #GFileQueryInfoFlags passed to g_file_query_info().
1010 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
1012 * Utility function to inspect the #GFileType of a file. This is
1013 * implemented using g_file_query_info() and as such does blocking I/O.
1015 * The primary use case of this method is to check if a file is a regular file,
1016 * directory, or symlink.
1018 * Returns: The #GFileType of the file and #G_FILE_TYPE_UNKNOWN if the file
1024 g_file_query_file_type (GFile *file,
1025 GFileQueryInfoFlags flags,
1026 GCancellable *cancellable)
1029 GFileType file_type;
1031 g_return_val_if_fail (G_IS_FILE(file), G_FILE_TYPE_UNKNOWN);
1032 info = g_file_query_info (file, G_FILE_ATTRIBUTE_STANDARD_TYPE, flags,
1036 file_type = g_file_info_get_file_type (info);
1037 g_object_unref (info);
1040 file_type = G_FILE_TYPE_UNKNOWN;
1046 * g_file_query_info:
1047 * @file: input #GFile.
1048 * @attributes: an attribute query string.
1049 * @flags: a set of #GFileQueryInfoFlags.
1050 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
1051 * @error: a #GError.
1053 * Gets the requested information about specified @file. The result
1054 * is a #GFileInfo object that contains key-value attributes (such as
1055 * the type or size of the file).
1057 * The @attributes value is a string that specifies the file attributes that
1058 * should be gathered. It is not an error if it's not possible to read a particular
1059 * requested attribute from a file - it just won't be set. @attributes should
1060 * be a comma-separated list of attributes or attribute wildcards. The wildcard "*"
1061 * means all attributes, and a wildcard like "standard::*" means all attributes in the standard
1062 * namespace. An example attribute query be "standard::*,owner::user".
1063 * The standard attributes are available as defines, like #G_FILE_ATTRIBUTE_STANDARD_NAME.
1065 * If @cancellable is not %NULL, then the operation can be cancelled by
1066 * triggering the cancellable object from another thread. If the operation
1067 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
1069 * For symlinks, normally the information about the target of the
1070 * symlink is returned, rather than information about the symlink itself.
1071 * However if you pass #G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS in @flags the
1072 * information about the symlink itself will be returned. Also, for symlinks
1073 * that point to non-existing files the information about the symlink itself
1076 * If the file does not exist, the G_IO_ERROR_NOT_FOUND error will be returned.
1077 * Other errors are possible too, and depend on what kind of filesystem the file is on.
1079 * Returns: (transfer full): a #GFileInfo for the given @file, or %NULL on error.
1080 * Free the returned object with g_object_unref().
1083 g_file_query_info (GFile *file,
1084 const char *attributes,
1085 GFileQueryInfoFlags flags,
1086 GCancellable *cancellable,
1091 g_return_val_if_fail (G_IS_FILE (file), NULL);
1093 if (g_cancellable_set_error_if_cancelled (cancellable, error))
1096 iface = G_FILE_GET_IFACE (file);
1098 if (iface->query_info == NULL)
1100 g_set_error_literal (error, G_IO_ERROR,
1101 G_IO_ERROR_NOT_SUPPORTED,
1102 _("Operation not supported"));
1106 return (* iface->query_info) (file, attributes, flags, cancellable, error);
1110 * g_file_query_info_async:
1111 * @file: input #GFile.
1112 * @attributes: an attribute query string.
1113 * @flags: a set of #GFileQueryInfoFlags.
1114 * @io_priority: the <link linkend="io-priority">I/O priority</link>
1116 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
1117 * @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied
1118 * @user_data: (closure): the data to pass to callback function
1120 * Asynchronously gets the requested information about specified @file. The result
1121 * is a #GFileInfo object that contains key-value attributes (such as type or size
1124 * For more details, see g_file_query_info() which is
1125 * the synchronous version of this call.
1127 * When the operation is finished, @callback will be called. You can then call
1128 * g_file_query_info_finish() to get the result of the operation.
1131 g_file_query_info_async (GFile *file,
1132 const char *attributes,
1133 GFileQueryInfoFlags flags,
1135 GCancellable *cancellable,
1136 GAsyncReadyCallback callback,
1141 g_return_if_fail (G_IS_FILE (file));
1143 iface = G_FILE_GET_IFACE (file);
1144 (* iface->query_info_async) (file,
1154 * g_file_query_info_finish:
1155 * @file: input #GFile.
1156 * @res: a #GAsyncResult.
1157 * @error: a #GError.
1159 * Finishes an asynchronous file info query.
1160 * See g_file_query_info_async().
1162 * Returns: (transfer full): #GFileInfo for given @file or %NULL on error.
1163 * Free the returned object with g_object_unref().
1166 g_file_query_info_finish (GFile *file,
1172 g_return_val_if_fail (G_IS_FILE (file), NULL);
1173 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
1175 if (G_IS_SIMPLE_ASYNC_RESULT (res))
1177 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
1178 if (g_simple_async_result_propagate_error (simple, error))
1182 iface = G_FILE_GET_IFACE (file);
1183 return (* iface->query_info_finish) (file, res, error);
1187 * g_file_query_filesystem_info:
1188 * @file: input #GFile.
1189 * @attributes: an attribute query string.
1190 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
1191 * @error: a #GError.
1193 * Similar to g_file_query_info(), but obtains information
1194 * about the filesystem the @file is on, rather than the file itself.
1195 * For instance the amount of space available and the type of
1198 * The @attributes value is a string that specifies the file attributes that
1199 * should be gathered. It is not an error if it's not possible to read a particular
1200 * requested attribute from a file - it just won't be set. @attributes should
1201 * be a comma-separated list of attributes or attribute wildcards. The wildcard "*"
1202 * means all attributes, and a wildcard like "fs:*" means all attributes in the fs
1203 * namespace. The standard namespace for filesystem attributes is "fs".
1204 * Common attributes of interest are #G_FILE_ATTRIBUTE_FILESYSTEM_SIZE
1205 * (the total size of the filesystem in bytes), #G_FILE_ATTRIBUTE_FILESYSTEM_FREE (number of
1206 * bytes available), and #G_FILE_ATTRIBUTE_FILESYSTEM_TYPE (type of the filesystem).
1208 * If @cancellable is not %NULL, then the operation can be cancelled by
1209 * triggering the cancellable object from another thread. If the operation
1210 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
1212 * If the file does not exist, the G_IO_ERROR_NOT_FOUND error will be returned.
1213 * Other errors are possible too, and depend on what kind of filesystem the file is on.
1215 * Returns: (transfer full): a #GFileInfo or %NULL if there was an error.
1216 * Free the returned object with g_object_unref().
1219 g_file_query_filesystem_info (GFile *file,
1220 const char *attributes,
1221 GCancellable *cancellable,
1226 g_return_val_if_fail (G_IS_FILE (file), NULL);
1228 if (g_cancellable_set_error_if_cancelled (cancellable, error))
1231 iface = G_FILE_GET_IFACE (file);
1233 if (iface->query_filesystem_info == NULL)
1235 g_set_error_literal (error, G_IO_ERROR,
1236 G_IO_ERROR_NOT_SUPPORTED,
1237 _("Operation not supported"));
1241 return (* iface->query_filesystem_info) (file, attributes, cancellable, error);
1245 * g_file_query_filesystem_info_async:
1246 * @file: input #GFile.
1247 * @attributes: an attribute query string.
1248 * @io_priority: the <link linkend="io-priority">I/O priority</link>
1250 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
1251 * @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied
1252 * @user_data: (closure): the data to pass to callback function
1254 * Asynchronously gets the requested information about the filesystem
1255 * that the specified @file is on. The result is a #GFileInfo object
1256 * that contains key-value attributes (such as type or size for the
1259 * For more details, see g_file_query_filesystem_info() which is the
1260 * synchronous version of this call.
1262 * When the operation is finished, @callback will be called. You can
1263 * then call g_file_query_info_finish() to get the result of the
1267 g_file_query_filesystem_info_async (GFile *file,
1268 const char *attributes,
1270 GCancellable *cancellable,
1271 GAsyncReadyCallback callback,
1276 g_return_if_fail (G_IS_FILE (file));
1278 iface = G_FILE_GET_IFACE (file);
1279 (* iface->query_filesystem_info_async) (file,
1288 * g_file_query_filesystem_info_finish:
1289 * @file: input #GFile.
1290 * @res: a #GAsyncResult.
1291 * @error: a #GError.
1293 * Finishes an asynchronous filesystem info query. See
1294 * g_file_query_filesystem_info_async().
1296 * Returns: (transfer full): #GFileInfo for given @file or %NULL on error.
1297 * Free the returned object with g_object_unref().
1300 g_file_query_filesystem_info_finish (GFile *file,
1306 g_return_val_if_fail (G_IS_FILE (file), NULL);
1307 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
1309 if (G_IS_SIMPLE_ASYNC_RESULT (res))
1311 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
1312 if (g_simple_async_result_propagate_error (simple, error))
1316 iface = G_FILE_GET_IFACE (file);
1317 return (* iface->query_filesystem_info_finish) (file, res, error);
1321 * g_file_find_enclosing_mount:
1322 * @file: input #GFile.
1323 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
1324 * @error: a #GError.
1326 * Gets a #GMount for the #GFile.
1328 * If the #GFileIface for @file does not have a mount (e.g. possibly a
1329 * remote share), @error will be set to %G_IO_ERROR_NOT_FOUND and %NULL
1332 * If @cancellable is not %NULL, then the operation can be cancelled by
1333 * triggering the cancellable object from another thread. If the operation
1334 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
1336 * Returns: (transfer full): a #GMount where the @file is located or %NULL on error.
1337 * Free the returned object with g_object_unref().
1340 g_file_find_enclosing_mount (GFile *file,
1341 GCancellable *cancellable,
1346 g_return_val_if_fail (G_IS_FILE (file), NULL);
1348 if (g_cancellable_set_error_if_cancelled (cancellable, error))
1351 iface = G_FILE_GET_IFACE (file);
1352 if (iface->find_enclosing_mount == NULL)
1355 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND,
1356 /* Translators: This is an error message when trying to find the
1357 * enclosing (user visible) mount of a file, but none exists. */
1358 _("Containing mount does not exist"));
1362 return (* iface->find_enclosing_mount) (file, cancellable, error);
1366 * g_file_find_enclosing_mount_async:
1368 * @io_priority: the <link linkend="io-priority">I/O priority</link>
1370 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
1371 * @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied
1372 * @user_data: (closure): the data to pass to callback function
1374 * Asynchronously gets the mount for the file.
1376 * For more details, see g_file_find_enclosing_mount() which is
1377 * the synchronous version of this call.
1379 * When the operation is finished, @callback will be called. You can then call
1380 * g_file_find_enclosing_mount_finish() to get the result of the operation.
1383 g_file_find_enclosing_mount_async (GFile *file,
1385 GCancellable *cancellable,
1386 GAsyncReadyCallback callback,
1391 g_return_if_fail (G_IS_FILE (file));
1393 iface = G_FILE_GET_IFACE (file);
1394 (* iface->find_enclosing_mount_async) (file,
1402 * g_file_find_enclosing_mount_finish:
1404 * @res: a #GAsyncResult
1407 * Finishes an asynchronous find mount request.
1408 * See g_file_find_enclosing_mount_async().
1410 * Returns: (transfer full): #GMount for given @file or %NULL on error.
1411 * Free the returned object with g_object_unref().
1414 g_file_find_enclosing_mount_finish (GFile *file,
1420 g_return_val_if_fail (G_IS_FILE (file), NULL);
1421 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
1423 if (G_IS_SIMPLE_ASYNC_RESULT (res))
1425 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
1426 if (g_simple_async_result_propagate_error (simple, error))
1430 iface = G_FILE_GET_IFACE (file);
1431 return (* iface->find_enclosing_mount_finish) (file, res, error);
1437 * @file: #GFile to read.
1438 * @cancellable: (allow-none): a #GCancellable
1439 * @error: a #GError, or %NULL
1441 * Opens a file for reading. The result is a #GFileInputStream that
1442 * can be used to read the contents of the file.
1444 * If @cancellable is not %NULL, then the operation can be cancelled by
1445 * triggering the cancellable object from another thread. If the operation
1446 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
1448 * If the file does not exist, the G_IO_ERROR_NOT_FOUND error will be returned.
1449 * If the file is a directory, the G_IO_ERROR_IS_DIRECTORY error will be returned.
1450 * Other errors are possible too, and depend on what kind of filesystem the file is on.
1453 * Returns: (transfer full): #GFileInputStream or %NULL on error.
1454 * Free the returned object with g_object_unref().
1457 g_file_read (GFile *file,
1458 GCancellable *cancellable,
1463 g_return_val_if_fail (G_IS_FILE (file), NULL);
1465 if (g_cancellable_set_error_if_cancelled (cancellable, error))
1468 iface = G_FILE_GET_IFACE (file);
1470 if (iface->read_fn == NULL)
1472 g_set_error_literal (error, G_IO_ERROR,
1473 G_IO_ERROR_NOT_SUPPORTED,
1474 _("Operation not supported"));
1478 return (* iface->read_fn) (file, cancellable, error);
1483 * @file: input #GFile.
1484 * @flags: a set of #GFileCreateFlags.
1485 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
1486 * @error: a #GError, or %NULL
1488 * Gets an output stream for appending data to the file. If
1489 * the file doesn't already exist it is created.
1491 * By default files created are generally readable by everyone,
1492 * but if you pass #G_FILE_CREATE_PRIVATE in @flags the file
1493 * will be made readable only to the current user, to the level that
1494 * is supported on the target filesystem.
1496 * If @cancellable is not %NULL, then the operation can be cancelled by
1497 * triggering the cancellable object from another thread. If the operation
1498 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
1500 * Some file systems don't allow all file names, and may
1501 * return an %G_IO_ERROR_INVALID_FILENAME error.
1502 * If the file is a directory the %G_IO_ERROR_IS_DIRECTORY error will be
1503 * returned. Other errors are possible too, and depend on what kind of
1504 * filesystem the file is on.
1506 * Returns: (transfer full): a #GFileOutputStream, or %NULL on error.
1507 * Free the returned object with g_object_unref().
1510 g_file_append_to (GFile *file,
1511 GFileCreateFlags flags,
1512 GCancellable *cancellable,
1517 g_return_val_if_fail (G_IS_FILE (file), NULL);
1519 if (g_cancellable_set_error_if_cancelled (cancellable, error))
1522 iface = G_FILE_GET_IFACE (file);
1524 if (iface->append_to == NULL)
1526 g_set_error_literal (error, G_IO_ERROR,
1527 G_IO_ERROR_NOT_SUPPORTED,
1528 _("Operation not supported"));
1532 return (* iface->append_to) (file, flags, cancellable, error);
1537 * @file: input #GFile.
1538 * @flags: a set of #GFileCreateFlags.
1539 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
1540 * @error: a #GError, or %NULL
1542 * Creates a new file and returns an output stream for writing to it.
1543 * The file must not already exist.
1545 * By default files created are generally readable by everyone,
1546 * but if you pass #G_FILE_CREATE_PRIVATE in @flags the file
1547 * will be made readable only to the current user, to the level that
1548 * is supported on the target filesystem.
1550 * If @cancellable is not %NULL, then the operation can be cancelled by
1551 * triggering the cancellable object from another thread. If the operation
1552 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
1554 * If a file or directory with this name already exists the G_IO_ERROR_EXISTS
1555 * error will be returned.
1556 * Some file systems don't allow all file names, and may
1557 * return an G_IO_ERROR_INVALID_FILENAME error, and if the name
1558 * is to long G_IO_ERROR_FILENAME_TOO_LONG will be returned.
1559 * Other errors are possible too, and depend on what kind of
1560 * filesystem the file is on.
1562 * Returns: (transfer full): a #GFileOutputStream for the newly created file, or
1564 * Free the returned object with g_object_unref().
1567 g_file_create (GFile *file,
1568 GFileCreateFlags flags,
1569 GCancellable *cancellable,
1574 g_return_val_if_fail (G_IS_FILE (file), NULL);
1576 if (g_cancellable_set_error_if_cancelled (cancellable, error))
1579 iface = G_FILE_GET_IFACE (file);
1581 if (iface->create == NULL)
1583 g_set_error_literal (error, G_IO_ERROR,
1584 G_IO_ERROR_NOT_SUPPORTED,
1585 _("Operation not supported"));
1589 return (* iface->create) (file, flags, cancellable, error);
1594 * @file: input #GFile.
1595 * @etag: (allow-none): an optional <link linkend="gfile-etag">entity tag</link> for the
1596 * current #GFile, or #NULL to ignore.
1597 * @make_backup: %TRUE if a backup should be created.
1598 * @flags: a set of #GFileCreateFlags.
1599 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
1600 * @error: a #GError, or %NULL
1602 * Returns an output stream for overwriting the file, possibly
1603 * creating a backup copy of the file first. If the file doesn't exist,
1604 * it will be created.
1606 * This will try to replace the file in the safest way possible so
1607 * that any errors during the writing will not affect an already
1608 * existing copy of the file. For instance, for local files it
1609 * may write to a temporary file and then atomically rename over
1610 * the destination when the stream is closed.
1612 * By default files created are generally readable by everyone,
1613 * but if you pass #G_FILE_CREATE_PRIVATE in @flags the file
1614 * will be made readable only to the current user, to the level that
1615 * is supported on the target filesystem.
1617 * If @cancellable is not %NULL, then the operation can be cancelled by
1618 * triggering the cancellable object from another thread. If the operation
1619 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
1621 * If you pass in a non-#NULL @etag value, then this value is
1622 * compared to the current entity tag of the file, and if they differ
1623 * an G_IO_ERROR_WRONG_ETAG error is returned. This generally means
1624 * that the file has been changed since you last read it. You can get
1625 * the new etag from g_file_output_stream_get_etag() after you've
1626 * finished writing and closed the #GFileOutputStream. When you load
1627 * a new file you can use g_file_input_stream_query_info() to get
1628 * the etag of the file.
1630 * If @make_backup is %TRUE, this function will attempt to make a backup
1631 * of the current file before overwriting it. If this fails a G_IO_ERROR_CANT_CREATE_BACKUP
1632 * error will be returned. If you want to replace anyway, try again with
1633 * @make_backup set to %FALSE.
1635 * If the file is a directory the G_IO_ERROR_IS_DIRECTORY error will be returned,
1636 * and if the file is some other form of non-regular file then a
1637 * G_IO_ERROR_NOT_REGULAR_FILE error will be returned.
1638 * Some file systems don't allow all file names, and may
1639 * return an G_IO_ERROR_INVALID_FILENAME error, and if the name
1640 * is to long G_IO_ERROR_FILENAME_TOO_LONG will be returned.
1641 * Other errors are possible too, and depend on what kind of
1642 * filesystem the file is on.
1644 * Returns: (transfer full): a #GFileOutputStream or %NULL on error.
1645 * Free the returned object with g_object_unref().
1648 g_file_replace (GFile *file,
1650 gboolean make_backup,
1651 GFileCreateFlags flags,
1652 GCancellable *cancellable,
1657 g_return_val_if_fail (G_IS_FILE (file), NULL);
1659 if (g_cancellable_set_error_if_cancelled (cancellable, error))
1662 iface = G_FILE_GET_IFACE (file);
1664 if (iface->replace == NULL)
1666 g_set_error_literal (error, G_IO_ERROR,
1667 G_IO_ERROR_NOT_SUPPORTED,
1668 _("Operation not supported"));
1673 /* Handle empty tag string as NULL in consistent way. */
1674 if (etag && *etag == 0)
1677 return (* iface->replace) (file, etag, make_backup, flags, cancellable, error);
1681 * g_file_open_readwrite:
1682 * @file: #GFile to open
1683 * @cancellable: (allow-none): a #GCancellable
1684 * @error: a #GError, or %NULL
1686 * Opens an existing file for reading and writing. The result is
1687 * a #GFileIOStream that can be used to read and write the contents of the file.
1689 * If @cancellable is not %NULL, then the operation can be cancelled by
1690 * triggering the cancellable object from another thread. If the operation
1691 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
1693 * If the file does not exist, the G_IO_ERROR_NOT_FOUND error will be returned.
1694 * If the file is a directory, the G_IO_ERROR_IS_DIRECTORY error will be returned.
1695 * Other errors are possible too, and depend on what kind of filesystem the file is on.
1696 * Note that in many non-local file cases read and write streams are not supported,
1697 * so make sure you really need to do read and write streaming, rather than
1698 * just opening for reading or writing.
1700 * Returns: (transfer full): #GFileIOStream or %NULL on error.
1701 * Free the returned object with g_object_unref().
1706 g_file_open_readwrite (GFile *file,
1707 GCancellable *cancellable,
1712 g_return_val_if_fail (G_IS_FILE (file), NULL);
1714 if (g_cancellable_set_error_if_cancelled (cancellable, error))
1717 iface = G_FILE_GET_IFACE (file);
1719 if (iface->open_readwrite == NULL)
1721 g_set_error_literal (error, G_IO_ERROR,
1722 G_IO_ERROR_NOT_SUPPORTED,
1723 _("Operation not supported"));
1727 return (* iface->open_readwrite) (file, cancellable, error);
1731 * g_file_create_readwrite:
1733 * @flags: a set of #GFileCreateFlags
1734 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore
1735 * @error: return location for a #GError, or %NULL
1737 * Creates a new file and returns a stream for reading and writing to it.
1738 * The file must not already exist.
1740 * By default files created are generally readable by everyone,
1741 * but if you pass #G_FILE_CREATE_PRIVATE in @flags the file
1742 * will be made readable only to the current user, to the level that
1743 * is supported on the target filesystem.
1745 * If @cancellable is not %NULL, then the operation can be cancelled by
1746 * triggering the cancellable object from another thread. If the operation
1747 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
1749 * If a file or directory with this name already exists the %G_IO_ERROR_EXISTS
1750 * error will be returned. Some file systems don't allow all file names,
1751 * and may return an %G_IO_ERROR_INVALID_FILENAME error, and if the name
1752 * is too long, %G_IO_ERROR_FILENAME_TOO_LONG will be returned. Other errors
1753 * are possible too, and depend on what kind of filesystem the file is on.
1755 * Note that in many non-local file cases read and write streams are not
1756 * supported, so make sure you really need to do read and write streaming,
1757 * rather than just opening for reading or writing.
1759 * Returns: (transfer full): a #GFileIOStream for the newly created file, or %NULL on error.
1760 * Free the returned object with g_object_unref().
1765 g_file_create_readwrite (GFile *file,
1766 GFileCreateFlags flags,
1767 GCancellable *cancellable,
1772 g_return_val_if_fail (G_IS_FILE (file), NULL);
1774 if (g_cancellable_set_error_if_cancelled (cancellable, error))
1777 iface = G_FILE_GET_IFACE (file);
1779 if (iface->create_readwrite == NULL)
1781 g_set_error_literal (error, G_IO_ERROR,
1782 G_IO_ERROR_NOT_SUPPORTED,
1783 _("Operation not supported"));
1787 return (* iface->create_readwrite) (file, flags, cancellable, error);
1791 * g_file_replace_readwrite:
1793 * @etag: (allow-none): an optional <link linkend="gfile-etag">entity tag</link> for the
1794 * current #GFile, or #NULL to ignore
1795 * @make_backup: %TRUE if a backup should be created
1796 * @flags: a set of #GFileCreateFlags
1797 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore
1798 * @error: return location for a #GError, or %NULL
1800 * Returns an output stream for overwriting the file in readwrite mode,
1801 * possibly creating a backup copy of the file first. If the file doesn't
1802 * exist, it will be created.
1804 * For details about the behaviour, see g_file_replace() which does the same
1805 * thing but returns an output stream only.
1807 * Note that in many non-local file cases read and write streams are not
1808 * supported, so make sure you really need to do read and write streaming,
1809 * rather than just opening for reading or writing.
1811 * Returns: (transfer full): a #GFileIOStream or %NULL on error.
1812 * Free the returned object with g_object_unref().
1817 g_file_replace_readwrite (GFile *file,
1819 gboolean make_backup,
1820 GFileCreateFlags flags,
1821 GCancellable *cancellable,
1826 g_return_val_if_fail (G_IS_FILE (file), NULL);
1828 if (g_cancellable_set_error_if_cancelled (cancellable, error))
1831 iface = G_FILE_GET_IFACE (file);
1833 if (iface->replace_readwrite == NULL)
1835 g_set_error_literal (error, G_IO_ERROR,
1836 G_IO_ERROR_NOT_SUPPORTED,
1837 _("Operation not supported"));
1841 return (* iface->replace_readwrite) (file, etag, make_backup, flags, cancellable, error);
1845 * g_file_read_async:
1846 * @file: input #GFile
1847 * @io_priority: the <link linkend="io-priority">I/O priority</link>
1849 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
1850 * @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied
1851 * @user_data: (closure): the data to pass to callback function
1853 * Asynchronously opens @file for reading.
1855 * For more details, see g_file_read() which is
1856 * the synchronous version of this call.
1858 * When the operation is finished, @callback will be called. You can then call
1859 * g_file_read_finish() to get the result of the operation.
1862 g_file_read_async (GFile *file,
1864 GCancellable *cancellable,
1865 GAsyncReadyCallback callback,
1870 g_return_if_fail (G_IS_FILE (file));
1872 iface = G_FILE_GET_IFACE (file);
1873 (* iface->read_async) (file,
1881 * g_file_read_finish:
1882 * @file: input #GFile.
1883 * @res: a #GAsyncResult.
1884 * @error: a #GError, or %NULL
1886 * Finishes an asynchronous file read operation started with
1887 * g_file_read_async().
1889 * Returns: (transfer full): a #GFileInputStream or %NULL on error.
1890 * Free the returned object with g_object_unref().
1893 g_file_read_finish (GFile *file,
1899 g_return_val_if_fail (G_IS_FILE (file), NULL);
1900 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
1902 if (G_IS_SIMPLE_ASYNC_RESULT (res))
1904 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
1905 if (g_simple_async_result_propagate_error (simple, error))
1909 iface = G_FILE_GET_IFACE (file);
1910 return (* iface->read_finish) (file, res, error);
1914 * g_file_append_to_async:
1915 * @file: input #GFile.
1916 * @flags: a set of #GFileCreateFlags.
1917 * @io_priority: the <link linkend="io-priority">I/O priority</link>
1919 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
1920 * @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied
1921 * @user_data: (closure): the data to pass to callback function
1923 * Asynchronously opens @file for appending.
1925 * For more details, see g_file_append_to() which is
1926 * the synchronous version of this call.
1928 * When the operation is finished, @callback will be called. You can then call
1929 * g_file_append_to_finish() to get the result of the operation.
1932 g_file_append_to_async (GFile *file,
1933 GFileCreateFlags flags,
1935 GCancellable *cancellable,
1936 GAsyncReadyCallback callback,
1941 g_return_if_fail (G_IS_FILE (file));
1943 iface = G_FILE_GET_IFACE (file);
1944 (* iface->append_to_async) (file,
1953 * g_file_append_to_finish:
1954 * @file: input #GFile.
1955 * @res: #GAsyncResult
1956 * @error: a #GError, or %NULL
1958 * Finishes an asynchronous file append operation started with
1959 * g_file_append_to_async().
1961 * Returns: (transfer full): a valid #GFileOutputStream or %NULL on error.
1962 * Free the returned object with g_object_unref().
1965 g_file_append_to_finish (GFile *file,
1971 g_return_val_if_fail (G_IS_FILE (file), NULL);
1972 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
1974 if (G_IS_SIMPLE_ASYNC_RESULT (res))
1976 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
1977 if (g_simple_async_result_propagate_error (simple, error))
1981 iface = G_FILE_GET_IFACE (file);
1982 return (* iface->append_to_finish) (file, res, error);
1986 * g_file_create_async:
1987 * @file: input #GFile.
1988 * @flags: a set of #GFileCreateFlags.
1989 * @io_priority: the <link linkend="io-priority">I/O priority</link>
1991 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
1992 * @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied
1993 * @user_data: (closure): the data to pass to callback function
1995 * Asynchronously creates a new file and returns an output stream for writing to it.
1996 * The file must not already exist.
1998 * For more details, see g_file_create() which is
1999 * the synchronous version of this call.
2001 * When the operation is finished, @callback will be called. You can then call
2002 * g_file_create_finish() to get the result of the operation.
2005 g_file_create_async (GFile *file,
2006 GFileCreateFlags flags,
2008 GCancellable *cancellable,
2009 GAsyncReadyCallback callback,
2014 g_return_if_fail (G_IS_FILE (file));
2016 iface = G_FILE_GET_IFACE (file);
2017 (* iface->create_async) (file,
2026 * g_file_create_finish:
2027 * @file: input #GFile.
2028 * @res: a #GAsyncResult.
2029 * @error: a #GError, or %NULL
2031 * Finishes an asynchronous file create operation started with
2032 * g_file_create_async().
2034 * Returns: (transfer full): a #GFileOutputStream or %NULL on error.
2035 * Free the returned object with g_object_unref().
2038 g_file_create_finish (GFile *file,
2044 g_return_val_if_fail (G_IS_FILE (file), NULL);
2045 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
2047 if (G_IS_SIMPLE_ASYNC_RESULT (res))
2049 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
2050 if (g_simple_async_result_propagate_error (simple, error))
2054 iface = G_FILE_GET_IFACE (file);
2055 return (* iface->create_finish) (file, res, error);
2059 * g_file_replace_async:
2060 * @file: input #GFile.
2061 * @etag: (allow-none): an <link linkend="gfile-etag">entity tag</link> for the
2062 * current #GFile, or NULL to ignore.
2063 * @make_backup: %TRUE if a backup should be created.
2064 * @flags: a set of #GFileCreateFlags.
2065 * @io_priority: the <link linkend="io-priority">I/O priority</link>
2067 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
2068 * @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied
2069 * @user_data: (closure): the data to pass to callback function
2071 * Asynchronously overwrites the file, replacing the contents, possibly
2072 * creating a backup copy of the file first.
2074 * For more details, see g_file_replace() which is
2075 * the synchronous version of this call.
2077 * When the operation is finished, @callback will be called. You can then call
2078 * g_file_replace_finish() to get the result of the operation.
2081 g_file_replace_async (GFile *file,
2083 gboolean make_backup,
2084 GFileCreateFlags flags,
2086 GCancellable *cancellable,
2087 GAsyncReadyCallback callback,
2092 g_return_if_fail (G_IS_FILE (file));
2094 iface = G_FILE_GET_IFACE (file);
2095 (* iface->replace_async) (file,
2106 * g_file_replace_finish:
2107 * @file: input #GFile.
2108 * @res: a #GAsyncResult.
2109 * @error: a #GError, or %NULL
2111 * Finishes an asynchronous file replace operation started with
2112 * g_file_replace_async().
2114 * Returns: (transfer full): a #GFileOutputStream, or %NULL on error.
2115 * Free the returned object with g_object_unref().
2118 g_file_replace_finish (GFile *file,
2124 g_return_val_if_fail (G_IS_FILE (file), NULL);
2125 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
2127 if (G_IS_SIMPLE_ASYNC_RESULT (res))
2129 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
2130 if (g_simple_async_result_propagate_error (simple, error))
2134 iface = G_FILE_GET_IFACE (file);
2135 return (* iface->replace_finish) (file, res, error);
2140 * g_file_open_readwrite_async:
2141 * @file: input #GFile.
2142 * @io_priority: the <link linkend="io-priority">I/O priority</link>
2144 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
2145 * @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied
2146 * @user_data: (closure): the data to pass to callback function
2148 * Asynchronously opens @file for reading and writing.
2150 * For more details, see g_file_open_readwrite() which is
2151 * the synchronous version of this call.
2153 * When the operation is finished, @callback will be called. You can then call
2154 * g_file_open_readwrite_finish() to get the result of the operation.
2159 g_file_open_readwrite_async (GFile *file,
2161 GCancellable *cancellable,
2162 GAsyncReadyCallback callback,
2167 g_return_if_fail (G_IS_FILE (file));
2169 iface = G_FILE_GET_IFACE (file);
2170 (* iface->open_readwrite_async) (file,
2178 * g_file_open_readwrite_finish:
2179 * @file: input #GFile.
2180 * @res: a #GAsyncResult.
2181 * @error: a #GError, or %NULL
2183 * Finishes an asynchronous file read operation started with
2184 * g_file_open_readwrite_async().
2186 * Returns: (transfer full): a #GFileIOStream or %NULL on error.
2187 * Free the returned object with g_object_unref().
2192 g_file_open_readwrite_finish (GFile *file,
2198 g_return_val_if_fail (G_IS_FILE (file), NULL);
2199 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
2201 if (G_IS_SIMPLE_ASYNC_RESULT (res))
2203 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
2204 if (g_simple_async_result_propagate_error (simple, error))
2208 iface = G_FILE_GET_IFACE (file);
2209 return (* iface->open_readwrite_finish) (file, res, error);
2214 * g_file_create_readwrite_async:
2215 * @file: input #GFile
2216 * @flags: a set of #GFileCreateFlags
2217 * @io_priority: the <link linkend="io-priority">I/O priority</link>
2219 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore
2220 * @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied
2221 * @user_data: (closure): the data to pass to callback function
2223 * Asynchronously creates a new file and returns a stream for reading and
2224 * writing to it. The file must not already exist.
2226 * For more details, see g_file_create_readwrite() which is
2227 * the synchronous version of this call.
2229 * When the operation is finished, @callback will be called. You can then
2230 * call g_file_create_readwrite_finish() to get the result of the operation.
2235 g_file_create_readwrite_async (GFile *file,
2236 GFileCreateFlags flags,
2238 GCancellable *cancellable,
2239 GAsyncReadyCallback callback,
2244 g_return_if_fail (G_IS_FILE (file));
2246 iface = G_FILE_GET_IFACE (file);
2247 (* iface->create_readwrite_async) (file,
2256 * g_file_create_readwrite_finish:
2257 * @file: input #GFile
2258 * @res: a #GAsyncResult
2259 * @error: a #GError, or %NULL
2261 * Finishes an asynchronous file create operation started with
2262 * g_file_create_readwrite_async().
2264 * Returns: (transfer full): a #GFileIOStream or %NULL on error.
2265 * Free the returned object with g_object_unref().
2270 g_file_create_readwrite_finish (GFile *file,
2276 g_return_val_if_fail (G_IS_FILE (file), NULL);
2277 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
2279 if (G_IS_SIMPLE_ASYNC_RESULT (res))
2281 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
2282 if (g_simple_async_result_propagate_error (simple, error))
2286 iface = G_FILE_GET_IFACE (file);
2287 return (* iface->create_readwrite_finish) (file, res, error);
2291 * g_file_replace_readwrite_async:
2292 * @file: input #GFile.
2293 * @etag: (allow-none): an <link linkend="gfile-etag">entity tag</link> for the
2294 * current #GFile, or NULL to ignore.
2295 * @make_backup: %TRUE if a backup should be created.
2296 * @flags: a set of #GFileCreateFlags.
2297 * @io_priority: the <link linkend="io-priority">I/O priority</link>
2299 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
2300 * @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied
2301 * @user_data: (closure): the data to pass to callback function
2303 * Asynchronously overwrites the file in read-write mode, replacing the
2304 * contents, possibly creating a backup copy of the file first.
2306 * For more details, see g_file_replace_readwrite() which is
2307 * the synchronous version of this call.
2309 * When the operation is finished, @callback will be called. You can then
2310 * call g_file_replace_readwrite_finish() to get the result of the operation.
2315 g_file_replace_readwrite_async (GFile *file,
2317 gboolean make_backup,
2318 GFileCreateFlags flags,
2320 GCancellable *cancellable,
2321 GAsyncReadyCallback callback,
2326 g_return_if_fail (G_IS_FILE (file));
2328 iface = G_FILE_GET_IFACE (file);
2329 (* iface->replace_readwrite_async) (file,
2340 * g_file_replace_readwrite_finish:
2341 * @file: input #GFile.
2342 * @res: a #GAsyncResult.
2343 * @error: a #GError, or %NULL
2345 * Finishes an asynchronous file replace operation started with
2346 * g_file_replace_readwrite_async().
2348 * Returns: (transfer full): a #GFileIOStream, or %NULL on error.
2349 * Free the returned object with g_object_unref().
2354 g_file_replace_readwrite_finish (GFile *file,
2360 g_return_val_if_fail (G_IS_FILE (file), NULL);
2361 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
2363 if (G_IS_SIMPLE_ASYNC_RESULT (res))
2365 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
2366 if (g_simple_async_result_propagate_error (simple, error))
2370 iface = G_FILE_GET_IFACE (file);
2371 return (* iface->replace_readwrite_finish) (file, res, error);
2375 copy_symlink (GFile *destination,
2376 GFileCopyFlags flags,
2377 GCancellable *cancellable,
2382 gboolean tried_delete;
2384 GFileType file_type;
2386 tried_delete = FALSE;
2390 if (!g_file_make_symbolic_link (destination, target, cancellable, &my_error))
2392 /* Maybe it already existed, and we want to overwrite? */
2393 if (!tried_delete && (flags & G_FILE_COPY_OVERWRITE) &&
2394 my_error->domain == G_IO_ERROR && my_error->code == G_IO_ERROR_EXISTS)
2396 g_error_free (my_error);
2399 /* Don't overwrite if the destination is a directory */
2400 info = g_file_query_info (destination, G_FILE_ATTRIBUTE_STANDARD_TYPE,
2401 G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS,
2402 cancellable, &my_error);
2405 file_type = g_file_info_get_file_type (info);
2406 g_object_unref (info);
2408 if (file_type == G_FILE_TYPE_DIRECTORY)
2410 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_IS_DIRECTORY,
2411 _("Can't copy over directory"));
2416 if (!g_file_delete (destination, cancellable, error))
2419 tried_delete = TRUE;
2423 g_propagate_error (error, my_error);
2430 static GInputStream *
2431 open_source_for_copy (GFile *source,
2433 GFileCopyFlags flags,
2434 GCancellable *cancellable,
2440 GFileType file_type;
2443 in = (GInputStream *)g_file_read (source, cancellable, &my_error);
2447 /* There was an error opening the source, try to set a good error for it: */
2449 if (my_error->domain == G_IO_ERROR && my_error->code == G_IO_ERROR_IS_DIRECTORY)
2451 /* The source is a directory, don't fail with WOULD_RECURSE immediately,
2452 * as that is less useful to the app. Better check for errors on the
2455 g_error_free (my_error);
2458 info = g_file_query_info (destination, G_FILE_ATTRIBUTE_STANDARD_TYPE,
2459 G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS,
2460 cancellable, &my_error);
2462 g_file_info_has_attribute (info, G_FILE_ATTRIBUTE_STANDARD_TYPE))
2464 file_type = g_file_info_get_file_type (info);
2465 g_object_unref (info);
2467 if (flags & G_FILE_COPY_OVERWRITE)
2469 if (file_type == G_FILE_TYPE_DIRECTORY)
2471 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_WOULD_MERGE,
2472 _("Can't copy directory over directory"));
2475 /* continue to would_recurse error */
2479 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_EXISTS,
2480 _("Target file exists"));
2486 /* Error getting info from target, return that error
2487 * (except for NOT_FOUND, which is no error here)
2489 if (my_error != NULL && !g_error_matches (my_error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND))
2491 g_propagate_error (error, my_error);
2494 g_clear_error (&my_error);
2497 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_WOULD_RECURSE,
2498 _("Can't recursively copy directory"));
2502 g_propagate_error (error, my_error);
2507 should_copy (GFileAttributeInfo *info,
2509 gboolean skip_perms)
2511 if (skip_perms && strcmp(info->name, "unix::mode") == 0)
2515 return info->flags & G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED;
2516 return info->flags & G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE;
2520 build_attribute_list_for_copy (GFileAttributeInfoList *attributes,
2521 GFileAttributeInfoList *namespaces,
2523 gboolean skip_perms)
2530 s = g_string_new ("");
2534 for (i = 0; i < attributes->n_infos; i++)
2536 if (should_copy (&attributes->infos[i], as_move, skip_perms))
2541 g_string_append_c (s, ',');
2543 g_string_append (s, attributes->infos[i].name);
2550 for (i = 0; i < namespaces->n_infos; i++)
2552 if (should_copy (&namespaces->infos[i], as_move, FALSE))
2557 g_string_append_c (s, ',');
2559 g_string_append (s, namespaces->infos[i].name);
2560 g_string_append (s, "::*");
2565 return g_string_free (s, FALSE);
2569 * g_file_copy_attributes:
2570 * @source: a #GFile with attributes.
2571 * @destination: a #GFile to copy attributes to.
2572 * @flags: a set of #GFileCopyFlags.
2573 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
2574 * @error: a #GError, %NULL to ignore.
2576 * Copies the file attributes from @source to @destination.
2578 * Normally only a subset of the file attributes are copied,
2579 * those that are copies in a normal file copy operation
2580 * (which for instance does not include e.g. owner). However
2581 * if #G_FILE_COPY_ALL_METADATA is specified in @flags, then
2582 * all the metadata that is possible to copy is copied. This
2583 * is useful when implementing move by copy + delete source.
2585 * Returns: %TRUE if the attributes were copied successfully, %FALSE otherwise.
2588 g_file_copy_attributes (GFile *source,
2590 GFileCopyFlags flags,
2591 GCancellable *cancellable,
2594 GFileAttributeInfoList *attributes, *namespaces;
2595 char *attrs_to_read;
2599 gboolean source_nofollow_symlinks;
2600 gboolean skip_perms;
2602 as_move = flags & G_FILE_COPY_ALL_METADATA;
2603 source_nofollow_symlinks = flags & G_FILE_COPY_NOFOLLOW_SYMLINKS;
2604 skip_perms = (flags & G_FILE_COPY_TARGET_DEFAULT_PERMS) != 0;
2606 /* Ignore errors here, if the target supports no attributes there is nothing to copy */
2607 attributes = g_file_query_settable_attributes (destination, cancellable, NULL);
2608 namespaces = g_file_query_writable_namespaces (destination, cancellable, NULL);
2610 if (attributes == NULL && namespaces == NULL)
2613 attrs_to_read = build_attribute_list_for_copy (attributes, namespaces, as_move, skip_perms);
2615 /* Ignore errors here, if we can't read some info (e.g. if it doesn't exist)
2616 * we just don't copy it.
2618 info = g_file_query_info (source, attrs_to_read,
2619 source_nofollow_symlinks ? G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS:0,
2623 g_free (attrs_to_read);
2628 res = g_file_set_attributes_from_info (destination,
2630 G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS,
2633 g_object_unref (info);
2636 g_file_attribute_info_list_unref (attributes);
2637 g_file_attribute_info_list_unref (namespaces);
2643 copy_stream_with_progress (GInputStream *in,
2646 GCancellable *cancellable,
2647 GFileProgressCallback progress_callback,
2648 gpointer progress_callback_data,
2651 gssize n_read, n_written;
2652 goffset current_size;
2653 char buffer[1024*64], *p;
2659 /* avoid performance impact of querying total size when it's not needed */
2660 if (progress_callback)
2662 info = g_file_input_stream_query_info (G_FILE_INPUT_STREAM (in),
2663 G_FILE_ATTRIBUTE_STANDARD_SIZE,
2667 if (g_file_info_has_attribute (info, G_FILE_ATTRIBUTE_STANDARD_SIZE))
2668 total_size = g_file_info_get_size (info);
2669 g_object_unref (info);
2672 if (total_size == -1)
2674 info = g_file_query_info (source,
2675 G_FILE_ATTRIBUTE_STANDARD_SIZE,
2676 G_FILE_QUERY_INFO_NONE,
2680 if (g_file_info_has_attribute (info, G_FILE_ATTRIBUTE_STANDARD_SIZE))
2681 total_size = g_file_info_get_size (info);
2682 g_object_unref (info);
2687 if (total_size == -1)
2694 n_read = g_input_stream_read (in, buffer, sizeof (buffer), cancellable, error);
2704 current_size += n_read;
2709 n_written = g_output_stream_write (out, p, n_read, cancellable, error);
2710 if (n_written == -1)
2717 n_read -= n_written;
2723 if (progress_callback)
2724 progress_callback (current_size, total_size, progress_callback_data);
2727 /* Make sure we send full copied size */
2728 if (progress_callback)
2729 progress_callback (current_size, total_size, progress_callback_data);
2737 do_splice (int fd_in,
2742 long *bytes_transferd,
2748 result = splice (fd_in, off_in, fd_out, off_out, len, SPLICE_F_MORE);
2756 else if (errsv == ENOSYS || errsv == EINVAL)
2757 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
2758 _("Splice not supported"));
2760 g_set_error (error, G_IO_ERROR,
2761 g_io_error_from_errno (errsv),
2762 _("Error splicing file: %s"),
2763 g_strerror (errsv));
2768 *bytes_transferd = result;
2773 splice_stream_with_progress (GInputStream *in,
2775 GCancellable *cancellable,
2776 GFileProgressCallback progress_callback,
2777 gpointer progress_callback_data,
2787 fd_in = g_file_descriptor_based_get_fd (G_FILE_DESCRIPTOR_BASED (in));
2788 fd_out = g_file_descriptor_based_get_fd (G_FILE_DESCRIPTOR_BASED (out));
2790 if (pipe (buffer) != 0)
2792 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
2793 "Pipe creation failed");
2798 /* avoid performance impact of querying total size when it's not needed */
2799 if (progress_callback)
2803 if (fstat (fd_in, &sbuf) == 0)
2804 total_size = sbuf.st_size;
2807 if (total_size == -1)
2810 offset_in = offset_out = 0;
2817 if (g_cancellable_set_error_if_cancelled (cancellable, error))
2820 if (!do_splice (fd_in, &offset_in, buffer[1], NULL, 1024*64, &n_read, error))
2831 if (g_cancellable_set_error_if_cancelled (cancellable, error))
2834 if (!do_splice (buffer[0], NULL, fd_out, &offset_out, n_read, &n_written, error))
2837 n_read -= n_written;
2840 if (progress_callback)
2841 progress_callback (offset_in, total_size, progress_callback_data);
2844 /* Make sure we send full copied size */
2845 if (progress_callback)
2846 progress_callback (offset_in, total_size, progress_callback_data);
2857 file_copy_fallback (GFile *source,
2859 GFileCopyFlags flags,
2860 GCancellable *cancellable,
2861 GFileProgressCallback progress_callback,
2862 gpointer progress_callback_data,
2871 gboolean fallback = TRUE;
2874 /* need to know the file type */
2875 info = g_file_query_info (source,
2876 G_FILE_ATTRIBUTE_STANDARD_TYPE "," G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET,
2877 G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS,
2884 /* Maybe copy the symlink? */
2885 if ((flags & G_FILE_COPY_NOFOLLOW_SYMLINKS) &&
2886 g_file_info_get_file_type (info) == G_FILE_TYPE_SYMBOLIC_LINK)
2888 target = g_file_info_get_symlink_target (info);
2891 if (!copy_symlink (destination, flags, cancellable, target, error))
2893 g_object_unref (info);
2897 g_object_unref (info);
2900 /* ... else fall back on a regular file copy */
2901 g_object_unref (info);
2903 /* Handle "special" files (pipes, device nodes, ...)? */
2904 else if (g_file_info_get_file_type (info) == G_FILE_TYPE_SPECIAL)
2906 /* FIXME: could try to recreate device nodes and others? */
2908 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
2909 _("Can't copy special file"));
2910 g_object_unref (info);
2913 /* Everything else should just fall back on a regular copy. */
2915 g_object_unref (info);
2917 in = open_source_for_copy (source, destination, flags, cancellable, error);
2921 if (flags & G_FILE_COPY_OVERWRITE)
2923 out = (GOutputStream *)g_file_replace (destination,
2925 flags & G_FILE_COPY_BACKUP,
2926 G_FILE_CREATE_REPLACE_DESTINATION,
2927 cancellable, error);
2931 out = (GOutputStream *)g_file_create (destination, 0, cancellable, error);
2936 g_object_unref (in);
2941 if (G_IS_FILE_DESCRIPTOR_BASED (in) && G_IS_FILE_DESCRIPTOR_BASED (out))
2943 GError *splice_err = NULL;
2945 result = splice_stream_with_progress (in, out, cancellable,
2946 progress_callback, progress_callback_data,
2949 if (result || !g_error_matches (splice_err, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED))
2953 g_propagate_error (error, splice_err);
2956 g_clear_error (&splice_err);
2961 result = copy_stream_with_progress (in, out, source, cancellable,
2962 progress_callback, progress_callback_data,
2965 /* Don't care about errors in source here */
2966 g_input_stream_close (in, cancellable, NULL);
2968 /* But write errors on close are bad! */
2969 if (!g_output_stream_close (out, cancellable, result ? error : NULL))
2972 g_object_unref (in);
2973 g_object_unref (out);
2975 if (result == FALSE)
2979 /* Ignore errors here. Failure to copy metadata is not a hard error */
2980 g_file_copy_attributes (source, destination,
2981 flags, cancellable, NULL);
2988 * @source: input #GFile.
2989 * @destination: destination #GFile
2990 * @flags: set of #GFileCopyFlags
2991 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
2992 * @progress_callback: (scope call): function to callback with progress information
2993 * @progress_callback_data: (closure): user data to pass to @progress_callback
2994 * @error: #GError to set on error, or %NULL
2996 * Copies the file @source to the location specified by @destination.
2997 * Can not handle recursive copies of directories.
2999 * If the flag #G_FILE_COPY_OVERWRITE is specified an already
3000 * existing @destination file is overwritten.
3002 * If the flag #G_FILE_COPY_NOFOLLOW_SYMLINKS is specified then symlinks
3003 * will be copied as symlinks, otherwise the target of the
3004 * @source symlink will be copied.
3006 * If @cancellable is not %NULL, then the operation can be cancelled by
3007 * triggering the cancellable object from another thread. If the operation
3008 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3010 * If @progress_callback is not %NULL, then the operation can be monitored by
3011 * setting this to a #GFileProgressCallback function. @progress_callback_data
3012 * will be passed to this function. It is guaranteed that this callback will
3013 * be called after all data has been transferred with the total number of bytes
3014 * copied during the operation.
3016 * If the @source file does not exist then the G_IO_ERROR_NOT_FOUND
3017 * error is returned, independent on the status of the @destination.
3019 * If #G_FILE_COPY_OVERWRITE is not specified and the target exists, then the
3020 * error G_IO_ERROR_EXISTS is returned.
3022 * If trying to overwrite a file over a directory the G_IO_ERROR_IS_DIRECTORY
3023 * error is returned. If trying to overwrite a directory with a directory the
3024 * G_IO_ERROR_WOULD_MERGE error is returned.
3026 * If the source is a directory and the target does not exist, or #G_FILE_COPY_OVERWRITE is
3027 * specified and the target is a file, then the G_IO_ERROR_WOULD_RECURSE error
3030 * If you are interested in copying the #GFile object itself (not the on-disk
3031 * file), see g_file_dup().
3033 * Returns: %TRUE on success, %FALSE otherwise.
3036 g_file_copy (GFile *source,
3038 GFileCopyFlags flags,
3039 GCancellable *cancellable,
3040 GFileProgressCallback progress_callback,
3041 gpointer progress_callback_data,
3048 g_return_val_if_fail (G_IS_FILE (source), FALSE);
3049 g_return_val_if_fail (G_IS_FILE (destination), FALSE);
3051 if (g_cancellable_set_error_if_cancelled (cancellable, error))
3054 iface = G_FILE_GET_IFACE (destination);
3058 res = (* iface->copy) (source, destination,
3060 progress_callback, progress_callback_data,
3066 if (my_error->domain != G_IO_ERROR || my_error->code != G_IO_ERROR_NOT_SUPPORTED)
3068 g_propagate_error (error, my_error);
3072 g_clear_error (&my_error);
3075 /* If the types are different, and the destination method failed
3076 also try the source method */
3077 if (G_OBJECT_TYPE (source) != G_OBJECT_TYPE (destination))
3079 iface = G_FILE_GET_IFACE (source);
3084 res = (* iface->copy) (source, destination,
3086 progress_callback, progress_callback_data,
3092 if (my_error->domain != G_IO_ERROR || my_error->code != G_IO_ERROR_NOT_SUPPORTED)
3094 g_propagate_error (error, my_error);
3098 g_clear_error (&my_error);
3102 return file_copy_fallback (source, destination, flags, cancellable,
3103 progress_callback, progress_callback_data,
3108 * g_file_copy_async: (skip)
3109 * @source: input #GFile.
3110 * @destination: destination #GFile
3111 * @flags: set of #GFileCopyFlags
3112 * @io_priority: the <link linkend="io-priority">I/O priority</link>
3114 * @cancellable: optional #GCancellable object, %NULL to ignore.
3115 * @progress_callback: function to callback with progress information
3116 * @progress_callback_data: user data to pass to @progress_callback
3117 * @callback: a #GAsyncReadyCallback to call when the request is satisfied
3118 * @user_data: the data to pass to callback function
3120 * Copies the file @source to the location specified by @destination
3121 * asynchronously. For details of the behaviour, see g_file_copy().
3123 * If @progress_callback is not %NULL, then that function that will be called
3124 * just like in g_file_copy(), however the callback will run in the main loop,
3125 * not in the thread that is doing the I/O operation.
3127 * When the operation is finished, @callback will be called. You can then call
3128 * g_file_copy_finish() to get the result of the operation.
3131 g_file_copy_async (GFile *source,
3133 GFileCopyFlags flags,
3135 GCancellable *cancellable,
3136 GFileProgressCallback progress_callback,
3137 gpointer progress_callback_data,
3138 GAsyncReadyCallback callback,
3143 g_return_if_fail (G_IS_FILE (source));
3144 g_return_if_fail (G_IS_FILE (destination));
3146 iface = G_FILE_GET_IFACE (source);
3147 (* iface->copy_async) (source,
3153 progress_callback_data,
3159 * g_file_copy_finish:
3160 * @file: input #GFile.
3161 * @res: a #GAsyncResult.
3162 * @error: a #GError, or %NULL
3164 * Finishes copying the file started with
3165 * g_file_copy_async().
3167 * Returns: a %TRUE on success, %FALSE on error.
3170 g_file_copy_finish (GFile *file,
3176 g_return_val_if_fail (G_IS_FILE (file), FALSE);
3177 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), FALSE);
3179 if (G_IS_SIMPLE_ASYNC_RESULT (res))
3181 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
3183 if (g_simple_async_result_propagate_error (simple, error))
3187 iface = G_FILE_GET_IFACE (file);
3188 return (* iface->copy_finish) (file, res, error);
3193 * @source: #GFile pointing to the source location.
3194 * @destination: #GFile pointing to the destination location.
3195 * @flags: set of #GFileCopyFlags.
3196 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
3197 * @progress_callback: (scope call): #GFileProgressCallback function for updates.
3198 * @progress_callback_data: (closure): gpointer to user data for the callback function.
3199 * @error: #GError for returning error conditions, or %NULL
3202 * Tries to move the file or directory @source to the location specified by @destination.
3203 * If native move operations are supported then this is used, otherwise a copy + delete
3204 * fallback is used. The native implementation may support moving directories (for instance
3205 * on moves inside the same filesystem), but the fallback code does not.
3207 * If the flag #G_FILE_COPY_OVERWRITE is specified an already
3208 * existing @destination file is overwritten.
3210 * If the flag #G_FILE_COPY_NOFOLLOW_SYMLINKS is specified then symlinks
3211 * will be copied as symlinks, otherwise the target of the
3212 * @source symlink will be copied.
3214 * If @cancellable is not %NULL, then the operation can be cancelled by
3215 * triggering the cancellable object from another thread. If the operation
3216 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3218 * If @progress_callback is not %NULL, then the operation can be monitored by
3219 * setting this to a #GFileProgressCallback function. @progress_callback_data
3220 * will be passed to this function. It is guaranteed that this callback will
3221 * be called after all data has been transferred with the total number of bytes
3222 * copied during the operation.
3224 * If the @source file does not exist then the G_IO_ERROR_NOT_FOUND
3225 * error is returned, independent on the status of the @destination.
3227 * If #G_FILE_COPY_OVERWRITE is not specified and the target exists, then the
3228 * error G_IO_ERROR_EXISTS is returned.
3230 * If trying to overwrite a file over a directory the G_IO_ERROR_IS_DIRECTORY
3231 * error is returned. If trying to overwrite a directory with a directory the
3232 * G_IO_ERROR_WOULD_MERGE error is returned.
3234 * If the source is a directory and the target does not exist, or #G_FILE_COPY_OVERWRITE is
3235 * specified and the target is a file, then the G_IO_ERROR_WOULD_RECURSE error
3236 * may be returned (if the native move operation isn't available).
3238 * Returns: %TRUE on successful move, %FALSE otherwise.
3241 g_file_move (GFile *source,
3243 GFileCopyFlags flags,
3244 GCancellable *cancellable,
3245 GFileProgressCallback progress_callback,
3246 gpointer progress_callback_data,
3253 g_return_val_if_fail (G_IS_FILE (source), FALSE);
3254 g_return_val_if_fail (G_IS_FILE (destination), FALSE);
3256 if (g_cancellable_set_error_if_cancelled (cancellable, error))
3259 iface = G_FILE_GET_IFACE (destination);
3263 res = (* iface->move) (source, destination,
3265 progress_callback, progress_callback_data,
3271 if (my_error->domain != G_IO_ERROR || my_error->code != G_IO_ERROR_NOT_SUPPORTED)
3273 g_propagate_error (error, my_error);
3278 /* If the types are different, and the destination method failed
3279 also try the source method */
3280 if (G_OBJECT_TYPE (source) != G_OBJECT_TYPE (destination))
3282 iface = G_FILE_GET_IFACE (source);
3287 res = (* iface->move) (source, destination,
3289 progress_callback, progress_callback_data,
3295 if (my_error->domain != G_IO_ERROR || my_error->code != G_IO_ERROR_NOT_SUPPORTED)
3297 g_propagate_error (error, my_error);
3303 if (flags & G_FILE_COPY_NO_FALLBACK_FOR_MOVE)
3305 g_set_error_literal (error, G_IO_ERROR,
3306 G_IO_ERROR_NOT_SUPPORTED,
3307 _("Operation not supported"));
3311 flags |= G_FILE_COPY_ALL_METADATA;
3312 if (!g_file_copy (source, destination, flags, cancellable,
3313 progress_callback, progress_callback_data,
3317 return g_file_delete (source, cancellable, error);
3321 * g_file_make_directory
3322 * @file: input #GFile.
3323 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
3324 * @error: a #GError, or %NULL
3326 * Creates a directory. Note that this will only create a child directory of
3327 * the immediate parent directory of the path or URI given by the #GFile. To
3328 * recursively create directories, see g_file_make_directory_with_parents().
3329 * This function will fail if the parent directory does not exist, setting
3330 * @error to %G_IO_ERROR_NOT_FOUND. If the file system doesn't support creating
3331 * directories, this function will fail, setting @error to
3332 * %G_IO_ERROR_NOT_SUPPORTED.
3334 * For a local #GFile the newly created directory will have the default
3335 * (current) ownership and permissions of the current process.
3337 * If @cancellable is not %NULL, then the operation can be cancelled by
3338 * triggering the cancellable object from another thread. If the operation
3339 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3341 * Returns: %TRUE on successful creation, %FALSE otherwise.
3344 g_file_make_directory (GFile *file,
3345 GCancellable *cancellable,
3350 g_return_val_if_fail (G_IS_FILE (file), FALSE);
3352 if (g_cancellable_set_error_if_cancelled (cancellable, error))
3355 iface = G_FILE_GET_IFACE (file);
3357 if (iface->make_directory == NULL)
3359 g_set_error_literal (error, G_IO_ERROR,
3360 G_IO_ERROR_NOT_SUPPORTED,
3361 _("Operation not supported"));
3365 return (* iface->make_directory) (file, cancellable, error);
3369 * g_file_make_directory_with_parents:
3370 * @file: input #GFile.
3371 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
3372 * @error: a #GError, or %NULL
3374 * Creates a directory and any parent directories that may not exist similar to
3375 * 'mkdir -p'. If the file system does not support creating directories, this
3376 * function will fail, setting @error to %G_IO_ERROR_NOT_SUPPORTED.
3378 * For a local #GFile the newly created directories will have the default
3379 * (current) ownership and permissions of the current process.
3381 * If @cancellable is not %NULL, then the operation can be cancelled by
3382 * triggering the cancellable object from another thread. If the operation
3383 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3385 * Returns: %TRUE if all directories have been successfully created, %FALSE
3391 g_file_make_directory_with_parents (GFile *file,
3392 GCancellable *cancellable,
3396 GFile *parent_file, *work_file;
3397 GList *list = NULL, *l;
3398 GError *my_error = NULL;
3400 if (g_cancellable_set_error_if_cancelled (cancellable, error))
3403 result = g_file_make_directory (file, cancellable, &my_error);
3404 if (result || my_error->code != G_IO_ERROR_NOT_FOUND)
3407 g_propagate_error (error, my_error);
3413 while (!result && my_error->code == G_IO_ERROR_NOT_FOUND)
3415 g_clear_error (&my_error);
3417 parent_file = g_file_get_parent (work_file);
3418 if (parent_file == NULL)
3420 result = g_file_make_directory (parent_file, cancellable, &my_error);
3422 if (!result && my_error->code == G_IO_ERROR_NOT_FOUND)
3423 list = g_list_prepend (list, parent_file);
3425 work_file = parent_file;
3428 for (l = list; result && l; l = l->next)
3430 result = g_file_make_directory ((GFile *) l->data, cancellable, &my_error);
3434 while (list != NULL)
3436 g_object_unref ((GFile *) list->data);
3437 list = g_list_remove (list, list->data);
3442 g_propagate_error (error, my_error);
3446 return g_file_make_directory (file, cancellable, error);
3450 * g_file_make_symbolic_link:
3451 * @file: a #GFile with the name of the symlink to create
3452 * @symlink_value: a string with the path for the target of the new symlink
3453 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
3454 * @error: a #GError.
3456 * Creates a symbolic link named @file which contains the string
3459 * If @cancellable is not %NULL, then the operation can be cancelled by
3460 * triggering the cancellable object from another thread. If the operation
3461 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3463 * Returns: %TRUE on the creation of a new symlink, %FALSE otherwise.
3466 g_file_make_symbolic_link (GFile *file,
3467 const char *symlink_value,
3468 GCancellable *cancellable,
3473 g_return_val_if_fail (G_IS_FILE (file), FALSE);
3474 g_return_val_if_fail (symlink_value != NULL, FALSE);
3476 if (g_cancellable_set_error_if_cancelled (cancellable, error))
3479 if (*symlink_value == '\0')
3481 g_set_error_literal (error, G_IO_ERROR,
3482 G_IO_ERROR_INVALID_ARGUMENT,
3483 _("Invalid symlink value given"));
3487 iface = G_FILE_GET_IFACE (file);
3489 if (iface->make_symbolic_link == NULL)
3491 g_set_error_literal (error, G_IO_ERROR,
3492 G_IO_ERROR_NOT_SUPPORTED,
3493 _("Operation not supported"));
3497 return (* iface->make_symbolic_link) (file, symlink_value, cancellable, error);
3502 * @file: input #GFile.
3503 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
3504 * @error: a #GError, or %NULL
3506 * Deletes a file. If the @file is a directory, it will only be deleted if it
3509 * If @cancellable is not %NULL, then the operation can be cancelled by
3510 * triggering the cancellable object from another thread. If the operation
3511 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3513 * Virtual: delete_file
3514 * Returns: %TRUE if the file was deleted. %FALSE otherwise.
3517 g_file_delete (GFile *file,
3518 GCancellable *cancellable,
3523 g_return_val_if_fail (G_IS_FILE (file), FALSE);
3525 if (g_cancellable_set_error_if_cancelled (cancellable, error))
3528 iface = G_FILE_GET_IFACE (file);
3530 if (iface->delete_file == NULL)
3532 g_set_error_literal (error, G_IO_ERROR,
3533 G_IO_ERROR_NOT_SUPPORTED,
3534 _("Operation not supported"));
3538 return (* iface->delete_file) (file, cancellable, error);
3543 * @file: #GFile to send to trash.
3544 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
3545 * @error: a #GError, or %NULL
3547 * Sends @file to the "Trashcan", if possible. This is similar to
3548 * deleting it, but the user can recover it before emptying the trashcan.
3549 * Not all file systems support trashing, so this call can return the
3550 * %G_IO_ERROR_NOT_SUPPORTED error.
3553 * If @cancellable is not %NULL, then the operation can be cancelled by
3554 * triggering the cancellable object from another thread. If the operation
3555 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3557 * Returns: %TRUE on successful trash, %FALSE otherwise.
3560 g_file_trash (GFile *file,
3561 GCancellable *cancellable,
3566 g_return_val_if_fail (G_IS_FILE (file), FALSE);
3568 if (g_cancellable_set_error_if_cancelled (cancellable, error))
3571 iface = G_FILE_GET_IFACE (file);
3573 if (iface->trash == NULL)
3575 g_set_error_literal (error,
3576 G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
3577 _("Trash not supported"));
3581 return (* iface->trash) (file, cancellable, error);
3585 * g_file_set_display_name:
3586 * @file: input #GFile.
3587 * @display_name: a string.
3588 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
3589 * @error: a #GError, or %NULL
3591 * Renames @file to the specified display name.
3593 * The display name is converted from UTF8 to the correct encoding for the target
3594 * filesystem if possible and the @file is renamed to this.
3596 * If you want to implement a rename operation in the user interface the edit name
3597 * (#G_FILE_ATTRIBUTE_STANDARD_EDIT_NAME) should be used as the initial value in the rename
3598 * widget, and then the result after editing should be passed to g_file_set_display_name().
3600 * On success the resulting converted filename is returned.
3602 * If @cancellable is not %NULL, then the operation can be cancelled by
3603 * triggering the cancellable object from another thread. If the operation
3604 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3606 * Returns: (transfer full): a #GFile specifying what @file was renamed to, or %NULL
3607 * if there was an error.
3608 * Free the returned object with g_object_unref().
3611 g_file_set_display_name (GFile *file,
3612 const char *display_name,
3613 GCancellable *cancellable,
3618 g_return_val_if_fail (G_IS_FILE (file), NULL);
3619 g_return_val_if_fail (display_name != NULL, NULL);
3621 if (strchr (display_name, G_DIR_SEPARATOR) != NULL)
3625 G_IO_ERROR_INVALID_ARGUMENT,
3626 _("File names cannot contain '%c'"), G_DIR_SEPARATOR);
3630 if (g_cancellable_set_error_if_cancelled (cancellable, error))
3633 iface = G_FILE_GET_IFACE (file);
3635 return (* iface->set_display_name) (file, display_name, cancellable, error);
3639 * g_file_set_display_name_async:
3640 * @file: input #GFile.
3641 * @display_name: a string.
3642 * @io_priority: the <link linkend="io-priority">I/O priority</link>
3644 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
3645 * @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied
3646 * @user_data: (closure): the data to pass to callback function
3648 * Asynchronously sets the display name for a given #GFile.
3650 * For more details, see g_file_set_display_name() which is
3651 * the synchronous version of this call.
3653 * When the operation is finished, @callback will be called. You can then call
3654 * g_file_set_display_name_finish() to get the result of the operation.
3657 g_file_set_display_name_async (GFile *file,
3658 const char *display_name,
3660 GCancellable *cancellable,
3661 GAsyncReadyCallback callback,
3666 g_return_if_fail (G_IS_FILE (file));
3667 g_return_if_fail (display_name != NULL);
3669 iface = G_FILE_GET_IFACE (file);
3670 (* iface->set_display_name_async) (file,
3679 * g_file_set_display_name_finish:
3680 * @file: input #GFile.
3681 * @res: a #GAsyncResult.
3682 * @error: a #GError, or %NULL
3684 * Finishes setting a display name started with
3685 * g_file_set_display_name_async().
3687 * Returns: (transfer full): a #GFile or %NULL on error.
3688 * Free the returned object with g_object_unref().
3691 g_file_set_display_name_finish (GFile *file,
3697 g_return_val_if_fail (G_IS_FILE (file), NULL);
3698 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
3700 if (G_IS_SIMPLE_ASYNC_RESULT (res))
3702 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
3703 if (g_simple_async_result_propagate_error (simple, error))
3707 iface = G_FILE_GET_IFACE (file);
3708 return (* iface->set_display_name_finish) (file, res, error);
3712 * g_file_query_settable_attributes:
3713 * @file: input #GFile.
3714 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
3715 * @error: a #GError, or %NULL
3717 * Obtain the list of settable attributes for the file.
3719 * Returns the type and full attribute name of all the attributes
3720 * that can be set on this file. This doesn't mean setting it will always
3721 * succeed though, you might get an access failure, or some specific
3722 * file may not support a specific attribute.
3724 * If @cancellable is not %NULL, then the operation can be cancelled by
3725 * triggering the cancellable object from another thread. If the operation
3726 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3728 * Returns: a #GFileAttributeInfoList describing the settable attributes.
3729 * When you are done with it, release it with g_file_attribute_info_list_unref()
3731 GFileAttributeInfoList *
3732 g_file_query_settable_attributes (GFile *file,
3733 GCancellable *cancellable,
3738 GFileAttributeInfoList *list;
3740 g_return_val_if_fail (G_IS_FILE (file), NULL);
3742 if (g_cancellable_set_error_if_cancelled (cancellable, error))
3745 iface = G_FILE_GET_IFACE (file);
3747 if (iface->query_settable_attributes == NULL)
3748 return g_file_attribute_info_list_new ();
3751 list = (* iface->query_settable_attributes) (file, cancellable, &my_error);
3755 if (my_error->domain == G_IO_ERROR && my_error->code == G_IO_ERROR_NOT_SUPPORTED)
3757 list = g_file_attribute_info_list_new ();
3758 g_error_free (my_error);
3761 g_propagate_error (error, my_error);
3768 * g_file_query_writable_namespaces:
3769 * @file: input #GFile.
3770 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
3771 * @error: a #GError, or %NULL
3773 * Obtain the list of attribute namespaces where new attributes
3774 * can be created by a user. An example of this is extended
3775 * attributes (in the "xattr" namespace).
3777 * If @cancellable is not %NULL, then the operation can be cancelled by
3778 * triggering the cancellable object from another thread. If the operation
3779 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3781 * Returns: a #GFileAttributeInfoList describing the writable namespaces.
3782 * When you are done with it, release it with g_file_attribute_info_list_unref()
3784 GFileAttributeInfoList *
3785 g_file_query_writable_namespaces (GFile *file,
3786 GCancellable *cancellable,
3791 GFileAttributeInfoList *list;
3793 g_return_val_if_fail (G_IS_FILE (file), NULL);
3795 if (g_cancellable_set_error_if_cancelled (cancellable, error))
3798 iface = G_FILE_GET_IFACE (file);
3800 if (iface->query_writable_namespaces == NULL)
3801 return g_file_attribute_info_list_new ();
3804 list = (* iface->query_writable_namespaces) (file, cancellable, &my_error);
3808 if (my_error->domain == G_IO_ERROR && my_error->code == G_IO_ERROR_NOT_SUPPORTED)
3810 list = g_file_attribute_info_list_new ();
3811 g_error_free (my_error);
3814 g_propagate_error (error, my_error);
3821 * g_file_set_attribute:
3822 * @file: input #GFile.
3823 * @attribute: a string containing the attribute's name.
3824 * @type: The type of the attribute
3825 * @value_p: a pointer to the value (or the pointer itself if the type is a pointer type)
3826 * @flags: a set of #GFileQueryInfoFlags.
3827 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
3828 * @error: a #GError, or %NULL
3830 * Sets an attribute in the file with attribute name @attribute to @value.
3832 * If @cancellable is not %NULL, then the operation can be cancelled by
3833 * triggering the cancellable object from another thread. If the operation
3834 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3836 * Returns: %TRUE if the attribute was set, %FALSE otherwise.
3839 g_file_set_attribute (GFile *file,
3840 const char *attribute,
3841 GFileAttributeType type,
3843 GFileQueryInfoFlags flags,
3844 GCancellable *cancellable,
3849 g_return_val_if_fail (G_IS_FILE (file), FALSE);
3850 g_return_val_if_fail (attribute != NULL && *attribute != '\0', FALSE);
3852 if (g_cancellable_set_error_if_cancelled (cancellable, error))
3855 iface = G_FILE_GET_IFACE (file);
3857 if (iface->set_attribute == NULL)
3859 g_set_error_literal (error, G_IO_ERROR,
3860 G_IO_ERROR_NOT_SUPPORTED,
3861 _("Operation not supported"));
3865 return (* iface->set_attribute) (file, attribute, type, value_p, flags, cancellable, error);
3869 * g_file_set_attributes_from_info:
3870 * @file: input #GFile.
3871 * @info: a #GFileInfo.
3872 * @flags: #GFileQueryInfoFlags
3873 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
3874 * @error: a #GError, or %NULL
3876 * Tries to set all attributes in the #GFileInfo on the target values,
3877 * not stopping on the first error.
3879 * If there is any error during this operation then @error will be set to
3880 * the first error. Error on particular fields are flagged by setting
3881 * the "status" field in the attribute value to
3882 * %G_FILE_ATTRIBUTE_STATUS_ERROR_SETTING, which means you can also detect
3885 * If @cancellable is not %NULL, then the operation can be cancelled by
3886 * triggering the cancellable object from another thread. If the operation
3887 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
3889 * Returns: %TRUE if there was any error, %FALSE otherwise.
3892 g_file_set_attributes_from_info (GFile *file,
3894 GFileQueryInfoFlags flags,
3895 GCancellable *cancellable,
3900 g_return_val_if_fail (G_IS_FILE (file), FALSE);
3901 g_return_val_if_fail (G_IS_FILE_INFO (info), FALSE);
3903 if (g_cancellable_set_error_if_cancelled (cancellable, error))
3906 g_file_info_clear_status (info);
3908 iface = G_FILE_GET_IFACE (file);
3910 return (* iface->set_attributes_from_info) (file,
3919 g_file_real_set_attributes_from_info (GFile *file,
3921 GFileQueryInfoFlags flags,
3922 GCancellable *cancellable,
3928 GFileAttributeValue *value;
3932 attributes = g_file_info_list_attributes (info, NULL);
3934 for (i = 0; attributes[i] != NULL; i++)
3936 value = _g_file_info_get_attribute_value (info, attributes[i]);
3938 if (value->status != G_FILE_ATTRIBUTE_STATUS_UNSET)
3941 if (!g_file_set_attribute (file, attributes[i],
3942 value->type, _g_file_attribute_value_peek_as_pointer (value),
3943 flags, cancellable, error))
3945 value->status = G_FILE_ATTRIBUTE_STATUS_ERROR_SETTING;
3947 /* Don't set error multiple times */
3951 value->status = G_FILE_ATTRIBUTE_STATUS_SET;
3954 g_strfreev (attributes);
3960 * g_file_set_attributes_async:
3961 * @file: input #GFile.
3962 * @info: a #GFileInfo.
3963 * @flags: a #GFileQueryInfoFlags.
3964 * @io_priority: the <link linkend="io-priority">I/O priority</link>
3966 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
3967 * @callback: (scope async): a #GAsyncReadyCallback.
3968 * @user_data: (closure): a #gpointer.
3970 * Asynchronously sets the attributes of @file with @info.
3972 * For more details, see g_file_set_attributes_from_info() which is
3973 * the synchronous version of this call.
3975 * When the operation is finished, @callback will be called. You can then call
3976 * g_file_set_attributes_finish() to get the result of the operation.
3979 g_file_set_attributes_async (GFile *file,
3981 GFileQueryInfoFlags flags,
3983 GCancellable *cancellable,
3984 GAsyncReadyCallback callback,
3989 g_return_if_fail (G_IS_FILE (file));
3990 g_return_if_fail (G_IS_FILE_INFO (info));
3992 iface = G_FILE_GET_IFACE (file);
3993 (* iface->set_attributes_async) (file,
4003 * g_file_set_attributes_finish:
4004 * @file: input #GFile.
4005 * @result: a #GAsyncResult.
4006 * @info: (out) (transfer full): a #GFileInfo.
4007 * @error: a #GError, or %NULL
4009 * Finishes setting an attribute started in g_file_set_attributes_async().
4011 * Returns: %TRUE if the attributes were set correctly, %FALSE otherwise.
4014 g_file_set_attributes_finish (GFile *file,
4015 GAsyncResult *result,
4021 g_return_val_if_fail (G_IS_FILE (file), FALSE);
4022 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
4024 /* No standard handling of errors here, as we must set info even
4027 iface = G_FILE_GET_IFACE (file);
4028 return (* iface->set_attributes_finish) (file, result, info, error);
4032 * g_file_set_attribute_string:
4033 * @file: input #GFile.
4034 * @attribute: a string containing the attribute's name.
4035 * @value: a string containing the attribute's value.
4036 * @flags: #GFileQueryInfoFlags.
4037 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
4038 * @error: a #GError, or %NULL
4040 * Sets @attribute of type %G_FILE_ATTRIBUTE_TYPE_STRING to @value.
4041 * If @attribute is of a different type, this operation will fail.
4043 * If @cancellable is not %NULL, then the operation can be cancelled by
4044 * triggering the cancellable object from another thread. If the operation
4045 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
4047 * Returns: %TRUE if the @attribute was successfully set, %FALSE otherwise.
4050 g_file_set_attribute_string (GFile *file,
4051 const char *attribute,
4053 GFileQueryInfoFlags flags,
4054 GCancellable *cancellable,
4057 return g_file_set_attribute (file, attribute,
4058 G_FILE_ATTRIBUTE_TYPE_STRING, (gpointer)value,
4059 flags, cancellable, error);
4063 * g_file_set_attribute_byte_string:
4064 * @file: input #GFile.
4065 * @attribute: a string containing the attribute's name.
4066 * @value: a string containing the attribute's new value.
4067 * @flags: a #GFileQueryInfoFlags.
4068 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
4069 * @error: a #GError, or %NULL
4071 * Sets @attribute of type %G_FILE_ATTRIBUTE_TYPE_BYTE_STRING to @value.
4072 * If @attribute is of a different type, this operation will fail,
4075 * If @cancellable is not %NULL, then the operation can be cancelled by
4076 * triggering the cancellable object from another thread. If the operation
4077 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
4079 * Returns: %TRUE if the @attribute was successfully set to @value
4080 * in the @file, %FALSE otherwise.
4083 g_file_set_attribute_byte_string (GFile *file,
4084 const char *attribute,
4086 GFileQueryInfoFlags flags,
4087 GCancellable *cancellable,
4090 return g_file_set_attribute (file, attribute,
4091 G_FILE_ATTRIBUTE_TYPE_BYTE_STRING, (gpointer)value,
4092 flags, cancellable, error);
4096 * g_file_set_attribute_uint32:
4097 * @file: input #GFile.
4098 * @attribute: a string containing the attribute's name.
4099 * @value: a #guint32 containing the attribute's new value.
4100 * @flags: a #GFileQueryInfoFlags.
4101 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
4102 * @error: a #GError, or %NULL
4104 * Sets @attribute of type %G_FILE_ATTRIBUTE_TYPE_UINT32 to @value.
4105 * If @attribute is of a different type, this operation will fail.
4107 * If @cancellable is not %NULL, then the operation can be cancelled by
4108 * triggering the cancellable object from another thread. If the operation
4109 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
4111 * Returns: %TRUE if the @attribute was successfully set to @value
4112 * in the @file, %FALSE otherwise.
4115 g_file_set_attribute_uint32 (GFile *file,
4116 const char *attribute,
4118 GFileQueryInfoFlags flags,
4119 GCancellable *cancellable,
4122 return g_file_set_attribute (file, attribute,
4123 G_FILE_ATTRIBUTE_TYPE_UINT32, &value,
4124 flags, cancellable, error);
4128 * g_file_set_attribute_int32:
4129 * @file: input #GFile.
4130 * @attribute: a string containing the attribute's name.
4131 * @value: a #gint32 containing the attribute's new value.
4132 * @flags: a #GFileQueryInfoFlags.
4133 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
4134 * @error: a #GError, or %NULL
4136 * Sets @attribute of type %G_FILE_ATTRIBUTE_TYPE_INT32 to @value.
4137 * If @attribute is of a different type, this operation will fail.
4139 * If @cancellable is not %NULL, then the operation can be cancelled by
4140 * triggering the cancellable object from another thread. If the operation
4141 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
4143 * Returns: %TRUE if the @attribute was successfully set to @value
4144 * in the @file, %FALSE otherwise.
4147 g_file_set_attribute_int32 (GFile *file,
4148 const char *attribute,
4150 GFileQueryInfoFlags flags,
4151 GCancellable *cancellable,
4154 return g_file_set_attribute (file, attribute,
4155 G_FILE_ATTRIBUTE_TYPE_INT32, &value,
4156 flags, cancellable, error);
4160 * g_file_set_attribute_uint64:
4161 * @file: input #GFile.
4162 * @attribute: a string containing the attribute's name.
4163 * @value: a #guint64 containing the attribute's new value.
4164 * @flags: a #GFileQueryInfoFlags.
4165 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
4166 * @error: a #GError, or %NULL
4168 * Sets @attribute of type %G_FILE_ATTRIBUTE_TYPE_UINT64 to @value.
4169 * If @attribute is of a different type, this operation will fail.
4171 * If @cancellable is not %NULL, then the operation can be cancelled by
4172 * triggering the cancellable object from another thread. If the operation
4173 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
4175 * Returns: %TRUE if the @attribute was successfully set to @value
4176 * in the @file, %FALSE otherwise.
4179 g_file_set_attribute_uint64 (GFile *file,
4180 const char *attribute,
4182 GFileQueryInfoFlags flags,
4183 GCancellable *cancellable,
4186 return g_file_set_attribute (file, attribute,
4187 G_FILE_ATTRIBUTE_TYPE_UINT64, &value,
4188 flags, cancellable, error);
4192 * g_file_set_attribute_int64:
4193 * @file: input #GFile.
4194 * @attribute: a string containing the attribute's name.
4195 * @value: a #guint64 containing the attribute's new value.
4196 * @flags: a #GFileQueryInfoFlags.
4197 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
4198 * @error: a #GError, or %NULL
4200 * Sets @attribute of type %G_FILE_ATTRIBUTE_TYPE_INT64 to @value.
4201 * If @attribute is of a different type, this operation will fail.
4203 * If @cancellable is not %NULL, then the operation can be cancelled by
4204 * triggering the cancellable object from another thread. If the operation
4205 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
4207 * Returns: %TRUE if the @attribute was successfully set, %FALSE otherwise.
4210 g_file_set_attribute_int64 (GFile *file,
4211 const char *attribute,
4213 GFileQueryInfoFlags flags,
4214 GCancellable *cancellable,
4217 return g_file_set_attribute (file, attribute,
4218 G_FILE_ATTRIBUTE_TYPE_INT64, &value,
4219 flags, cancellable, error);
4223 * g_file_mount_mountable:
4224 * @file: input #GFile.
4225 * @flags: flags affecting the operation
4226 * @mount_operation: a #GMountOperation, or %NULL to avoid user interaction.
4227 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
4228 * @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied, or %NULL.
4229 * @user_data: (closure): the data to pass to callback function
4231 * Mounts a file of type G_FILE_TYPE_MOUNTABLE.
4232 * Using @mount_operation, you can request callbacks when, for instance,
4233 * passwords are needed during authentication.
4235 * If @cancellable is not %NULL, then the operation can be cancelled by
4236 * triggering the cancellable object from another thread. If the operation
4237 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
4239 * When the operation is finished, @callback will be called. You can then call
4240 * g_file_mount_mountable_finish() to get the result of the operation.
4243 g_file_mount_mountable (GFile *file,
4244 GMountMountFlags flags,
4245 GMountOperation *mount_operation,
4246 GCancellable *cancellable,
4247 GAsyncReadyCallback callback,
4252 g_return_if_fail (G_IS_FILE (file));
4254 iface = G_FILE_GET_IFACE (file);
4256 if (iface->mount_mountable == NULL)
4258 g_simple_async_report_error_in_idle (G_OBJECT (file),
4262 G_IO_ERROR_NOT_SUPPORTED,
4263 _("Operation not supported"));
4267 (* iface->mount_mountable) (file,
4276 * g_file_mount_mountable_finish:
4277 * @file: input #GFile.
4278 * @result: a #GAsyncResult.
4279 * @error: a #GError, or %NULL
4281 * Finishes a mount operation. See g_file_mount_mountable() for details.
4283 * Finish an asynchronous mount operation that was started
4284 * with g_file_mount_mountable().
4286 * Returns: (transfer full): a #GFile or %NULL on error.
4287 * Free the returned object with g_object_unref().
4290 g_file_mount_mountable_finish (GFile *file,
4291 GAsyncResult *result,
4296 g_return_val_if_fail (G_IS_FILE (file), NULL);
4297 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), NULL);
4299 if (G_IS_SIMPLE_ASYNC_RESULT (result))
4301 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
4302 if (g_simple_async_result_propagate_error (simple, error))
4306 iface = G_FILE_GET_IFACE (file);
4307 return (* iface->mount_mountable_finish) (file, result, error);
4311 * g_file_unmount_mountable:
4312 * @file: input #GFile.
4313 * @flags: flags affecting the operation
4314 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
4315 * @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied, or %NULL.
4316 * @user_data: (closure): the data to pass to callback function
4318 * Unmounts a file of type G_FILE_TYPE_MOUNTABLE.
4320 * If @cancellable is not %NULL, then the operation can be cancelled by
4321 * triggering the cancellable object from another thread. If the operation
4322 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
4324 * When the operation is finished, @callback will be called. You can then call
4325 * g_file_unmount_mountable_finish() to get the result of the operation.
4327 * Deprecated: 2.22: Use g_file_unmount_mountable_with_operation() instead.
4330 g_file_unmount_mountable (GFile *file,
4331 GMountUnmountFlags flags,
4332 GCancellable *cancellable,
4333 GAsyncReadyCallback callback,
4338 g_return_if_fail (G_IS_FILE (file));
4340 iface = G_FILE_GET_IFACE (file);
4342 if (iface->unmount_mountable == NULL)
4344 g_simple_async_report_error_in_idle (G_OBJECT (file),
4348 G_IO_ERROR_NOT_SUPPORTED,
4349 _("Operation not supported"));
4353 (* iface->unmount_mountable) (file,
4361 * g_file_unmount_mountable_finish:
4362 * @file: input #GFile.
4363 * @result: a #GAsyncResult.
4364 * @error: a #GError, or %NULL
4366 * Finishes an unmount operation, see g_file_unmount_mountable() for details.
4368 * Finish an asynchronous unmount operation that was started
4369 * with g_file_unmount_mountable().
4371 * Returns: %TRUE if the operation finished successfully. %FALSE
4374 * Deprecated: 2.22: Use g_file_unmount_mountable_with_operation_finish() instead.
4377 g_file_unmount_mountable_finish (GFile *file,
4378 GAsyncResult *result,
4383 g_return_val_if_fail (G_IS_FILE (file), FALSE);
4384 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
4386 if (G_IS_SIMPLE_ASYNC_RESULT (result))
4388 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
4389 if (g_simple_async_result_propagate_error (simple, error))
4393 iface = G_FILE_GET_IFACE (file);
4394 return (* iface->unmount_mountable_finish) (file, result, error);
4398 * g_file_unmount_mountable_with_operation:
4399 * @file: input #GFile.
4400 * @flags: flags affecting the operation
4401 * @mount_operation: a #GMountOperation, or %NULL to avoid user interaction.
4402 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
4403 * @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied, or %NULL.
4404 * @user_data: (closure): the data to pass to callback function
4406 * Unmounts a file of type G_FILE_TYPE_MOUNTABLE.
4408 * If @cancellable is not %NULL, then the operation can be cancelled by
4409 * triggering the cancellable object from another thread. If the operation
4410 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
4412 * When the operation is finished, @callback will be called. You can then call
4413 * g_file_unmount_mountable_finish() to get the result of the operation.
4418 g_file_unmount_mountable_with_operation (GFile *file,
4419 GMountUnmountFlags flags,
4420 GMountOperation *mount_operation,
4421 GCancellable *cancellable,
4422 GAsyncReadyCallback callback,
4427 g_return_if_fail (G_IS_FILE (file));
4429 iface = G_FILE_GET_IFACE (file);
4431 if (iface->unmount_mountable == NULL && iface->unmount_mountable_with_operation == NULL)
4433 g_simple_async_report_error_in_idle (G_OBJECT (file),
4437 G_IO_ERROR_NOT_SUPPORTED,
4438 _("Operation not supported"));
4442 if (iface->unmount_mountable_with_operation != NULL)
4443 (* iface->unmount_mountable_with_operation) (file,
4450 (* iface->unmount_mountable) (file,
4458 * g_file_unmount_mountable_with_operation_finish:
4459 * @file: input #GFile.
4460 * @result: a #GAsyncResult.
4461 * @error: a #GError, or %NULL
4463 * Finishes an unmount operation, see g_file_unmount_mountable_with_operation() for details.
4465 * Finish an asynchronous unmount operation that was started
4466 * with g_file_unmount_mountable_with_operation().
4468 * Returns: %TRUE if the operation finished successfully. %FALSE
4474 g_file_unmount_mountable_with_operation_finish (GFile *file,
4475 GAsyncResult *result,
4480 g_return_val_if_fail (G_IS_FILE (file), FALSE);
4481 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
4483 if (G_IS_SIMPLE_ASYNC_RESULT (result))
4485 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
4486 if (g_simple_async_result_propagate_error (simple, error))
4490 iface = G_FILE_GET_IFACE (file);
4491 if (iface->unmount_mountable_with_operation_finish != NULL)
4492 return (* iface->unmount_mountable_with_operation_finish) (file, result, error);
4494 return (* iface->unmount_mountable_finish) (file, result, error);
4498 * g_file_eject_mountable:
4499 * @file: input #GFile.
4500 * @flags: flags affecting the operation
4501 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
4502 * @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied, or %NULL.
4503 * @user_data: (closure): the data to pass to callback function
4505 * Starts an asynchronous eject on a mountable.
4506 * When this operation has completed, @callback will be called with
4507 * @user_user data, and the operation can be finalized with
4508 * g_file_eject_mountable_finish().
4510 * If @cancellable is not %NULL, then the operation can be cancelled by
4511 * triggering the cancellable object from another thread. If the operation
4512 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
4514 * Deprecated: 2.22: Use g_file_eject_mountable_with_operation() instead.
4517 g_file_eject_mountable (GFile *file,
4518 GMountUnmountFlags flags,
4519 GCancellable *cancellable,
4520 GAsyncReadyCallback callback,
4525 g_return_if_fail (G_IS_FILE (file));
4527 iface = G_FILE_GET_IFACE (file);
4529 if (iface->eject_mountable == NULL)
4531 g_simple_async_report_error_in_idle (G_OBJECT (file),
4535 G_IO_ERROR_NOT_SUPPORTED,
4536 _("Operation not supported"));
4540 (* iface->eject_mountable) (file,
4548 * g_file_eject_mountable_finish:
4549 * @file: input #GFile.
4550 * @result: a #GAsyncResult.
4551 * @error: a #GError, or %NULL
4553 * Finishes an asynchronous eject operation started by
4554 * g_file_eject_mountable().
4556 * Returns: %TRUE if the @file was ejected successfully. %FALSE
4559 * Deprecated: 2.22: Use g_file_eject_mountable_with_operation_finish() instead.
4562 g_file_eject_mountable_finish (GFile *file,
4563 GAsyncResult *result,
4568 g_return_val_if_fail (G_IS_FILE (file), FALSE);
4569 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
4571 if (G_IS_SIMPLE_ASYNC_RESULT (result))
4573 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
4574 if (g_simple_async_result_propagate_error (simple, error))
4578 iface = G_FILE_GET_IFACE (file);
4579 return (* iface->eject_mountable_finish) (file, result, error);
4583 * g_file_eject_mountable_with_operation:
4584 * @file: input #GFile.
4585 * @flags: flags affecting the operation
4586 * @mount_operation: a #GMountOperation, or %NULL to avoid user interaction.
4587 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
4588 * @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied, or %NULL.
4589 * @user_data: (closure): the data to pass to callback function
4591 * Starts an asynchronous eject on a mountable.
4592 * When this operation has completed, @callback will be called with
4593 * @user_user data, and the operation can be finalized with
4594 * g_file_eject_mountable_with_operation_finish().
4596 * If @cancellable is not %NULL, then the operation can be cancelled by
4597 * triggering the cancellable object from another thread. If the operation
4598 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
4603 g_file_eject_mountable_with_operation (GFile *file,
4604 GMountUnmountFlags flags,
4605 GMountOperation *mount_operation,
4606 GCancellable *cancellable,
4607 GAsyncReadyCallback callback,
4612 g_return_if_fail (G_IS_FILE (file));
4614 iface = G_FILE_GET_IFACE (file);
4616 if (iface->eject_mountable == NULL && iface->eject_mountable_with_operation == NULL)
4618 g_simple_async_report_error_in_idle (G_OBJECT (file),
4622 G_IO_ERROR_NOT_SUPPORTED,
4623 _("Operation not supported"));
4627 if (iface->eject_mountable_with_operation != NULL)
4628 (* iface->eject_mountable_with_operation) (file,
4635 (* iface->eject_mountable) (file,
4643 * g_file_eject_mountable_with_operation_finish:
4644 * @file: input #GFile.
4645 * @result: a #GAsyncResult.
4646 * @error: a #GError, or %NULL
4648 * Finishes an asynchronous eject operation started by
4649 * g_file_eject_mountable_with_operation().
4651 * Returns: %TRUE if the @file was ejected successfully. %FALSE
4657 g_file_eject_mountable_with_operation_finish (GFile *file,
4658 GAsyncResult *result,
4663 g_return_val_if_fail (G_IS_FILE (file), FALSE);
4664 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
4666 if (G_IS_SIMPLE_ASYNC_RESULT (result))
4668 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
4669 if (g_simple_async_result_propagate_error (simple, error))
4673 iface = G_FILE_GET_IFACE (file);
4674 if (iface->eject_mountable_with_operation_finish != NULL)
4675 return (* iface->eject_mountable_with_operation_finish) (file, result, error);
4677 return (* iface->eject_mountable_finish) (file, result, error);
4681 * g_file_monitor_directory:
4682 * @file: input #GFile.
4683 * @flags: a set of #GFileMonitorFlags.
4684 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
4685 * @error: a #GError, or %NULL.
4687 * Obtains a directory monitor for the given file.
4688 * This may fail if directory monitoring is not supported.
4690 * If @cancellable is not %NULL, then the operation can be cancelled by
4691 * triggering the cancellable object from another thread. If the operation
4692 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
4694 * Virtual: monitor_dir
4695 * Returns: (transfer full): a #GFileMonitor for the given @file, or %NULL on error.
4696 * Free the returned object with g_object_unref().
4699 g_file_monitor_directory (GFile *file,
4700 GFileMonitorFlags flags,
4701 GCancellable *cancellable,
4706 g_return_val_if_fail (G_IS_FILE (file), NULL);
4708 if (g_cancellable_set_error_if_cancelled (cancellable, error))
4711 iface = G_FILE_GET_IFACE (file);
4713 if (iface->monitor_dir == NULL)
4715 g_set_error_literal (error, G_IO_ERROR,
4716 G_IO_ERROR_NOT_SUPPORTED,
4717 _("Operation not supported"));
4721 return (* iface->monitor_dir) (file, flags, cancellable, error);
4725 * g_file_monitor_file:
4726 * @file: input #GFile.
4727 * @flags: a set of #GFileMonitorFlags.
4728 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
4729 * @error: a #GError, or %NULL.
4731 * Obtains a file monitor for the given file. If no file notification
4732 * mechanism exists, then regular polling of the file is used.
4734 * If @cancellable is not %NULL, then the operation can be cancelled by
4735 * triggering the cancellable object from another thread. If the operation
4736 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
4738 * Returns: (transfer full): a #GFileMonitor for the given @file, or %NULL on error.
4739 * Free the returned object with g_object_unref().
4742 g_file_monitor_file (GFile *file,
4743 GFileMonitorFlags flags,
4744 GCancellable *cancellable,
4748 GFileMonitor *monitor;
4750 g_return_val_if_fail (G_IS_FILE (file), NULL);
4752 if (g_cancellable_set_error_if_cancelled (cancellable, error))
4755 iface = G_FILE_GET_IFACE (file);
4759 if (iface->monitor_file)
4760 monitor = (* iface->monitor_file) (file, flags, cancellable, NULL);
4762 /* Fallback to polling */
4763 if (monitor == NULL)
4764 monitor = _g_poll_file_monitor_new (file);
4771 * @file: input #GFile
4772 * @flags: a set of #GFileMonitorFlags
4773 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore
4774 * @error: a #GError, or %NULL
4776 * Obtains a file or directory monitor for the given file, depending
4777 * on the type of the file.
4779 * If @cancellable is not %NULL, then the operation can be cancelled by
4780 * triggering the cancellable object from another thread. If the operation
4781 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
4783 * Returns: (transfer full): a #GFileMonitor for the given @file, or %NULL on error.
4784 * Free the returned object with g_object_unref().
4789 g_file_monitor (GFile *file,
4790 GFileMonitorFlags flags,
4791 GCancellable *cancellable,
4794 if (g_file_query_file_type (file, 0, cancellable) == G_FILE_TYPE_DIRECTORY)
4795 return g_file_monitor_directory (file, flags, cancellable, error);
4797 return g_file_monitor_file (file, flags, cancellable, error);
4800 /********************************************
4801 * Default implementation of async ops *
4802 ********************************************/
4806 GFileQueryInfoFlags flags;
4808 } QueryInfoAsyncData;
4811 query_info_data_free (QueryInfoAsyncData *data)
4814 g_object_unref (data->info);
4815 g_free (data->attributes);
4820 query_info_async_thread (GSimpleAsyncResult *res,
4822 GCancellable *cancellable)
4824 GError *error = NULL;
4825 QueryInfoAsyncData *data;
4828 data = g_simple_async_result_get_op_res_gpointer (res);
4830 info = g_file_query_info (G_FILE (object), data->attributes, data->flags, cancellable, &error);
4833 g_simple_async_result_take_error (res, error);
4839 g_file_real_query_info_async (GFile *file,
4840 const char *attributes,
4841 GFileQueryInfoFlags flags,
4843 GCancellable *cancellable,
4844 GAsyncReadyCallback callback,
4847 GSimpleAsyncResult *res;
4848 QueryInfoAsyncData *data;
4850 data = g_new0 (QueryInfoAsyncData, 1);
4851 data->attributes = g_strdup (attributes);
4852 data->flags = flags;
4854 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_query_info_async);
4855 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)query_info_data_free);
4857 g_simple_async_result_run_in_thread (res, query_info_async_thread, io_priority, cancellable);
4858 g_object_unref (res);
4862 g_file_real_query_info_finish (GFile *file,
4866 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
4867 QueryInfoAsyncData *data;
4869 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_query_info_async);
4871 data = g_simple_async_result_get_op_res_gpointer (simple);
4873 return g_object_ref (data->info);
4881 } QueryFilesystemInfoAsyncData;
4884 query_filesystem_info_data_free (QueryFilesystemInfoAsyncData *data)
4887 g_object_unref (data->info);
4888 g_free (data->attributes);
4893 query_filesystem_info_async_thread (GSimpleAsyncResult *res,
4895 GCancellable *cancellable)
4897 GError *error = NULL;
4898 QueryFilesystemInfoAsyncData *data;
4901 data = g_simple_async_result_get_op_res_gpointer (res);
4903 info = g_file_query_filesystem_info (G_FILE (object), data->attributes, cancellable, &error);
4906 g_simple_async_result_take_error (res, error);
4912 g_file_real_query_filesystem_info_async (GFile *file,
4913 const char *attributes,
4915 GCancellable *cancellable,
4916 GAsyncReadyCallback callback,
4919 GSimpleAsyncResult *res;
4920 QueryFilesystemInfoAsyncData *data;
4922 data = g_new0 (QueryFilesystemInfoAsyncData, 1);
4923 data->attributes = g_strdup (attributes);
4925 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_query_filesystem_info_async);
4926 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)query_filesystem_info_data_free);
4928 g_simple_async_result_run_in_thread (res, query_filesystem_info_async_thread, io_priority, cancellable);
4929 g_object_unref (res);
4933 g_file_real_query_filesystem_info_finish (GFile *file,
4937 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
4938 QueryFilesystemInfoAsyncData *data;
4940 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_query_filesystem_info_async);
4942 data = g_simple_async_result_get_op_res_gpointer (simple);
4944 return g_object_ref (data->info);
4951 GFileQueryInfoFlags flags;
4952 GFileEnumerator *enumerator;
4953 } EnumerateChildrenAsyncData;
4956 enumerate_children_data_free (EnumerateChildrenAsyncData *data)
4958 if (data->enumerator)
4959 g_object_unref (data->enumerator);
4960 g_free (data->attributes);
4965 enumerate_children_async_thread (GSimpleAsyncResult *res,
4967 GCancellable *cancellable)
4969 GError *error = NULL;
4970 EnumerateChildrenAsyncData *data;
4971 GFileEnumerator *enumerator;
4973 data = g_simple_async_result_get_op_res_gpointer (res);
4975 enumerator = g_file_enumerate_children (G_FILE (object), data->attributes, data->flags, cancellable, &error);
4977 if (enumerator == NULL)
4978 g_simple_async_result_take_error (res, error);
4980 data->enumerator = enumerator;
4984 g_file_real_enumerate_children_async (GFile *file,
4985 const char *attributes,
4986 GFileQueryInfoFlags flags,
4988 GCancellable *cancellable,
4989 GAsyncReadyCallback callback,
4992 GSimpleAsyncResult *res;
4993 EnumerateChildrenAsyncData *data;
4995 data = g_new0 (EnumerateChildrenAsyncData, 1);
4996 data->attributes = g_strdup (attributes);
4997 data->flags = flags;
4999 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_enumerate_children_async);
5000 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)enumerate_children_data_free);
5002 g_simple_async_result_run_in_thread (res, enumerate_children_async_thread, io_priority, cancellable);
5003 g_object_unref (res);
5006 static GFileEnumerator *
5007 g_file_real_enumerate_children_finish (GFile *file,
5011 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
5012 EnumerateChildrenAsyncData *data;
5014 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_enumerate_children_async);
5016 data = g_simple_async_result_get_op_res_gpointer (simple);
5017 if (data->enumerator)
5018 return g_object_ref (data->enumerator);
5024 open_read_async_thread (GSimpleAsyncResult *res,
5026 GCancellable *cancellable)
5029 GFileInputStream *stream;
5030 GError *error = NULL;
5032 iface = G_FILE_GET_IFACE (object);
5034 if (iface->read_fn == NULL)
5036 g_set_error_literal (&error, G_IO_ERROR,
5037 G_IO_ERROR_NOT_SUPPORTED,
5038 _("Operation not supported"));
5040 g_simple_async_result_take_error (res, error);
5045 stream = iface->read_fn (G_FILE (object), cancellable, &error);
5048 g_simple_async_result_take_error (res, error);
5050 g_simple_async_result_set_op_res_gpointer (res, stream, g_object_unref);
5054 g_file_real_read_async (GFile *file,
5056 GCancellable *cancellable,
5057 GAsyncReadyCallback callback,
5060 GSimpleAsyncResult *res;
5062 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_read_async);
5064 g_simple_async_result_run_in_thread (res, open_read_async_thread, io_priority, cancellable);
5065 g_object_unref (res);
5068 static GFileInputStream *
5069 g_file_real_read_finish (GFile *file,
5073 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
5076 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_read_async);
5078 op = g_simple_async_result_get_op_res_gpointer (simple);
5080 return g_object_ref (op);
5086 append_to_async_thread (GSimpleAsyncResult *res,
5088 GCancellable *cancellable)
5091 GFileCreateFlags *data;
5092 GFileOutputStream *stream;
5093 GError *error = NULL;
5095 iface = G_FILE_GET_IFACE (object);
5097 data = g_simple_async_result_get_op_res_gpointer (res);
5099 stream = iface->append_to (G_FILE (object), *data, cancellable, &error);
5102 g_simple_async_result_take_error (res, error);
5104 g_simple_async_result_set_op_res_gpointer (res, stream, g_object_unref);
5108 g_file_real_append_to_async (GFile *file,
5109 GFileCreateFlags flags,
5111 GCancellable *cancellable,
5112 GAsyncReadyCallback callback,
5115 GFileCreateFlags *data;
5116 GSimpleAsyncResult *res;
5118 data = g_new0 (GFileCreateFlags, 1);
5121 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_append_to_async);
5122 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)g_free);
5124 g_simple_async_result_run_in_thread (res, append_to_async_thread, io_priority, cancellable);
5125 g_object_unref (res);
5128 static GFileOutputStream *
5129 g_file_real_append_to_finish (GFile *file,
5133 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
5136 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_append_to_async);
5138 op = g_simple_async_result_get_op_res_gpointer (simple);
5140 return g_object_ref (op);
5146 create_async_thread (GSimpleAsyncResult *res,
5148 GCancellable *cancellable)
5151 GFileCreateFlags *data;
5152 GFileOutputStream *stream;
5153 GError *error = NULL;
5155 iface = G_FILE_GET_IFACE (object);
5157 data = g_simple_async_result_get_op_res_gpointer (res);
5159 stream = iface->create (G_FILE (object), *data, cancellable, &error);
5162 g_simple_async_result_take_error (res, error);
5164 g_simple_async_result_set_op_res_gpointer (res, stream, g_object_unref);
5168 g_file_real_create_async (GFile *file,
5169 GFileCreateFlags flags,
5171 GCancellable *cancellable,
5172 GAsyncReadyCallback callback,
5175 GFileCreateFlags *data;
5176 GSimpleAsyncResult *res;
5178 data = g_new0 (GFileCreateFlags, 1);
5181 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_create_async);
5182 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)g_free);
5184 g_simple_async_result_run_in_thread (res, create_async_thread, io_priority, cancellable);
5185 g_object_unref (res);
5188 static GFileOutputStream *
5189 g_file_real_create_finish (GFile *file,
5193 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
5196 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_create_async);
5198 op = g_simple_async_result_get_op_res_gpointer (simple);
5200 return g_object_ref (op);
5206 GFileOutputStream *stream;
5208 gboolean make_backup;
5209 GFileCreateFlags flags;
5213 replace_async_data_free (ReplaceAsyncData *data)
5216 g_object_unref (data->stream);
5217 g_free (data->etag);
5222 replace_async_thread (GSimpleAsyncResult *res,
5224 GCancellable *cancellable)
5227 GFileOutputStream *stream;
5228 GError *error = NULL;
5229 ReplaceAsyncData *data;
5231 iface = G_FILE_GET_IFACE (object);
5233 data = g_simple_async_result_get_op_res_gpointer (res);
5235 stream = iface->replace (G_FILE (object),
5243 g_simple_async_result_take_error (res, error);
5245 data->stream = stream;
5249 g_file_real_replace_async (GFile *file,
5251 gboolean make_backup,
5252 GFileCreateFlags flags,
5254 GCancellable *cancellable,
5255 GAsyncReadyCallback callback,
5258 GSimpleAsyncResult *res;
5259 ReplaceAsyncData *data;
5261 data = g_new0 (ReplaceAsyncData, 1);
5262 data->etag = g_strdup (etag);
5263 data->make_backup = make_backup;
5264 data->flags = flags;
5266 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_replace_async);
5267 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)replace_async_data_free);
5269 g_simple_async_result_run_in_thread (res, replace_async_thread, io_priority, cancellable);
5270 g_object_unref (res);
5273 static GFileOutputStream *
5274 g_file_real_replace_finish (GFile *file,
5278 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
5279 ReplaceAsyncData *data;
5281 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_replace_async);
5283 data = g_simple_async_result_get_op_res_gpointer (simple);
5285 return g_object_ref (data->stream);
5291 open_readwrite_async_thread (GSimpleAsyncResult *res,
5293 GCancellable *cancellable)
5296 GFileIOStream *stream;
5297 GError *error = NULL;
5299 iface = G_FILE_GET_IFACE (object);
5301 if (iface->open_readwrite == NULL)
5303 g_set_error_literal (&error, G_IO_ERROR,
5304 G_IO_ERROR_NOT_SUPPORTED,
5305 _("Operation not supported"));
5307 g_simple_async_result_take_error (res, error);
5312 stream = iface->open_readwrite (G_FILE (object), cancellable, &error);
5315 g_simple_async_result_take_error (res, error);
5317 g_simple_async_result_set_op_res_gpointer (res, stream, g_object_unref);
5321 g_file_real_open_readwrite_async (GFile *file,
5323 GCancellable *cancellable,
5324 GAsyncReadyCallback callback,
5327 GSimpleAsyncResult *res;
5329 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_open_readwrite_async);
5331 g_simple_async_result_run_in_thread (res, open_readwrite_async_thread, io_priority, cancellable);
5332 g_object_unref (res);
5335 static GFileIOStream *
5336 g_file_real_open_readwrite_finish (GFile *file,
5340 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
5343 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_open_readwrite_async);
5345 op = g_simple_async_result_get_op_res_gpointer (simple);
5347 return g_object_ref (op);
5353 create_readwrite_async_thread (GSimpleAsyncResult *res,
5355 GCancellable *cancellable)
5358 GFileCreateFlags *data;
5359 GFileIOStream *stream;
5360 GError *error = NULL;
5362 iface = G_FILE_GET_IFACE (object);
5364 data = g_simple_async_result_get_op_res_gpointer (res);
5366 if (iface->create_readwrite == NULL)
5368 g_set_error_literal (&error, G_IO_ERROR,
5369 G_IO_ERROR_NOT_SUPPORTED,
5370 _("Operation not supported"));
5372 g_simple_async_result_take_error (res, error);
5377 stream = iface->create_readwrite (G_FILE (object), *data, cancellable, &error);
5380 g_simple_async_result_take_error (res, error);
5382 g_simple_async_result_set_op_res_gpointer (res, stream, g_object_unref);
5386 g_file_real_create_readwrite_async (GFile *file,
5387 GFileCreateFlags flags,
5389 GCancellable *cancellable,
5390 GAsyncReadyCallback callback,
5393 GFileCreateFlags *data;
5394 GSimpleAsyncResult *res;
5396 data = g_new0 (GFileCreateFlags, 1);
5399 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_create_readwrite_async);
5400 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)g_free);
5402 g_simple_async_result_run_in_thread (res, create_readwrite_async_thread, io_priority, cancellable);
5403 g_object_unref (res);
5406 static GFileIOStream *
5407 g_file_real_create_readwrite_finish (GFile *file,
5411 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
5414 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_create_readwrite_async);
5416 op = g_simple_async_result_get_op_res_gpointer (simple);
5418 return g_object_ref (op);
5424 GFileIOStream *stream;
5426 gboolean make_backup;
5427 GFileCreateFlags flags;
5428 } ReplaceRWAsyncData;
5431 replace_rw_async_data_free (ReplaceRWAsyncData *data)
5434 g_object_unref (data->stream);
5435 g_free (data->etag);
5440 replace_readwrite_async_thread (GSimpleAsyncResult *res,
5442 GCancellable *cancellable)
5445 GFileIOStream *stream;
5446 GError *error = NULL;
5447 ReplaceRWAsyncData *data;
5449 iface = G_FILE_GET_IFACE (object);
5451 data = g_simple_async_result_get_op_res_gpointer (res);
5453 stream = iface->replace_readwrite (G_FILE (object),
5461 g_simple_async_result_take_error (res, error);
5463 data->stream = stream;
5467 g_file_real_replace_readwrite_async (GFile *file,
5469 gboolean make_backup,
5470 GFileCreateFlags flags,
5472 GCancellable *cancellable,
5473 GAsyncReadyCallback callback,
5476 GSimpleAsyncResult *res;
5477 ReplaceRWAsyncData *data;
5479 data = g_new0 (ReplaceRWAsyncData, 1);
5480 data->etag = g_strdup (etag);
5481 data->make_backup = make_backup;
5482 data->flags = flags;
5484 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_replace_readwrite_async);
5485 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)replace_rw_async_data_free);
5487 g_simple_async_result_run_in_thread (res, replace_readwrite_async_thread, io_priority, cancellable);
5488 g_object_unref (res);
5491 static GFileIOStream *
5492 g_file_real_replace_readwrite_finish (GFile *file,
5496 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
5497 ReplaceRWAsyncData *data;
5499 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_replace_readwrite_async);
5501 data = g_simple_async_result_get_op_res_gpointer (simple);
5503 return g_object_ref (data->stream);
5511 } SetDisplayNameAsyncData;
5514 set_display_name_data_free (SetDisplayNameAsyncData *data)
5516 g_free (data->name);
5518 g_object_unref (data->file);
5523 set_display_name_async_thread (GSimpleAsyncResult *res,
5525 GCancellable *cancellable)
5527 GError *error = NULL;
5528 SetDisplayNameAsyncData *data;
5531 data = g_simple_async_result_get_op_res_gpointer (res);
5533 file = g_file_set_display_name (G_FILE (object), data->name, cancellable, &error);
5536 g_simple_async_result_take_error (res, error);
5542 g_file_real_set_display_name_async (GFile *file,
5543 const char *display_name,
5545 GCancellable *cancellable,
5546 GAsyncReadyCallback callback,
5549 GSimpleAsyncResult *res;
5550 SetDisplayNameAsyncData *data;
5552 data = g_new0 (SetDisplayNameAsyncData, 1);
5553 data->name = g_strdup (display_name);
5555 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_set_display_name_async);
5556 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)set_display_name_data_free);
5558 g_simple_async_result_run_in_thread (res, set_display_name_async_thread, io_priority, cancellable);
5559 g_object_unref (res);
5563 g_file_real_set_display_name_finish (GFile *file,
5567 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
5568 SetDisplayNameAsyncData *data;
5570 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_set_display_name_async);
5572 data = g_simple_async_result_get_op_res_gpointer (simple);
5574 return g_object_ref (data->file);
5580 GFileQueryInfoFlags flags;
5587 set_info_data_free (SetInfoAsyncData *data)
5590 g_object_unref (data->info);
5592 g_error_free (data->error);
5597 set_info_async_thread (GSimpleAsyncResult *res,
5599 GCancellable *cancellable)
5601 SetInfoAsyncData *data;
5603 data = g_simple_async_result_get_op_res_gpointer (res);
5606 data->res = g_file_set_attributes_from_info (G_FILE (object),
5614 g_file_real_set_attributes_async (GFile *file,
5616 GFileQueryInfoFlags flags,
5618 GCancellable *cancellable,
5619 GAsyncReadyCallback callback,
5622 GSimpleAsyncResult *res;
5623 SetInfoAsyncData *data;
5625 data = g_new0 (SetInfoAsyncData, 1);
5626 data->info = g_file_info_dup (info);
5627 data->flags = flags;
5629 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_set_attributes_async);
5630 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)set_info_data_free);
5632 g_simple_async_result_run_in_thread (res, set_info_async_thread, io_priority, cancellable);
5633 g_object_unref (res);
5637 g_file_real_set_attributes_finish (GFile *file,
5642 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
5643 SetInfoAsyncData *data;
5645 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_set_attributes_async);
5647 data = g_simple_async_result_get_op_res_gpointer (simple);
5650 *info = g_object_ref (data->info);
5652 if (error != NULL && data->error)
5653 *error = g_error_copy (data->error);
5659 find_enclosing_mount_async_thread (GSimpleAsyncResult *res,
5661 GCancellable *cancellable)
5663 GError *error = NULL;
5666 mount = g_file_find_enclosing_mount (G_FILE (object), cancellable, &error);
5669 g_simple_async_result_take_error (res, error);
5671 g_simple_async_result_set_op_res_gpointer (res, mount, (GDestroyNotify)g_object_unref);
5675 g_file_real_find_enclosing_mount_async (GFile *file,
5677 GCancellable *cancellable,
5678 GAsyncReadyCallback callback,
5681 GSimpleAsyncResult *res;
5683 res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_find_enclosing_mount_async);
5685 g_simple_async_result_run_in_thread (res, find_enclosing_mount_async_thread, io_priority, cancellable);
5686 g_object_unref (res);
5690 g_file_real_find_enclosing_mount_finish (GFile *file,
5694 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
5697 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_real_find_enclosing_mount_async);
5699 mount = g_simple_async_result_get_op_res_gpointer (simple);
5700 return g_object_ref (mount);
5707 GFileCopyFlags flags;
5708 GFileProgressCallback progress_cb;
5709 gpointer progress_cb_data;
5710 GIOSchedulerJob *job;
5714 copy_async_data_free (CopyAsyncData *data)
5716 g_object_unref (data->source);
5717 g_object_unref (data->destination);
5722 CopyAsyncData *data;
5723 goffset current_num_bytes;
5724 goffset total_num_bytes;
5728 copy_async_progress_in_main (gpointer user_data)
5730 ProgressData *progress = user_data;
5731 CopyAsyncData *data = progress->data;
5733 data->progress_cb (progress->current_num_bytes,
5734 progress->total_num_bytes,
5735 data->progress_cb_data);
5741 mainloop_barrier (gpointer user_data)
5743 /* Does nothing, but ensures all queued idles before
5750 copy_async_progress_callback (goffset current_num_bytes,
5751 goffset total_num_bytes,
5754 CopyAsyncData *data = user_data;
5755 ProgressData *progress;
5757 progress = g_new (ProgressData, 1);
5758 progress->data = data;
5759 progress->current_num_bytes = current_num_bytes;
5760 progress->total_num_bytes = total_num_bytes;
5762 g_io_scheduler_job_send_to_mainloop_async (data->job,
5763 copy_async_progress_in_main,
5769 copy_async_thread (GIOSchedulerJob *job,
5770 GCancellable *cancellable,
5773 GSimpleAsyncResult *res;
5774 CopyAsyncData *data;
5779 data = g_simple_async_result_get_op_res_gpointer (res);
5783 result = g_file_copy (data->source,
5787 (data->progress_cb != NULL) ? copy_async_progress_callback : NULL,
5791 /* Ensure all progress callbacks are done running in main thread */
5792 if (data->progress_cb != NULL)
5793 g_io_scheduler_job_send_to_mainloop (job,
5798 g_simple_async_result_take_error (res, error);
5800 g_simple_async_result_complete_in_idle (res);
5806 g_file_real_copy_async (GFile *source,
5808 GFileCopyFlags flags,
5810 GCancellable *cancellable,
5811 GFileProgressCallback progress_callback,
5812 gpointer progress_callback_data,
5813 GAsyncReadyCallback callback,
5816 GSimpleAsyncResult *res;
5817 CopyAsyncData *data;
5819 data = g_new0 (CopyAsyncData, 1);
5820 data->source = g_object_ref (source);
5821 data->destination = g_object_ref (destination);
5822 data->flags = flags;
5823 data->progress_cb = progress_callback;
5824 data->progress_cb_data = progress_callback_data;
5826 res = g_simple_async_result_new (G_OBJECT (source), callback, user_data, g_file_real_copy_async);
5827 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)copy_async_data_free);
5829 g_io_scheduler_push_job (copy_async_thread, res, g_object_unref, io_priority, cancellable);
5833 g_file_real_copy_finish (GFile *file,
5837 /* Error handled in g_file_copy_finish() */
5842 /********************************************
5843 * Default VFS operations *
5844 ********************************************/
5847 * g_file_new_for_path:
5848 * @path: a string containing a relative or absolute path. The string
5849 * must be encoded in the glib filename encoding.
5851 * Constructs a #GFile for a given path. This operation never
5852 * fails, but the returned object might not support any I/O
5853 * operation if @path is malformed.
5855 * Returns: (transfer full): a new #GFile for the given @path.
5858 g_file_new_for_path (const char *path)
5860 g_return_val_if_fail (path != NULL, NULL);
5862 return g_vfs_get_file_for_path (g_vfs_get_default (), path);
5866 * g_file_new_for_uri:
5867 * @uri: a UTF8 string containing a URI.
5869 * Constructs a #GFile for a given URI. This operation never
5870 * fails, but the returned object might not support any I/O
5871 * operation if @uri is malformed or if the uri type is
5874 * Returns: (transfer full): a #GFile for the given @uri.
5877 g_file_new_for_uri (const char *uri)
5879 g_return_val_if_fail (uri != NULL, NULL);
5881 return g_vfs_get_file_for_uri (g_vfs_get_default (), uri);
5885 * g_file_parse_name:
5886 * @parse_name: a file name or path to be parsed.
5888 * Constructs a #GFile with the given @parse_name (i.e. something given by g_file_get_parse_name()).
5889 * This operation never fails, but the returned object might not support any I/O
5890 * operation if the @parse_name cannot be parsed.
5892 * Returns: (transfer full): a new #GFile.
5895 g_file_parse_name (const char *parse_name)
5897 g_return_val_if_fail (parse_name != NULL, NULL);
5899 return g_vfs_parse_name (g_vfs_get_default (), parse_name);
5903 is_valid_scheme_character (char c)
5905 return g_ascii_isalnum (c) || c == '+' || c == '-' || c == '.';
5908 /* Following RFC 2396, valid schemes are built like:
5909 * scheme = alpha *( alpha | digit | "+" | "-" | "." )
5912 has_valid_scheme (const char *uri)
5918 if (!g_ascii_isalpha (*p))
5923 } while (is_valid_scheme_character (*p));
5929 * g_file_new_for_commandline_arg:
5930 * @arg: a command line string.
5932 * Creates a #GFile with the given argument from the command line. The value of
5933 * @arg can be either a URI, an absolute path or a relative path resolved
5934 * relative to the current working directory.
5935 * This operation never fails, but the returned object might not support any
5936 * I/O operation if @arg points to a malformed path.
5938 * Returns: (transfer full): a new #GFile.
5941 g_file_new_for_commandline_arg (const char *arg)
5947 g_return_val_if_fail (arg != NULL, NULL);
5949 if (g_path_is_absolute (arg))
5950 return g_file_new_for_path (arg);
5952 if (has_valid_scheme (arg))
5953 return g_file_new_for_uri (arg);
5955 current_dir = g_get_current_dir ();
5956 filename = g_build_filename (current_dir, arg, NULL);
5957 g_free (current_dir);
5959 file = g_file_new_for_path (filename);
5966 * g_file_mount_enclosing_volume:
5967 * @location: input #GFile.
5968 * @flags: flags affecting the operation
5969 * @mount_operation: a #GMountOperation or %NULL to avoid user interaction.
5970 * @cancellable: optional #GCancellable object, %NULL to ignore.
5971 * @callback: a #GAsyncReadyCallback to call when the request is satisfied, or %NULL.
5972 * @user_data: the data to pass to callback function
5974 * Starts a @mount_operation, mounting the volume that contains the file @location.
5976 * When this operation has completed, @callback will be called with
5977 * @user_user data, and the operation can be finalized with
5978 * g_file_mount_enclosing_volume_finish().
5980 * If @cancellable is not %NULL, then the operation can be cancelled by
5981 * triggering the cancellable object from another thread. If the operation
5982 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
5985 g_file_mount_enclosing_volume (GFile *location,
5986 GMountMountFlags flags,
5987 GMountOperation *mount_operation,
5988 GCancellable *cancellable,
5989 GAsyncReadyCallback callback,
5994 g_return_if_fail (G_IS_FILE (location));
5996 iface = G_FILE_GET_IFACE (location);
5998 if (iface->mount_enclosing_volume == NULL)
6000 g_simple_async_report_error_in_idle (G_OBJECT (location),
6001 callback, user_data,
6002 G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
6003 _("volume doesn't implement mount"));
6008 (* iface->mount_enclosing_volume) (location, flags, mount_operation, cancellable, callback, user_data);
6013 * g_file_mount_enclosing_volume_finish:
6014 * @location: input #GFile.
6015 * @result: a #GAsyncResult.
6016 * @error: a #GError, or %NULL
6018 * Finishes a mount operation started by g_file_mount_enclosing_volume().
6020 * Returns: %TRUE if successful. If an error
6021 * has occurred, this function will return %FALSE and set @error
6022 * appropriately if present.
6025 g_file_mount_enclosing_volume_finish (GFile *location,
6026 GAsyncResult *result,
6031 g_return_val_if_fail (G_IS_FILE (location), FALSE);
6032 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
6034 if (G_IS_SIMPLE_ASYNC_RESULT (result))
6036 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
6037 if (g_simple_async_result_propagate_error (simple, error))
6041 iface = G_FILE_GET_IFACE (location);
6043 return (* iface->mount_enclosing_volume_finish) (location, result, error);
6046 /********************************************
6047 * Utility functions *
6048 ********************************************/
6051 * g_file_query_default_handler:
6052 * @file: a #GFile to open.
6053 * @cancellable: optional #GCancellable object, %NULL to ignore.
6054 * @error: a #GError, or %NULL
6056 * Returns the #GAppInfo that is registered as the default
6057 * application to handle the file specified by @file.
6059 * If @cancellable is not %NULL, then the operation can be cancelled by
6060 * triggering the cancellable object from another thread. If the operation
6061 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
6063 * Returns: (transfer full): a #GAppInfo if the handle was found, %NULL if there were errors.
6064 * When you are done with it, release it with g_object_unref()
6067 g_file_query_default_handler (GFile *file,
6068 GCancellable *cancellable,
6072 const char *content_type;
6077 uri_scheme = g_file_get_uri_scheme (file);
6078 if (uri_scheme && uri_scheme[0] != '\0')
6080 appinfo = g_app_info_get_default_for_uri_scheme (uri_scheme);
6081 g_free (uri_scheme);
6083 if (appinfo != NULL)
6087 info = g_file_query_info (file,
6088 G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE,
6097 content_type = g_file_info_get_content_type (info);
6100 /* Don't use is_native(), as we want to support fuse paths if availible */
6101 path = g_file_get_path (file);
6102 appinfo = g_app_info_get_default_for_type (content_type,
6107 g_object_unref (info);
6109 if (appinfo != NULL)
6112 g_set_error_literal (error, G_IO_ERROR,
6113 G_IO_ERROR_NOT_SUPPORTED,
6114 _("No application is registered as handling this file"));
6120 #define GET_CONTENT_BLOCK_SIZE 8192
6123 * g_file_load_contents:
6124 * @file: input #GFile.
6125 * @cancellable: optional #GCancellable object, %NULL to ignore.
6126 * @contents: (out) (transfer full) (element-type guint8) (array length=length): a location to place the contents of the file.
6127 * @length: (out) (allow-none): a location to place the length of the contents of the file,
6128 * or %NULL if the length is not needed
6129 * @etag_out: (out) (allow-none): a location to place the current entity tag for the file,
6130 * or %NULL if the entity tag is not needed
6131 * @error: a #GError, or %NULL
6133 * Loads the content of the file into memory. The data is always
6134 * zero-terminated, but this is not included in the resultant @length.
6135 * The returned @content should be freed with g_free() when no longer
6138 * If @cancellable is not %NULL, then the operation can be cancelled by
6139 * triggering the cancellable object from another thread. If the operation
6140 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
6142 * Returns: %TRUE if the @file's contents were successfully loaded.
6143 * %FALSE if there were errors.
6146 g_file_load_contents (GFile *file,
6147 GCancellable *cancellable,
6153 GFileInputStream *in;
6154 GByteArray *content;
6159 g_return_val_if_fail (G_IS_FILE (file), FALSE);
6160 g_return_val_if_fail (contents != NULL, FALSE);
6162 in = g_file_read (file, cancellable, error);
6166 content = g_byte_array_new ();
6169 g_byte_array_set_size (content, pos + GET_CONTENT_BLOCK_SIZE + 1);
6170 while ((res = g_input_stream_read (G_INPUT_STREAM (in),
6171 content->data + pos,
6172 GET_CONTENT_BLOCK_SIZE,
6173 cancellable, error)) > 0)
6176 g_byte_array_set_size (content, pos + GET_CONTENT_BLOCK_SIZE + 1);
6183 info = g_file_input_stream_query_info (in,
6184 G_FILE_ATTRIBUTE_ETAG_VALUE,
6189 *etag_out = g_strdup (g_file_info_get_etag (info));
6190 g_object_unref (info);
6194 /* Ignore errors on close */
6195 g_input_stream_close (G_INPUT_STREAM (in), cancellable, NULL);
6196 g_object_unref (in);
6200 /* error is set already */
6201 g_byte_array_free (content, TRUE);
6208 /* Zero terminate (we got an extra byte allocated for this */
6209 content->data[pos] = 0;
6211 *contents = (char *)g_byte_array_free (content, FALSE);
6219 GCancellable *cancellable;
6220 GFileReadMoreCallback read_more_callback;
6221 GAsyncReadyCallback callback;
6223 GByteArray *content;
6230 load_contents_data_free (LoadContentsData *data)
6233 g_error_free (data->error);
6234 if (data->cancellable)
6235 g_object_unref (data->cancellable);
6237 g_byte_array_free (data->content, TRUE);
6238 g_free (data->etag);
6239 g_object_unref (data->file);
6244 load_contents_close_callback (GObject *obj,
6245 GAsyncResult *close_res,
6248 GInputStream *stream = G_INPUT_STREAM (obj);
6249 LoadContentsData *data = user_data;
6250 GSimpleAsyncResult *res;
6252 /* Ignore errors here, we're only reading anyway */
6253 g_input_stream_close_finish (stream, close_res, NULL);
6254 g_object_unref (stream);
6256 res = g_simple_async_result_new (G_OBJECT (data->file),
6259 g_file_load_contents_async);
6260 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)load_contents_data_free);
6261 g_simple_async_result_complete (res);
6262 g_object_unref (res);
6266 load_contents_fstat_callback (GObject *obj,
6267 GAsyncResult *stat_res,
6270 GInputStream *stream = G_INPUT_STREAM (obj);
6271 LoadContentsData *data = user_data;
6274 info = g_file_input_stream_query_info_finish (G_FILE_INPUT_STREAM (stream),
6278 data->etag = g_strdup (g_file_info_get_etag (info));
6279 g_object_unref (info);
6282 g_input_stream_close_async (stream, 0,
6284 load_contents_close_callback, data);
6288 load_contents_read_callback (GObject *obj,
6289 GAsyncResult *read_res,
6292 GInputStream *stream = G_INPUT_STREAM (obj);
6293 LoadContentsData *data = user_data;
6294 GError *error = NULL;
6297 read_size = g_input_stream_read_finish (stream, read_res, &error);
6301 /* Error or EOF, close the file */
6302 data->error = error;
6303 g_input_stream_close_async (stream, 0,
6305 load_contents_close_callback, data);
6307 else if (read_size == 0)
6309 g_file_input_stream_query_info_async (G_FILE_INPUT_STREAM (stream),
6310 G_FILE_ATTRIBUTE_ETAG_VALUE,
6313 load_contents_fstat_callback,
6316 else if (read_size > 0)
6318 data->pos += read_size;
6320 g_byte_array_set_size (data->content,
6321 data->pos + GET_CONTENT_BLOCK_SIZE);
6324 if (data->read_more_callback &&
6325 !data->read_more_callback ((char *)data->content->data, data->pos, data->user_data))
6326 g_file_input_stream_query_info_async (G_FILE_INPUT_STREAM (stream),
6327 G_FILE_ATTRIBUTE_ETAG_VALUE,
6330 load_contents_fstat_callback,
6333 g_input_stream_read_async (stream,
6334 data->content->data + data->pos,
6335 GET_CONTENT_BLOCK_SIZE,
6338 load_contents_read_callback,
6344 load_contents_open_callback (GObject *obj,
6345 GAsyncResult *open_res,
6348 GFile *file = G_FILE (obj);
6349 GFileInputStream *stream;
6350 LoadContentsData *data = user_data;
6351 GError *error = NULL;
6352 GSimpleAsyncResult *res;
6354 stream = g_file_read_finish (file, open_res, &error);
6358 g_byte_array_set_size (data->content,
6359 data->pos + GET_CONTENT_BLOCK_SIZE);
6360 g_input_stream_read_async (G_INPUT_STREAM (stream),
6361 data->content->data + data->pos,
6362 GET_CONTENT_BLOCK_SIZE,
6365 load_contents_read_callback,
6371 res = g_simple_async_result_new_take_error (G_OBJECT (data->file),
6375 g_simple_async_result_complete (res);
6376 load_contents_data_free (data);
6377 g_object_unref (res);
6382 * g_file_load_partial_contents_async: (skip)
6383 * @file: input #GFile.
6384 * @cancellable: optional #GCancellable object, %NULL to ignore.
6385 * @read_more_callback: a #GFileReadMoreCallback to receive partial data and to specify whether further data should be read.
6386 * @callback: a #GAsyncReadyCallback to call when the request is satisfied
6387 * @user_data: the data to pass to the callback functions.
6389 * Reads the partial contents of a file. A #GFileReadMoreCallback should be
6390 * used to stop reading from the file when appropriate, else this function
6391 * will behave exactly as g_file_load_contents_async(). This operation
6392 * can be finished by g_file_load_partial_contents_finish().
6394 * Users of this function should be aware that @user_data is passed to
6395 * both the @read_more_callback and the @callback.
6397 * If @cancellable is not %NULL, then the operation can be cancelled by
6398 * triggering the cancellable object from another thread. If the operation
6399 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
6402 g_file_load_partial_contents_async (GFile *file,
6403 GCancellable *cancellable,
6404 GFileReadMoreCallback read_more_callback,
6405 GAsyncReadyCallback callback,
6408 LoadContentsData *data;
6410 g_return_if_fail (G_IS_FILE (file));
6412 data = g_new0 (LoadContentsData, 1);
6415 data->cancellable = g_object_ref (cancellable);
6416 data->read_more_callback = read_more_callback;
6417 data->callback = callback;
6418 data->user_data = user_data;
6419 data->content = g_byte_array_new ();
6420 data->file = g_object_ref (file);
6422 g_file_read_async (file,
6425 load_contents_open_callback,
6430 * g_file_load_partial_contents_finish:
6431 * @file: input #GFile.
6432 * @res: a #GAsyncResult.
6433 * @contents: (out) (transfer full) (element-type guint8) (array length=length): a location to place the contents of the file.
6434 * @length: (out) (allow-none): a location to place the length of the contents of the file,
6435 * or %NULL if the length is not needed
6436 * @etag_out: (out) (allow-none): a location to place the current entity tag for the file,
6437 * or %NULL if the entity tag is not needed
6438 * @error: a #GError, or %NULL
6440 * Finishes an asynchronous partial load operation that was started
6441 * with g_file_load_partial_contents_async(). The data is always
6442 * zero-terminated, but this is not included in the resultant @length.
6443 * The returned @content should be freed with g_free() when no longer
6446 * Returns: %TRUE if the load was successful. If %FALSE and @error is
6447 * present, it will be set appropriately.
6450 g_file_load_partial_contents_finish (GFile *file,
6457 GSimpleAsyncResult *simple;
6458 LoadContentsData *data;
6460 g_return_val_if_fail (G_IS_FILE (file), FALSE);
6461 g_return_val_if_fail (G_IS_SIMPLE_ASYNC_RESULT (res), FALSE);
6462 g_return_val_if_fail (contents != NULL, FALSE);
6464 simple = G_SIMPLE_ASYNC_RESULT (res);
6466 if (g_simple_async_result_propagate_error (simple, error))
6469 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_load_contents_async);
6471 data = g_simple_async_result_get_op_res_gpointer (simple);
6475 g_propagate_error (error, data->error);
6484 *length = data->pos;
6488 *etag_out = data->etag;
6492 /* Zero terminate */
6493 g_byte_array_set_size (data->content, data->pos + 1);
6494 data->content->data[data->pos] = 0;
6496 *contents = (char *)g_byte_array_free (data->content, FALSE);
6497 data->content = NULL;
6503 * g_file_load_contents_async:
6504 * @file: input #GFile.
6505 * @cancellable: optional #GCancellable object, %NULL to ignore.
6506 * @callback: a #GAsyncReadyCallback to call when the request is satisfied
6507 * @user_data: the data to pass to callback function
6509 * Starts an asynchronous load of the @file's contents.
6511 * For more details, see g_file_load_contents() which is
6512 * the synchronous version of this call.
6514 * When the load operation has completed, @callback will be called
6515 * with @user data. To finish the operation, call
6516 * g_file_load_contents_finish() with the #GAsyncResult returned by
6519 * If @cancellable is not %NULL, then the operation can be cancelled by
6520 * triggering the cancellable object from another thread. If the operation
6521 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
6524 g_file_load_contents_async (GFile *file,
6525 GCancellable *cancellable,
6526 GAsyncReadyCallback callback,
6529 g_file_load_partial_contents_async (file,
6532 callback, user_data);
6536 * g_file_load_contents_finish:
6537 * @file: input #GFile.
6538 * @res: a #GAsyncResult.
6539 * @contents: (out) (transfer full) (element-type guint8) (array length=length): a location to place the contents of the file.
6540 * @length: (out) (allow-none): a location to place the length of the contents of the file,
6541 * or %NULL if the length is not needed
6542 * @etag_out: (out) (allow-none): a location to place the current entity tag for the file,
6543 * or %NULL if the entity tag is not needed
6544 * @error: a #GError, or %NULL
6546 * Finishes an asynchronous load of the @file's contents.
6547 * The contents are placed in @contents, and @length is set to the
6548 * size of the @contents string. The @content should be freed with
6549 * g_free() when no longer needed. If @etag_out is present, it will be
6550 * set to the new entity tag for the @file.
6552 * Returns: %TRUE if the load was successful. If %FALSE and @error is
6553 * present, it will be set appropriately.
6556 g_file_load_contents_finish (GFile *file,
6563 return g_file_load_partial_contents_finish (file,
6572 * g_file_replace_contents:
6573 * @file: input #GFile.
6574 * @contents: (element-type guint8) (array length=length): a string containing the new contents for @file.
6575 * @length: the length of @contents in bytes.
6576 * @etag: (allow-none): the old <link linkend="gfile-etag">entity tag</link>
6577 * for the document, or %NULL
6578 * @make_backup: %TRUE if a backup should be created.
6579 * @flags: a set of #GFileCreateFlags.
6580 * @new_etag: (allow-none) (out): a location to a new <link linkend="gfile-etag">entity tag</link>
6581 * for the document. This should be freed with g_free() when no longer
6583 * @cancellable: optional #GCancellable object, %NULL to ignore.
6584 * @error: a #GError, or %NULL
6586 * Replaces the contents of @file with @contents of @length bytes.
6588 * If @etag is specified (not %NULL) any existing file must have that etag, or
6589 * the error %G_IO_ERROR_WRONG_ETAG will be returned.
6591 * If @make_backup is %TRUE, this function will attempt to make a backup of @file.
6593 * If @cancellable is not %NULL, then the operation can be cancelled by
6594 * triggering the cancellable object from another thread. If the operation
6595 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
6597 * The returned @new_etag can be used to verify that the file hasn't changed the
6598 * next time it is saved over.
6600 * Returns: %TRUE if successful. If an error
6601 * has occurred, this function will return %FALSE and set @error
6602 * appropriately if present.
6605 g_file_replace_contents (GFile *file,
6606 const char *contents,
6609 gboolean make_backup,
6610 GFileCreateFlags flags,
6612 GCancellable *cancellable,
6615 GFileOutputStream *out;
6616 gsize pos, remainder;
6620 g_return_val_if_fail (G_IS_FILE (file), FALSE);
6621 g_return_val_if_fail (contents != NULL, FALSE);
6623 out = g_file_replace (file, etag, make_backup, flags, cancellable, error);
6629 while (remainder > 0 &&
6630 (res = g_output_stream_write (G_OUTPUT_STREAM (out),
6632 MIN (remainder, GET_CONTENT_BLOCK_SIZE),
6640 if (remainder > 0 && res < 0)
6642 /* Ignore errors on close */
6643 g_output_stream_close (G_OUTPUT_STREAM (out), cancellable, NULL);
6644 g_object_unref (out);
6646 /* error is set already */
6650 ret = g_output_stream_close (G_OUTPUT_STREAM (out), cancellable, error);
6653 *new_etag = g_file_output_stream_get_etag (out);
6655 g_object_unref (out);
6663 GCancellable *cancellable;
6664 GAsyncReadyCallback callback;
6666 const char *content;
6670 } ReplaceContentsData;
6673 replace_contents_data_free (ReplaceContentsData *data)
6676 g_error_free (data->error);
6677 if (data->cancellable)
6678 g_object_unref (data->cancellable);
6679 g_object_unref (data->file);
6680 g_free (data->etag);
6685 replace_contents_close_callback (GObject *obj,
6686 GAsyncResult *close_res,
6689 GOutputStream *stream = G_OUTPUT_STREAM (obj);
6690 ReplaceContentsData *data = user_data;
6691 GSimpleAsyncResult *res;
6693 /* Ignore errors here, we're only reading anyway */
6694 g_output_stream_close_finish (stream, close_res, NULL);
6695 g_object_unref (stream);
6697 data->etag = g_file_output_stream_get_etag (G_FILE_OUTPUT_STREAM (stream));
6699 res = g_simple_async_result_new (G_OBJECT (data->file),
6702 g_file_replace_contents_async);
6703 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)replace_contents_data_free);
6704 g_simple_async_result_complete (res);
6705 g_object_unref (res);
6709 replace_contents_write_callback (GObject *obj,
6710 GAsyncResult *read_res,
6713 GOutputStream *stream = G_OUTPUT_STREAM (obj);
6714 ReplaceContentsData *data = user_data;
6715 GError *error = NULL;
6718 write_size = g_output_stream_write_finish (stream, read_res, &error);
6720 if (write_size <= 0)
6722 /* Error or EOF, close the file */
6724 data->error = error;
6725 g_output_stream_close_async (stream, 0,
6727 replace_contents_close_callback, data);
6729 else if (write_size > 0)
6731 data->pos += write_size;
6733 if (data->pos >= data->length)
6734 g_output_stream_close_async (stream, 0,
6736 replace_contents_close_callback, data);
6738 g_output_stream_write_async (stream,
6739 data->content + data->pos,
6740 data->length - data->pos,
6743 replace_contents_write_callback,
6749 replace_contents_open_callback (GObject *obj,
6750 GAsyncResult *open_res,
6753 GFile *file = G_FILE (obj);
6754 GFileOutputStream *stream;
6755 ReplaceContentsData *data = user_data;
6756 GError *error = NULL;
6757 GSimpleAsyncResult *res;
6759 stream = g_file_replace_finish (file, open_res, &error);
6763 g_output_stream_write_async (G_OUTPUT_STREAM (stream),
6764 data->content + data->pos,
6765 data->length - data->pos,
6768 replace_contents_write_callback,
6774 res = g_simple_async_result_new_take_error (G_OBJECT (data->file),
6778 g_simple_async_result_complete (res);
6779 replace_contents_data_free (data);
6780 g_object_unref (res);
6785 * g_file_replace_contents_async:
6786 * @file: input #GFile.
6787 * @contents: (element-type guint8) (array length=length): string of contents to replace the file with.
6788 * @length: the length of @contents in bytes.
6789 * @etag: (allow-none): a new <link linkend="gfile-etag">entity tag</link> for the @file, or %NULL
6790 * @make_backup: %TRUE if a backup should be created.
6791 * @flags: a set of #GFileCreateFlags.
6792 * @cancellable: optional #GCancellable object, %NULL to ignore.
6793 * @callback: a #GAsyncReadyCallback to call when the request is satisfied
6794 * @user_data: the data to pass to callback function
6796 * Starts an asynchronous replacement of @file with the given
6797 * @contents of @length bytes. @etag will replace the document's
6798 * current entity tag.
6800 * When this operation has completed, @callback will be called with
6801 * @user_user data, and the operation can be finalized with
6802 * g_file_replace_contents_finish().
6804 * If @cancellable is not %NULL, then the operation can be cancelled by
6805 * triggering the cancellable object from another thread. If the operation
6806 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
6808 * If @make_backup is %TRUE, this function will attempt to
6809 * make a backup of @file.
6812 g_file_replace_contents_async (GFile *file,
6813 const char *contents,
6816 gboolean make_backup,
6817 GFileCreateFlags flags,
6818 GCancellable *cancellable,
6819 GAsyncReadyCallback callback,
6822 ReplaceContentsData *data;
6824 g_return_if_fail (G_IS_FILE (file));
6825 g_return_if_fail (contents != NULL);
6827 data = g_new0 (ReplaceContentsData, 1);
6830 data->cancellable = g_object_ref (cancellable);
6831 data->callback = callback;
6832 data->user_data = user_data;
6833 data->content = contents;
6834 data->length = length;
6836 data->file = g_object_ref (file);
6838 g_file_replace_async (file,
6844 replace_contents_open_callback,
6849 * g_file_replace_contents_finish:
6850 * @file: input #GFile.
6851 * @res: a #GAsyncResult.
6852 * @new_etag: (out) (allow-none): a location of a new <link linkend="gfile-etag">entity tag</link>
6853 * for the document. This should be freed with g_free() when it is no
6854 * longer needed, or %NULL
6855 * @error: a #GError, or %NULL
6857 * Finishes an asynchronous replace of the given @file. See
6858 * g_file_replace_contents_async(). Sets @new_etag to the new entity
6859 * tag for the document, if present.
6861 * Returns: %TRUE on success, %FALSE on failure.
6864 g_file_replace_contents_finish (GFile *file,
6869 GSimpleAsyncResult *simple;
6870 ReplaceContentsData *data;
6872 g_return_val_if_fail (G_IS_FILE (file), FALSE);
6873 g_return_val_if_fail (G_IS_SIMPLE_ASYNC_RESULT (res), FALSE);
6875 simple = G_SIMPLE_ASYNC_RESULT (res);
6877 if (g_simple_async_result_propagate_error (simple, error))
6880 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_replace_contents_async);
6882 data = g_simple_async_result_get_op_res_gpointer (simple);
6886 g_propagate_error (error, data->error);
6894 *new_etag = data->etag;
6895 data->etag = NULL; /* Take ownership */
6902 * g_file_start_mountable:
6903 * @file: input #GFile.
6904 * @flags: flags affecting the operation
6905 * @start_operation: a #GMountOperation, or %NULL to avoid user interaction.
6906 * @cancellable: optional #GCancellable object, %NULL to ignore.
6907 * @callback: a #GAsyncReadyCallback to call when the request is satisfied, or %NULL.
6908 * @user_data: the data to pass to callback function
6910 * Starts a file of type G_FILE_TYPE_MOUNTABLE.
6911 * Using @start_operation, you can request callbacks when, for instance,
6912 * passwords are needed during authentication.
6914 * If @cancellable is not %NULL, then the operation can be cancelled by
6915 * triggering the cancellable object from another thread. If the operation
6916 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
6918 * When the operation is finished, @callback will be called. You can then call
6919 * g_file_mount_mountable_finish() to get the result of the operation.
6924 g_file_start_mountable (GFile *file,
6925 GDriveStartFlags flags,
6926 GMountOperation *start_operation,
6927 GCancellable *cancellable,
6928 GAsyncReadyCallback callback,
6933 g_return_if_fail (G_IS_FILE (file));
6935 iface = G_FILE_GET_IFACE (file);
6937 if (iface->start_mountable == NULL)
6939 g_simple_async_report_error_in_idle (G_OBJECT (file),
6943 G_IO_ERROR_NOT_SUPPORTED,
6944 _("Operation not supported"));
6948 (* iface->start_mountable) (file,
6957 * g_file_start_mountable_finish:
6958 * @file: input #GFile.
6959 * @result: a #GAsyncResult.
6960 * @error: a #GError, or %NULL
6962 * Finishes a start operation. See g_file_start_mountable() for details.
6964 * Finish an asynchronous start operation that was started
6965 * with g_file_start_mountable().
6967 * Returns: %TRUE if the operation finished successfully. %FALSE
6973 g_file_start_mountable_finish (GFile *file,
6974 GAsyncResult *result,
6979 g_return_val_if_fail (G_IS_FILE (file), FALSE);
6980 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
6982 if (G_IS_SIMPLE_ASYNC_RESULT (result))
6984 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
6985 if (g_simple_async_result_propagate_error (simple, error))
6989 iface = G_FILE_GET_IFACE (file);
6990 return (* iface->start_mountable_finish) (file, result, error);
6994 * g_file_stop_mountable:
6995 * @file: input #GFile.
6996 * @flags: flags affecting the operation
6997 * @mount_operation: a #GMountOperation, or %NULL to avoid user interaction.
6998 * @cancellable: optional #GCancellable object, %NULL to ignore.
6999 * @callback: a #GAsyncReadyCallback to call when the request is satisfied, or %NULL.
7000 * @user_data: the data to pass to callback function
7002 * Stops a file of type G_FILE_TYPE_MOUNTABLE.
7004 * If @cancellable is not %NULL, then the operation can be cancelled by
7005 * triggering the cancellable object from another thread. If the operation
7006 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
7008 * When the operation is finished, @callback will be called. You can then call
7009 * g_file_stop_mountable_finish() to get the result of the operation.
7014 g_file_stop_mountable (GFile *file,
7015 GMountUnmountFlags flags,
7016 GMountOperation *mount_operation,
7017 GCancellable *cancellable,
7018 GAsyncReadyCallback callback,
7023 g_return_if_fail (G_IS_FILE (file));
7025 iface = G_FILE_GET_IFACE (file);
7027 if (iface->stop_mountable == NULL)
7029 g_simple_async_report_error_in_idle (G_OBJECT (file),
7033 G_IO_ERROR_NOT_SUPPORTED,
7034 _("Operation not supported"));
7038 (* iface->stop_mountable) (file,
7047 * g_file_stop_mountable_finish:
7048 * @file: input #GFile.
7049 * @result: a #GAsyncResult.
7050 * @error: a #GError, or %NULL
7052 * Finishes an stop operation, see g_file_stop_mountable() for details.
7054 * Finish an asynchronous stop operation that was started
7055 * with g_file_stop_mountable().
7057 * Returns: %TRUE if the operation finished successfully. %FALSE
7063 g_file_stop_mountable_finish (GFile *file,
7064 GAsyncResult *result,
7069 g_return_val_if_fail (G_IS_FILE (file), FALSE);
7070 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
7072 if (G_IS_SIMPLE_ASYNC_RESULT (result))
7074 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
7075 if (g_simple_async_result_propagate_error (simple, error))
7079 iface = G_FILE_GET_IFACE (file);
7080 return (* iface->stop_mountable_finish) (file, result, error);
7084 * g_file_poll_mountable:
7085 * @file: input #GFile.
7086 * @cancellable: optional #GCancellable object, %NULL to ignore.
7087 * @callback: a #GAsyncReadyCallback to call when the request is satisfied, or %NULL.
7088 * @user_data: the data to pass to callback function
7090 * Polls a file of type G_FILE_TYPE_MOUNTABLE.
7092 * If @cancellable is not %NULL, then the operation can be cancelled by
7093 * triggering the cancellable object from another thread. If the operation
7094 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
7096 * When the operation is finished, @callback will be called. You can then call
7097 * g_file_mount_mountable_finish() to get the result of the operation.
7102 g_file_poll_mountable (GFile *file,
7103 GCancellable *cancellable,
7104 GAsyncReadyCallback callback,
7109 g_return_if_fail (G_IS_FILE (file));
7111 iface = G_FILE_GET_IFACE (file);
7113 if (iface->poll_mountable == NULL)
7115 g_simple_async_report_error_in_idle (G_OBJECT (file),
7119 G_IO_ERROR_NOT_SUPPORTED,
7120 _("Operation not supported"));
7124 (* iface->poll_mountable) (file,
7131 * g_file_poll_mountable_finish:
7132 * @file: input #GFile.
7133 * @result: a #GAsyncResult.
7134 * @error: a #GError, or %NULL
7136 * Finishes a poll operation. See g_file_poll_mountable() for details.
7138 * Finish an asynchronous poll operation that was polled
7139 * with g_file_poll_mountable().
7141 * Returns: %TRUE if the operation finished successfully. %FALSE
7147 g_file_poll_mountable_finish (GFile *file,
7148 GAsyncResult *result,
7153 g_return_val_if_fail (G_IS_FILE (file), FALSE);
7154 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
7156 if (G_IS_SIMPLE_ASYNC_RESULT (result))
7158 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
7159 if (g_simple_async_result_propagate_error (simple, error))
7163 iface = G_FILE_GET_IFACE (file);
7164 return (* iface->poll_mountable_finish) (file, result, error);
7168 * g_file_supports_thread_contexts:
7171 * Checks if @file supports <link
7172 * linkend="g-main-context-push-thread-default-context">thread-default
7173 * contexts</link>. If this returns %FALSE, you cannot perform
7174 * asynchronous operations on @file in a thread that has a
7175 * thread-default context.
7177 * Returns: Whether or not @file supports thread-default contexts.
7182 g_file_supports_thread_contexts (GFile *file)
7186 g_return_val_if_fail (G_IS_FILE (file), FALSE);
7188 iface = G_FILE_GET_IFACE (file);
7189 return iface->supports_thread_contexts;