2007-11-26 17:13:05 +01:00
|
|
|
/* GIO - GLib Input, Output and Streaming Library
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006-2007 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General
|
|
|
|
* Public License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* Author: Alexander Larsson <alexl@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#ifdef HAVE_PWD_H
|
|
|
|
#include <pwd.h>
|
|
|
|
#endif
|
|
|
|
#include "gfile.h"
|
|
|
|
#include "gvfs.h"
|
|
|
|
#include "gioscheduler.h"
|
|
|
|
#include <glocalfile.h>
|
|
|
|
#include "gsimpleasyncresult.h"
|
|
|
|
#include "gpollfilemonitor.h"
|
|
|
|
#include "glibintl.h"
|
|
|
|
|
2007-11-28 13:39:07 +01:00
|
|
|
#include "gioalias.h"
|
|
|
|
|
2007-11-27 15:00:13 +01:00
|
|
|
/**
|
|
|
|
* SECTION:gfile
|
|
|
|
* @short_description: File and Directory Handling
|
|
|
|
* @see_also: #GFileInfo, #GFileEnumerator
|
|
|
|
* @include: gio/gfile.h
|
|
|
|
*
|
|
|
|
* #GFile is a high level abstraction for manipulating files on a
|
|
|
|
* virtual file system. #GFile<!-- -->s are lightweight, immutable
|
|
|
|
* objects that do no I/O upon creation. It is necessary to understand that
|
|
|
|
* #GFile objects do not represent files, merely a handle to a file. All
|
2007-11-29 11:18:55 +01:00
|
|
|
* file I/O is implemented as streaming operations (see #GInputStream and #GOutputStream).
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
|
|
|
* To construct a #GFile, you can use:
|
|
|
|
* g_file_new_for_path() if you have a path.
|
|
|
|
* g_file_new_for_uri() if you have a URI.
|
|
|
|
*
|
|
|
|
* You can move through the filesystem with #GFile handles with
|
|
|
|
* g_file_get_parent() to get a handle to the parent directory.
|
|
|
|
* g_file_get_child() to get a handle to a child within a directory.
|
|
|
|
* g_file_resolve_relative_path() to resolve a relative path between
|
|
|
|
* two #GFile<!-- -->s.
|
|
|
|
*
|
2007-11-29 11:18:55 +01:00
|
|
|
* Many #GFile operations have both synchronous and asynchronous versions
|
|
|
|
* to suit your application. Asynchronous versions of synchronous functions
|
|
|
|
* simply have _async() appended to their function names. The asynchronous
|
|
|
|
* I/O functions call a #GAsyncReadyCallback which is then used to finalize
|
|
|
|
* the operation, which is then passed to the function's matching _finish()
|
|
|
|
* operation.
|
|
|
|
*
|
|
|
|
* Some #GFile operations do not have synchronous analogs, as they may
|
|
|
|
* take a very long time to finish, and blocking may leave an application
|
|
|
|
* unusable. Notable cases include:
|
|
|
|
* g_file_mount_mountable() to mount a mountable file.
|
|
|
|
* g_file_unmount_mountable() to unmount a mountable file.
|
|
|
|
* g_file_eject_mountable() to eject a mountable file.
|
|
|
|
*
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
**/
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
static void g_file_base_init (gpointer g_class);
|
|
|
|
static void g_file_class_init (gpointer g_class,
|
|
|
|
gpointer class_data);
|
|
|
|
|
|
|
|
static void g_file_real_query_info_async (GFile *file,
|
|
|
|
const char *attributes,
|
|
|
|
GFileQueryInfoFlags flags,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
static GFileInfo * g_file_real_query_info_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error);
|
|
|
|
static void g_file_real_enumerate_children_async (GFile *file,
|
|
|
|
const char *attributes,
|
|
|
|
GFileQueryInfoFlags flags,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
static GFileEnumerator * g_file_real_enumerate_children_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error);
|
|
|
|
static void g_file_real_read_async (GFile *file,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
static GFileInputStream * g_file_real_read_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error);
|
|
|
|
static void g_file_real_append_to_async (GFile *file,
|
|
|
|
GFileCreateFlags flags,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
static GFileOutputStream *g_file_real_append_to_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error);
|
|
|
|
static void g_file_real_create_async (GFile *file,
|
|
|
|
GFileCreateFlags flags,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
static GFileOutputStream *g_file_real_create_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error);
|
|
|
|
static void g_file_real_replace_async (GFile *file,
|
|
|
|
const char *etag,
|
|
|
|
gboolean make_backup,
|
|
|
|
GFileCreateFlags flags,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
static GFileOutputStream *g_file_real_replace_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error);
|
|
|
|
static gboolean g_file_real_set_attributes_from_info (GFile *file,
|
|
|
|
GFileInfo *info,
|
|
|
|
GFileQueryInfoFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
|
|
|
static void g_file_real_set_display_name_async (GFile *file,
|
|
|
|
const char *display_name,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
static GFile * g_file_real_set_display_name_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error);
|
|
|
|
static void g_file_real_set_attributes_async (GFile *file,
|
|
|
|
GFileInfo *info,
|
|
|
|
GFileQueryInfoFlags flags,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
static gboolean g_file_real_set_attributes_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GFileInfo **info,
|
|
|
|
GError **error);
|
|
|
|
|
|
|
|
GType
|
|
|
|
g_file_get_type (void)
|
|
|
|
{
|
|
|
|
static GType file_type = 0;
|
|
|
|
|
|
|
|
if (! file_type)
|
|
|
|
{
|
|
|
|
static const GTypeInfo file_info =
|
|
|
|
{
|
|
|
|
sizeof (GFileIface), /* class_size */
|
|
|
|
g_file_base_init, /* base_init */
|
|
|
|
NULL, /* base_finalize */
|
|
|
|
g_file_class_init,
|
|
|
|
NULL, /* class_finalize */
|
|
|
|
NULL, /* class_data */
|
|
|
|
0,
|
|
|
|
0, /* n_preallocs */
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
file_type =
|
|
|
|
g_type_register_static (G_TYPE_INTERFACE, I_("GFile"),
|
|
|
|
&file_info, 0);
|
|
|
|
|
|
|
|
g_type_interface_add_prerequisite (file_type, G_TYPE_OBJECT);
|
|
|
|
}
|
|
|
|
|
|
|
|
return file_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_file_class_init (gpointer g_class,
|
|
|
|
gpointer class_data)
|
|
|
|
{
|
|
|
|
GFileIface *iface = g_class;
|
|
|
|
|
|
|
|
iface->enumerate_children_async = g_file_real_enumerate_children_async;
|
|
|
|
iface->enumerate_children_finish = g_file_real_enumerate_children_finish;
|
|
|
|
iface->set_display_name_async = g_file_real_set_display_name_async;
|
|
|
|
iface->set_display_name_finish = g_file_real_set_display_name_finish;
|
|
|
|
iface->query_info_async = g_file_real_query_info_async;
|
|
|
|
iface->query_info_finish = g_file_real_query_info_finish;
|
|
|
|
iface->set_attributes_async = g_file_real_set_attributes_async;
|
|
|
|
iface->set_attributes_finish = g_file_real_set_attributes_finish;
|
|
|
|
iface->read_async = g_file_real_read_async;
|
|
|
|
iface->read_finish = g_file_real_read_finish;
|
|
|
|
iface->append_to_async = g_file_real_append_to_async;
|
|
|
|
iface->append_to_finish = g_file_real_append_to_finish;
|
|
|
|
iface->create_async = g_file_real_create_async;
|
|
|
|
iface->create_finish = g_file_real_create_finish;
|
|
|
|
iface->replace_async = g_file_real_replace_async;
|
|
|
|
iface->replace_finish = g_file_real_replace_finish;
|
|
|
|
iface->set_attributes_from_info = g_file_real_set_attributes_from_info;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_file_base_init (gpointer g_class)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_is_native:
|
|
|
|
* @file: input #GFile.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Checks to see if a file is native to the system.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if file is native. (If the file is native
|
|
|
|
* to the system, e.g. located in file:///).
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
g_file_is_native (GFile *file)
|
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), FALSE);
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
return (* iface->is_native) (file);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_has_uri_scheme:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @uri_scheme: a string containing a URI scheme.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Checks to see if a #GFile has a given URI scheme.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: %TRUE if #GFile's backend supports the
|
2007-11-29 08:17:59 +01:00
|
|
|
* given URI scheme, %FALSE if URI scheme is %NULL,
|
|
|
|
* not supported, or #GFile is invalid.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_has_uri_scheme (GFile *file,
|
2007-11-26 17:13:05 +01:00
|
|
|
const char *uri_scheme)
|
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), FALSE);
|
|
|
|
g_return_val_if_fail (uri_scheme != NULL, FALSE);
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
return (* iface->has_uri_scheme) (file, uri_scheme);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_get_uri_scheme:
|
|
|
|
* @file: input #GFile.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Gets the URI scheme for a #GFile.
|
2007-11-26 17:13:05 +01:00
|
|
|
* RFC 3986 decodes the scheme as:
|
2007-11-28 07:43:33 +01:00
|
|
|
* <programlisting>
|
2007-11-26 17:13:05 +01:00
|
|
|
* URI = scheme ":" hier-part [ "?" query ] [ "#" fragment ]
|
2007-11-28 07:43:33 +01:00
|
|
|
* </programlisting>
|
|
|
|
* Common schemes include "file", "http", "svn", etc.
|
|
|
|
*
|
|
|
|
* Returns: a string containing the URI scheme for the given
|
|
|
|
* #GFile. The returned string should be freed with g_free()
|
|
|
|
* when no longer needed.
|
2007-11-29 11:18:55 +01:00
|
|
|
**/
|
2007-11-26 17:13:05 +01:00
|
|
|
char *
|
|
|
|
g_file_get_uri_scheme (GFile *file)
|
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
return (* iface->get_uri_scheme) (file);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_get_basename:
|
|
|
|
* @file: input #GFile.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Gets the basename for a given #GFile.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-28 07:43:33 +01:00
|
|
|
* Returns: string containing the #GFile's base name, or %NULL
|
|
|
|
* if given #GFile is invalid. The returned string should be
|
|
|
|
* freed with g_free() when no longer needed.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
char *
|
|
|
|
g_file_get_basename (GFile *file)
|
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
return (* iface->get_basename) (file);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_get_path:
|
|
|
|
* @file: input #GFile.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Gets the current path within a #GFile.
|
|
|
|
*
|
2007-11-28 07:43:33 +01:00
|
|
|
* Returns: string containing the #GFile's path, or %NULL if
|
|
|
|
* given #GFile is invalid. The returned string should be
|
|
|
|
* freed with g_free() when no longer needed.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
char *
|
|
|
|
g_file_get_path (GFile *file)
|
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
return (* iface->get_path) (file);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_get_uri:
|
|
|
|
* @file: input #GFile.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Gets a URI for the path within a #GFile.
|
|
|
|
*
|
2007-11-28 07:43:33 +01:00
|
|
|
* Returns: a string containing the #GFile's URI or %NULL
|
|
|
|
* if given #GFile is invalid. The returned string should
|
|
|
|
* be freed with g_free() when no longer needed.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
char *
|
|
|
|
g_file_get_uri (GFile *file)
|
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
return (* iface->get_uri) (file);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2007-11-28 07:01:13 +01:00
|
|
|
* g_file_get_parse_name:
|
2007-11-26 17:13:05 +01:00
|
|
|
* @file: input #GFile.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Gets the parsed name for the #GFile.
|
|
|
|
*
|
2007-11-28 07:43:33 +01:00
|
|
|
* Returns: a string containing the #GFile's parsed name,
|
|
|
|
* or %NULL if given #GFile is invalid. The returned
|
|
|
|
* string should be freed with g_free() when no longer needed.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
char *
|
|
|
|
g_file_get_parse_name (GFile *file)
|
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
return (* iface->get_parse_name) (file);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_dup:
|
|
|
|
* @file: input #GFile.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Duplicates a #GFile handle. This operation does not duplicate
|
2007-11-28 07:43:33 +01:00
|
|
|
* the actual file or directory represented by the #GFile; see
|
|
|
|
* g_file_copy() if attempting to copy a file.
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: #GFile that is a duplicate of the given #GFile,
|
2007-11-28 07:43:33 +01:00
|
|
|
* or %NULL if given #GFile is invalid.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GFile *
|
|
|
|
g_file_dup (GFile *file)
|
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
return (* iface->dup) (file);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_hash:
|
|
|
|
* @file: #gconstpointer to a #GFile.
|
|
|
|
*
|
2007-11-28 07:43:33 +01:00
|
|
|
* Creates a hash value for a #GFile.
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
2007-11-28 07:43:33 +01:00
|
|
|
* Returns: 0 if @file is not a valid #GFile, otherwise an
|
|
|
|
* integer that can be used as hash value for the #GFile.
|
|
|
|
* This function is intended for easily hashing a #GFile to
|
|
|
|
* add to a #GHashTable or similar data structure.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
guint
|
|
|
|
g_file_hash (gconstpointer file)
|
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), 0);
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
return (* iface->hash) ((GFile *)file);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_equal:
|
|
|
|
* @file1: the first #GFile.
|
|
|
|
* @file2: the second #GFile.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Checks equality of two given #GFile<!-- -->s
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: %TRUE if @file1 and @file2 are equal.
|
|
|
|
* %FALSE if either is not a #GFile.
|
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
g_file_equal (GFile *file1,
|
|
|
|
GFile *file2)
|
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file1), FALSE);
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file2), FALSE);
|
|
|
|
|
|
|
|
if (G_TYPE_FROM_INSTANCE (file1) != G_TYPE_FROM_INSTANCE (file2))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file1);
|
|
|
|
|
|
|
|
return (* iface->equal) (file1, file2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_get_parent:
|
|
|
|
* @file: input #GFile.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Gets the parent directory for the @file.
|
|
|
|
* If the @file represents the root directory of the
|
2007-11-26 17:13:05 +01:00
|
|
|
* file system, then %NULL will be returned.
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
|
|
|
* Returns: a #GFile structure to the parent of the given
|
|
|
|
* #GFile or %NULL.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GFile *
|
|
|
|
g_file_get_parent (GFile *file)
|
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
return (* iface->get_parent) (file);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_get_child:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @name: string containing the child's name.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Gets a specific child of @file with name equal to @name if
|
|
|
|
* it exists.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: a #GFile to a child specified by
|
|
|
|
* @name or %NULL if @name is %NULL, or the specified
|
|
|
|
* child doesn't exist.
|
|
|
|
**/
|
|
|
|
GFile *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_get_child (GFile *file,
|
2007-11-26 17:13:05 +01:00
|
|
|
const char *name)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
g_return_val_if_fail (name != NULL, NULL);
|
|
|
|
|
|
|
|
return g_file_resolve_relative_path (file, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_get_child_for_display_name:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @display_name: string to a possible child.
|
|
|
|
* @error: #GError.
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
|
|
|
* Gets the child of @file for a given @display_name. If
|
|
|
|
* this function fails, it returns %NULL and @error will be
|
|
|
|
* set with %G_IO_ERROR_INVALID_FILENAME.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Returns: a #GFile to the specified child, or
|
|
|
|
* %NULL if @display_name is %NULL.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GFile *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_get_child_for_display_name (GFile *file,
|
2007-11-26 17:13:05 +01:00
|
|
|
const char *display_name,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
g_return_val_if_fail (display_name != NULL, NULL);
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
return (* iface->get_child_for_display_name) (file, display_name, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_contains_file:
|
|
|
|
* @parent: input #GFile.
|
|
|
|
* @descendant: input #GFile.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Checks whether @parent contains the specified @descendent.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if the @descendent's parent is @parent. %FALSE otherwise.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
g_file_contains_file (GFile *parent,
|
|
|
|
GFile *descendant)
|
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (parent), FALSE);
|
|
|
|
g_return_val_if_fail (G_IS_FILE (descendant), FALSE);
|
|
|
|
|
|
|
|
if (G_TYPE_FROM_INSTANCE (parent) != G_TYPE_FROM_INSTANCE (descendant))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (parent);
|
|
|
|
|
|
|
|
return (* iface->contains_file) (parent, descendant);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_get_relative_path:
|
|
|
|
* @parent: input #GFile.
|
|
|
|
* @descendant: input #GFile.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Gets the path for @descendant relative to @parent.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-28 07:43:33 +01:00
|
|
|
* Returns: string with the relative path from @descendant
|
|
|
|
* to @parent. The returned string should be freed with
|
|
|
|
* g_free() when no longer needed.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
char *
|
|
|
|
g_file_get_relative_path (GFile *parent,
|
|
|
|
GFile *descendant)
|
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (parent), NULL);
|
|
|
|
g_return_val_if_fail (G_IS_FILE (descendant), NULL);
|
|
|
|
|
|
|
|
if (G_TYPE_FROM_INSTANCE (parent) != G_TYPE_FROM_INSTANCE (descendant))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (parent);
|
|
|
|
|
|
|
|
return (* iface->get_relative_path) (parent, descendant);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_resolve_relative_path:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @relative_path: a given relative path string.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Resolves a relative path for @file to an absolute path.
|
|
|
|
*
|
2007-11-28 07:43:33 +01:00
|
|
|
* Returns: #GFile to the resolved path. %NULL if @relative_path
|
|
|
|
* is %NULL or if @file is invalid.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GFile *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_resolve_relative_path (GFile *file,
|
2007-11-26 17:13:05 +01:00
|
|
|
const char *relative_path)
|
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
g_return_val_if_fail (relative_path != NULL, NULL);
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
return (* iface->resolve_relative_path) (file, relative_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_enumerate_children:
|
|
|
|
* @file: input #GFile.
|
2007-11-27 15:00:13 +01:00
|
|
|
* @attributes: a string containing a #GFileAttributeInfo query.
|
|
|
|
* @flags: a set of #GFileQueryInfoFlags.
|
2007-11-26 17:13:05 +01:00
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @error: #GError for error reporting.
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
|
|
|
* Gets a #GFileEnumerator for the children of @file that match @attributes,
|
2007-11-28 07:43:33 +01:00
|
|
|
* where attributes is a #GFileAttributeInfo query string (e.g. "std:type",
|
|
|
|
* "std:*").
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
2007-11-27 15:00:13 +01:00
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
|
|
|
* If the #GFileIface for the given @file does not support #GFileEnumerator,
|
|
|
|
* then %NULL will be returned and the error %G_IO_ERROR_NOT_SUPPORTED will
|
|
|
|
* be set in @error.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Returns: A #GFileEnumerator if successful. %NULL if cancelled or if #GFile's
|
2007-11-28 07:43:33 +01:00
|
|
|
* backend doesn't support #GFileEnumerator.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GFileEnumerator *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_enumerate_children (GFile *file,
|
|
|
|
const char *attributes,
|
|
|
|
GFileQueryInfoFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
|
|
|
|
if (g_cancellable_set_error_if_cancelled (cancellable, error))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
if (iface->enumerate_children == NULL)
|
|
|
|
{
|
|
|
|
g_set_error (error, G_IO_ERROR,
|
|
|
|
G_IO_ERROR_NOT_SUPPORTED,
|
|
|
|
_("Operation not supported"));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (* iface->enumerate_children) (file, attributes, flags,
|
|
|
|
cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_enumerate_children_async:
|
|
|
|
* @file: input #GFile.
|
2007-11-27 15:00:13 +01:00
|
|
|
* @attributes: a string containing a #GFileAttributeInfo query.
|
2007-11-26 17:13:05 +01:00
|
|
|
* @flags: a set of #GFileQueryInfoFlags.
|
2007-11-27 15:00:13 +01:00
|
|
|
* @io_priority: the io priority of the request.
|
2007-11-26 17:13:05 +01:00
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
2007-11-29 11:18:55 +01:00
|
|
|
* @callback: a #GAsyncReadyCallback to call when the request is satisfied
|
|
|
|
* @user_data: the data to pass to callback function
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-28 07:43:33 +01:00
|
|
|
* Asynchronously gets a #GFileEnumerator for the children of @file that
|
|
|
|
* match @attributes, where attributes is a #GFileAttributeInfo query
|
|
|
|
* string (e.g. "std:type", "std:*"). For the synchronous version of this
|
|
|
|
* function, see g_file_enumerate_children().
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* To finish this asynchronous operation, see g_file_enumerate_children_finish().
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_enumerate_children_async (GFile *file,
|
|
|
|
const char *attributes,
|
|
|
|
GFileQueryInfoFlags flags,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_if_fail (G_IS_FILE (file));
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
(* iface->enumerate_children_async) (file,
|
|
|
|
attributes,
|
|
|
|
flags,
|
|
|
|
io_priority,
|
|
|
|
cancellable,
|
|
|
|
callback,
|
|
|
|
user_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_enumerate_children_finish:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @res: a #GAsyncResult.
|
|
|
|
* @error: a #GError.
|
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Finishes an async enumerate children operation.
|
|
|
|
*
|
2007-11-28 07:43:33 +01:00
|
|
|
* If @cancellable was not %NULL when g_file_enumerate_children_async()
|
|
|
|
* was called, then the operation could have been cancelled by triggering
|
|
|
|
* the cancellable object from another thread. If the operation was cancelled,
|
|
|
|
* the @error will be set to %G_IO_ERROR_CANCELLED and this function will
|
|
|
|
* return %NULL.
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
|
|
|
* If the #GFileIface for the given @file does not support enumerating files,
|
|
|
|
* then %NULL will be returned and the error %G_IO_ERROR_NOT_SUPPORTED will
|
|
|
|
* be set in @error.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: a #GFileEnumerator or %NULL if an error occurred.
|
|
|
|
**/
|
|
|
|
GFileEnumerator *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_enumerate_children_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
|
|
|
|
|
|
|
|
if (G_IS_SIMPLE_ASYNC_RESULT (res))
|
|
|
|
{
|
|
|
|
GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
|
|
|
|
if (g_simple_async_result_propagate_error (simple, error))
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
return (* iface->enumerate_children_finish) (file, res, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_query_info:
|
|
|
|
* @file: input #GFile.
|
2007-11-27 15:00:13 +01:00
|
|
|
* @attributes: a string containing a #GFileAttributeInfo query.
|
2007-11-26 17:13:05 +01:00
|
|
|
* @flags: a set of #GFileQueryInfoFlags.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @error: a #GError.
|
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
2007-11-27 15:00:13 +01:00
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
2007-11-28 07:43:33 +01:00
|
|
|
* If the #GFileIface for the given @file does not support querying file
|
|
|
|
* information, then %NULL will be returned and the error
|
|
|
|
* %G_IO_ERROR_NOT_SUPPORTED will be set in @error.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* Returns: a #GFileInfo for the given @file, or %NULL on error.
|
|
|
|
**/
|
|
|
|
GFileInfo *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_query_info (GFile *file,
|
|
|
|
const char *attributes,
|
|
|
|
GFileQueryInfoFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
|
|
|
|
if (g_cancellable_set_error_if_cancelled (cancellable, error))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
if (iface->query_info == NULL)
|
|
|
|
{
|
|
|
|
g_set_error (error, G_IO_ERROR,
|
|
|
|
G_IO_ERROR_NOT_SUPPORTED,
|
|
|
|
_("Operation not supported"));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (* iface->query_info) (file, attributes, flags, cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_query_info_async:
|
|
|
|
* @file: input #GFile.
|
2007-11-27 15:00:13 +01:00
|
|
|
* @attributes: a string containing a #GFileAttributeInfo query.
|
2007-11-26 17:13:05 +01:00
|
|
|
* @flags: a set of #GFileQueryInfoFlags.
|
2007-11-28 07:43:33 +01:00
|
|
|
* @io_priority: the io priority of the request.
|
2007-11-26 17:13:05 +01:00
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
2007-11-29 11:18:55 +01:00
|
|
|
* @callback: a #GAsyncReadyCallback to call when the request is satisfied
|
|
|
|
* @user_data: the data to pass to callback function
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
2007-11-27 15:00:13 +01:00
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
|
|
|
* To finish this asynchronous operation, see g_file_query_info_finish().
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_query_info_async (GFile *file,
|
|
|
|
const char *attributes,
|
|
|
|
GFileQueryInfoFlags flags,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_if_fail (G_IS_FILE (file));
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
(* iface->query_info_async) (file,
|
|
|
|
attributes,
|
|
|
|
flags,
|
|
|
|
io_priority,
|
|
|
|
cancellable,
|
|
|
|
callback,
|
|
|
|
user_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_query_info_finish:
|
|
|
|
* @file: input #GFile.
|
2007-11-27 15:00:13 +01:00
|
|
|
* @res: a #GAsyncResult.
|
2007-11-26 17:13:05 +01:00
|
|
|
* @error: a #GError.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Finishes an asynchronous file info query.
|
|
|
|
*
|
|
|
|
* If @cancellable was not %NULL when g_file_query_info_async() was called,
|
2007-11-28 07:43:33 +01:00
|
|
|
* then the operation could have been cancelled by triggering the cancellable
|
|
|
|
* object from another thread. If the operation was cancelled, the @error will
|
|
|
|
* be set to %G_IO_ERROR_CANCELLED and this function will return %NULL.
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
2007-11-28 07:43:33 +01:00
|
|
|
* If the #GFileIface for the given @file does not support querying file
|
|
|
|
* information, then %NULL will be returned and the error
|
|
|
|
* %G_IO_ERROR_NOT_SUPPORTED will be set in @error.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Returns: #GFileInfo for given @file or %NULL on error.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GFileInfo *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_query_info_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
|
|
|
|
|
|
|
|
if (G_IS_SIMPLE_ASYNC_RESULT (res))
|
|
|
|
{
|
|
|
|
GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
|
|
|
|
if (g_simple_async_result_propagate_error (simple, error))
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
return (* iface->query_info_finish) (file, res, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_query_filesystem_info:
|
|
|
|
* @file: input #GFile.
|
2007-11-27 15:00:13 +01:00
|
|
|
* @attributes: a string containing a #GFileAttributeInfo query.
|
2007-11-26 17:13:05 +01:00
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @error: a #GError.
|
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Obtains attributes of a #GFile.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
2007-11-27 15:00:13 +01:00
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* If the #GFileIface for the given @file does not support querying file system
|
|
|
|
* information, then %NULL will be returned and the error
|
|
|
|
* %G_IO_ERROR_NOT_SUPPORTED will be set in @error.
|
|
|
|
*
|
|
|
|
* Returns: a #GFileInfo or %NULL if there was an error.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GFileInfo *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_query_filesystem_info (GFile *file,
|
|
|
|
const char *attributes,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
|
|
|
|
if (g_cancellable_set_error_if_cancelled (cancellable, error))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
if (iface->query_filesystem_info == NULL)
|
|
|
|
{
|
|
|
|
g_set_error (error, G_IO_ERROR,
|
|
|
|
G_IO_ERROR_NOT_SUPPORTED,
|
|
|
|
_("Operation not supported"));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (* iface->query_filesystem_info) (file, attributes, cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_find_enclosing_volume:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @error: a #GError.
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
|
|
|
* Gets a #GVolume for the #GFile.
|
|
|
|
*
|
|
|
|
* If the #GFileIface for @file does not have a volume (e.g. possibly a
|
|
|
|
* remote share), @error will be set to %G_IO_ERROR_NOT_FOUND and %NULL
|
|
|
|
* will be returned.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
2007-11-27 15:00:13 +01:00
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Returns: a #GVolume where the @file is located or %NULL on error.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GVolume *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_find_enclosing_volume (GFile *file,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
|
|
|
|
if (g_cancellable_set_error_if_cancelled (cancellable, error))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
if (iface->find_enclosing_volume == NULL)
|
|
|
|
{
|
|
|
|
g_set_error (error, G_IO_ERROR,
|
|
|
|
G_IO_ERROR_NOT_FOUND,
|
|
|
|
_("Containing volume does not exist"));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (* iface->find_enclosing_volume) (file, cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_read:
|
|
|
|
* @file: #GFile to read.
|
|
|
|
* @cancellable: a #GCancellable
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* Reads a whole file into a #GFileInputStream. Fails returning %NULL if
|
2007-11-27 15:00:13 +01:00
|
|
|
* given #GFile points to a directory.
|
|
|
|
*
|
|
|
|
* If the #GFileIface for @file does not support reading files, then
|
|
|
|
* @error will be set to %G_IO_ERROR_NOT_SUPPORTED and %NULL will be returned.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
2007-11-27 15:00:13 +01:00
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Returns: #GFileInputStream or %NULL on error.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GFileInputStream *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_read (GFile *file,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
|
|
|
|
if (g_cancellable_set_error_if_cancelled (cancellable, error))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
if (iface->read == NULL)
|
|
|
|
{
|
|
|
|
g_set_error (error, G_IO_ERROR,
|
|
|
|
G_IO_ERROR_NOT_SUPPORTED,
|
|
|
|
_("Operation not supported"));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (* iface->read) (file, cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_append_to:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @flags: a set of #GFileCreateFlags.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Gets an output stream for appending to the file.
|
|
|
|
*
|
|
|
|
* If the #GFileIface for @file does not support appending to files,
|
|
|
|
* then @error will be set to %G_IO_ERROR_NOT_SUPPORTED and %NULL will
|
|
|
|
* be returned.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
2007-11-27 15:00:13 +01:00
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* Returns: a #GFileOutputStream.
|
|
|
|
**/
|
|
|
|
GFileOutputStream *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_append_to (GFile *file,
|
|
|
|
GFileCreateFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
|
|
|
|
if (g_cancellable_set_error_if_cancelled (cancellable, error))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
if (iface->append_to == NULL)
|
|
|
|
{
|
|
|
|
g_set_error (error, G_IO_ERROR,
|
|
|
|
G_IO_ERROR_NOT_SUPPORTED,
|
|
|
|
_("Operation not supported"));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (* iface->append_to) (file, flags, cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_create:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @flags: a set of #GFileCreateFlags.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Creates the file and returns an output stream for writing to it.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* If the #GFileIface for @file does not support creating files, then
|
|
|
|
* @error will be set to %G_IO_ERROR_NOT_SUPPORTED and %NULL will be returned.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
2007-11-27 15:00:13 +01:00
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* Returns: a #GFileOutputStream for the newly created file, or
|
|
|
|
* %NULL on error.
|
|
|
|
**/
|
|
|
|
GFileOutputStream *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_create (GFile *file,
|
|
|
|
GFileCreateFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
|
|
|
|
if (g_cancellable_set_error_if_cancelled (cancellable, error))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
if (iface->create == NULL)
|
|
|
|
{
|
|
|
|
g_set_error (error, G_IO_ERROR,
|
|
|
|
G_IO_ERROR_NOT_SUPPORTED,
|
|
|
|
_("Operation not supported"));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (* iface->create) (file, flags, cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_replace:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @etag: an Entity Tag for the current #GFile.
|
2007-11-29 08:17:59 +01:00
|
|
|
* @make_backup: %TRUE if a backup should be created.
|
2007-11-26 17:13:05 +01:00
|
|
|
* @flags: a set of #GFileCreateFlags.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Returns an output stream for overwriting the file, possibly
|
|
|
|
* creating a backup copy of the file first.
|
|
|
|
*
|
|
|
|
* If the #GFileIface for @file does not support streaming operations,
|
|
|
|
* then @error will be set to %G_IO_ERROR_NOT_SUPPORTED and %NULL will
|
|
|
|
* be returned.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
2007-11-27 15:00:13 +01:00
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
|
|
|
* @etag will replace the entity tag for the current file.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Returns: a #GFileOutputStream or %NULL on error. If @make_backup is
|
|
|
|
* %TRUE, this function will attempt to make a backup of the current
|
|
|
|
* file.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GFileOutputStream *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_replace (GFile *file,
|
|
|
|
const char *etag,
|
|
|
|
gboolean make_backup,
|
|
|
|
GFileCreateFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
|
|
|
|
if (g_cancellable_set_error_if_cancelled (cancellable, error))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
if (iface->replace == NULL)
|
|
|
|
{
|
|
|
|
g_set_error (error, G_IO_ERROR,
|
|
|
|
G_IO_ERROR_NOT_SUPPORTED,
|
|
|
|
_("Operation not supported"));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Handle empty tag string as NULL in consistent way. */
|
|
|
|
if (etag && *etag == 0)
|
|
|
|
etag = NULL;
|
|
|
|
|
|
|
|
return (* iface->replace) (file, etag, make_backup, flags, cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_read_async:
|
|
|
|
* @file: input #GFile.
|
2007-11-27 15:00:13 +01:00
|
|
|
* @io_priority: the io priority of the request.
|
2007-11-26 17:13:05 +01:00
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @callback: a #GAsyncReadyCallback.
|
|
|
|
* @user_data: a #gpointer.
|
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Asynchronously reads @file.
|
|
|
|
*
|
|
|
|
* For the synchronous version of this function, see g_file_read().
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_read_async (GFile *file,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_if_fail (G_IS_FILE (file));
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
(* iface->read_async) (file,
|
|
|
|
io_priority,
|
|
|
|
cancellable,
|
|
|
|
callback,
|
|
|
|
user_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_read_finish:
|
|
|
|
* @file: input #GFile.
|
2007-11-27 15:00:13 +01:00
|
|
|
* @res: a #GAsyncResult.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
|
|
|
* Finishes an asynchronous file read operation started with
|
|
|
|
* g_file_read_async().
|
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* If the #GFileIface for @file does not support streaming operations,
|
|
|
|
* then @error will be set to %G_IO_ERROR_NOT_SUPPORTED and %NULL will
|
|
|
|
* be returned.
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Returns: a #GFileInputStream or %NULL on error.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GFileInputStream *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_read_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
|
|
|
|
|
|
|
|
if (G_IS_SIMPLE_ASYNC_RESULT (res))
|
|
|
|
{
|
|
|
|
GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
|
|
|
|
if (g_simple_async_result_propagate_error (simple, error))
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
return (* iface->read_finish) (file, res, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_append_to_async:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @flags: a set of #GFileCreateFlags.
|
2007-11-29 08:17:59 +01:00
|
|
|
* @io_priority: the io priority of the request.
|
2007-11-26 17:13:05 +01:00
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @callback: a #GAsyncReadyCallback.
|
|
|
|
* @user_data: a #gpointer.
|
|
|
|
*
|
|
|
|
* Readies a file for appending data asynchronously.
|
2007-11-29 08:17:59 +01:00
|
|
|
*
|
|
|
|
* For the synchronous version of this function, see g_file_append_to().
|
2007-11-29 11:18:55 +01:00
|
|
|
* To finish this operation, see g_file_append_to_finish().
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
2007-11-29 11:18:55 +01:00
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be set when
|
|
|
|
* g_file_append_to_finish() is called, and %NULL will be returned.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_append_to_async (GFile *file,
|
|
|
|
GFileCreateFlags flags,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_if_fail (G_IS_FILE (file));
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
(* iface->append_to_async) (file,
|
|
|
|
flags,
|
|
|
|
io_priority,
|
|
|
|
cancellable,
|
|
|
|
callback,
|
|
|
|
user_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_append_to_finish:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @res: #GAsyncResult
|
2007-11-29 08:17:59 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-29 11:18:55 +01:00
|
|
|
* Finishes appending to a file. See g_file_append_to_async().
|
|
|
|
*
|
|
|
|
* If @cancellable was not %NULL when g_file_append_to_async() was called,
|
|
|
|
* then the operation could have been be cancelled by triggering the cancellable
|
|
|
|
* object from another thread. If the operation was cancelled, the error
|
|
|
|
* %G_IO_ERROR_CANCELLED will be set in @error, and %NULL will be returned.
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
|
|
|
* Returns: a valid #GFileOutputStream or %NULL on error.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GFileOutputStream *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_append_to_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
|
|
|
|
|
|
|
|
if (G_IS_SIMPLE_ASYNC_RESULT (res))
|
|
|
|
{
|
|
|
|
GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
|
|
|
|
if (g_simple_async_result_propagate_error (simple, error))
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
return (* iface->append_to_finish) (file, res, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_create_async:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @flags: a set of #GFileCreateFlags.
|
2007-11-29 08:17:59 +01:00
|
|
|
* @io_priority: the io priority of the request.
|
2007-11-26 17:13:05 +01:00
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @callback: a #GAsyncReadyCallback.
|
|
|
|
* @user_data: a #gpointer.
|
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Creates a new file asynchronously.
|
|
|
|
*
|
|
|
|
* For the synchronous version of this function, see g_file_create().
|
2007-11-29 11:18:55 +01:00
|
|
|
* To finish this operation, see g_file_create_finish().
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
2007-11-29 11:18:55 +01:00
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be set, and %NULL
|
|
|
|
* will be returned by g_file_create_finish().
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_create_async (GFile *file,
|
|
|
|
GFileCreateFlags flags,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_if_fail (G_IS_FILE (file));
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
(* iface->create_async) (file,
|
|
|
|
flags,
|
|
|
|
io_priority,
|
|
|
|
cancellable,
|
|
|
|
callback,
|
|
|
|
user_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_create_finish:
|
|
|
|
* @file: input #GFile.
|
2007-11-27 15:00:13 +01:00
|
|
|
* @res: a #GAsyncResult.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-29 11:18:55 +01:00
|
|
|
* Finishes creating a file. See g_file_create_async().
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
2007-11-29 11:18:55 +01:00
|
|
|
* If @cancellable was not %NULL when g_file_create_async() was called,
|
|
|
|
* then the operation could have been be cancelled by triggering the cancellable
|
|
|
|
* object from another thread. If the operation was cancelled, the error
|
|
|
|
* %G_IO_ERROR_CANCELLED will be set in @error, and %NULL will be returned.
|
|
|
|
*
|
|
|
|
* Returns: a #GFileOutputStream or %NULL on error.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GFileOutputStream *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_create_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
|
|
|
|
|
|
|
|
if (G_IS_SIMPLE_ASYNC_RESULT (res))
|
|
|
|
{
|
|
|
|
GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
|
|
|
|
if (g_simple_async_result_propagate_error (simple, error))
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
return (* iface->create_finish) (file, res, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_replace_async:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @etag: an Entity Tag for the current #GFile.
|
|
|
|
* @make_backup: a #gboolean.
|
|
|
|
* @flags: a set of #GFileCreateFlags.
|
2007-11-29 08:17:59 +01:00
|
|
|
* @io_priority: the io priority of the request.
|
2007-11-26 17:13:05 +01:00
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @callback: a #GAsyncReadyCallback.
|
|
|
|
* @user_data: a #gpointer.
|
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Replaces a file's contents asynchronously. If @make_backup is
|
|
|
|
* %TRUE, this function will attempt to make a backup of the current file.
|
|
|
|
*
|
|
|
|
* For the synchronous version of this function, see g_file_replace().
|
2007-11-29 11:18:55 +01:00
|
|
|
* To finish this operation, see g_file_replace_finish().
|
2007-11-29 08:17:59 +01:00
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
2007-11-29 11:18:55 +01:00
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be set, and
|
|
|
|
* %NULL will be returned in g_file_replace_finish().
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_replace_async (GFile *file,
|
|
|
|
const char *etag,
|
|
|
|
gboolean make_backup,
|
|
|
|
GFileCreateFlags flags,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_if_fail (G_IS_FILE (file));
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
(* iface->replace_async) (file,
|
|
|
|
etag,
|
|
|
|
make_backup,
|
|
|
|
flags,
|
|
|
|
io_priority,
|
|
|
|
cancellable,
|
|
|
|
callback,
|
|
|
|
user_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_replace_finish:
|
|
|
|
* @file: input #GFile.
|
2007-11-27 15:00:13 +01:00
|
|
|
* @res: a #GAsyncResult.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-29 11:18:55 +01:00
|
|
|
* Finishes replacing the contents of the file. See g_file_replace_async().
|
|
|
|
*
|
|
|
|
* If @cancellable was not %NULL when g_file_replace_async() was called,
|
|
|
|
* then the operation could have been be cancelled by triggering the cancellable
|
|
|
|
* object from another thread. If the operation was cancelled, the error
|
|
|
|
* %G_IO_ERROR_CANCELLED will be set in @error, and %NULL will be returned.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* Returns: a #GFileOutputStream, or %NULL if an error has occured.
|
|
|
|
**/
|
|
|
|
GFileOutputStream *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_replace_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
|
|
|
|
|
|
|
|
if (G_IS_SIMPLE_ASYNC_RESULT (res))
|
|
|
|
{
|
|
|
|
GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
|
|
|
|
if (g_simple_async_result_propagate_error (simple, error))
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
return (* iface->replace_finish) (file, res, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
copy_symlink (GFile *destination,
|
|
|
|
GFileCopyFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
const char *target,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GError *my_error;
|
|
|
|
gboolean tried_delete;
|
|
|
|
GFileInfo *info;
|
|
|
|
GFileType file_type;
|
|
|
|
|
|
|
|
tried_delete = FALSE;
|
|
|
|
|
|
|
|
retry:
|
|
|
|
my_error = NULL;
|
|
|
|
if (!g_file_make_symbolic_link (destination, target, cancellable, &my_error))
|
|
|
|
{
|
|
|
|
/* Maybe it already existed, and we want to overwrite? */
|
|
|
|
if (!tried_delete && (flags & G_FILE_COPY_OVERWRITE) &&
|
|
|
|
my_error->domain == G_IO_ERROR && my_error->code == G_IO_ERROR_EXISTS)
|
|
|
|
{
|
|
|
|
g_error_free (my_error);
|
|
|
|
|
|
|
|
|
|
|
|
/* Don't overwrite if the destination is a directory */
|
|
|
|
info = g_file_query_info (destination, G_FILE_ATTRIBUTE_STD_TYPE,
|
|
|
|
G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS,
|
|
|
|
cancellable, &my_error);
|
|
|
|
if (info != NULL)
|
|
|
|
{
|
|
|
|
file_type = g_file_info_get_file_type (info);
|
|
|
|
g_object_unref (info);
|
|
|
|
|
|
|
|
if (file_type == G_FILE_TYPE_DIRECTORY)
|
|
|
|
{
|
|
|
|
g_set_error (error, G_IO_ERROR, G_IO_ERROR_IS_DIRECTORY,
|
|
|
|
_("Can't copy over directory"));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!g_file_delete (destination, cancellable, error))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
tried_delete = TRUE;
|
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
/* Nah, fail */
|
|
|
|
g_propagate_error (error, my_error);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GInputStream *
|
2007-11-29 08:17:59 +01:00
|
|
|
open_source_for_copy (GFile *source,
|
|
|
|
GFile *destination,
|
|
|
|
GFileCopyFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GError *my_error;
|
|
|
|
GInputStream *in;
|
|
|
|
GFileInfo *info;
|
|
|
|
GFileType file_type;
|
|
|
|
|
|
|
|
my_error = NULL;
|
|
|
|
in = (GInputStream *)g_file_read (source, cancellable, &my_error);
|
|
|
|
if (in != NULL)
|
|
|
|
return in;
|
|
|
|
|
|
|
|
/* There was an error opening the source, try to set a good error for it: */
|
|
|
|
|
|
|
|
if (my_error->domain == G_IO_ERROR && my_error->code == G_IO_ERROR_IS_DIRECTORY)
|
|
|
|
{
|
2007-11-29 08:17:59 +01:00
|
|
|
/* The source is a directory, don't fail with WOULD_RECURSE immediately,
|
|
|
|
* as that is less useful to the app. Better check for errors on the
|
|
|
|
* target instead.
|
|
|
|
*/
|
2007-11-26 17:13:05 +01:00
|
|
|
g_error_free (my_error);
|
|
|
|
my_error = NULL;
|
|
|
|
|
|
|
|
info = g_file_query_info (destination, G_FILE_ATTRIBUTE_STD_TYPE,
|
|
|
|
G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS,
|
|
|
|
cancellable, &my_error);
|
|
|
|
if (info != NULL)
|
|
|
|
{
|
|
|
|
file_type = g_file_info_get_file_type (info);
|
|
|
|
g_object_unref (info);
|
|
|
|
|
|
|
|
if (flags & G_FILE_COPY_OVERWRITE)
|
|
|
|
{
|
|
|
|
if (file_type == G_FILE_TYPE_DIRECTORY)
|
|
|
|
{
|
|
|
|
g_set_error (error, G_IO_ERROR, G_IO_ERROR_WOULD_MERGE,
|
|
|
|
_("Can't copy directory over directory"));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
/* continue to would_recurse error */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_set_error (error, G_IO_ERROR, G_IO_ERROR_EXISTS,
|
|
|
|
_("Target file exists"));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-11-29 08:17:59 +01:00
|
|
|
/* Error getting info from target, return that error
|
|
|
|
* (except for NOT_FOUND, which is no error here)
|
|
|
|
*/
|
2007-11-26 17:13:05 +01:00
|
|
|
if (my_error->domain != G_IO_ERROR && my_error->code != G_IO_ERROR_NOT_FOUND)
|
|
|
|
{
|
|
|
|
g_propagate_error (error, my_error);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
g_error_free (my_error);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_set_error (error, G_IO_ERROR, G_IO_ERROR_WOULD_RECURSE,
|
|
|
|
_("Can't recursively copy directory"));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_propagate_error (error, my_error);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
should_copy (GFileAttributeInfo *info,
|
|
|
|
gboolean as_move)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
if (as_move)
|
|
|
|
return info->flags & G_FILE_ATTRIBUTE_FLAGS_COPY_WHEN_MOVED;
|
|
|
|
return info->flags & G_FILE_ATTRIBUTE_FLAGS_COPY_WITH_FILE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
build_attribute_list_for_copy (GFileAttributeInfoList *attributes,
|
|
|
|
GFileAttributeInfoList *namespaces,
|
2007-11-29 08:17:59 +01:00
|
|
|
gboolean as_move)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GString *s;
|
|
|
|
gboolean first;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
first = TRUE;
|
|
|
|
s = g_string_new ("");
|
|
|
|
|
|
|
|
if (attributes)
|
|
|
|
{
|
|
|
|
for (i = 0; i < attributes->n_infos; i++)
|
|
|
|
{
|
|
|
|
if (should_copy (&attributes->infos[i], as_move))
|
|
|
|
{
|
|
|
|
if (first)
|
|
|
|
first = FALSE;
|
|
|
|
else
|
|
|
|
g_string_append_c (s, ',');
|
|
|
|
|
|
|
|
g_string_append (s, attributes->infos[i].name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (namespaces)
|
|
|
|
{
|
|
|
|
for (i = 0; i < namespaces->n_infos; i++)
|
|
|
|
{
|
|
|
|
if (should_copy (&namespaces->infos[i], as_move))
|
|
|
|
{
|
|
|
|
if (first)
|
|
|
|
first = FALSE;
|
|
|
|
else
|
|
|
|
g_string_append_c (s, ',');
|
|
|
|
|
|
|
|
g_string_append (s, namespaces->infos[i].name);
|
|
|
|
g_string_append (s, ":*");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return g_string_free (s, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_copy_attributes (GFile *source,
|
|
|
|
GFile *destination,
|
|
|
|
GFileCopyFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileAttributeInfoList *attributes, *namespaces;
|
|
|
|
char *attrs_to_read;
|
|
|
|
gboolean res;
|
|
|
|
GFileInfo *info;
|
|
|
|
gboolean as_move;
|
|
|
|
gboolean source_nofollow_symlinks;
|
|
|
|
|
|
|
|
as_move = flags & G_FILE_COPY_ALL_METADATA;
|
|
|
|
source_nofollow_symlinks = flags & G_FILE_COPY_NOFOLLOW_SYMLINKS;
|
|
|
|
|
|
|
|
/* Ignore errors here, if the target supports no attributes there is nothing to copy */
|
|
|
|
attributes = g_file_query_settable_attributes (destination, cancellable, NULL);
|
|
|
|
namespaces = g_file_query_writable_namespaces (destination, cancellable, NULL);
|
|
|
|
|
|
|
|
if (attributes == NULL && namespaces == NULL)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
attrs_to_read = build_attribute_list_for_copy (attributes, namespaces, as_move);
|
|
|
|
|
|
|
|
/* Ignore errors here, if we can't read some info (e.g. if it doesn't exist)
|
2007-11-29 08:17:59 +01:00
|
|
|
* we just don't copy it.
|
|
|
|
*/
|
2007-11-26 17:13:05 +01:00
|
|
|
info = g_file_query_info (source, attrs_to_read,
|
|
|
|
source_nofollow_symlinks ? G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS:0,
|
|
|
|
cancellable,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
g_free (attrs_to_read);
|
|
|
|
|
|
|
|
res = TRUE;
|
|
|
|
if (info)
|
|
|
|
{
|
|
|
|
res = g_file_set_attributes_from_info (destination,
|
|
|
|
info, 0,
|
|
|
|
cancellable,
|
|
|
|
error);
|
|
|
|
g_object_unref (info);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_file_attribute_info_list_unref (attributes);
|
|
|
|
g_file_attribute_info_list_unref (namespaces);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Closes the streams */
|
|
|
|
static gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
copy_stream_with_progress (GInputStream *in,
|
|
|
|
GOutputStream *out,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GFileProgressCallback progress_callback,
|
|
|
|
gpointer progress_callback_data,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
gssize n_read, n_written;
|
|
|
|
goffset current_size;
|
|
|
|
char buffer[8192], *p;
|
|
|
|
gboolean res;
|
|
|
|
goffset total_size;
|
|
|
|
GFileInfo *info;
|
|
|
|
|
|
|
|
total_size = 0;
|
|
|
|
info = g_file_input_stream_query_info (G_FILE_INPUT_STREAM (in),
|
|
|
|
G_FILE_ATTRIBUTE_STD_SIZE,
|
|
|
|
cancellable, NULL);
|
|
|
|
if (info)
|
|
|
|
{
|
|
|
|
total_size = g_file_info_get_size (info);
|
|
|
|
g_object_unref (info);
|
|
|
|
}
|
|
|
|
|
|
|
|
current_size = 0;
|
|
|
|
res = TRUE;
|
|
|
|
while (TRUE)
|
|
|
|
{
|
|
|
|
n_read = g_input_stream_read (in, buffer, sizeof (buffer), cancellable, error);
|
|
|
|
if (n_read == -1)
|
|
|
|
{
|
|
|
|
res = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n_read == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
current_size += n_read;
|
|
|
|
|
|
|
|
p = buffer;
|
|
|
|
while (n_read > 0)
|
|
|
|
{
|
|
|
|
n_written = g_output_stream_write (out, p, n_read, cancellable, error);
|
|
|
|
if (n_written == -1)
|
|
|
|
{
|
|
|
|
res = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
p += n_written;
|
|
|
|
n_read -= n_written;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!res)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (progress_callback)
|
|
|
|
progress_callback (current_size, total_size, progress_callback_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!res)
|
|
|
|
error = NULL; /* Ignore further errors */
|
|
|
|
|
|
|
|
/* Make sure we send full copied size */
|
|
|
|
if (progress_callback)
|
|
|
|
progress_callback (current_size, total_size, progress_callback_data);
|
|
|
|
|
|
|
|
|
|
|
|
/* Don't care about errors in source here */
|
|
|
|
g_input_stream_close (in, cancellable, NULL);
|
|
|
|
|
|
|
|
/* But write errors on close are bad! */
|
|
|
|
if (!g_output_stream_close (out, cancellable, error))
|
|
|
|
res = FALSE;
|
|
|
|
|
|
|
|
g_object_unref (in);
|
|
|
|
g_object_unref (out);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
file_copy_fallback (GFile *source,
|
|
|
|
GFile *destination,
|
|
|
|
GFileCopyFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GFileProgressCallback progress_callback,
|
|
|
|
gpointer progress_callback_data,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
GInputStream *in;
|
|
|
|
GOutputStream *out;
|
|
|
|
GFileInfo *info;
|
|
|
|
const char *target;
|
|
|
|
|
|
|
|
/* Maybe copy the symlink? */
|
|
|
|
if (flags & G_FILE_COPY_NOFOLLOW_SYMLINKS)
|
|
|
|
{
|
|
|
|
info = g_file_query_info (source,
|
|
|
|
G_FILE_ATTRIBUTE_STD_TYPE "," G_FILE_ATTRIBUTE_STD_SYMLINK_TARGET,
|
|
|
|
G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS,
|
|
|
|
cancellable,
|
|
|
|
error);
|
|
|
|
if (info == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (g_file_info_get_file_type (info) == G_FILE_TYPE_SYMBOLIC_LINK &&
|
|
|
|
(target = g_file_info_get_symlink_target (info)) != NULL)
|
|
|
|
{
|
|
|
|
if (!copy_symlink (destination, flags, cancellable, target, error))
|
|
|
|
{
|
|
|
|
g_object_unref (info);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_object_unref (info);
|
|
|
|
goto copied_file;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_object_unref (info);
|
|
|
|
}
|
|
|
|
|
|
|
|
in = open_source_for_copy (source, destination, flags, cancellable, error);
|
|
|
|
if (in == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (flags & G_FILE_COPY_OVERWRITE)
|
|
|
|
{
|
|
|
|
out = (GOutputStream *)g_file_replace (destination,
|
|
|
|
NULL, 0,
|
|
|
|
flags & G_FILE_COPY_BACKUP,
|
|
|
|
cancellable, error);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
out = (GOutputStream *)g_file_create (destination, 0, cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (out == NULL)
|
|
|
|
{
|
|
|
|
g_object_unref (in);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!copy_stream_with_progress (in, out, cancellable,
|
|
|
|
progress_callback, progress_callback_data,
|
|
|
|
error))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
copied_file:
|
|
|
|
|
|
|
|
/* Ignore errors here. Failure to copy metadata is not a hard error */
|
|
|
|
g_file_copy_attributes (source, destination,
|
|
|
|
flags, cancellable, NULL);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_copy:
|
|
|
|
* @source: input #GFile.
|
|
|
|
* @destination: destination #GFile
|
|
|
|
* @flags: set of #GFileCopyFlags
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @progress_callback: function to callback with progress information
|
|
|
|
* @progress_callback_data: userdata to pass to @progress_callback
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: #GError to set on error, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* <!-- Source Friendly Version
|
2007-11-26 17:13:05 +01:00
|
|
|
* List of possible errors resulting from g_file_copy():
|
|
|
|
* source dest flags res
|
|
|
|
* - * * G_IO_ERROR_NOT_FOUND
|
|
|
|
* file - * ok
|
|
|
|
* file * 0 G_IO_ERROR_EXISTS
|
|
|
|
* file file overwr ok
|
|
|
|
* file dir overwr G_IO_ERROR_IS_DIRECTORY
|
|
|
|
*
|
|
|
|
* dir - * G_IO_ERROR_WOULD_RECURSE
|
|
|
|
* dir * 0 G_IO_ERROR_EXISTS
|
|
|
|
* dir dir overwr G_IO_ERROR_WOULD_MERGE
|
|
|
|
* dir file overwr G_IO_ERROR_WOULD_RECURSE
|
2007-11-27 15:00:13 +01:00
|
|
|
* Docbook version below -->
|
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Copies a file or directory from @source to @destination, with the given
|
|
|
|
* @flags. This operation may fail, and @error will be set appropriately with
|
|
|
|
* the given error result (see the following table).
|
2007-11-27 15:00:13 +01:00
|
|
|
* File copies are always asynchronous.
|
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
|
|
|
* If @progress_callback is not %NULL, then the operation can be monitored by
|
|
|
|
* setting this to a #GFileProgressCallback function. @progress_callback_data
|
|
|
|
* will be passed to this function.
|
|
|
|
*
|
|
|
|
* <table>
|
|
|
|
* <title>g_file_copy() Error Conditions</title>
|
|
|
|
* <tgroup cols='4' align='left'><thead>
|
|
|
|
* <row><entry>Source</entry><entry>Destination</entry><entry>Flags</entry><entry>Results in</entry></row>
|
|
|
|
* </thead><tbody>
|
|
|
|
* <row><entry>%NULL</entry><entry>Anything</entry><entry>Anything</entry><entry>%G_IO_ERROR_NOT_FOUND</entry></row>
|
|
|
|
* <row><entry>File</entry><entry>%NULL</entry><entry>Anything</entry><entry>No Error</entry></row>
|
|
|
|
* <row><entry>File</entry><entry>Anything</entry><entry>0</entry><entry>%G_IO_ERROR_EXISTS</entry></row>
|
|
|
|
* <row><entry>File</entry><entry>File</entry><entry>%G_FILE_COPY_OVERWRITE</entry><entry>No Error</entry></row>
|
|
|
|
* <row><entry>File</entry><entry>Directory</entry><entry>%G_FILE_COPY_OVERWRITE</entry><entry>%G_IO_ERROR_IS_DIRECTORY</entry></row>
|
|
|
|
* <row><entry>Directory</entry><entry>%NULL</entry><entry>Anything</entry><entry>%G_IO_ERROR_WOULD_RECURSE</entry></row>
|
|
|
|
* <row><entry>Directory</entry><entry>Anything</entry><entry>0</entry><entry>%G_IO_ERROR_EXISTS</entry></row>
|
|
|
|
* <row><entry>Directory</entry><entry>Directory</entry><entry>%G_FILE_COPY_OVERWRITE</entry><entry>%G_IO_ERROR_IS_DIRECTORY</entry></row>
|
|
|
|
* <row><entry>Directory</entry><entry>File</entry><entry>%G_FILE_COPY_OVERWRITE</entry><entry>%G_IO_ERROR_WOULD_RECURSE</entry></row>
|
|
|
|
* </tbody>
|
|
|
|
* </tgroup>
|
|
|
|
* </table>
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* Returns: %TRUE on success, %FALSE otherwise.
|
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
g_file_copy (GFile *source,
|
|
|
|
GFile *destination,
|
|
|
|
GFileCopyFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GFileProgressCallback progress_callback,
|
|
|
|
gpointer progress_callback_data,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
GError *my_error;
|
|
|
|
gboolean res;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (source), FALSE);
|
|
|
|
g_return_val_if_fail (G_IS_FILE (destination), FALSE);
|
|
|
|
|
|
|
|
if (g_cancellable_set_error_if_cancelled (cancellable, error))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (G_OBJECT_TYPE (source) == G_OBJECT_TYPE (destination))
|
|
|
|
{
|
|
|
|
iface = G_FILE_GET_IFACE (source);
|
|
|
|
|
|
|
|
if (iface->copy)
|
|
|
|
{
|
|
|
|
my_error = NULL;
|
|
|
|
res = (* iface->copy) (source, destination, flags, cancellable, progress_callback, progress_callback_data, &my_error);
|
|
|
|
|
|
|
|
if (res)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
if (my_error->domain != G_IO_ERROR || my_error->code != G_IO_ERROR_NOT_SUPPORTED)
|
|
|
|
{
|
|
|
|
g_propagate_error (error, my_error);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return file_copy_fallback (source, destination, flags, cancellable,
|
|
|
|
progress_callback, progress_callback_data,
|
|
|
|
error);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_move:
|
2007-11-27 15:00:13 +01:00
|
|
|
* @source: #GFile pointing to the source location.
|
|
|
|
* @destination: #GFile pointing to the destination location.
|
2007-11-29 08:17:59 +01:00
|
|
|
* @flags: set of #GFileCopyFlags.
|
2007-11-26 17:13:05 +01:00
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
2007-11-29 08:17:59 +01:00
|
|
|
* @progress_callback: #GFileProgressCallback function for updates.
|
2007-11-26 17:13:05 +01:00
|
|
|
* @progress_callback_data: gpointer to user data for the callback function.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: #GError for returning error conditions, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* <!-- Source version
|
2007-11-26 17:13:05 +01:00
|
|
|
* source dest flags results in
|
|
|
|
* - * * G_IO_ERROR_NOT_FOUND
|
|
|
|
* file - * ok
|
|
|
|
* file * 0 G_IO_ERROR_EXISTS
|
|
|
|
* file file overwr ok
|
|
|
|
* file dir overwr G_IO_ERROR_IS_DIRECTORY
|
|
|
|
*
|
|
|
|
* dir - * ok || G_IO_ERROR_WOULD_RECURSE
|
|
|
|
* dir * 0 G_IO_ERROR_EXISTS
|
|
|
|
* dir dir overwr G_IO_ERROR_WOULD_MERGE
|
|
|
|
* dir file overwr ok || G_IO_ERROR_WOULD_RECURSE
|
2007-11-29 08:17:59 +01:00
|
|
|
* Docbook version below -->
|
|
|
|
*
|
|
|
|
* Moves a file or directory from @source to @destination, with the given
|
|
|
|
* @flags. This operation may fail, and @error will be set appropriately with
|
|
|
|
* the given error result (see the following table).
|
|
|
|
* File moves are always asynchronous.
|
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
|
|
|
* If @progress_callback is not %NULL, then the operation can be monitored by
|
|
|
|
* setting this to a #GFileProgressCallback function. @progress_callback_data
|
|
|
|
* will be passed to this function.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* <table>
|
|
|
|
* <title>g_file_move() Error Conditions</title>
|
|
|
|
* <tgroup cols='4' align='left'><thead>
|
|
|
|
* <row><entry>Source</entry><entry>Destination</entry>
|
|
|
|
* <entry>Flags</entry><entry>Results in</entry></row>
|
|
|
|
* </thead><tbody>
|
|
|
|
* <row><entry> %NULL </entry><entry> Anything </entry>
|
|
|
|
* <entry> Anything </entry><entry> %G_IO_ERROR_NOT_FOUND </entry></row>
|
|
|
|
* <row><entry> File </entry><entry> %NULL </entry>
|
|
|
|
* <entry> Anything </entry><entry> No Error </entry></row>
|
|
|
|
* <row><entry> File </entry><entry> Anything </entry>
|
|
|
|
* <entry> 0 </entry><entry> %G_IO_ERROR_EXISTS </entry></row>
|
|
|
|
* <row><entry> File </entry><entry> File </entry>
|
|
|
|
* <entry> %G_FILE_COPY_OVERWRITE </entry><entry> No Error </entry></row>
|
|
|
|
* <row><entry> File </entry><entry> Directory </entry>
|
|
|
|
* <entry> %G_FILE_COPY_OVERWRITE </entry><entry> %G_IO_ERROR_IS_DIRECTORY </entry></row>
|
|
|
|
* <row><entry> Directory </entry><entry> %NULL </entry>
|
|
|
|
* <entry> Anything </entry><entry> No Error or %G_IO_ERROR_WOULD_RECURSE </entry></row>
|
|
|
|
* <row><entry> Directory </entry><entry> Anything </entry>
|
|
|
|
* <entry> 0 </entry><entry> %G_IO_ERROR_EXISTS </entry></row>
|
|
|
|
* <row><entry> Directory </entry><entry> Directory </entry>
|
|
|
|
* <entry> %G_FILE_COPY_OVERWRITE </entry><entry> %G_IO_ERROR_IS_DIRECTORY </entry></row>
|
|
|
|
* <row><entry> Directory </entry><entry> File </entry>
|
|
|
|
* <entry> %G_FILE_COPY_OVERWRITE </entry><entry> No Error or %G_IO_ERROR_WOULD_RECURSE </entry></row>
|
|
|
|
* </tbody>
|
|
|
|
* </tgroup>
|
|
|
|
* </table>
|
2007-11-28 07:43:33 +01:00
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: %TRUE on successful move, %FALSE otherwise.
|
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
g_file_move (GFile *source,
|
|
|
|
GFile *destination,
|
|
|
|
GFileCopyFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GFileProgressCallback progress_callback,
|
|
|
|
gpointer progress_callback_data,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
GError *my_error;
|
|
|
|
gboolean res;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (source), FALSE);
|
|
|
|
g_return_val_if_fail (G_IS_FILE (destination), FALSE);
|
|
|
|
|
|
|
|
if (g_cancellable_set_error_if_cancelled (cancellable, error))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (G_OBJECT_TYPE (source) == G_OBJECT_TYPE (destination))
|
|
|
|
{
|
|
|
|
iface = G_FILE_GET_IFACE (source);
|
|
|
|
|
|
|
|
if (iface->move)
|
|
|
|
{
|
|
|
|
my_error = NULL;
|
|
|
|
res = (* iface->move) (source, destination, flags, cancellable, progress_callback, progress_callback_data, &my_error);
|
|
|
|
|
|
|
|
if (res)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
if (my_error->domain != G_IO_ERROR || my_error->code != G_IO_ERROR_NOT_SUPPORTED)
|
|
|
|
{
|
|
|
|
g_propagate_error (error, my_error);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
flags |= G_FILE_COPY_ALL_METADATA;
|
|
|
|
if (!g_file_copy (source, destination, flags, cancellable,
|
|
|
|
progress_callback, progress_callback_data,
|
|
|
|
error))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return g_file_delete (source, cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_make_directory
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-29 08:17:59 +01:00
|
|
|
*
|
|
|
|
* Creates a directory.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: %TRUE on successful creation, %FALSE otherwise.
|
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_make_directory (GFile *file,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), FALSE);
|
|
|
|
|
|
|
|
if (g_cancellable_set_error_if_cancelled (cancellable, error))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
if (iface->make_directory == NULL)
|
|
|
|
{
|
|
|
|
g_set_error (error, G_IO_ERROR,
|
|
|
|
G_IO_ERROR_NOT_SUPPORTED,
|
|
|
|
_("Operation not supported"));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (* iface->make_directory) (file, cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_make_symbolic_link:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @symlink_value: a string with the name of the new symlink.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @error: a #GError.
|
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Creates a symbolic link.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: %TRUE on the creation of a new symlink, %FALSE otherwise.
|
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_make_symbolic_link (GFile *file,
|
|
|
|
const char *symlink_value,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), FALSE);
|
|
|
|
g_return_val_if_fail (symlink_value != NULL, FALSE);
|
|
|
|
|
|
|
|
if (g_cancellable_set_error_if_cancelled (cancellable, error))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (*symlink_value == '\0')
|
|
|
|
{
|
|
|
|
g_set_error (error, G_IO_ERROR,
|
|
|
|
G_IO_ERROR_INVALID_ARGUMENT,
|
|
|
|
_("Invalid symlink value given"));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
if (iface->make_symbolic_link == NULL)
|
|
|
|
{
|
|
|
|
g_set_error (error, G_IO_ERROR,
|
|
|
|
G_IO_ERROR_NOT_SUPPORTED,
|
|
|
|
_("Operation not supported"));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (* iface->make_symbolic_link) (file, symlink_value, cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_delete:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Deletes a file.
|
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: %TRUE if the file was deleted. %FALSE otherwise.
|
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_delete (GFile *file,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), FALSE);
|
|
|
|
|
|
|
|
if (g_cancellable_set_error_if_cancelled (cancellable, error))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
if (iface->delete_file == NULL)
|
|
|
|
{
|
|
|
|
g_set_error (error, G_IO_ERROR,
|
|
|
|
G_IO_ERROR_NOT_SUPPORTED,
|
|
|
|
_("Operation not supported"));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (* iface->delete_file) (file, cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_trash:
|
2007-11-27 15:00:13 +01:00
|
|
|
* @file: #GFile to send to trash.
|
2007-11-26 17:13:05 +01:00
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Sends @file to the virtual file system "Trash" location. If the
|
|
|
|
* virtual file system does not have support having a "Trash" location,
|
2007-11-29 08:17:59 +01:00
|
|
|
* %FALSE will be returned, and @error will be set to
|
|
|
|
* %G_IO_ERROR_NOT_SUPPORTED.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: %TRUE on successful trash, %FALSE otherwise.
|
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_trash (GFile *file,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), FALSE);
|
|
|
|
|
|
|
|
if (g_cancellable_set_error_if_cancelled (cancellable, error))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
if (iface->trash == NULL)
|
|
|
|
{
|
|
|
|
g_set_error (error,
|
|
|
|
G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
|
|
|
|
_("Trash not supported"));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (* iface->trash) (file, cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_set_display_name:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @display_name: a string.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Sets the display name for @file. If the display name contains invalid
|
|
|
|
* characters, @error will be set to %G_IO_ERROR_INVALID_ARGUMENT. For the
|
|
|
|
* asynchronous version of this function, see g_file_set_display_name_async().
|
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: a #GFile, or %NULL if there was an error.
|
|
|
|
**/
|
|
|
|
GFile *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_set_display_name (GFile *file,
|
|
|
|
const char *display_name,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
g_return_val_if_fail (display_name != NULL, NULL);
|
|
|
|
|
|
|
|
if (strchr (display_name, '/') != NULL)
|
|
|
|
{
|
|
|
|
g_set_error (error,
|
|
|
|
G_IO_ERROR,
|
|
|
|
G_IO_ERROR_INVALID_ARGUMENT,
|
|
|
|
_("File names cannot contain '/'"));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (g_cancellable_set_error_if_cancelled (cancellable, error))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
return (* iface->set_display_name) (file, display_name, cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_set_display_name_async:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @display_name: a string.
|
2007-11-29 08:17:59 +01:00
|
|
|
* @io_priority: the io priority of the request.
|
2007-11-26 17:13:05 +01:00
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @callback: a #GAsyncReadyCallback.
|
|
|
|
* @user_data: a #gpointer.
|
|
|
|
*
|
|
|
|
* Asynchronously sets the display name for a given #GFile.
|
2007-11-29 08:17:59 +01:00
|
|
|
* For the synchronous version of this function, see g_file_set_display_name().
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
2007-11-27 15:00:13 +01:00
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_set_display_name_async (GFile *file,
|
|
|
|
const char *display_name,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_if_fail (G_IS_FILE (file));
|
|
|
|
g_return_if_fail (display_name != NULL);
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
(* iface->set_display_name_async) (file,
|
|
|
|
display_name,
|
|
|
|
io_priority,
|
|
|
|
cancellable,
|
|
|
|
callback,
|
|
|
|
user_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_set_display_name_finish:
|
|
|
|
* @file: input #GFile.
|
2007-11-27 15:00:13 +01:00
|
|
|
* @res: a #GAsyncResult.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Finishes setting a display name started with
|
|
|
|
* g_file_set_display_name_async().
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: a #GFile or %NULL on error.
|
|
|
|
**/
|
|
|
|
GFile *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_set_display_name_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
|
|
|
|
|
|
|
|
if (G_IS_SIMPLE_ASYNC_RESULT (res))
|
|
|
|
{
|
|
|
|
GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
|
|
|
|
if (g_simple_async_result_propagate_error (simple, error))
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
return (* iface->set_display_name_finish) (file, res, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_query_settable_attributes:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Obtain the list of settable attributes for the file.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Returns: the type and full attribute name of all the attributes
|
|
|
|
* that the file can set. This doesn't mean setting it will always
|
|
|
|
* succeed though, you might get an access failure, or some specific
|
|
|
|
* file may not support a specific attribute.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GFileAttributeInfoList *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_query_settable_attributes (GFile *file,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
GError *my_error;
|
|
|
|
GFileAttributeInfoList *list;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
|
|
|
|
if (g_cancellable_set_error_if_cancelled (cancellable, error))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
if (iface->query_settable_attributes == NULL)
|
|
|
|
return g_file_attribute_info_list_new ();
|
|
|
|
|
|
|
|
my_error = NULL;
|
|
|
|
list = (* iface->query_settable_attributes) (file, cancellable, &my_error);
|
|
|
|
|
|
|
|
if (list == NULL)
|
|
|
|
{
|
|
|
|
if (my_error->domain == G_IO_ERROR && my_error->code == G_IO_ERROR_NOT_SUPPORTED)
|
|
|
|
{
|
|
|
|
list = g_file_attribute_info_list_new ();
|
|
|
|
g_error_free (my_error);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
g_propagate_error (error, my_error);
|
|
|
|
}
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_query_writable_namespaces:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Obtain the list of attribute namespaces where new attributes
|
|
|
|
* can be created.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: a #GFileAttributeInfoList of attribute namespaces
|
2007-11-28 07:43:33 +01:00
|
|
|
* where the user can create their own attribute names, such
|
|
|
|
* as extended attributes.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GFileAttributeInfoList *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_query_writable_namespaces (GFile *file,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
GError *my_error;
|
|
|
|
GFileAttributeInfoList *list;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
|
|
|
|
if (g_cancellable_set_error_if_cancelled (cancellable, error))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
if (iface->query_writable_namespaces == NULL)
|
|
|
|
return g_file_attribute_info_list_new ();
|
|
|
|
|
|
|
|
my_error = NULL;
|
|
|
|
list = (* iface->query_writable_namespaces) (file, cancellable, &my_error);
|
|
|
|
|
|
|
|
if (list == NULL)
|
|
|
|
{
|
|
|
|
if (my_error->domain == G_IO_ERROR && my_error->code == G_IO_ERROR_NOT_SUPPORTED)
|
|
|
|
{
|
|
|
|
list = g_file_attribute_info_list_new ();
|
|
|
|
g_error_free (my_error);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
g_propagate_error (error, my_error);
|
|
|
|
}
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_set_attribute:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @attribute: a string containing the attribute's name.
|
2007-11-27 15:00:13 +01:00
|
|
|
* @value: a set of #GFileAttributeValue.
|
|
|
|
* @flags: a set of #GFileQueryInfoFlags.
|
2007-11-26 17:13:05 +01:00
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Sets an attribute in the file with attribute name @attribute to @value.
|
|
|
|
* If setting attributes is not suppored by the #GFileIface for @file,
|
|
|
|
* then @error will be set to %G_IO_ERROR_NOT_SUPPORTED.
|
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if the attribute was set, %FALSE otherwise.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_set_attribute (GFile *file,
|
|
|
|
const char *attribute,
|
|
|
|
const GFileAttributeValue *value,
|
|
|
|
GFileQueryInfoFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), FALSE);
|
|
|
|
g_return_val_if_fail (attribute != NULL && *attribute != '\0', FALSE);
|
|
|
|
|
|
|
|
if (g_cancellable_set_error_if_cancelled (cancellable, error))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
if (iface->set_attribute == NULL)
|
|
|
|
{
|
|
|
|
g_set_error (error, G_IO_ERROR,
|
|
|
|
G_IO_ERROR_NOT_SUPPORTED,
|
|
|
|
_("Operation not supported"));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (* iface->set_attribute) (file, attribute, value, flags, cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_set_attributes_from_info:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @info: a #GFileInfo.
|
|
|
|
* @flags: #GFileQueryInfoFlags
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-28 07:43:33 +01:00
|
|
|
* Tries to set all attributes in the #GFileInfo on the target values,
|
|
|
|
* not stopping on the first error.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: %TRUE if there was any error, and @error will be set to
|
2007-11-28 07:43:33 +01:00
|
|
|
* the first error. Error on particular fields are flagged by setting
|
|
|
|
* the "status" field in the attribute value to
|
|
|
|
* %G_FILE_ATTRIBUTE_STATUS_ERROR_SETTING.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_set_attributes_from_info (GFile *file,
|
|
|
|
GFileInfo *info,
|
|
|
|
GFileQueryInfoFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), FALSE);
|
|
|
|
g_return_val_if_fail (G_IS_FILE_INFO (info), FALSE);
|
|
|
|
|
|
|
|
if (g_cancellable_set_error_if_cancelled (cancellable, error))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
g_file_info_clear_status (info);
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
2007-11-29 08:17:59 +01:00
|
|
|
return (* iface->set_attributes_from_info) (file,
|
|
|
|
info,
|
|
|
|
flags,
|
|
|
|
cancellable,
|
|
|
|
error);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_real_set_attributes_from_info (GFile *file,
|
|
|
|
GFileInfo *info,
|
|
|
|
GFileQueryInfoFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
char **attributes;
|
|
|
|
int i;
|
|
|
|
gboolean res;
|
|
|
|
GFileAttributeValue *value;
|
|
|
|
|
|
|
|
res = TRUE;
|
|
|
|
|
|
|
|
attributes = g_file_info_list_attributes (info, NULL);
|
|
|
|
|
|
|
|
for (i = 0; attributes[i] != NULL; i++)
|
|
|
|
{
|
|
|
|
value = (GFileAttributeValue *)g_file_info_get_attribute (info, attributes[i]);
|
|
|
|
|
|
|
|
if (value->status != G_FILE_ATTRIBUTE_STATUS_UNSET)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!g_file_set_attribute (file, attributes[i], value, flags, cancellable, error))
|
|
|
|
{
|
|
|
|
value->status = G_FILE_ATTRIBUTE_STATUS_ERROR_SETTING;
|
|
|
|
res = FALSE;
|
|
|
|
/* Don't set error multiple times */
|
|
|
|
error = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
value->status = G_FILE_ATTRIBUTE_STATUS_SET;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_strfreev (attributes);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_set_attributes_async:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @info: a #GFileInfo.
|
|
|
|
* @flags: a #GFileQueryInfoFlags.
|
2007-11-29 08:17:59 +01:00
|
|
|
* @io_priority: the io priority of the request.
|
2007-11-26 17:13:05 +01:00
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @callback: a #GAsyncReadyCallback.
|
|
|
|
* @user_data: a #gpointer.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Asynchronously sets the attributes of @file with @info.
|
2007-11-26 17:13:05 +01:00
|
|
|
* For the synchronous version of this function, see g_file_set_attributes().
|
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
2007-11-27 15:00:13 +01:00
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_set_attributes_async (GFile *file,
|
|
|
|
GFileInfo *info,
|
|
|
|
GFileQueryInfoFlags flags,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_if_fail (G_IS_FILE (file));
|
|
|
|
g_return_if_fail (G_IS_FILE_INFO (info));
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
2007-11-29 08:17:59 +01:00
|
|
|
(* iface->set_attributes_async) (file,
|
|
|
|
info,
|
|
|
|
flags,
|
|
|
|
io_priority,
|
|
|
|
cancellable,
|
|
|
|
callback,
|
|
|
|
user_data);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_set_attributes_finish:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @result: a #GAsyncResult.
|
|
|
|
* @info: a #GFileInfo.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Finishes setting an attribute started in g_file_set_attributes_async().
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: %TRUE if the attributes were set correctly, %FALSE otherwise.
|
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_set_attributes_finish (GFile *file,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GFileInfo **info,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), FALSE);
|
|
|
|
g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
|
|
|
|
|
|
|
|
/* No standard handling of errors here, as we must set info even
|
2007-11-29 08:17:59 +01:00
|
|
|
* on errors
|
|
|
|
*/
|
2007-11-26 17:13:05 +01:00
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
return (* iface->set_attributes_finish) (file, result, info, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_set_attribute_string:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @attribute: a string containing the attribute's name.
|
|
|
|
* @value: a string containing the attribute's value.
|
|
|
|
* @flags: #GFileQueryInfoFlags.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Sets @attribute of type %G_FILE_ATTRIBUTE_TYPE_STRING to @value.
|
|
|
|
* If @attribute is of a different type, this operation will fail.
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if the @attribute was successfully set, %FALSE otherwise.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_set_attribute_string (GFile *file,
|
|
|
|
const char *attribute,
|
|
|
|
const char *value,
|
|
|
|
GFileQueryInfoFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileAttributeValue v;
|
|
|
|
|
|
|
|
v.type = G_FILE_ATTRIBUTE_TYPE_STRING;
|
|
|
|
v.u.string = (char *)value;
|
|
|
|
return g_file_set_attribute (file, attribute, &v, flags, cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2007-11-27 15:00:13 +01:00
|
|
|
* g_file_set_attribute_byte_string:
|
2007-11-26 17:13:05 +01:00
|
|
|
* @file: input #GFile.
|
|
|
|
* @attribute: a string containing the attribute's name.
|
|
|
|
* @value: a string containing the attribute's new value.
|
|
|
|
* @flags: a #GFileQueryInfoFlags.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Sets @attribute of type %G_FILE_ATTRIBUTE_TYPE_BYTE_STRING to @value.
|
|
|
|
* If @attribute is of a different type, this operation will fail,
|
|
|
|
* returning %FALSE.
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: %TRUE if the @attribute was successfully set to @value
|
|
|
|
* in the @file, %FALSE otherwise.
|
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_set_attribute_byte_string (GFile *file,
|
|
|
|
const char *attribute,
|
|
|
|
const char *value,
|
|
|
|
GFileQueryInfoFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileAttributeValue v;
|
|
|
|
|
|
|
|
v.type = G_FILE_ATTRIBUTE_TYPE_BYTE_STRING;
|
|
|
|
v.u.string = (char *)value;
|
|
|
|
return g_file_set_attribute (file, attribute, &v, flags, cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_set_attribute_uint32:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @attribute: a string containing the attribute's name.
|
|
|
|
* @value: a #guint32 containing the attribute's new value.
|
|
|
|
* @flags: a #GFileQueryInfoFlags.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Sets @attribute of type %G_FILE_ATTRIBUTE_TYPE_UINT32 to @value.
|
|
|
|
* If @attribute is of a different type, this operation will fail.
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: %TRUE if the @attribute was successfully set to @value
|
|
|
|
* in the @file, %FALSE otherwise.
|
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_set_attribute_uint32 (GFile *file,
|
|
|
|
const char *attribute,
|
|
|
|
guint32 value,
|
|
|
|
GFileQueryInfoFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileAttributeValue v;
|
|
|
|
|
|
|
|
v.type = G_FILE_ATTRIBUTE_TYPE_UINT32;
|
|
|
|
v.u.uint32 = value;
|
|
|
|
return g_file_set_attribute (file, attribute, &v, flags, cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_set_attribute_int32:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @attribute: a string containing the attribute's name.
|
|
|
|
* @value: a #gint32 containing the attribute's new value.
|
|
|
|
* @flags: a #GFileQueryInfoFlags.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Sets @attribute of type %G_FILE_ATTRIBUTE_TYPE_INT32 to @value.
|
|
|
|
* If @attribute is of a different type, this operation will fail.
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: %TRUE if the @attribute was successfully set to @value
|
|
|
|
* in the @file, %FALSE otherwise.
|
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_set_attribute_int32 (GFile *file,
|
|
|
|
const char *attribute,
|
|
|
|
gint32 value,
|
|
|
|
GFileQueryInfoFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileAttributeValue v;
|
|
|
|
|
|
|
|
v.type = G_FILE_ATTRIBUTE_TYPE_INT32;
|
|
|
|
v.u.int32 = value;
|
|
|
|
return g_file_set_attribute (file, attribute, &v, flags, cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_set_attribute_uint64:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @attribute: a string containing the attribute's name.
|
|
|
|
* @value: a #guint64 containing the attribute's new value.
|
|
|
|
* @flags: a #GFileQueryInfoFlags.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Sets @attribute of type %G_FILE_ATTRIBUTE_TYPE_UINT64 to @value.
|
|
|
|
* If @attribute is of a different type, this operation will fail.
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: %TRUE if the @attribute was successfully set to @value
|
|
|
|
* in the @file, %FALSE otherwise.
|
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_set_attribute_uint64 (GFile *file,
|
|
|
|
const char *attribute,
|
|
|
|
guint64 value,
|
|
|
|
GFileQueryInfoFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileAttributeValue v;
|
|
|
|
|
|
|
|
v.type = G_FILE_ATTRIBUTE_TYPE_UINT64;
|
|
|
|
v.u.uint64 = value;
|
|
|
|
return g_file_set_attribute (file, attribute, &v, flags, cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_set_attribute_int64:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @attribute: a string containing the attribute's name.
|
|
|
|
* @value: a #guint64 containing the attribute's new value.
|
|
|
|
* @flags: a #GFileQueryInfoFlags.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Sets @attribute of type %G_FILE_ATTRIBUTE_TYPE_INT64 to @value.
|
|
|
|
* If @attribute is of a different type, this operation will fail.
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if the @attribute was successfully set, %FALSE otherwise.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_set_attribute_int64 (GFile *file,
|
|
|
|
const char *attribute,
|
|
|
|
gint64 value,
|
|
|
|
GFileQueryInfoFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileAttributeValue v;
|
|
|
|
|
|
|
|
v.type = G_FILE_ATTRIBUTE_TYPE_INT64;
|
|
|
|
v.u.int64 = value;
|
|
|
|
return g_file_set_attribute (file, attribute, &v, flags, cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_mount_mountable:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @mount_operation: a #GMountOperation.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @callback: a #GAsyncReadyCallback.
|
|
|
|
* @user_data: a #gpointer.
|
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Mounts a mountable file using @mount_operation, if possible.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_mount_mountable (GFile *file,
|
|
|
|
GMountOperation *mount_operation,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_if_fail (G_IS_FILE (file));
|
|
|
|
g_return_if_fail (G_IS_MOUNT_OPERATION (mount_operation));
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
if (iface->mount_mountable == NULL)
|
2007-11-29 08:17:59 +01:00
|
|
|
g_simple_async_report_error_in_idle (G_OBJECT (file),
|
|
|
|
callback,
|
|
|
|
user_data,
|
|
|
|
G_IO_ERROR,
|
|
|
|
G_IO_ERROR_NOT_SUPPORTED,
|
|
|
|
_("Operation not supported"));
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
(* iface->mount_mountable) (file,
|
|
|
|
mount_operation,
|
|
|
|
cancellable,
|
|
|
|
callback,
|
|
|
|
user_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_mount_mountable_finish:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @result: a #GAsyncResult.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-29 11:18:55 +01:00
|
|
|
*
|
|
|
|
* Finishes a mount operation. See g_file_mount_mountable() for details.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Finish an asynchronous mount operation that was started
|
|
|
|
* with g_file_mount_mountable().
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: a #GFile or %NULL on error.
|
|
|
|
**/
|
|
|
|
GFile *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_mount_mountable_finish (GFile *file,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
g_return_val_if_fail (G_IS_ASYNC_RESULT (result), NULL);
|
|
|
|
|
|
|
|
if (G_IS_SIMPLE_ASYNC_RESULT (result))
|
|
|
|
{
|
|
|
|
GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
|
|
|
|
if (g_simple_async_result_propagate_error (simple, error))
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
return (* iface->mount_mountable_finish) (file, result, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_unmount_mountable:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @callback: a #GAsyncReadyCallback.
|
|
|
|
* @user_data: a #gpointer.
|
2007-11-29 11:18:55 +01:00
|
|
|
*
|
|
|
|
* Starts an asynchronous unmount operation.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Unmounts a mounted file.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_unmount_mountable (GFile *file,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_if_fail (G_IS_FILE (file));
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
if (iface->unmount_mountable == NULL)
|
2007-11-29 08:17:59 +01:00
|
|
|
g_simple_async_report_error_in_idle (G_OBJECT (file),
|
|
|
|
callback,
|
|
|
|
user_data,
|
|
|
|
G_IO_ERROR,
|
|
|
|
G_IO_ERROR_NOT_SUPPORTED,
|
|
|
|
_("Operation not supported"));
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
(* iface->unmount_mountable) (file,
|
|
|
|
cancellable,
|
|
|
|
callback,
|
|
|
|
user_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_unmount_mountable_finish:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @result: a #GAsyncResult.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-29 11:18:55 +01:00
|
|
|
*
|
|
|
|
* Finishes an unmount operation, see g_file_unmount_mountable() for details.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Finish an asynchronous unmount operation that was started
|
|
|
|
* with g_file_unmount_mountable().
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: %TRUE if the operation finished successfully. %FALSE
|
|
|
|
* otherwise.
|
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_unmount_mountable_finish (GFile *file,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), FALSE);
|
|
|
|
g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
|
|
|
|
|
|
|
|
if (G_IS_SIMPLE_ASYNC_RESULT (result))
|
|
|
|
{
|
|
|
|
GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
|
|
|
|
if (g_simple_async_result_propagate_error (simple, error))
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
return (* iface->unmount_mountable_finish) (file, result, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_eject_mountable:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @callback: a #GAsyncReadyCallback.
|
|
|
|
* @user_data: a #gpointer.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Starts an asynchronous eject on a mountable.
|
|
|
|
* When this operation has completed, @callback will be called with
|
|
|
|
* @user_user data, and the operation can be finalized with
|
|
|
|
* g_file_eject_mountable_finish().
|
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_eject_mountable (GFile *file,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_if_fail (G_IS_FILE (file));
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
if (iface->eject_mountable == NULL)
|
2007-11-29 08:17:59 +01:00
|
|
|
g_simple_async_report_error_in_idle (G_OBJECT (file),
|
|
|
|
callback,
|
|
|
|
user_data,
|
|
|
|
G_IO_ERROR,
|
|
|
|
G_IO_ERROR_NOT_SUPPORTED,
|
|
|
|
_("Operation not supported"));
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
(* iface->eject_mountable) (file,
|
|
|
|
cancellable,
|
|
|
|
callback,
|
|
|
|
user_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_eject_mountable_finish:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @result: a #GAsyncResult.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Finishes an asynchronous eject operation started by
|
|
|
|
* g_file_eject_mountable().
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: %TRUE if the @file was ejected successfully. %FALSE
|
|
|
|
* otherwise.
|
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_eject_mountable_finish (GFile *file,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), FALSE);
|
|
|
|
g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
|
|
|
|
|
|
|
|
if (G_IS_SIMPLE_ASYNC_RESULT (result))
|
|
|
|
{
|
|
|
|
GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
|
|
|
|
if (g_simple_async_result_propagate_error (simple, error))
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
return (* iface->eject_mountable_finish) (file, result, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_monitor_directory:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @flags: a set of #GFileMonitorFlags.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Obtains a directory monitor for the given file.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: a #GDirectoryMonitor for the given @file,
|
|
|
|
* or %NULL on error.
|
|
|
|
**/
|
|
|
|
GDirectoryMonitor*
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_monitor_directory (GFile *file,
|
|
|
|
GFileMonitorFlags flags,
|
|
|
|
GCancellable *cancellable)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
if (iface->monitor_dir == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return (* iface->monitor_dir) (file, flags, cancellable);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_monitor_file:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @flags: a set of #GFileMonitorFlags.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Obtains a file monitor for the given file.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: a #GFileMonitor for the given @file,
|
|
|
|
* or %NULL on error.
|
|
|
|
**/
|
|
|
|
GFileMonitor*
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_monitor_file (GFile *file,
|
|
|
|
GFileMonitorFlags flags,
|
|
|
|
GCancellable *cancellable)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
GFileMonitor *monitor;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (file);
|
|
|
|
|
|
|
|
monitor = NULL;
|
|
|
|
|
|
|
|
if (iface->monitor_file)
|
|
|
|
monitor = (* iface->monitor_file) (file, flags, cancellable);
|
|
|
|
|
|
|
|
/* Fallback to polling */
|
|
|
|
if (monitor == NULL)
|
2007-11-28 17:01:59 +01:00
|
|
|
monitor = _g_poll_file_monitor_new (file);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
return monitor;
|
|
|
|
}
|
|
|
|
|
|
|
|
/********************************************
|
|
|
|
* Default implementation of async ops *
|
|
|
|
********************************************/
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
char *attributes;
|
|
|
|
GFileQueryInfoFlags flags;
|
|
|
|
GFileInfo *info;
|
|
|
|
} QueryInfoAsyncData;
|
|
|
|
|
|
|
|
static void
|
|
|
|
query_info_data_free (QueryInfoAsyncData *data)
|
|
|
|
{
|
|
|
|
if (data->info)
|
|
|
|
g_object_unref (data->info);
|
|
|
|
g_free (data->attributes);
|
|
|
|
g_free (data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
query_info_async_thread (GSimpleAsyncResult *res,
|
2007-11-29 08:17:59 +01:00
|
|
|
GObject *object,
|
|
|
|
GCancellable *cancellable)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GError *error = NULL;
|
|
|
|
QueryInfoAsyncData *data;
|
|
|
|
GFileInfo *info;
|
|
|
|
|
|
|
|
data = g_simple_async_result_get_op_res_gpointer (res);
|
|
|
|
|
|
|
|
info = g_file_query_info (G_FILE (object), data->attributes, data->flags, cancellable, &error);
|
|
|
|
|
|
|
|
if (info == NULL)
|
|
|
|
{
|
|
|
|
g_simple_async_result_set_from_error (res, error);
|
|
|
|
g_error_free (error);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
data->info = info;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_real_query_info_async (GFile *file,
|
|
|
|
const char *attributes,
|
|
|
|
GFileQueryInfoFlags flags,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GSimpleAsyncResult *res;
|
|
|
|
QueryInfoAsyncData *data;
|
|
|
|
|
|
|
|
data = g_new0 (QueryInfoAsyncData, 1);
|
|
|
|
data->attributes = g_strdup (attributes);
|
|
|
|
data->flags = flags;
|
|
|
|
|
|
|
|
res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_query_info_async);
|
|
|
|
g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)query_info_data_free);
|
|
|
|
|
|
|
|
g_simple_async_result_run_in_thread (res, query_info_async_thread, io_priority, cancellable);
|
|
|
|
g_object_unref (res);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GFileInfo *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_real_query_info_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
|
|
|
|
QueryInfoAsyncData *data;
|
|
|
|
|
|
|
|
g_assert (g_simple_async_result_get_source_tag (simple) == g_file_real_query_info_async);
|
|
|
|
|
|
|
|
data = g_simple_async_result_get_op_res_gpointer (simple);
|
|
|
|
if (data->info)
|
|
|
|
return g_object_ref (data->info);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
char *attributes;
|
|
|
|
GFileQueryInfoFlags flags;
|
|
|
|
GFileEnumerator *enumerator;
|
|
|
|
} EnumerateChildrenAsyncData;
|
|
|
|
|
|
|
|
static void
|
|
|
|
enumerate_children_data_free (EnumerateChildrenAsyncData *data)
|
|
|
|
{
|
|
|
|
if (data->enumerator)
|
|
|
|
g_object_unref (data->enumerator);
|
|
|
|
g_free (data->attributes);
|
|
|
|
g_free (data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
enumerate_children_async_thread (GSimpleAsyncResult *res,
|
2007-11-29 08:17:59 +01:00
|
|
|
GObject *object,
|
|
|
|
GCancellable *cancellable)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GError *error = NULL;
|
|
|
|
EnumerateChildrenAsyncData *data;
|
|
|
|
GFileEnumerator *enumerator;
|
|
|
|
|
|
|
|
data = g_simple_async_result_get_op_res_gpointer (res);
|
|
|
|
|
|
|
|
enumerator = g_file_enumerate_children (G_FILE (object), data->attributes, data->flags, cancellable, &error);
|
|
|
|
|
|
|
|
if (enumerator == NULL)
|
|
|
|
{
|
|
|
|
g_simple_async_result_set_from_error (res, error);
|
|
|
|
g_error_free (error);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
data->enumerator = enumerator;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_real_enumerate_children_async (GFile *file,
|
|
|
|
const char *attributes,
|
|
|
|
GFileQueryInfoFlags flags,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GSimpleAsyncResult *res;
|
|
|
|
EnumerateChildrenAsyncData *data;
|
|
|
|
|
|
|
|
data = g_new0 (EnumerateChildrenAsyncData, 1);
|
|
|
|
data->attributes = g_strdup (attributes);
|
|
|
|
data->flags = flags;
|
|
|
|
|
|
|
|
res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_enumerate_children_async);
|
|
|
|
g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)enumerate_children_data_free);
|
|
|
|
|
|
|
|
g_simple_async_result_run_in_thread (res, enumerate_children_async_thread, io_priority, cancellable);
|
|
|
|
g_object_unref (res);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GFileEnumerator *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_real_enumerate_children_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
|
|
|
|
EnumerateChildrenAsyncData *data;
|
|
|
|
|
|
|
|
g_assert (g_simple_async_result_get_source_tag (simple) == g_file_real_enumerate_children_async);
|
|
|
|
|
|
|
|
data = g_simple_async_result_get_op_res_gpointer (simple);
|
|
|
|
if (data->enumerator)
|
|
|
|
return g_object_ref (data->enumerator);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
open_read_async_thread (GSimpleAsyncResult *res,
|
2007-11-29 08:17:59 +01:00
|
|
|
GObject *object,
|
|
|
|
GCancellable *cancellable)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
GFileInputStream *stream;
|
|
|
|
GError *error = NULL;
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (object);
|
|
|
|
|
|
|
|
stream = iface->read (G_FILE (object), cancellable, &error);
|
|
|
|
|
|
|
|
if (stream == NULL)
|
|
|
|
{
|
|
|
|
g_simple_async_result_set_from_error (res, error);
|
|
|
|
g_error_free (error);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
g_simple_async_result_set_op_res_gpointer (res, stream, g_object_unref);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_real_read_async (GFile *file,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GSimpleAsyncResult *res;
|
|
|
|
|
|
|
|
res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_read_async);
|
|
|
|
|
|
|
|
g_simple_async_result_run_in_thread (res, open_read_async_thread, io_priority, cancellable);
|
|
|
|
g_object_unref (res);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GFileInputStream *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_real_read_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
|
|
|
|
gpointer op;
|
|
|
|
|
|
|
|
g_assert (g_simple_async_result_get_source_tag (simple) == g_file_real_read_async);
|
|
|
|
|
|
|
|
op = g_simple_async_result_get_op_res_gpointer (simple);
|
|
|
|
if (op)
|
|
|
|
return g_object_ref (op);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
append_to_async_thread (GSimpleAsyncResult *res,
|
2007-11-29 08:17:59 +01:00
|
|
|
GObject *object,
|
|
|
|
GCancellable *cancellable)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
GFileCreateFlags *data;
|
|
|
|
GFileOutputStream *stream;
|
|
|
|
GError *error = NULL;
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (object);
|
|
|
|
|
|
|
|
data = g_simple_async_result_get_op_res_gpointer (res);
|
|
|
|
|
|
|
|
stream = iface->append_to (G_FILE (object), *data, cancellable, &error);
|
|
|
|
|
|
|
|
if (stream == NULL)
|
|
|
|
{
|
|
|
|
g_simple_async_result_set_from_error (res, error);
|
|
|
|
g_error_free (error);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
g_simple_async_result_set_op_res_gpointer (res, stream, g_object_unref);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_real_append_to_async (GFile *file,
|
|
|
|
GFileCreateFlags flags,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileCreateFlags *data;
|
|
|
|
GSimpleAsyncResult *res;
|
|
|
|
|
|
|
|
data = g_new0 (GFileCreateFlags, 1);
|
|
|
|
*data = flags;
|
|
|
|
|
|
|
|
res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_append_to_async);
|
|
|
|
g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)g_free);
|
|
|
|
|
|
|
|
g_simple_async_result_run_in_thread (res, append_to_async_thread, io_priority, cancellable);
|
|
|
|
g_object_unref (res);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GFileOutputStream *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_real_append_to_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
|
|
|
|
gpointer op;
|
|
|
|
|
|
|
|
g_assert (g_simple_async_result_get_source_tag (simple) == g_file_real_append_to_async);
|
|
|
|
|
|
|
|
op = g_simple_async_result_get_op_res_gpointer (simple);
|
|
|
|
if (op)
|
|
|
|
return g_object_ref (op);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
create_async_thread (GSimpleAsyncResult *res,
|
2007-11-29 08:17:59 +01:00
|
|
|
GObject *object,
|
|
|
|
GCancellable *cancellable)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
GFileCreateFlags *data;
|
|
|
|
GFileOutputStream *stream;
|
|
|
|
GError *error = NULL;
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (object);
|
|
|
|
|
|
|
|
data = g_simple_async_result_get_op_res_gpointer (res);
|
|
|
|
|
|
|
|
stream = iface->create (G_FILE (object), *data, cancellable, &error);
|
|
|
|
|
|
|
|
if (stream == NULL)
|
|
|
|
{
|
|
|
|
g_simple_async_result_set_from_error (res, error);
|
|
|
|
g_error_free (error);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
g_simple_async_result_set_op_res_gpointer (res, stream, g_object_unref);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_real_create_async (GFile *file,
|
|
|
|
GFileCreateFlags flags,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileCreateFlags *data;
|
|
|
|
GSimpleAsyncResult *res;
|
|
|
|
|
|
|
|
data = g_new0 (GFileCreateFlags, 1);
|
|
|
|
*data = flags;
|
|
|
|
|
|
|
|
res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_create_async);
|
|
|
|
g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)g_free);
|
|
|
|
|
|
|
|
g_simple_async_result_run_in_thread (res, create_async_thread, io_priority, cancellable);
|
|
|
|
g_object_unref (res);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GFileOutputStream *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_real_create_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
|
|
|
|
gpointer op;
|
|
|
|
|
|
|
|
g_assert (g_simple_async_result_get_source_tag (simple) == g_file_real_create_async);
|
|
|
|
|
|
|
|
op = g_simple_async_result_get_op_res_gpointer (simple);
|
|
|
|
if (op)
|
|
|
|
return g_object_ref (op);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
GFileOutputStream *stream;
|
|
|
|
char *etag;
|
|
|
|
gboolean make_backup;
|
|
|
|
GFileCreateFlags flags;
|
|
|
|
} ReplaceAsyncData;
|
|
|
|
|
|
|
|
static void
|
|
|
|
replace_async_data_free (ReplaceAsyncData *data)
|
|
|
|
{
|
|
|
|
if (data->stream)
|
|
|
|
g_object_unref (data->stream);
|
|
|
|
g_free (data->etag);
|
|
|
|
g_free (data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
replace_async_thread (GSimpleAsyncResult *res,
|
2007-11-29 08:17:59 +01:00
|
|
|
GObject *object,
|
|
|
|
GCancellable *cancellable)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
GFileOutputStream *stream;
|
|
|
|
GError *error = NULL;
|
|
|
|
ReplaceAsyncData *data;
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (object);
|
|
|
|
|
|
|
|
data = g_simple_async_result_get_op_res_gpointer (res);
|
|
|
|
|
|
|
|
stream = iface->replace (G_FILE (object),
|
|
|
|
data->etag,
|
|
|
|
data->make_backup,
|
|
|
|
data->flags,
|
|
|
|
cancellable,
|
|
|
|
&error);
|
|
|
|
|
|
|
|
if (stream == NULL)
|
|
|
|
{
|
|
|
|
g_simple_async_result_set_from_error (res, error);
|
|
|
|
g_error_free (error);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
data->stream = stream;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_real_replace_async (GFile *file,
|
|
|
|
const char *etag,
|
|
|
|
gboolean make_backup,
|
|
|
|
GFileCreateFlags flags,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GSimpleAsyncResult *res;
|
|
|
|
ReplaceAsyncData *data;
|
|
|
|
|
|
|
|
data = g_new0 (ReplaceAsyncData, 1);
|
|
|
|
data->etag = g_strdup (etag);
|
|
|
|
data->make_backup = make_backup;
|
|
|
|
data->flags = flags;
|
|
|
|
|
|
|
|
res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_replace_async);
|
|
|
|
g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)replace_async_data_free);
|
|
|
|
|
|
|
|
g_simple_async_result_run_in_thread (res, replace_async_thread, io_priority, cancellable);
|
|
|
|
g_object_unref (res);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GFileOutputStream *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_real_replace_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
|
|
|
|
ReplaceAsyncData *data;
|
|
|
|
|
|
|
|
g_assert (g_simple_async_result_get_source_tag (simple) == g_file_real_replace_async);
|
|
|
|
|
|
|
|
data = g_simple_async_result_get_op_res_gpointer (simple);
|
|
|
|
if (data->stream)
|
|
|
|
return g_object_ref (data->stream);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
char *name;
|
|
|
|
GFile *file;
|
|
|
|
} SetDisplayNameAsyncData;
|
|
|
|
|
|
|
|
static void
|
|
|
|
set_display_name_data_free (SetDisplayNameAsyncData *data)
|
|
|
|
{
|
|
|
|
g_free (data->name);
|
|
|
|
if (data->file)
|
|
|
|
g_object_unref (data->file);
|
|
|
|
g_free (data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
set_display_name_async_thread (GSimpleAsyncResult *res,
|
2007-11-29 08:17:59 +01:00
|
|
|
GObject *object,
|
|
|
|
GCancellable *cancellable)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GError *error = NULL;
|
|
|
|
SetDisplayNameAsyncData *data;
|
|
|
|
GFile *file;
|
|
|
|
|
|
|
|
data = g_simple_async_result_get_op_res_gpointer (res);
|
|
|
|
|
|
|
|
file = g_file_set_display_name (G_FILE (object), data->name, cancellable, &error);
|
|
|
|
|
|
|
|
if (file == NULL)
|
|
|
|
{
|
|
|
|
g_simple_async_result_set_from_error (res, error);
|
|
|
|
g_error_free (error);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
data->file = file;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_real_set_display_name_async (GFile *file,
|
|
|
|
const char *display_name,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GSimpleAsyncResult *res;
|
|
|
|
SetDisplayNameAsyncData *data;
|
|
|
|
|
|
|
|
data = g_new0 (SetDisplayNameAsyncData, 1);
|
|
|
|
data->name = g_strdup (display_name);
|
|
|
|
|
|
|
|
res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_set_display_name_async);
|
|
|
|
g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)set_display_name_data_free);
|
|
|
|
|
|
|
|
g_simple_async_result_run_in_thread (res, set_display_name_async_thread, io_priority, cancellable);
|
|
|
|
g_object_unref (res);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GFile *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_real_set_display_name_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
|
|
|
|
SetDisplayNameAsyncData *data;
|
|
|
|
|
|
|
|
g_assert (g_simple_async_result_get_source_tag (simple) == g_file_real_set_display_name_async);
|
|
|
|
|
|
|
|
data = g_simple_async_result_get_op_res_gpointer (simple);
|
|
|
|
if (data->file)
|
|
|
|
return g_object_ref (data->file);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
GFileQueryInfoFlags flags;
|
|
|
|
GFileInfo *info;
|
|
|
|
gboolean res;
|
|
|
|
GError *error;
|
|
|
|
} SetInfoAsyncData;
|
|
|
|
|
|
|
|
static void
|
|
|
|
set_info_data_free (SetInfoAsyncData *data)
|
|
|
|
{
|
|
|
|
if (data->info)
|
|
|
|
g_object_unref (data->info);
|
|
|
|
if (data->error)
|
|
|
|
g_error_free (data->error);
|
|
|
|
g_free (data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
set_info_async_thread (GSimpleAsyncResult *res,
|
2007-11-29 08:17:59 +01:00
|
|
|
GObject *object,
|
|
|
|
GCancellable *cancellable)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
SetInfoAsyncData *data;
|
|
|
|
|
|
|
|
data = g_simple_async_result_get_op_res_gpointer (res);
|
|
|
|
|
|
|
|
data->error = NULL;
|
|
|
|
data->res = g_file_set_attributes_from_info (G_FILE (object),
|
|
|
|
data->info,
|
|
|
|
data->flags,
|
|
|
|
cancellable,
|
|
|
|
&data->error);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_real_set_attributes_async (GFile *file,
|
|
|
|
GFileInfo *info,
|
|
|
|
GFileQueryInfoFlags flags,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GSimpleAsyncResult *res;
|
|
|
|
SetInfoAsyncData *data;
|
|
|
|
|
|
|
|
data = g_new0 (SetInfoAsyncData, 1);
|
|
|
|
data->info = g_file_info_dup (info);
|
|
|
|
data->flags = flags;
|
|
|
|
|
|
|
|
res = g_simple_async_result_new (G_OBJECT (file), callback, user_data, g_file_real_set_attributes_async);
|
|
|
|
g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)set_info_data_free);
|
|
|
|
|
|
|
|
g_simple_async_result_run_in_thread (res, set_info_async_thread, io_priority, cancellable);
|
|
|
|
g_object_unref (res);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_real_set_attributes_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GFileInfo **info,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
|
|
|
|
SetInfoAsyncData *data;
|
|
|
|
|
|
|
|
g_assert (g_simple_async_result_get_source_tag (simple) == g_file_real_set_attributes_async);
|
|
|
|
|
|
|
|
data = g_simple_async_result_get_op_res_gpointer (simple);
|
|
|
|
|
|
|
|
if (info)
|
|
|
|
*info = g_object_ref (data->info);
|
|
|
|
|
2007-11-29 08:17:59 +01:00
|
|
|
if (error != NULL && data->error)
|
2007-11-26 17:13:05 +01:00
|
|
|
*error = g_error_copy (data->error);
|
|
|
|
|
|
|
|
return data->res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/********************************************
|
|
|
|
* Default VFS operations *
|
|
|
|
********************************************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_new_for_path:
|
|
|
|
* @path: a string containing a relative or absolute path.
|
|
|
|
*
|
2007-11-28 07:43:33 +01:00
|
|
|
* Constructs a #GFile for a given path. This operation never
|
2007-11-26 17:13:05 +01:00
|
|
|
* fails, but the returned object might not support any I/O
|
2007-11-28 07:43:33 +01:00
|
|
|
* operation if @path is malformed.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-28 05:29:02 +01:00
|
|
|
* Returns: a new #GFile for the given @path.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GFile *
|
|
|
|
g_file_new_for_path (const char *path)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (path != NULL, NULL);
|
|
|
|
|
2007-11-29 08:17:59 +01:00
|
|
|
return g_vfs_get_file_for_path (g_vfs_get_default (), path);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_new_for_uri:
|
|
|
|
* @uri: a string containing a URI.
|
|
|
|
*
|
2007-11-28 07:43:33 +01:00
|
|
|
* Constructs a #GFile for a given URI. This operation never
|
|
|
|
* fails, but the returned object might not support any I/O
|
|
|
|
* operation if @uri is malformed or if the uri type is
|
|
|
|
* not supported.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-28 05:29:02 +01:00
|
|
|
* Returns: a #GFile for the given @uri.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GFile *
|
|
|
|
g_file_new_for_uri (const char *uri)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (uri != NULL, NULL);
|
|
|
|
|
2007-11-29 08:17:59 +01:00
|
|
|
return g_vfs_get_file_for_uri (g_vfs_get_default (), uri);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_parse_name:
|
|
|
|
* @parse_name: a file name or path to be parsed.
|
|
|
|
*
|
|
|
|
* Constructs a #GFile with the given @parse_name,
|
|
|
|
* looked up by #GVfs. This operation never fails,
|
|
|
|
* but the returned object might not support any I/O
|
|
|
|
* operation if the @parse_name cannot be parsed by #GVfs.
|
|
|
|
*
|
2007-11-28 05:29:02 +01:00
|
|
|
* Returns: a new #GFile.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GFile *
|
|
|
|
g_file_parse_name (const char *parse_name)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (parse_name != NULL, NULL);
|
|
|
|
|
2007-11-29 08:17:59 +01:00
|
|
|
return g_vfs_parse_name (g_vfs_get_default (), parse_name);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
is_valid_scheme_character (char c)
|
|
|
|
{
|
|
|
|
return g_ascii_isalnum (c) || c == '+' || c == '-' || c == '.';
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
has_valid_scheme (const char *uri)
|
|
|
|
{
|
|
|
|
const char *p;
|
|
|
|
|
|
|
|
p = uri;
|
|
|
|
|
|
|
|
if (!is_valid_scheme_character (*p))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
do {
|
|
|
|
p++;
|
|
|
|
} while (is_valid_scheme_character (*p));
|
|
|
|
|
|
|
|
return *p == ':';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_new_for_commandline_arg:
|
|
|
|
* @arg: a command line string.
|
|
|
|
*
|
|
|
|
* Attempts to generate a #GFile with the given line from
|
|
|
|
* the command line argument.
|
|
|
|
*
|
2007-11-28 05:29:02 +01:00
|
|
|
* Returns: a new #GFile.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GFile *
|
|
|
|
g_file_new_for_commandline_arg (const char *arg)
|
|
|
|
{
|
|
|
|
GFile *file;
|
|
|
|
char *filename;
|
|
|
|
char *current_dir;
|
|
|
|
|
|
|
|
g_return_val_if_fail (arg != NULL, NULL);
|
|
|
|
|
|
|
|
if (g_path_is_absolute (arg))
|
|
|
|
return g_file_new_for_path (arg);
|
|
|
|
|
|
|
|
if (has_valid_scheme (arg))
|
|
|
|
return g_file_new_for_uri (arg);
|
|
|
|
|
|
|
|
current_dir = g_get_current_dir ();
|
|
|
|
filename = g_build_filename (current_dir, arg, NULL);
|
|
|
|
g_free (current_dir);
|
|
|
|
|
|
|
|
file = g_file_new_for_path (filename);
|
|
|
|
g_free (filename);
|
|
|
|
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_mount_for_location:
|
|
|
|
* @location: input #GFile.
|
|
|
|
* @mount_operation: a #GMountOperation.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @callback: a #GAsyncReadyCallback.
|
|
|
|
* @user_data: a #gpointer.
|
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Starts the @mount_operation, mounting the volume at @location.
|
|
|
|
*
|
|
|
|
* When this operation has completed, @callback will be called with
|
|
|
|
* @user_user data, and the operation can be finalized with
|
|
|
|
* g_mount_for_location_finish().
|
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_mount_for_location (GFile *location,
|
|
|
|
GMountOperation *mount_operation,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_if_fail (G_IS_FILE (location));
|
|
|
|
g_return_if_fail (G_IS_MOUNT_OPERATION (mount_operation));
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (location);
|
|
|
|
|
|
|
|
if (iface->mount_for_location == NULL)
|
|
|
|
{
|
|
|
|
g_simple_async_report_error_in_idle (G_OBJECT (location),
|
|
|
|
callback, user_data,
|
|
|
|
G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
|
|
|
|
_("volume doesn't implement mount"));
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
(* iface->mount_for_location) (location, mount_operation, cancellable, callback, user_data);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_mount_for_location_finish:
|
|
|
|
* @location: input #GFile.
|
|
|
|
* @result: a #GAsyncResult.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Finishes a mount operation started by g_mount_for_location().
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* Returns: %TRUE if successful. If an error
|
|
|
|
* has occured, this function will return %FALSE and set @error
|
|
|
|
* appropriately if present.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_mount_for_location_finish (GFile *location,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (location), FALSE);
|
|
|
|
g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
|
|
|
|
|
|
|
|
if (G_IS_SIMPLE_ASYNC_RESULT (result))
|
|
|
|
{
|
|
|
|
GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
|
|
|
|
if (g_simple_async_result_propagate_error (simple, error))
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
iface = G_FILE_GET_IFACE (location);
|
|
|
|
|
|
|
|
return (* iface->mount_for_location_finish) (location, result, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/********************************************
|
|
|
|
* Utility functions *
|
|
|
|
********************************************/
|
|
|
|
|
|
|
|
#define GET_CONTENT_BLOCK_SIZE 8192
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_load_contents:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
2007-11-27 15:00:13 +01:00
|
|
|
* @contents: a location to place the contents of the file.
|
|
|
|
* @length: a location to place the length of the contents of the file.
|
|
|
|
* @etag_out: a location to place the current entity tag for the file.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-27 15:00:13 +01:00
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: %TRUE if the @file's contents were successfully loaded.
|
|
|
|
* %FALSE if there were errors. The length of the loaded data will be
|
|
|
|
* put into @length, the contents in @contents.
|
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_load_contents (GFile *file,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
char **contents,
|
|
|
|
gsize *length,
|
|
|
|
char **etag_out,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileInputStream *in;
|
|
|
|
GByteArray *content;
|
|
|
|
gsize pos;
|
|
|
|
gssize res;
|
|
|
|
GFileInfo *info;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), FALSE);
|
|
|
|
g_return_val_if_fail (contents != NULL, FALSE);
|
|
|
|
|
2007-11-29 08:17:59 +01:00
|
|
|
in = g_file_read (file, cancellable, error);
|
2007-11-26 17:13:05 +01:00
|
|
|
if (in == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
content = g_byte_array_new ();
|
|
|
|
pos = 0;
|
|
|
|
|
|
|
|
g_byte_array_set_size (content, pos + GET_CONTENT_BLOCK_SIZE + 1);
|
|
|
|
while ((res = g_input_stream_read (G_INPUT_STREAM (in),
|
|
|
|
content->data + pos,
|
|
|
|
GET_CONTENT_BLOCK_SIZE,
|
|
|
|
cancellable, error)) > 0)
|
|
|
|
{
|
|
|
|
pos += res;
|
|
|
|
g_byte_array_set_size (content, pos + GET_CONTENT_BLOCK_SIZE + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (etag_out)
|
|
|
|
{
|
|
|
|
*etag_out = NULL;
|
|
|
|
|
|
|
|
info = g_file_input_stream_query_info (in,
|
|
|
|
G_FILE_ATTRIBUTE_ETAG_VALUE,
|
|
|
|
cancellable,
|
|
|
|
NULL);
|
|
|
|
if (info)
|
|
|
|
{
|
|
|
|
*etag_out = g_strdup (g_file_info_get_etag (info));
|
|
|
|
g_object_unref (info);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ignore errors on close */
|
|
|
|
g_input_stream_close (G_INPUT_STREAM (in), cancellable, NULL);
|
|
|
|
g_object_unref (in);
|
|
|
|
|
|
|
|
if (res < 0)
|
|
|
|
{
|
|
|
|
/* error is set already */
|
|
|
|
g_byte_array_free (content, TRUE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (length)
|
|
|
|
*length = pos;
|
|
|
|
|
|
|
|
/* Zero terminate (we got an extra byte allocated for this */
|
|
|
|
content->data[pos] = 0;
|
|
|
|
|
|
|
|
*contents = (char *)g_byte_array_free (content, FALSE);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
GFile *file;
|
|
|
|
GError *error;
|
|
|
|
GCancellable *cancellable;
|
|
|
|
GFileReadMoreCallback read_more_callback;
|
|
|
|
GAsyncReadyCallback callback;
|
|
|
|
gpointer user_data;
|
|
|
|
GByteArray *content;
|
|
|
|
gsize pos;
|
|
|
|
char *etag;
|
|
|
|
} LoadContentsData;
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
load_contents_data_free (LoadContentsData *data)
|
|
|
|
{
|
|
|
|
if (data->error)
|
|
|
|
g_error_free (data->error);
|
|
|
|
if (data->cancellable)
|
|
|
|
g_object_unref (data->cancellable);
|
|
|
|
if (data->content)
|
|
|
|
g_byte_array_free (data->content, TRUE);
|
|
|
|
g_free (data->etag);
|
|
|
|
g_object_unref (data->file);
|
|
|
|
g_free (data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
load_contents_close_callback (GObject *obj,
|
|
|
|
GAsyncResult *close_res,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GInputStream *stream = G_INPUT_STREAM (obj);
|
|
|
|
LoadContentsData *data = user_data;
|
|
|
|
GSimpleAsyncResult *res;
|
|
|
|
|
|
|
|
/* Ignore errors here, we're only reading anyway */
|
|
|
|
g_input_stream_close_finish (stream, close_res, NULL);
|
|
|
|
g_object_unref (stream);
|
|
|
|
|
|
|
|
res = g_simple_async_result_new (G_OBJECT (data->file),
|
|
|
|
data->callback,
|
|
|
|
data->user_data,
|
|
|
|
g_file_load_contents_async);
|
|
|
|
g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)load_contents_data_free);
|
|
|
|
g_simple_async_result_complete (res);
|
|
|
|
g_object_unref (res);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
load_contents_fstat_callback (GObject *obj,
|
2007-11-26 17:13:05 +01:00
|
|
|
GAsyncResult *stat_res,
|
2007-11-29 08:17:59 +01:00
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GInputStream *stream = G_INPUT_STREAM (obj);
|
|
|
|
LoadContentsData *data = user_data;
|
|
|
|
GFileInfo *info;
|
|
|
|
|
|
|
|
info = g_file_input_stream_query_info_finish (G_FILE_INPUT_STREAM (stream),
|
|
|
|
stat_res, NULL);
|
|
|
|
if (info)
|
|
|
|
{
|
|
|
|
data->etag = g_strdup (g_file_info_get_etag (info));
|
|
|
|
g_object_unref (info);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_input_stream_close_async (stream, 0,
|
|
|
|
data->cancellable,
|
|
|
|
load_contents_close_callback, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
load_contents_read_callback (GObject *obj,
|
2007-11-26 17:13:05 +01:00
|
|
|
GAsyncResult *read_res,
|
2007-11-29 08:17:59 +01:00
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GInputStream *stream = G_INPUT_STREAM (obj);
|
|
|
|
LoadContentsData *data = user_data;
|
|
|
|
GError *error = NULL;
|
|
|
|
gssize read_size;
|
|
|
|
|
|
|
|
read_size = g_input_stream_read_finish (stream, read_res, &error);
|
|
|
|
|
|
|
|
if (read_size < 0)
|
|
|
|
{
|
|
|
|
/* Error or EOF, close the file */
|
|
|
|
data->error = error;
|
|
|
|
g_input_stream_close_async (stream, 0,
|
|
|
|
data->cancellable,
|
|
|
|
load_contents_close_callback, data);
|
|
|
|
}
|
|
|
|
else if (read_size == 0)
|
|
|
|
{
|
|
|
|
g_file_input_stream_query_info_async (G_FILE_INPUT_STREAM (stream),
|
|
|
|
G_FILE_ATTRIBUTE_ETAG_VALUE,
|
|
|
|
0,
|
|
|
|
data->cancellable,
|
|
|
|
load_contents_fstat_callback,
|
|
|
|
data);
|
|
|
|
}
|
|
|
|
else if (read_size > 0)
|
|
|
|
{
|
|
|
|
data->pos += read_size;
|
|
|
|
|
|
|
|
g_byte_array_set_size (data->content,
|
|
|
|
data->pos + GET_CONTENT_BLOCK_SIZE);
|
|
|
|
|
|
|
|
|
|
|
|
if (data->read_more_callback &&
|
|
|
|
!data->read_more_callback ((char *)data->content->data, data->pos, data->user_data))
|
|
|
|
g_file_input_stream_query_info_async (G_FILE_INPUT_STREAM (stream),
|
|
|
|
G_FILE_ATTRIBUTE_ETAG_VALUE,
|
|
|
|
0,
|
|
|
|
data->cancellable,
|
|
|
|
load_contents_fstat_callback,
|
|
|
|
data);
|
|
|
|
else
|
|
|
|
g_input_stream_read_async (stream,
|
|
|
|
data->content->data + data->pos,
|
|
|
|
GET_CONTENT_BLOCK_SIZE,
|
|
|
|
0,
|
|
|
|
data->cancellable,
|
|
|
|
load_contents_read_callback,
|
|
|
|
data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
load_contents_open_callback (GObject *obj,
|
2007-11-26 17:13:05 +01:00
|
|
|
GAsyncResult *open_res,
|
2007-11-29 08:17:59 +01:00
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFile *file = G_FILE (obj);
|
|
|
|
GFileInputStream *stream;
|
|
|
|
LoadContentsData *data = user_data;
|
|
|
|
GError *error = NULL;
|
|
|
|
GSimpleAsyncResult *res;
|
|
|
|
|
|
|
|
stream = g_file_read_finish (file, open_res, &error);
|
|
|
|
|
|
|
|
if (stream)
|
|
|
|
{
|
|
|
|
g_byte_array_set_size (data->content,
|
|
|
|
data->pos + GET_CONTENT_BLOCK_SIZE);
|
|
|
|
g_input_stream_read_async (G_INPUT_STREAM (stream),
|
|
|
|
data->content->data + data->pos,
|
|
|
|
GET_CONTENT_BLOCK_SIZE,
|
|
|
|
0,
|
|
|
|
data->cancellable,
|
|
|
|
load_contents_read_callback,
|
|
|
|
data);
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
res = g_simple_async_result_new_from_error (G_OBJECT (data->file),
|
|
|
|
data->callback,
|
|
|
|
data->user_data,
|
|
|
|
error);
|
|
|
|
g_simple_async_result_complete (res);
|
|
|
|
g_error_free (error);
|
|
|
|
load_contents_data_free (data);
|
|
|
|
g_object_unref (res);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_load_partial_contents_async:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @read_more_callback: a #GFileReadMoreCallback.
|
|
|
|
* @callback: a #GAsyncReadyCallback.
|
|
|
|
* @user_data: a #gpointer.
|
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
2007-11-27 15:00:13 +01:00
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_load_partial_contents_async (GFile *file,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GFileReadMoreCallback read_more_callback,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
LoadContentsData *data;
|
|
|
|
|
|
|
|
g_return_if_fail (G_IS_FILE (file));
|
|
|
|
|
|
|
|
data = g_new0 (LoadContentsData, 1);
|
|
|
|
|
|
|
|
if (cancellable)
|
|
|
|
data->cancellable = g_object_ref (cancellable);
|
|
|
|
data->read_more_callback = read_more_callback;
|
|
|
|
data->callback = callback;
|
|
|
|
data->user_data = user_data;
|
|
|
|
data->content = g_byte_array_new ();
|
|
|
|
data->file = g_object_ref (file);
|
|
|
|
|
|
|
|
g_file_read_async (file,
|
|
|
|
0,
|
|
|
|
cancellable,
|
|
|
|
load_contents_open_callback,
|
|
|
|
data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_load_partial_contents_finish:
|
|
|
|
* @file: input #GFile.
|
2007-11-27 15:00:13 +01:00
|
|
|
* @res: a #GAsyncResult.
|
|
|
|
* @contents: a location to place the contents of the file.
|
|
|
|
* @length: a location to place the length of the contents of the file.
|
|
|
|
* @etag_out: a location to place the current entity tag for the file.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Finishes an asynchronous partial load operation that was started
|
|
|
|
* with g_file_load_partial_contents_async().
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: %TRUE if the load was successful. If %FALSE and @error is
|
|
|
|
* present, it will be set appropriately.
|
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_load_partial_contents_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
char **contents,
|
|
|
|
gsize *length,
|
|
|
|
char **etag_out,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GSimpleAsyncResult *simple;
|
|
|
|
LoadContentsData *data;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), FALSE);
|
|
|
|
g_return_val_if_fail (G_IS_SIMPLE_ASYNC_RESULT (res), FALSE);
|
|
|
|
g_return_val_if_fail (contents != NULL, FALSE);
|
|
|
|
|
|
|
|
simple = G_SIMPLE_ASYNC_RESULT (res);
|
|
|
|
|
|
|
|
if (g_simple_async_result_propagate_error (simple, error))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
g_assert (g_simple_async_result_get_source_tag (simple) == g_file_load_contents_async);
|
|
|
|
|
|
|
|
data = g_simple_async_result_get_op_res_gpointer (simple);
|
|
|
|
|
|
|
|
if (data->error)
|
|
|
|
{
|
|
|
|
g_propagate_error (error, data->error);
|
|
|
|
data->error = NULL;
|
|
|
|
*contents = NULL;
|
|
|
|
if (length)
|
|
|
|
*length = 0;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (length)
|
|
|
|
*length = data->pos;
|
|
|
|
|
|
|
|
if (etag_out)
|
|
|
|
{
|
|
|
|
*etag_out = data->etag;
|
|
|
|
data->etag = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Zero terminate */
|
2007-11-29 08:17:59 +01:00
|
|
|
g_byte_array_set_size (data->content, data->pos + 1);
|
2007-11-26 17:13:05 +01:00
|
|
|
data->content->data[data->pos] = 0;
|
|
|
|
|
|
|
|
*contents = (char *)g_byte_array_free (data->content, FALSE);
|
|
|
|
data->content = NULL;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_load_contents_async:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @callback: a #GAsyncReadyCallback.
|
|
|
|
* @user_data: a #gpointer.
|
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Starts an asynchronous load of the @file's contents.
|
|
|
|
* When the load operation has completed, @callback will be called
|
|
|
|
* with @userdata. To finish the operation, call
|
|
|
|
* g_file_load_contents_finish() with the #GAsyncResult returned by
|
|
|
|
* the @callback.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
2007-11-27 15:00:13 +01:00
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_load_contents_async (GFile *file,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
g_file_load_partial_contents_async (file,
|
|
|
|
cancellable,
|
|
|
|
NULL,
|
|
|
|
callback, user_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_load_contents_finish:
|
|
|
|
* @file: input #GFile.
|
2007-11-27 15:00:13 +01:00
|
|
|
* @res: a #GAsyncResult.
|
|
|
|
* @contents: a location to place the contents of the file.
|
|
|
|
* @length: a location to place the length of the contents of the file.
|
|
|
|
* @etag_out: a location to place the current entity tag for the file.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Finishes an asynchronous load of the @file's contents.
|
|
|
|
* The contents are placed in @contents, and @length is set to the
|
|
|
|
* size of the @contents string. If @etag_out is present, it will be
|
|
|
|
* set to the new entity tag for the @file.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* Returns: %TRUE if the load was successful. If %FALSE and @error is
|
|
|
|
* present, it will be set appropriately.
|
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_load_contents_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
char **contents,
|
|
|
|
gsize *length,
|
|
|
|
char **etag_out,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
return g_file_load_partial_contents_finish (file,
|
|
|
|
res,
|
|
|
|
contents,
|
|
|
|
length,
|
|
|
|
etag_out,
|
|
|
|
error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_replace_contents:
|
|
|
|
* @file: input #GFile.
|
2007-11-27 15:00:13 +01:00
|
|
|
* @contents: a string containing the new contents for @file.
|
|
|
|
* @length: the length of @contents in bytes.
|
2007-11-26 17:13:05 +01:00
|
|
|
* @etag: the old entity tag for the document.
|
|
|
|
* @make_backup: a #gboolean.
|
|
|
|
* @flags: a set of #GFileCreateFlags.
|
2007-11-27 15:00:13 +01:00
|
|
|
* @new_etag: a location to a new entity tag for the document.
|
2007-11-26 17:13:05 +01:00
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-29 08:17:59 +01:00
|
|
|
* Replaces the contents of @file with @contents of @length bytes.
|
|
|
|
* The old @etag will be replaced with the @new_etag. If @make_backup
|
|
|
|
* is %TRUE, this function will attempt to make a backup of @file.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
2007-11-27 15:00:13 +01:00
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* Returns: %TRUE if successful. If an error
|
|
|
|
* has occured, this function will return %FALSE and set @error
|
|
|
|
* appropriately if present.
|
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_replace_contents (GFile *file,
|
|
|
|
const char *contents,
|
|
|
|
gsize length,
|
|
|
|
const char *etag,
|
|
|
|
gboolean make_backup,
|
|
|
|
GFileCreateFlags flags,
|
|
|
|
char **new_etag,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileOutputStream *out;
|
|
|
|
gsize pos, remainder;
|
|
|
|
gssize res;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), FALSE);
|
|
|
|
g_return_val_if_fail (contents != NULL, FALSE);
|
|
|
|
|
2007-11-28 07:01:13 +01:00
|
|
|
out = g_file_replace (file, etag, make_backup, flags, cancellable, error);
|
2007-11-26 17:13:05 +01:00
|
|
|
if (out == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
pos = 0;
|
|
|
|
remainder = length;
|
|
|
|
while (remainder > 0 &&
|
|
|
|
(res = g_output_stream_write (G_OUTPUT_STREAM (out),
|
|
|
|
contents + pos,
|
|
|
|
MIN (remainder, GET_CONTENT_BLOCK_SIZE),
|
|
|
|
cancellable,
|
|
|
|
error)) > 0)
|
|
|
|
{
|
|
|
|
pos += res;
|
|
|
|
remainder -= res;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (remainder > 0 && res < 0)
|
|
|
|
{
|
|
|
|
/* Ignore errors on close */
|
|
|
|
g_output_stream_close (G_OUTPUT_STREAM (out), cancellable, NULL);
|
|
|
|
|
|
|
|
/* error is set already */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!g_output_stream_close (G_OUTPUT_STREAM (out), cancellable, error))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (new_etag)
|
|
|
|
*new_etag = g_file_output_stream_get_etag (out);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
GFile *file;
|
|
|
|
GError *error;
|
|
|
|
GCancellable *cancellable;
|
|
|
|
GAsyncReadyCallback callback;
|
|
|
|
gpointer user_data;
|
|
|
|
const char *content;
|
|
|
|
gsize length;
|
|
|
|
gsize pos;
|
|
|
|
char *etag;
|
|
|
|
} ReplaceContentsData;
|
|
|
|
|
|
|
|
static void
|
|
|
|
replace_contents_data_free (ReplaceContentsData *data)
|
|
|
|
{
|
|
|
|
if (data->error)
|
|
|
|
g_error_free (data->error);
|
|
|
|
if (data->cancellable)
|
|
|
|
g_object_unref (data->cancellable);
|
|
|
|
g_object_unref (data->file);
|
|
|
|
g_free (data->etag);
|
|
|
|
g_free (data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
replace_contents_close_callback (GObject *obj,
|
2007-11-26 17:13:05 +01:00
|
|
|
GAsyncResult *close_res,
|
2007-11-29 08:17:59 +01:00
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GOutputStream *stream = G_OUTPUT_STREAM (obj);
|
|
|
|
ReplaceContentsData *data = user_data;
|
|
|
|
GSimpleAsyncResult *res;
|
|
|
|
|
|
|
|
/* Ignore errors here, we're only reading anyway */
|
|
|
|
g_output_stream_close_finish (stream, close_res, NULL);
|
|
|
|
g_object_unref (stream);
|
|
|
|
|
|
|
|
data->etag = g_file_output_stream_get_etag (G_FILE_OUTPUT_STREAM (stream));
|
|
|
|
|
|
|
|
res = g_simple_async_result_new (G_OBJECT (data->file),
|
|
|
|
data->callback,
|
|
|
|
data->user_data,
|
|
|
|
g_file_replace_contents_async);
|
|
|
|
g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)replace_contents_data_free);
|
|
|
|
g_simple_async_result_complete (res);
|
|
|
|
g_object_unref (res);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
replace_contents_write_callback (GObject *obj,
|
2007-11-26 17:13:05 +01:00
|
|
|
GAsyncResult *read_res,
|
2007-11-29 08:17:59 +01:00
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GOutputStream *stream = G_OUTPUT_STREAM (obj);
|
|
|
|
ReplaceContentsData *data = user_data;
|
|
|
|
GError *error = NULL;
|
|
|
|
gssize write_size;
|
|
|
|
|
|
|
|
write_size = g_output_stream_write_finish (stream, read_res, &error);
|
|
|
|
|
|
|
|
if (write_size <= 0)
|
|
|
|
{
|
|
|
|
/* Error or EOF, close the file */
|
|
|
|
if (write_size < 0)
|
|
|
|
data->error = error;
|
|
|
|
g_output_stream_close_async (stream, 0,
|
|
|
|
data->cancellable,
|
|
|
|
replace_contents_close_callback, data);
|
|
|
|
}
|
|
|
|
else if (write_size > 0)
|
|
|
|
{
|
|
|
|
data->pos += write_size;
|
|
|
|
|
|
|
|
if (data->pos >= data->length)
|
|
|
|
g_output_stream_close_async (stream, 0,
|
|
|
|
data->cancellable,
|
|
|
|
replace_contents_close_callback, data);
|
|
|
|
else
|
|
|
|
g_output_stream_write_async (stream,
|
|
|
|
data->content + data->pos,
|
|
|
|
data->length - data->pos,
|
|
|
|
0,
|
|
|
|
data->cancellable,
|
|
|
|
replace_contents_write_callback,
|
|
|
|
data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
replace_contents_open_callback (GObject *obj,
|
2007-11-26 17:13:05 +01:00
|
|
|
GAsyncResult *open_res,
|
2007-11-29 08:17:59 +01:00
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFile *file = G_FILE (obj);
|
|
|
|
GFileOutputStream *stream;
|
|
|
|
ReplaceContentsData *data = user_data;
|
|
|
|
GError *error = NULL;
|
|
|
|
GSimpleAsyncResult *res;
|
|
|
|
|
|
|
|
stream = g_file_replace_finish (file, open_res, &error);
|
|
|
|
|
|
|
|
if (stream)
|
|
|
|
{
|
|
|
|
g_output_stream_write_async (G_OUTPUT_STREAM (stream),
|
|
|
|
data->content + data->pos,
|
|
|
|
data->length - data->pos,
|
|
|
|
0,
|
|
|
|
data->cancellable,
|
|
|
|
replace_contents_write_callback,
|
|
|
|
data);
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
res = g_simple_async_result_new_from_error (G_OBJECT (data->file),
|
|
|
|
data->callback,
|
|
|
|
data->user_data,
|
|
|
|
error);
|
|
|
|
g_simple_async_result_complete (res);
|
|
|
|
g_error_free (error);
|
|
|
|
replace_contents_data_free (data);
|
|
|
|
g_object_unref (res);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_replace_contents_async:
|
|
|
|
* @file: input #GFile.
|
|
|
|
* @contents: string of contents to replace the file with.
|
2007-11-27 15:00:13 +01:00
|
|
|
* @length: the length of @contents in bytes.
|
2007-11-26 17:13:05 +01:00
|
|
|
* @etag: a new entity tag for the @file.
|
|
|
|
* @make_backup: a #gboolean.
|
|
|
|
* @flags: a set of #GFileCreateFlags.
|
|
|
|
* @cancellable: optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @callback: a #GAsyncReadyCallback.
|
|
|
|
* @user_data: a #gpointer.
|
|
|
|
*
|
|
|
|
* Starts an asynchronous replacement of @file with the given
|
|
|
|
* @contents of @length bytes. @etag will replace the document's
|
|
|
|
* current entity tag.
|
|
|
|
*
|
|
|
|
* When this operation has completed, @callback will be called with
|
|
|
|
* @user_user data, and the operation can be finalized with
|
|
|
|
* g_file_replace_contents_finish().
|
|
|
|
*
|
|
|
|
* If @cancellable is not %NULL, then the operation can be cancelled by
|
|
|
|
* triggering the cancellable object from another thread. If the operation
|
2007-11-27 15:00:13 +01:00
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* If @make_backup is %TRUE, this function will attempt to
|
|
|
|
* make a backup of @file.
|
|
|
|
**/
|
|
|
|
void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_replace_contents_async (GFile *file,
|
|
|
|
const char *contents,
|
|
|
|
gsize length,
|
|
|
|
const char *etag,
|
|
|
|
gboolean make_backup,
|
|
|
|
GFileCreateFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
ReplaceContentsData *data;
|
|
|
|
|
|
|
|
g_return_if_fail (G_IS_FILE (file));
|
|
|
|
g_return_if_fail (contents != NULL);
|
|
|
|
|
|
|
|
data = g_new0 (ReplaceContentsData, 1);
|
|
|
|
|
|
|
|
if (cancellable)
|
|
|
|
data->cancellable = g_object_ref (cancellable);
|
|
|
|
data->callback = callback;
|
|
|
|
data->user_data = user_data;
|
|
|
|
data->content = contents;
|
|
|
|
data->length = length;
|
|
|
|
data->pos = 0;
|
|
|
|
data->file = g_object_ref (file);
|
|
|
|
|
|
|
|
g_file_replace_async (file,
|
|
|
|
etag,
|
|
|
|
make_backup,
|
|
|
|
flags,
|
|
|
|
0,
|
|
|
|
cancellable,
|
|
|
|
replace_contents_open_callback,
|
|
|
|
data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_replace_contents_finish:
|
|
|
|
* @file: input #GFile.
|
2007-11-27 15:00:13 +01:00
|
|
|
* @res: a #GAsyncResult.
|
|
|
|
* @new_etag: a location of a new entity tag for the document.
|
2007-11-28 07:01:13 +01:00
|
|
|
* @error: a #GError, or %NULL
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2007-11-29 11:18:55 +01:00
|
|
|
* Finishes an asynchronous replace of the given @file. See
|
|
|
|
* g_file_replace_contents_async(). Sets @new_etag to the new entity
|
|
|
|
* tag for the document, if present.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* Returns: %TRUE on success, %FALSE on failure.
|
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_replace_contents_finish (GFile *file,
|
|
|
|
GAsyncResult *res,
|
|
|
|
char **new_etag,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GSimpleAsyncResult *simple;
|
|
|
|
ReplaceContentsData *data;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), FALSE);
|
|
|
|
g_return_val_if_fail (G_IS_SIMPLE_ASYNC_RESULT (res), FALSE);
|
|
|
|
|
|
|
|
simple = G_SIMPLE_ASYNC_RESULT (res);
|
|
|
|
|
|
|
|
if (g_simple_async_result_propagate_error (simple, error))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
g_assert (g_simple_async_result_get_source_tag (simple) == g_file_replace_contents_async);
|
|
|
|
|
|
|
|
data = g_simple_async_result_get_op_res_gpointer (simple);
|
|
|
|
|
|
|
|
if (data->error)
|
|
|
|
{
|
|
|
|
g_propagate_error (error, data->error);
|
|
|
|
data->error = NULL;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (new_etag)
|
|
|
|
{
|
|
|
|
*new_etag = data->etag;
|
|
|
|
data->etag = NULL; /* Take ownership */
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2007-11-28 13:39:07 +01:00
|
|
|
|
|
|
|
#define __G_FILE_C__
|
|
|
|
#include "gioaliasdef.c"
|