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
|
2014-01-23 12:58:29 +01:00
|
|
|
* Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* Author: Alexander Larsson <alexl@redhat.com>
|
|
|
|
*/
|
|
|
|
|
2008-06-22 17:10:51 +02:00
|
|
|
#include "config.h"
|
2007-11-26 17:13:05 +01:00
|
|
|
#include "gfileenumerator.h"
|
2008-07-01 08:32:35 +02:00
|
|
|
#include "gfile.h"
|
2007-11-26 17:13:05 +01:00
|
|
|
#include "gioscheduler.h"
|
2008-07-01 08:32:35 +02:00
|
|
|
#include "gasyncresult.h"
|
2007-11-26 17:13:05 +01:00
|
|
|
#include "gasynchelper.h"
|
2008-07-01 08:32:35 +02:00
|
|
|
#include "gioerror.h"
|
2007-11-26 17:13:05 +01:00
|
|
|
#include "glibintl.h"
|
|
|
|
|
2013-06-11 01:29:58 +02:00
|
|
|
struct _GFileEnumeratorPrivate {
|
|
|
|
/* TODO: Should be public for subclasses? */
|
|
|
|
GFile *container;
|
|
|
|
guint closed : 1;
|
|
|
|
guint pending : 1;
|
|
|
|
GAsyncReadyCallback outstanding_callback;
|
|
|
|
GError *outstanding_error;
|
|
|
|
};
|
2007-11-28 13:39:07 +01:00
|
|
|
|
2007-11-27 15:00:13 +01:00
|
|
|
/**
|
|
|
|
* SECTION:gfileenumerator
|
2007-11-28 07:43:33 +01:00
|
|
|
* @short_description: Enumerated Files Routines
|
2008-02-21 19:20:17 +01:00
|
|
|
* @include: gio/gio.h
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
2014-02-01 17:57:13 +01:00
|
|
|
* #GFileEnumerator allows you to operate on a set of #GFiles,
|
2007-12-18 03:52:11 +01:00
|
|
|
* returning a #GFileInfo structure for each file enumerated (e.g.
|
|
|
|
* g_file_enumerate_children() will return a #GFileEnumerator for each
|
|
|
|
* of the children within a directory).
|
2007-12-09 16:51:12 +01:00
|
|
|
*
|
|
|
|
* To get the next file's information from a #GFileEnumerator, use
|
|
|
|
* g_file_enumerator_next_file() or its asynchronous version,
|
2009-06-16 15:18:11 +02:00
|
|
|
* g_file_enumerator_next_files_async(). Note that the asynchronous
|
2014-02-01 17:57:13 +01:00
|
|
|
* version will return a list of #GFileInfos, whereas the
|
2007-12-18 03:52:11 +01:00
|
|
|
* synchronous will only return the next file in the enumerator.
|
2007-12-09 16:51:12 +01:00
|
|
|
*
|
2013-06-06 00:05:12 +02:00
|
|
|
* The ordering of returned files is unspecified for non-Unix
|
|
|
|
* platforms; for more information, see g_dir_read_name(). On Unix,
|
|
|
|
* when operating on local files, returned files will be sorted by
|
|
|
|
* inode number. Effectively you can assume that the ordering of
|
|
|
|
* returned files will be stable between successive calls (and
|
|
|
|
* applications) assuming the directory is unchanged.
|
|
|
|
*
|
|
|
|
* If your application needs a specific ordering, such as by name or
|
|
|
|
* modification time, you will have to implement that in your
|
|
|
|
* application code.
|
|
|
|
*
|
2007-12-18 03:52:11 +01:00
|
|
|
* To close a #GFileEnumerator, use g_file_enumerator_close(), or
|
|
|
|
* its asynchronous version, g_file_enumerator_close_async(). Once
|
|
|
|
* a #GFileEnumerator is closed, no further actions may be performed
|
|
|
|
* on it, and it should be freed with g_object_unref().
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
2013-06-11 01:29:58 +02:00
|
|
|
G_DEFINE_TYPE_WITH_PRIVATE (GFileEnumerator, g_file_enumerator, G_TYPE_OBJECT)
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2008-06-16 10:49:08 +02:00
|
|
|
enum {
|
|
|
|
PROP_0,
|
|
|
|
PROP_CONTAINER
|
|
|
|
};
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
static void g_file_enumerator_real_next_files_async (GFileEnumerator *enumerator,
|
|
|
|
int num_files,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
static GList * g_file_enumerator_real_next_files_finish (GFileEnumerator *enumerator,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error);
|
|
|
|
static void g_file_enumerator_real_close_async (GFileEnumerator *enumerator,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
static gboolean g_file_enumerator_real_close_finish (GFileEnumerator *enumerator,
|
|
|
|
GAsyncResult *res,
|
|
|
|
GError **error);
|
|
|
|
|
2008-06-16 10:49:08 +02:00
|
|
|
static void
|
|
|
|
g_file_enumerator_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GFileEnumerator *enumerator;
|
|
|
|
|
|
|
|
enumerator = G_FILE_ENUMERATOR (object);
|
|
|
|
|
|
|
|
switch (property_id) {
|
|
|
|
case PROP_CONTAINER:
|
|
|
|
enumerator->priv->container = g_value_dup_object (value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_file_enumerator_dispose (GObject *object)
|
|
|
|
{
|
|
|
|
GFileEnumerator *enumerator;
|
|
|
|
|
|
|
|
enumerator = G_FILE_ENUMERATOR (object);
|
|
|
|
|
|
|
|
if (enumerator->priv->container) {
|
|
|
|
g_object_unref (enumerator->priv->container);
|
|
|
|
enumerator->priv->container = NULL;
|
|
|
|
}
|
2008-06-16 11:54:04 +02:00
|
|
|
|
|
|
|
G_OBJECT_CLASS (g_file_enumerator_parent_class)->dispose (object);
|
2008-06-16 10:49:08 +02:00
|
|
|
}
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
static void
|
|
|
|
g_file_enumerator_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GFileEnumerator *enumerator;
|
|
|
|
|
|
|
|
enumerator = G_FILE_ENUMERATOR (object);
|
|
|
|
|
|
|
|
if (!enumerator->priv->closed)
|
|
|
|
g_file_enumerator_close (enumerator, NULL, NULL);
|
|
|
|
|
2008-06-16 11:54:04 +02:00
|
|
|
G_OBJECT_CLASS (g_file_enumerator_parent_class)->finalize (object);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_file_enumerator_class_init (GFileEnumeratorClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
2013-06-11 01:29:58 +02:00
|
|
|
|
2008-06-16 10:49:08 +02:00
|
|
|
gobject_class->set_property = g_file_enumerator_set_property;
|
|
|
|
gobject_class->dispose = g_file_enumerator_dispose;
|
2007-11-26 17:13:05 +01:00
|
|
|
gobject_class->finalize = g_file_enumerator_finalize;
|
|
|
|
|
|
|
|
klass->next_files_async = g_file_enumerator_real_next_files_async;
|
|
|
|
klass->next_files_finish = g_file_enumerator_real_next_files_finish;
|
|
|
|
klass->close_async = g_file_enumerator_real_close_async;
|
|
|
|
klass->close_finish = g_file_enumerator_real_close_finish;
|
2008-06-16 10:49:08 +02:00
|
|
|
|
|
|
|
g_object_class_install_property
|
|
|
|
(gobject_class, PROP_CONTAINER,
|
|
|
|
g_param_spec_object ("container", P_("Container"),
|
|
|
|
P_("The container that is being enumerated"),
|
|
|
|
G_TYPE_FILE,
|
|
|
|
G_PARAM_WRITABLE |
|
|
|
|
G_PARAM_CONSTRUCT_ONLY |
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_file_enumerator_init (GFileEnumerator *enumerator)
|
|
|
|
{
|
2013-06-24 16:43:04 +02:00
|
|
|
enumerator->priv = g_file_enumerator_get_instance_private (enumerator);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_enumerator_next_file:
|
|
|
|
* @enumerator: a #GFileEnumerator.
|
2010-12-27 15:48:31 +01:00
|
|
|
* @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
|
2011-08-29 20:49:32 +02:00
|
|
|
* @error: location to store the error occurring, or %NULL to ignore
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* Returns information for the next file in the enumerated object.
|
2007-12-09 16:51:12 +01:00
|
|
|
* Will block until the information is available. The #GFileInfo
|
|
|
|
* returned from this function will contain attributes that match the
|
|
|
|
* attribute string that was passed when the #GFileEnumerator was created.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2013-06-06 00:05:12 +02:00
|
|
|
* See the documentation of #GFileEnumerator for information about the
|
|
|
|
* order of returned files.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* On error, returns %NULL and sets @error to the error. If the
|
|
|
|
* enumerator is at the end, %NULL will be returned and @error will
|
|
|
|
* be unset.
|
|
|
|
*
|
2014-05-21 09:27:36 +02:00
|
|
|
* Returns: (nullable) (transfer full): A #GFileInfo or %NULL on error
|
|
|
|
* or end of enumerator. Free the returned object with
|
|
|
|
* g_object_unref() when no longer needed.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GFileInfo *
|
|
|
|
g_file_enumerator_next_file (GFileEnumerator *enumerator,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
GFileEnumeratorClass *class;
|
|
|
|
GFileInfo *info;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE_ENUMERATOR (enumerator), NULL);
|
|
|
|
g_return_val_if_fail (enumerator != NULL, NULL);
|
|
|
|
|
|
|
|
if (enumerator->priv->closed)
|
|
|
|
{
|
2008-06-16 18:53:58 +02:00
|
|
|
g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_CLOSED,
|
|
|
|
_("Enumerator is closed"));
|
2007-11-26 17:13:05 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (enumerator->priv->pending)
|
|
|
|
{
|
2008-06-16 18:53:58 +02:00
|
|
|
g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_PENDING,
|
|
|
|
_("File enumerator has outstanding operation"));
|
2007-11-26 17:13:05 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (enumerator->priv->outstanding_error)
|
|
|
|
{
|
|
|
|
g_propagate_error (error, enumerator->priv->outstanding_error);
|
|
|
|
enumerator->priv->outstanding_error = NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
class = G_FILE_ENUMERATOR_GET_CLASS (enumerator);
|
|
|
|
|
|
|
|
if (cancellable)
|
2007-12-13 17:48:06 +01:00
|
|
|
g_cancellable_push_current (cancellable);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
enumerator->priv->pending = TRUE;
|
|
|
|
info = (* class->next_file) (enumerator, cancellable, error);
|
|
|
|
enumerator->priv->pending = FALSE;
|
|
|
|
|
|
|
|
if (cancellable)
|
2007-12-13 17:48:06 +01:00
|
|
|
g_cancellable_pop_current (cancellable);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_enumerator_close:
|
|
|
|
* @enumerator: a #GFileEnumerator.
|
2010-12-27 15:48:31 +01:00
|
|
|
* @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
|
2011-08-29 20:49:32 +02:00
|
|
|
* @error: location to store the error occurring, or %NULL to ignore
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* Releases all resources used by this enumerator, making the
|
|
|
|
* enumerator return %G_IO_ERROR_CLOSED on all calls.
|
|
|
|
*
|
|
|
|
* This will be automatically called when the last reference
|
2008-01-21 14:08:23 +01:00
|
|
|
* is dropped, but you might want to call this function to make
|
|
|
|
* sure resources are released as early as possible.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
2014-02-20 01:35:23 +01:00
|
|
|
* Returns: #TRUE on success or #FALSE on error.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_enumerator_close (GFileEnumerator *enumerator,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileEnumeratorClass *class;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE_ENUMERATOR (enumerator), FALSE);
|
|
|
|
g_return_val_if_fail (enumerator != NULL, FALSE);
|
|
|
|
|
|
|
|
class = G_FILE_ENUMERATOR_GET_CLASS (enumerator);
|
|
|
|
|
|
|
|
if (enumerator->priv->closed)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
if (enumerator->priv->pending)
|
|
|
|
{
|
2008-06-16 18:53:58 +02:00
|
|
|
g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_PENDING,
|
|
|
|
_("File enumerator has outstanding operation"));
|
2007-11-26 17:13:05 +01:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cancellable)
|
2007-12-13 17:48:06 +01:00
|
|
|
g_cancellable_push_current (cancellable);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
enumerator->priv->pending = TRUE;
|
2007-12-05 11:38:03 +01:00
|
|
|
(* class->close_fn) (enumerator, cancellable, error);
|
2007-11-26 17:13:05 +01:00
|
|
|
enumerator->priv->pending = FALSE;
|
|
|
|
enumerator->priv->closed = TRUE;
|
|
|
|
|
|
|
|
if (cancellable)
|
2007-12-13 17:48:06 +01:00
|
|
|
g_cancellable_pop_current (cancellable);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
next_async_callback_wrapper (GObject *source_object,
|
2007-11-26 17:13:05 +01:00
|
|
|
GAsyncResult *res,
|
2007-11-29 08:17:59 +01:00
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileEnumerator *enumerator = G_FILE_ENUMERATOR (source_object);
|
|
|
|
|
|
|
|
enumerator->priv->pending = FALSE;
|
|
|
|
if (enumerator->priv->outstanding_callback)
|
|
|
|
(*enumerator->priv->outstanding_callback) (source_object, res, user_data);
|
|
|
|
g_object_unref (enumerator);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_enumerator_next_files_async:
|
|
|
|
* @enumerator: a #GFileEnumerator.
|
|
|
|
* @num_files: the number of file info objects to request
|
2014-02-08 18:26:56 +01:00
|
|
|
* @io_priority: the [I/O priority][io-priority] of the request
|
2010-12-27 15:48:31 +01:00
|
|
|
* @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied
|
|
|
|
* @user_data: (closure): the data to pass to callback function
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* Request information for a number of files from the enumerator asynchronously.
|
|
|
|
* When all i/o for the operation is finished the @callback will be called with
|
2007-12-09 16:51:12 +01:00
|
|
|
* the requested information.
|
2013-06-06 00:05:12 +02:00
|
|
|
|
|
|
|
* See the documentation of #GFileEnumerator for information about the
|
|
|
|
* order of returned files.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* The callback can be called with less than @num_files files in case of error
|
|
|
|
* or at the end of the enumerator. In case of a partial error the callback will
|
|
|
|
* be called with any succeeding items and no error, and on the next request the
|
|
|
|
* error will be reported. If a request is cancelled the callback will be called
|
|
|
|
* with %G_IO_ERROR_CANCELLED.
|
|
|
|
*
|
|
|
|
* During an async request no other sync and async calls are allowed, and will
|
|
|
|
* result in %G_IO_ERROR_PENDING errors.
|
|
|
|
*
|
|
|
|
* Any outstanding i/o request with higher priority (lower numerical value) will
|
|
|
|
* be executed before an outstanding request with lower priority. Default
|
|
|
|
* priority is %G_PRIORITY_DEFAULT.
|
|
|
|
**/
|
|
|
|
void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_enumerator_next_files_async (GFileEnumerator *enumerator,
|
|
|
|
int num_files,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileEnumeratorClass *class;
|
|
|
|
|
|
|
|
g_return_if_fail (G_IS_FILE_ENUMERATOR (enumerator));
|
|
|
|
g_return_if_fail (enumerator != NULL);
|
|
|
|
g_return_if_fail (num_files >= 0);
|
|
|
|
|
|
|
|
if (num_files == 0)
|
|
|
|
{
|
2012-08-02 21:50:35 +02:00
|
|
|
GTask *task;
|
|
|
|
|
|
|
|
task = g_task_new (enumerator, cancellable, callback, user_data);
|
|
|
|
g_task_set_source_tag (task, g_file_enumerator_next_files_async);
|
|
|
|
g_task_return_pointer (task, NULL, NULL);
|
|
|
|
g_object_unref (task);
|
2007-11-26 17:13:05 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (enumerator->priv->closed)
|
|
|
|
{
|
2012-08-02 21:50:35 +02:00
|
|
|
g_task_report_new_error (enumerator, callback, user_data,
|
|
|
|
g_file_enumerator_next_files_async,
|
|
|
|
G_IO_ERROR, G_IO_ERROR_CLOSED,
|
|
|
|
_("File enumerator is already closed"));
|
2007-11-26 17:13:05 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (enumerator->priv->pending)
|
|
|
|
{
|
2012-08-02 21:50:35 +02:00
|
|
|
g_task_report_new_error (enumerator, callback, user_data,
|
|
|
|
g_file_enumerator_next_files_async,
|
|
|
|
G_IO_ERROR, G_IO_ERROR_PENDING,
|
|
|
|
_("File enumerator has outstanding operation"));
|
2007-11-26 17:13:05 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
class = G_FILE_ENUMERATOR_GET_CLASS (enumerator);
|
|
|
|
|
|
|
|
enumerator->priv->pending = TRUE;
|
|
|
|
enumerator->priv->outstanding_callback = callback;
|
|
|
|
g_object_ref (enumerator);
|
|
|
|
(* class->next_files_async) (enumerator, num_files, io_priority, cancellable,
|
|
|
|
next_async_callback_wrapper, user_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_enumerator_next_files_finish:
|
|
|
|
* @enumerator: a #GFileEnumerator.
|
|
|
|
* @result: a #GAsyncResult.
|
2011-08-29 20:49:32 +02:00
|
|
|
* @error: a #GError location to store the error occurring, or %NULL to
|
2007-11-26 17:13:05 +01:00
|
|
|
* ignore.
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
2007-12-09 16:51:12 +01:00
|
|
|
* Finishes the asynchronous operation started with g_file_enumerator_next_files_async().
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
2014-04-16 23:56:02 +02:00
|
|
|
* Returns: (transfer full) (element-type Gio.FileInfo): a #GList of #GFileInfos. You must free the list with
|
2009-06-18 15:27:12 +02:00
|
|
|
* g_list_free() and unref the infos with g_object_unref() when you're
|
2008-03-31 05:30:48 +02:00
|
|
|
* done with them.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
GList *
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_enumerator_next_files_finish (GFileEnumerator *enumerator,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileEnumeratorClass *class;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE_ENUMERATOR (enumerator), NULL);
|
|
|
|
g_return_val_if_fail (G_IS_ASYNC_RESULT (result), NULL);
|
|
|
|
|
2012-05-10 15:00:45 +02:00
|
|
|
if (g_async_result_legacy_propagate_error (result, error))
|
|
|
|
return NULL;
|
2012-05-10 17:09:52 +02:00
|
|
|
else if (g_async_result_is_tagged (result, g_file_enumerator_next_files_async))
|
2012-08-02 21:50:35 +02:00
|
|
|
return g_task_propagate_pointer (G_TASK (result), error);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
class = G_FILE_ENUMERATOR_GET_CLASS (enumerator);
|
|
|
|
return class->next_files_finish (enumerator, result, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
close_async_callback_wrapper (GObject *source_object,
|
2007-11-26 17:13:05 +01:00
|
|
|
GAsyncResult *res,
|
2007-11-29 08:17:59 +01:00
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileEnumerator *enumerator = G_FILE_ENUMERATOR (source_object);
|
|
|
|
|
|
|
|
enumerator->priv->pending = FALSE;
|
|
|
|
enumerator->priv->closed = TRUE;
|
|
|
|
if (enumerator->priv->outstanding_callback)
|
|
|
|
(*enumerator->priv->outstanding_callback) (source_object, res, user_data);
|
|
|
|
g_object_unref (enumerator);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_enumerator_close_async:
|
|
|
|
* @enumerator: a #GFileEnumerator.
|
2014-02-08 18:26:56 +01:00
|
|
|
* @io_priority: the [I/O priority][io-priority] of the request
|
2010-12-27 15:48:31 +01:00
|
|
|
* @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied
|
|
|
|
* @user_data: (closure): the data to pass to callback function
|
2007-12-09 16:51:12 +01:00
|
|
|
*
|
|
|
|
* Asynchronously closes the file enumerator.
|
|
|
|
*
|
|
|
|
* 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 in
|
|
|
|
* g_file_enumerator_close_finish().
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_enumerator_close_async (GFileEnumerator *enumerator,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileEnumeratorClass *class;
|
|
|
|
|
|
|
|
g_return_if_fail (G_IS_FILE_ENUMERATOR (enumerator));
|
|
|
|
|
|
|
|
if (enumerator->priv->closed)
|
|
|
|
{
|
2012-08-02 21:50:35 +02:00
|
|
|
g_task_report_new_error (enumerator, callback, user_data,
|
|
|
|
g_file_enumerator_close_async,
|
|
|
|
G_IO_ERROR, G_IO_ERROR_CLOSED,
|
|
|
|
_("File enumerator is already closed"));
|
2007-11-26 17:13:05 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (enumerator->priv->pending)
|
|
|
|
{
|
2012-08-02 21:50:35 +02:00
|
|
|
g_task_report_new_error (enumerator, callback, user_data,
|
|
|
|
g_file_enumerator_close_async,
|
|
|
|
G_IO_ERROR, G_IO_ERROR_PENDING,
|
|
|
|
_("File enumerator has outstanding operation"));
|
2007-11-26 17:13:05 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
class = G_FILE_ENUMERATOR_GET_CLASS (enumerator);
|
|
|
|
|
|
|
|
enumerator->priv->pending = TRUE;
|
|
|
|
enumerator->priv->outstanding_callback = callback;
|
|
|
|
g_object_ref (enumerator);
|
|
|
|
(* class->close_async) (enumerator, io_priority, cancellable,
|
|
|
|
close_async_callback_wrapper, user_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_enumerator_close_finish:
|
|
|
|
* @enumerator: a #GFileEnumerator.
|
|
|
|
* @result: a #GAsyncResult.
|
2011-08-29 20:49:32 +02:00
|
|
|
* @error: a #GError location to store the error occurring, or %NULL to
|
2007-11-26 17:13:05 +01:00
|
|
|
* ignore.
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
2007-12-09 16:51:12 +01:00
|
|
|
* Finishes closing a file enumerator, started from g_file_enumerator_close_async().
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
2007-12-09 16:51:12 +01:00
|
|
|
* If the file enumerator was already closed when g_file_enumerator_close_async()
|
|
|
|
* was called, then this function will report %G_IO_ERROR_CLOSED in @error, and
|
|
|
|
* return %FALSE. If the file enumerator had pending operation when the close
|
|
|
|
* operation was started, then this function will report %G_IO_ERROR_PENDING, and
|
|
|
|
* return %FALSE. If @cancellable was not %NULL, then the operation may have been
|
|
|
|
* cancelled by triggering the cancellable object from another thread. If the operation
|
|
|
|
* was cancelled, the error %G_IO_ERROR_CANCELLED will be set, and %FALSE will be
|
|
|
|
* returned.
|
2007-11-27 15:00:13 +01:00
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: %TRUE if the close operation has finished successfully.
|
|
|
|
**/
|
|
|
|
gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_enumerator_close_finish (GFileEnumerator *enumerator,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
GFileEnumeratorClass *class;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE_ENUMERATOR (enumerator), FALSE);
|
|
|
|
g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
|
|
|
|
|
2012-05-10 15:00:45 +02:00
|
|
|
if (g_async_result_legacy_propagate_error (result, error))
|
|
|
|
return FALSE;
|
2012-08-02 21:50:35 +02:00
|
|
|
else if (g_async_result_is_tagged (result, g_file_enumerator_close_async))
|
|
|
|
return g_task_propagate_boolean (G_TASK (result), error);
|
2012-05-10 15:00:45 +02:00
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
class = G_FILE_ENUMERATOR_GET_CLASS (enumerator);
|
|
|
|
return class->close_finish (enumerator, result, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_enumerator_is_closed:
|
|
|
|
* @enumerator: a #GFileEnumerator.
|
2007-12-09 16:51:12 +01:00
|
|
|
*
|
|
|
|
* Checks if the file enumerator has been closed.
|
2007-11-26 17:13:05 +01:00
|
|
|
*
|
|
|
|
* Returns: %TRUE if the @enumerator is closed.
|
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
g_file_enumerator_is_closed (GFileEnumerator *enumerator)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (G_IS_FILE_ENUMERATOR (enumerator), TRUE);
|
|
|
|
|
|
|
|
return enumerator->priv->closed;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_enumerator_has_pending:
|
|
|
|
* @enumerator: a #GFileEnumerator.
|
|
|
|
*
|
2007-12-09 16:51:12 +01:00
|
|
|
* Checks if the file enumerator has pending operations.
|
|
|
|
*
|
2007-11-26 17:13:05 +01:00
|
|
|
* Returns: %TRUE if the @enumerator has pending operations.
|
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
g_file_enumerator_has_pending (GFileEnumerator *enumerator)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (G_IS_FILE_ENUMERATOR (enumerator), TRUE);
|
|
|
|
|
|
|
|
return enumerator->priv->pending;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_file_enumerator_set_pending:
|
|
|
|
* @enumerator: a #GFileEnumerator.
|
|
|
|
* @pending: a boolean value.
|
|
|
|
*
|
2007-12-09 16:51:12 +01:00
|
|
|
* Sets the file enumerator as having pending operations.
|
2007-11-26 17:13:05 +01:00
|
|
|
**/
|
|
|
|
void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_enumerator_set_pending (GFileEnumerator *enumerator,
|
|
|
|
gboolean pending)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
g_return_if_fail (G_IS_FILE_ENUMERATOR (enumerator));
|
|
|
|
|
|
|
|
enumerator->priv->pending = pending;
|
|
|
|
}
|
|
|
|
|
2015-02-13 00:20:14 +01:00
|
|
|
/**
|
|
|
|
* g_file_enumerator_iterate:
|
|
|
|
* @direnum: an open #GFileEnumerator
|
|
|
|
* @out_info: (out) (transfer none) (allow-none): Output location for the next #GFileInfo, or %NULL
|
|
|
|
* @out_child: (out) (transfer none) (allow-none): Output location for the next #GFile, or %NULL
|
|
|
|
* @cancellable: a #GCancellable
|
|
|
|
* @error: a #GError
|
|
|
|
*
|
|
|
|
* This is a version of g_file_enumerator_next_file() that's easier to
|
|
|
|
* use correctly from C programs. With g_file_enumerator_next_file(),
|
|
|
|
* the gboolean return value signifies "end of iteration or error", which
|
|
|
|
* requires allocation of a temporary #GError.
|
|
|
|
*
|
|
|
|
* In contrast, with this function, a %FALSE return from
|
|
|
|
* gs_file_enumerator_iterate() <emphasis>always</emphasis> means
|
|
|
|
* "error". End of iteration is signaled by @out_info or @out_child being %NULL.
|
|
|
|
*
|
|
|
|
* Another crucial difference is that the references for @out_info and
|
|
|
|
* @out_child are owned by @direnum (they are cached as hidden
|
|
|
|
* properties). You must not unref them in your own code. This makes
|
|
|
|
* memory management significantly easier for C code in combination
|
|
|
|
* with loops.
|
|
|
|
*
|
|
|
|
* Finally, this function optionally allows retrieving a #GFile as
|
|
|
|
* well.
|
|
|
|
*
|
|
|
|
* You must specify at least one of @out_info or @out_child.
|
|
|
|
*
|
|
|
|
* The code pattern for correctly using g_file_enumerator_iterate() from C
|
|
|
|
* is:
|
|
|
|
*
|
|
|
|
* |[
|
|
|
|
* direnum = g_file_enumerate_children (file, ...);
|
|
|
|
* while (TRUE)
|
|
|
|
* {
|
|
|
|
* GFileInfo *info;
|
|
|
|
* if (!g_file_enumerator_iterate (direnum, &info, NULL, cancellable, error))
|
|
|
|
* goto out;
|
|
|
|
* if (!info)
|
|
|
|
* break;
|
|
|
|
* ... do stuff with "info"; do not unref it! ...
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* out:
|
|
|
|
* g_object_unref (direnum); // Note: frees the last @info
|
|
|
|
* ]|
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Since: 2.44
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
g_file_enumerator_iterate (GFileEnumerator *direnum,
|
|
|
|
GFileInfo **out_info,
|
|
|
|
GFile **out_child,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
gboolean ret = FALSE;
|
|
|
|
GError *temp_error = NULL;
|
|
|
|
GFileInfo *ret_info = NULL;
|
|
|
|
|
|
|
|
static GQuark cached_info_quark;
|
|
|
|
static GQuark cached_child_quark;
|
|
|
|
static gsize quarks_initialized;
|
|
|
|
|
|
|
|
g_return_val_if_fail (direnum != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (out_info != NULL || out_child != NULL, FALSE);
|
|
|
|
|
|
|
|
if (g_once_init_enter (&quarks_initialized))
|
|
|
|
{
|
|
|
|
cached_info_quark = g_quark_from_static_string ("g-cached-info");
|
|
|
|
cached_child_quark = g_quark_from_static_string ("g-cached-child");
|
|
|
|
g_once_init_leave (&quarks_initialized, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
ret_info = g_file_enumerator_next_file (direnum, cancellable, &temp_error);
|
|
|
|
if (temp_error != NULL)
|
|
|
|
{
|
|
|
|
g_propagate_error (error, temp_error);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ret_info)
|
|
|
|
{
|
|
|
|
if (out_info != NULL)
|
|
|
|
{
|
|
|
|
g_object_set_qdata_full ((GObject*)direnum, cached_info_quark, ret_info, (GDestroyNotify)g_object_unref);
|
|
|
|
*out_info = ret_info;
|
|
|
|
}
|
|
|
|
if (out_child != NULL)
|
|
|
|
{
|
|
|
|
const char *name = g_file_info_get_name (ret_info);
|
|
|
|
|
|
|
|
if (G_UNLIKELY (name == NULL))
|
|
|
|
g_warning ("g_file_enumerator_iterate() created without standard::name");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*out_child = g_file_get_child (g_file_enumerator_get_container (direnum), name);
|
|
|
|
g_object_set_qdata_full ((GObject*)direnum, cached_child_quark, *out_child, (GDestroyNotify)g_object_unref);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (out_info)
|
|
|
|
*out_info = NULL;
|
|
|
|
if (out_child)
|
|
|
|
*out_child = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = TRUE;
|
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-06-16 10:49:08 +02:00
|
|
|
/**
|
|
|
|
* g_file_enumerator_get_container:
|
|
|
|
* @enumerator: a #GFileEnumerator
|
|
|
|
*
|
|
|
|
* Get the #GFile container which is being enumerated.
|
|
|
|
*
|
2011-05-26 13:37:24 +02:00
|
|
|
* Returns: (transfer none): the #GFile which is being enumerated.
|
2008-06-16 10:49:08 +02:00
|
|
|
*
|
2009-05-18 13:02:11 +02:00
|
|
|
* Since: 2.18
|
2008-06-16 10:49:08 +02:00
|
|
|
*/
|
|
|
|
GFile *
|
|
|
|
g_file_enumerator_get_container (GFileEnumerator *enumerator)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (G_IS_FILE_ENUMERATOR (enumerator), NULL);
|
|
|
|
|
|
|
|
return enumerator->priv->container;
|
|
|
|
}
|
|
|
|
|
2012-12-12 10:49:28 +01:00
|
|
|
/**
|
|
|
|
* g_file_enumerator_get_child:
|
|
|
|
* @enumerator: a #GFileEnumerator
|
|
|
|
* @info: a #GFileInfo gotten from g_file_enumerator_next_file()
|
|
|
|
* or the async equivalents.
|
|
|
|
*
|
|
|
|
* Return a new #GFile which refers to the file named by @info in the source
|
|
|
|
* directory of @enumerator. This function is primarily intended to be used
|
|
|
|
* inside loops with g_file_enumerator_next_file().
|
|
|
|
*
|
|
|
|
* This is a convenience method that's equivalent to:
|
2014-02-01 21:11:49 +01:00
|
|
|
* |[<!-- language="C" -->
|
2012-12-12 10:49:28 +01:00
|
|
|
* gchar *name = g_file_info_get_name (info);
|
|
|
|
* GFile *child = g_file_get_child (g_file_enumerator_get_container (enumr),
|
|
|
|
* name);
|
|
|
|
* ]|
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): a #GFile for the #GFileInfo passed it.
|
|
|
|
*
|
|
|
|
* Since: 2.36
|
|
|
|
*/
|
|
|
|
GFile *
|
|
|
|
g_file_enumerator_get_child (GFileEnumerator *enumerator,
|
|
|
|
GFileInfo *info)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (G_IS_FILE_ENUMERATOR (enumerator), NULL);
|
|
|
|
|
|
|
|
return g_file_get_child (enumerator->priv->container,
|
|
|
|
g_file_info_get_name (info));
|
|
|
|
}
|
|
|
|
|
2008-01-29 11:35:38 +01:00
|
|
|
static void
|
2012-08-02 21:50:35 +02:00
|
|
|
next_async_op_free (GList *files)
|
2008-01-29 11:35:38 +01:00
|
|
|
{
|
2012-08-02 21:50:35 +02:00
|
|
|
g_list_free_full (files, g_object_unref);
|
2008-01-29 11:35:38 +01:00
|
|
|
}
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
static void
|
2012-08-02 21:50:35 +02:00
|
|
|
next_files_thread (GTask *task,
|
|
|
|
gpointer source_object,
|
|
|
|
gpointer task_data,
|
|
|
|
GCancellable *cancellable)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
2012-08-02 21:50:35 +02:00
|
|
|
GFileEnumerator *enumerator = source_object;
|
|
|
|
int num_files = GPOINTER_TO_INT (task_data);
|
2007-11-26 17:13:05 +01:00
|
|
|
GFileEnumeratorClass *class;
|
2012-08-02 21:50:35 +02:00
|
|
|
GList *files = NULL;
|
2007-11-26 17:13:05 +01:00
|
|
|
GError *error = NULL;
|
|
|
|
GFileInfo *info;
|
|
|
|
int i;
|
|
|
|
|
2012-08-02 21:50:35 +02:00
|
|
|
class = G_FILE_ENUMERATOR_GET_CLASS (enumerator);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2012-08-02 21:50:35 +02:00
|
|
|
for (i = 0; i < num_files; i++)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
if (g_cancellable_set_error_if_cancelled (cancellable, &error))
|
|
|
|
info = NULL;
|
|
|
|
else
|
|
|
|
info = class->next_file (enumerator, cancellable, &error);
|
|
|
|
|
|
|
|
if (info == NULL)
|
|
|
|
{
|
|
|
|
/* If we get an error after first file, return that on next operation */
|
|
|
|
if (error != NULL && i > 0)
|
|
|
|
{
|
2012-08-02 21:50:35 +02:00
|
|
|
if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED))
|
2007-11-26 17:13:05 +01:00
|
|
|
g_error_free (error); /* Never propagate cancel errors to other call */
|
|
|
|
else
|
|
|
|
enumerator->priv->outstanding_error = error;
|
|
|
|
error = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
2012-08-02 21:50:35 +02:00
|
|
|
files = g_list_prepend (files, info);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
2012-08-02 21:50:35 +02:00
|
|
|
|
|
|
|
if (error)
|
|
|
|
g_task_return_error (task, error);
|
|
|
|
else
|
|
|
|
g_task_return_pointer (task, files, (GDestroyNotify)next_async_op_free);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_enumerator_real_next_files_async (GFileEnumerator *enumerator,
|
|
|
|
int num_files,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
2012-08-02 21:50:35 +02:00
|
|
|
GTask *task;
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2012-08-02 21:50:35 +02:00
|
|
|
task = g_task_new (enumerator, cancellable, callback, user_data);
|
|
|
|
g_task_set_task_data (task, GINT_TO_POINTER (num_files), NULL);
|
|
|
|
g_task_set_priority (task, io_priority);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2012-08-02 21:50:35 +02:00
|
|
|
g_task_run_in_thread (task, next_files_thread);
|
|
|
|
g_object_unref (task);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static GList *
|
|
|
|
g_file_enumerator_real_next_files_finish (GFileEnumerator *enumerator,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error)
|
|
|
|
{
|
2012-08-02 21:50:35 +02:00
|
|
|
g_return_val_if_fail (g_task_is_valid (result, enumerator), NULL);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2012-08-02 21:50:35 +02:00
|
|
|
return g_task_propagate_pointer (G_TASK (result), error);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-08-02 21:50:35 +02:00
|
|
|
close_async_thread (GTask *task,
|
|
|
|
gpointer source_object,
|
|
|
|
gpointer task_data,
|
|
|
|
GCancellable *cancellable)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
2012-08-02 21:50:35 +02:00
|
|
|
GFileEnumerator *enumerator = source_object;
|
2007-11-26 17:13:05 +01:00
|
|
|
GFileEnumeratorClass *class;
|
|
|
|
GError *error = NULL;
|
|
|
|
gboolean result;
|
|
|
|
|
2012-08-02 21:50:35 +02:00
|
|
|
class = G_FILE_ENUMERATOR_GET_CLASS (enumerator);
|
|
|
|
result = class->close_fn (enumerator, cancellable, &error);
|
|
|
|
if (result)
|
|
|
|
g_task_return_boolean (task, TRUE);
|
|
|
|
else
|
|
|
|
g_task_return_error (task, error);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_enumerator_real_close_async (GFileEnumerator *enumerator,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
2012-08-02 21:50:35 +02:00
|
|
|
GTask *task;
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2012-08-02 21:50:35 +02:00
|
|
|
task = g_task_new (enumerator, cancellable, callback, user_data);
|
|
|
|
g_task_set_priority (task, io_priority);
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2012-08-02 21:50:35 +02:00
|
|
|
g_task_run_in_thread (task, close_async_thread);
|
|
|
|
g_object_unref (task);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2007-11-29 08:17:59 +01:00
|
|
|
g_file_enumerator_real_close_finish (GFileEnumerator *enumerator,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
2012-08-02 21:50:35 +02:00
|
|
|
g_return_val_if_fail (g_task_is_valid (result, enumerator), FALSE);
|
2012-06-11 19:44:19 +02:00
|
|
|
|
2012-08-02 21:50:35 +02:00
|
|
|
return g_task_propagate_boolean (G_TASK (result), error);
|
2007-11-26 17:13:05 +01:00
|
|
|
}
|
2015-02-13 00:20:14 +01:00
|
|
|
|