mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-13 07:56:17 +01:00
Add async version of g_file_make_directory()
https://bugzilla.gnome.org/show_bug.cgi?id=548353
This commit is contained in:
parent
bd57c3f171
commit
a2a44a9617
@ -138,6 +138,8 @@ g_file_copy_async
|
|||||||
g_file_copy_finish
|
g_file_copy_finish
|
||||||
g_file_move
|
g_file_move
|
||||||
g_file_make_directory
|
g_file_make_directory
|
||||||
|
g_file_make_directory_async
|
||||||
|
g_file_make_directory_finish
|
||||||
g_file_make_directory_with_parents
|
g_file_make_directory_with_parents
|
||||||
g_file_make_symbolic_link
|
g_file_make_symbolic_link
|
||||||
g_file_query_settable_attributes
|
g_file_query_settable_attributes
|
||||||
|
111
gio/gfile.c
111
gio/gfile.c
@ -233,6 +233,14 @@ static void g_file_real_trash_async (GFile
|
|||||||
static gboolean g_file_real_trash_finish (GFile *file,
|
static gboolean g_file_real_trash_finish (GFile *file,
|
||||||
GAsyncResult *res,
|
GAsyncResult *res,
|
||||||
GError **error);
|
GError **error);
|
||||||
|
static void g_file_real_make_directory_async (GFile *file,
|
||||||
|
int io_priority,
|
||||||
|
GCancellable *cancellable,
|
||||||
|
GAsyncReadyCallback callback,
|
||||||
|
gpointer user_data);
|
||||||
|
static gboolean g_file_real_make_directory_finish (GFile *file,
|
||||||
|
GAsyncResult *res,
|
||||||
|
GError **error);
|
||||||
static void g_file_real_open_readwrite_async (GFile *file,
|
static void g_file_real_open_readwrite_async (GFile *file,
|
||||||
int io_priority,
|
int io_priority,
|
||||||
GCancellable *cancellable,
|
GCancellable *cancellable,
|
||||||
@ -335,6 +343,8 @@ g_file_default_init (GFileIface *iface)
|
|||||||
iface->delete_file_finish = g_file_real_delete_finish;
|
iface->delete_file_finish = g_file_real_delete_finish;
|
||||||
iface->trash_async = g_file_real_trash_async;
|
iface->trash_async = g_file_real_trash_async;
|
||||||
iface->trash_finish = g_file_real_trash_finish;
|
iface->trash_finish = g_file_real_trash_finish;
|
||||||
|
iface->make_directory_async = g_file_real_make_directory_async;
|
||||||
|
iface->make_directory_finish = g_file_real_make_directory_finish;
|
||||||
iface->open_readwrite_async = g_file_real_open_readwrite_async;
|
iface->open_readwrite_async = g_file_real_open_readwrite_async;
|
||||||
iface->open_readwrite_finish = g_file_real_open_readwrite_finish;
|
iface->open_readwrite_finish = g_file_real_open_readwrite_finish;
|
||||||
iface->create_readwrite_async = g_file_real_create_readwrite_async;
|
iface->create_readwrite_async = g_file_real_create_readwrite_async;
|
||||||
@ -3538,6 +3548,68 @@ g_file_make_directory (GFile *file,
|
|||||||
return (* iface->make_directory) (file, cancellable, error);
|
return (* iface->make_directory) (file, cancellable, error);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* g_file_make_directory_async:
|
||||||
|
* @file: input #GFile
|
||||||
|
* @io_priority: the <link linkend="io-priority">I/O priority</link>
|
||||||
|
* of the request
|
||||||
|
* @cancellable: (allow-none): optional #GCancellable object,
|
||||||
|
* %NULL to ignore
|
||||||
|
* @callback: a #GAsyncReadyCallback to call
|
||||||
|
* when the request is satisfied
|
||||||
|
* @user_data: the data to pass to callback function
|
||||||
|
*
|
||||||
|
* Asynchronously creates a directory.
|
||||||
|
*
|
||||||
|
* Virtual: make_directory_async
|
||||||
|
* Since: 2.38
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
g_file_make_directory_async (GFile *file,
|
||||||
|
int io_priority,
|
||||||
|
GCancellable *cancellable,
|
||||||
|
GAsyncReadyCallback callback,
|
||||||
|
gpointer user_data)
|
||||||
|
{
|
||||||
|
GFileIface *iface;
|
||||||
|
|
||||||
|
g_return_if_fail (G_IS_FILE (file));
|
||||||
|
|
||||||
|
iface = G_FILE_GET_IFACE (file);
|
||||||
|
(* iface->make_directory_async) (file,
|
||||||
|
io_priority,
|
||||||
|
cancellable,
|
||||||
|
callback,
|
||||||
|
user_data);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* g_file_make_directory_finish:
|
||||||
|
* @file: input #GFile
|
||||||
|
* @result: a #GAsyncResult
|
||||||
|
* @error: a #GError, or %NULL
|
||||||
|
*
|
||||||
|
* Finishes an asynchronous directory creation, started with
|
||||||
|
* g_file_make_directory_async().
|
||||||
|
*
|
||||||
|
* Virtual: make_directory_finish
|
||||||
|
* Returns: %TRUE on successful directory creation, %FALSE otherwise.
|
||||||
|
* Since: 2.38
|
||||||
|
*/
|
||||||
|
gboolean
|
||||||
|
g_file_make_directory_finish (GFile *file,
|
||||||
|
GAsyncResult *result,
|
||||||
|
GError **error)
|
||||||
|
{
|
||||||
|
GFileIface *iface;
|
||||||
|
|
||||||
|
g_return_val_if_fail (G_IS_FILE (file), FALSE);
|
||||||
|
g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
|
||||||
|
|
||||||
|
iface = G_FILE_GET_IFACE (file);
|
||||||
|
return (* iface->make_directory_finish) (file, result, error);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* g_file_make_directory_with_parents:
|
* g_file_make_directory_with_parents:
|
||||||
* @file: input #GFile
|
* @file: input #GFile
|
||||||
@ -5606,6 +5678,45 @@ g_file_real_trash_finish (GFile *file,
|
|||||||
return g_task_propagate_boolean (G_TASK (res), error);
|
return g_task_propagate_boolean (G_TASK (res), error);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
make_directory_async_thread (GTask *task,
|
||||||
|
gpointer object,
|
||||||
|
gpointer task_data,
|
||||||
|
GCancellable *cancellable)
|
||||||
|
{
|
||||||
|
GError *error = NULL;
|
||||||
|
|
||||||
|
if (g_file_make_directory (G_FILE (object), cancellable, &error))
|
||||||
|
g_task_return_boolean (task, TRUE);
|
||||||
|
else
|
||||||
|
g_task_return_error (task, error);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
g_file_real_make_directory_async (GFile *file,
|
||||||
|
int io_priority,
|
||||||
|
GCancellable *cancellable,
|
||||||
|
GAsyncReadyCallback callback,
|
||||||
|
gpointer user_data)
|
||||||
|
{
|
||||||
|
GTask *task;
|
||||||
|
|
||||||
|
task = g_task_new (file, cancellable, callback, user_data);
|
||||||
|
g_task_set_priority (task, io_priority);
|
||||||
|
g_task_run_in_thread (task, make_directory_async_thread);
|
||||||
|
g_object_unref (task);
|
||||||
|
}
|
||||||
|
|
||||||
|
static gboolean
|
||||||
|
g_file_real_make_directory_finish (GFile *file,
|
||||||
|
GAsyncResult *res,
|
||||||
|
GError **error)
|
||||||
|
{
|
||||||
|
g_return_val_if_fail (g_task_is_valid (res, file), FALSE);
|
||||||
|
|
||||||
|
return g_task_propagate_boolean (G_TASK (res), error);
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
open_readwrite_async_thread (GTask *task,
|
open_readwrite_async_thread (GTask *task,
|
||||||
gpointer object,
|
gpointer object,
|
||||||
|
25
gio/gfile.h
25
gio/gfile.h
@ -111,8 +111,8 @@ typedef struct _GFileIface GFileIface;
|
|||||||
* @trash_async: Asynchronously sends a #GFile to the Trash location.
|
* @trash_async: Asynchronously sends a #GFile to the Trash location.
|
||||||
* @trash_finish: Finishes an asynchronous file trashing operation.
|
* @trash_finish: Finishes an asynchronous file trashing operation.
|
||||||
* @make_directory: Makes a directory.
|
* @make_directory: Makes a directory.
|
||||||
* @_make_directory_async: Asynchronously makes a directory.
|
* @make_directory_async: Asynchronously makes a directory.
|
||||||
* @_make_directory_finish: Finishes making a directory asynchronously.
|
* @make_directory_finish: Finishes making a directory asynchronously.
|
||||||
* @make_symbolic_link: Makes a symbolic link.
|
* @make_symbolic_link: Makes a symbolic link.
|
||||||
* @_make_symbolic_link_async: Asynchronously makes a symbolic link
|
* @_make_symbolic_link_async: Asynchronously makes a symbolic link
|
||||||
* @_make_symbolic_link_finish: Finishes making a symbolic link asynchronously.
|
* @_make_symbolic_link_finish: Finishes making a symbolic link asynchronously.
|
||||||
@ -377,8 +377,14 @@ struct _GFileIface
|
|||||||
gboolean (* make_directory) (GFile *file,
|
gboolean (* make_directory) (GFile *file,
|
||||||
GCancellable *cancellable,
|
GCancellable *cancellable,
|
||||||
GError **error);
|
GError **error);
|
||||||
void (* _make_directory_async) (void);
|
void (* make_directory_async) (GFile *file,
|
||||||
void (* _make_directory_finish) (void);
|
int io_priority,
|
||||||
|
GCancellable *cancellable,
|
||||||
|
GAsyncReadyCallback callback,
|
||||||
|
gpointer user_data);
|
||||||
|
gboolean (* make_directory_finish) (GFile *file,
|
||||||
|
GAsyncResult *result,
|
||||||
|
GError **error);
|
||||||
|
|
||||||
gboolean (* make_symbolic_link) (GFile *file,
|
gboolean (* make_symbolic_link) (GFile *file,
|
||||||
const char *symlink_value,
|
const char *symlink_value,
|
||||||
@ -891,6 +897,17 @@ GLIB_AVAILABLE_IN_ALL
|
|||||||
gboolean g_file_make_directory (GFile *file,
|
gboolean g_file_make_directory (GFile *file,
|
||||||
GCancellable *cancellable,
|
GCancellable *cancellable,
|
||||||
GError **error);
|
GError **error);
|
||||||
|
GLIB_AVAILABLE_IN_2_38
|
||||||
|
void g_file_make_directory_async (GFile *file,
|
||||||
|
int io_priority,
|
||||||
|
GCancellable *cancellable,
|
||||||
|
GAsyncReadyCallback callback,
|
||||||
|
gpointer user_data);
|
||||||
|
GLIB_AVAILABLE_IN_2_38
|
||||||
|
gboolean g_file_make_directory_finish (GFile *file,
|
||||||
|
GAsyncResult *result,
|
||||||
|
GError **error);
|
||||||
|
|
||||||
GLIB_AVAILABLE_IN_ALL
|
GLIB_AVAILABLE_IN_ALL
|
||||||
gboolean g_file_make_directory_with_parents (GFile *file,
|
gboolean g_file_make_directory_with_parents (GFile *file,
|
||||||
GCancellable *cancellable,
|
GCancellable *cancellable,
|
||||||
|
Loading…
Reference in New Issue
Block a user