Simplify glib/glib/tests setup
[glib.git] / gio / gasyncinitable.c
blob8eb94067b2c595e2611312a44034a6cd4d19b100
1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2009 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * Author: Alexander Larsson <alexl@redhat.com>
23 #include "config.h"
24 #include "gasyncinitable.h"
25 #include "gasyncresult.h"
26 #include "gsimpleasyncresult.h"
27 #include "gtask.h"
28 #include "glibintl.h"
31 /**
32 * SECTION:gasyncinitable
33 * @short_description: Asynchronously failable object initialization interface
34 * @include: gio/gio.h
35 * @see_also: #GInitable
37 * This is the asynchronous version of #GInitable; it behaves the same
38 * in all ways except that initialization is asynchronous. For more details
39 * see the descriptions on #GInitable.
41 * A class may implement both the #GInitable and #GAsyncInitable interfaces.
43 * Users of objects implementing this are not intended to use the interface
44 * method directly; instead it will be used automatically in various ways.
45 * For C applications you generally just call g_async_initable_new_async()
46 * directly, or indirectly via a foo_thing_new_async() wrapper. This will call
47 * g_async_initable_init_async() under the cover, calling back with %NULL and
48 * a set %GError on failure.
50 * A typical implementation might look something like this:
52 * |[
53 * enum {
54 * NOT_INITIALIZED,
55 * INITIALIZING,
56 * INITIALIZED
57 * };
59 * static void
60 * _foo_ready_cb (Foo *self)
61 * {
62 * GList *l;
64 * self->priv->state = INITIALIZED;
66 * for (l = self->priv->init_results; l != NULL; l = l->next)
67 * {
68 * GTask *task = l->data;
70 * if (self->priv->success)
71 * g_task_return_boolean (task, TRUE);
72 * else
73 * g_task_return_new_error (task, ...);
74 * g_object_unref (task);
75 * }
77 * g_list_free (self->priv->init_results);
78 * self->priv->init_results = NULL;
79 * }
81 * static void
82 * foo_init_async (GAsyncInitable *initable,
83 * int io_priority,
84 * GCancellable *cancellable,
85 * GAsyncReadyCallback callback,
86 * gpointer user_data)
87 * {
88 * Foo *self = FOO (initable);
89 * GTask *task;
91 * task = g_task_new (initable, cancellable, callback, user_data);
93 * switch (self->priv->state)
94 * {
95 * case NOT_INITIALIZED:
96 * _foo_get_ready (self);
97 * self->priv->init_results = g_list_append (self->priv->init_results,
98 * task);
99 * self->priv->state = INITIALIZING;
100 * break;
101 * case INITIALIZING:
102 * self->priv->init_results = g_list_append (self->priv->init_results,
103 * task);
104 * break;
105 * case INITIALIZED:
106 * if (!self->priv->success)
107 * g_task_return_new_error (task, ...);
108 * else
109 * g_task_return_boolean (task, TRUE);
110 * g_object_unref (task);
111 * break;
115 * static gboolean
116 * foo_init_finish (GAsyncInitable *initable,
117 * GAsyncResult *result,
118 * GError **error)
120 * g_return_val_if_fail (g_task_is_valid (result, initable), FALSE);
122 * return g_task_propagate_boolean (G_TASK (result), error);
125 * static void
126 * foo_async_initable_iface_init (gpointer g_iface,
127 * gpointer data)
129 * GAsyncInitableIface *iface = g_iface;
131 * iface->init_async = foo_init_async;
132 * iface->init_finish = foo_init_finish;
134 * ]|
137 static void g_async_initable_real_init_async (GAsyncInitable *initable,
138 int io_priority,
139 GCancellable *cancellable,
140 GAsyncReadyCallback callback,
141 gpointer user_data);
142 static gboolean g_async_initable_real_init_finish (GAsyncInitable *initable,
143 GAsyncResult *res,
144 GError **error);
147 typedef GAsyncInitableIface GAsyncInitableInterface;
148 G_DEFINE_INTERFACE (GAsyncInitable, g_async_initable, G_TYPE_OBJECT)
151 static void
152 g_async_initable_default_init (GAsyncInitableInterface *iface)
154 iface->init_async = g_async_initable_real_init_async;
155 iface->init_finish = g_async_initable_real_init_finish;
159 * g_async_initable_init_async:
160 * @initable: a #GAsyncInitable.
161 * @io_priority: the <link linkend="io-priority">I/O priority</link>
162 * of the operation.
163 * @cancellable: optional #GCancellable object, %NULL to ignore.
164 * @callback: a #GAsyncReadyCallback to call when the request is satisfied
165 * @user_data: the data to pass to callback function
167 * Starts asynchronous initialization of the object implementing the
168 * interface. This must be done before any real use of the object after
169 * initial construction. If the object also implements #GInitable you can
170 * optionally call g_initable_init() instead.
172 * When the initialization is finished, @callback will be called. You can
173 * then call g_async_initable_init_finish() to get the result of the
174 * initialization.
176 * Implementations may also support cancellation. If @cancellable is not
177 * %NULL, then initialization can be cancelled by triggering the cancellable
178 * object from another thread. If the operation was cancelled, the error
179 * %G_IO_ERROR_CANCELLED will be returned. If @cancellable is not %NULL, and
180 * the object doesn't support cancellable initialization, the error
181 * %G_IO_ERROR_NOT_SUPPORTED will be returned.
183 * As with #GInitable, if the object is not initialized, or initialization
184 * returns with an error, then all operations on the object except
185 * g_object_ref() and g_object_unref() are considered to be invalid, and
186 * have undefined behaviour. They will often fail with g_critical() or
187 * g_warning(), but this must not be relied on.
189 * Implementations of this method must be idempotent: i.e. multiple calls
190 * to this function with the same argument should return the same results.
191 * Only the first call initializes the object; further calls return the result
192 * of the first call. This is so that it's safe to implement the singleton
193 * pattern in the GObject constructor function.
195 * For classes that also support the #GInitable interface, the default
196 * implementation of this method will run the g_initable_init() function
197 * in a thread, so if you want to support asynchronous initialization via
198 * threads, just implement the #GAsyncInitable interface without overriding
199 * any interface methods.
201 * Since: 2.22
203 void
204 g_async_initable_init_async (GAsyncInitable *initable,
205 int io_priority,
206 GCancellable *cancellable,
207 GAsyncReadyCallback callback,
208 gpointer user_data)
210 GAsyncInitableIface *iface;
212 g_return_if_fail (G_IS_ASYNC_INITABLE (initable));
214 iface = G_ASYNC_INITABLE_GET_IFACE (initable);
216 (* iface->init_async) (initable, io_priority, cancellable, callback, user_data);
220 * g_async_initable_init_finish:
221 * @initable: a #GAsyncInitable.
222 * @res: a #GAsyncResult.
223 * @error: a #GError location to store the error occurring, or %NULL to
224 * ignore.
226 * Finishes asynchronous initialization and returns the result.
227 * See g_async_initable_init_async().
229 * Returns: %TRUE if successful. If an error has occurred, this function
230 * will return %FALSE and set @error appropriately if present.
232 * Since: 2.22
234 gboolean
235 g_async_initable_init_finish (GAsyncInitable *initable,
236 GAsyncResult *res,
237 GError **error)
239 GAsyncInitableIface *iface;
241 g_return_val_if_fail (G_IS_ASYNC_INITABLE (initable), FALSE);
242 g_return_val_if_fail (G_IS_ASYNC_RESULT (res), FALSE);
244 if (g_async_result_legacy_propagate_error (res, error))
245 return FALSE;
247 iface = G_ASYNC_INITABLE_GET_IFACE (initable);
249 return (* iface->init_finish) (initable, res, error);
252 static void
253 async_init_thread (GTask *task,
254 gpointer source_object,
255 gpointer task_data,
256 GCancellable *cancellable)
258 GError *error = NULL;
260 if (g_initable_init (G_INITABLE (source_object), cancellable, &error))
261 g_task_return_boolean (task, TRUE);
262 else
263 g_task_return_error (task, error);
266 static void
267 g_async_initable_real_init_async (GAsyncInitable *initable,
268 int io_priority,
269 GCancellable *cancellable,
270 GAsyncReadyCallback callback,
271 gpointer user_data)
273 GTask *task;
275 g_return_if_fail (G_IS_INITABLE (initable));
277 task = g_task_new (initable, cancellable, callback, user_data);
278 g_task_set_priority (task, io_priority);
279 g_task_run_in_thread (task, async_init_thread);
280 g_object_unref (task);
283 static gboolean
284 g_async_initable_real_init_finish (GAsyncInitable *initable,
285 GAsyncResult *res,
286 GError **error)
288 /* For backward compatibility we have to process GSimpleAsyncResults
289 * even though g_async_initable_real_init_async doesn't generate
290 * them any more.
292 if (G_IS_SIMPLE_ASYNC_RESULT (res))
294 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
295 if (g_simple_async_result_propagate_error (simple, error))
296 return FALSE;
297 else
298 return TRUE;
301 g_return_val_if_fail (g_task_is_valid (res, initable), FALSE);
303 return g_task_propagate_boolean (G_TASK (res), error);
307 * g_async_initable_new_async:
308 * @object_type: a #GType supporting #GAsyncInitable.
309 * @io_priority: the <link linkend="io-priority">I/O priority</link>
310 * of the operation.
311 * @cancellable: optional #GCancellable object, %NULL to ignore.
312 * @callback: a #GAsyncReadyCallback to call when the initialization is
313 * finished
314 * @user_data: the data to pass to callback function
315 * @first_property_name: (allow-none): the name of the first property, or %NULL if no
316 * properties
317 * @...: the value of the first property, followed by other property
318 * value pairs, and ended by %NULL.
320 * Helper function for constructing #GAsyncInitable object. This is
321 * similar to g_object_new() but also initializes the object asynchronously.
323 * When the initialization is finished, @callback will be called. You can
324 * then call g_async_initable_new_finish() to get the new object and check
325 * for any errors.
327 * Since: 2.22
329 void
330 g_async_initable_new_async (GType object_type,
331 int io_priority,
332 GCancellable *cancellable,
333 GAsyncReadyCallback callback,
334 gpointer user_data,
335 const gchar *first_property_name,
336 ...)
338 va_list var_args;
340 va_start (var_args, first_property_name);
341 g_async_initable_new_valist_async (object_type,
342 first_property_name, var_args,
343 io_priority, cancellable,
344 callback, user_data);
345 va_end (var_args);
349 * g_async_initable_newv_async:
350 * @object_type: a #GType supporting #GAsyncInitable.
351 * @n_parameters: the number of parameters in @parameters
352 * @parameters: the parameters to use to construct the object
353 * @io_priority: the <link linkend="io-priority">I/O priority</link>
354 * of the operation.
355 * @cancellable: optional #GCancellable object, %NULL to ignore.
356 * @callback: a #GAsyncReadyCallback to call when the initialization is
357 * finished
358 * @user_data: the data to pass to callback function
360 * Helper function for constructing #GAsyncInitable object. This is
361 * similar to g_object_newv() but also initializes the object asynchronously.
363 * When the initialization is finished, @callback will be called. You can
364 * then call g_async_initable_new_finish() to get the new object and check
365 * for any errors.
367 * Since: 2.22
369 void
370 g_async_initable_newv_async (GType object_type,
371 guint n_parameters,
372 GParameter *parameters,
373 int io_priority,
374 GCancellable *cancellable,
375 GAsyncReadyCallback callback,
376 gpointer user_data)
378 GObject *obj;
380 g_return_if_fail (G_TYPE_IS_ASYNC_INITABLE (object_type));
382 obj = g_object_newv (object_type, n_parameters, parameters);
384 g_async_initable_init_async (G_ASYNC_INITABLE (obj),
385 io_priority, cancellable,
386 callback, user_data);
390 * g_async_initable_new_valist_async:
391 * @object_type: a #GType supporting #GAsyncInitable.
392 * @first_property_name: the name of the first property, followed by
393 * the value, and other property value pairs, and ended by %NULL.
394 * @var_args: The var args list generated from @first_property_name.
395 * @io_priority: the <link linkend="io-priority">I/O priority</link>
396 * of the operation.
397 * @cancellable: optional #GCancellable object, %NULL to ignore.
398 * @callback: a #GAsyncReadyCallback to call when the initialization is
399 * finished
400 * @user_data: the data to pass to callback function
402 * Helper function for constructing #GAsyncInitable object. This is
403 * similar to g_object_new_valist() but also initializes the object
404 * asynchronously.
406 * When the initialization is finished, @callback will be called. You can
407 * then call g_async_initable_new_finish() to get the new object and check
408 * for any errors.
410 * Since: 2.22
412 void
413 g_async_initable_new_valist_async (GType object_type,
414 const gchar *first_property_name,
415 va_list var_args,
416 int io_priority,
417 GCancellable *cancellable,
418 GAsyncReadyCallback callback,
419 gpointer user_data)
421 GObject *obj;
423 g_return_if_fail (G_TYPE_IS_ASYNC_INITABLE (object_type));
425 obj = g_object_new_valist (object_type,
426 first_property_name,
427 var_args);
429 g_async_initable_init_async (G_ASYNC_INITABLE (obj),
430 io_priority, cancellable,
431 callback, user_data);
432 g_object_unref (obj); /* Passed ownership to async call */
436 * g_async_initable_new_finish:
437 * @initable: the #GAsyncInitable from the callback
438 * @res: the #GAsyncResult from the callback
439 * @error: return location for errors, or %NULL to ignore
441 * Finishes the async construction for the various g_async_initable_new
442 * calls, returning the created object or %NULL on error.
444 * Returns: (transfer full): a newly created #GObject, or %NULL on error.
445 * Free with g_object_unref().
447 * Since: 2.22
449 GObject *
450 g_async_initable_new_finish (GAsyncInitable *initable,
451 GAsyncResult *res,
452 GError **error)
454 if (g_async_initable_init_finish (initable, res, error))
455 return g_object_ref (initable);
456 else
457 return NULL;