Merge remote-tracking branch 'gvdb/master'
[platform/upstream/glib.git] / gio / gsimpleasyncresult.c
1 /* GIO - GLib Input, Output and Streaming Library
2  *
3  * Copyright (C) 2006-2007 Red Hat, Inc.
4  *
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.
9  *
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.
14  *
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.
19  *
20  * Author: Alexander Larsson <alexl@redhat.com>
21  */
22
23 #include "config.h"
24
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #include <string.h>
28 #include <errno.h>
29 #include <fcntl.h>
30 #ifdef HAVE_UNISTD_H
31 #include <unistd.h>
32 #endif
33
34 #include "gsimpleasyncresult.h"
35 #include "gasyncresult.h"
36 #include "gcancellable.h"
37 #include "gioscheduler.h"
38 #include <gio/gioerror.h>
39 #include "glibintl.h"
40
41
42 /**
43  * SECTION:gsimpleasyncresult
44  * @short_description: Simple asynchronous results implementation
45  * @include: gio/gio.h
46  * @see_also: #GAsyncResult
47  *
48  * Implements #GAsyncResult for simple cases. Most of the time, this
49  * will be all an application needs, and will be used transparently.
50  * Because of this, #GSimpleAsyncResult is used throughout GIO for
51  * handling asynchronous functions.
52  *
53  * GSimpleAsyncResult handles #GAsyncReadyCallback<!-- -->s, error
54  * reporting, operation cancellation and the final state of an operation,
55  * completely transparent to the application. Results can be returned
56  * as a pointer e.g. for functions that return data that is collected
57  * asynchronously, a boolean value for checking the success or failure
58  * of an operation, or a #gssize for operations which return the number
59  * of bytes modified by the operation; all of the simple return cases
60  * are covered.
61  *
62  * Most of the time, an application will not need to know of the details
63  * of this API; it is handled transparently, and any necessary operations
64  * are handled by #GAsyncResult's interface. However, if implementing a
65  * new GIO module, for writing language bindings, or for complex
66  * applications that need better control of how asynchronous operations
67  * are completed, it is important to understand this functionality.
68  *
69  * GSimpleAsyncResults are tagged with the calling function to ensure
70  * that asynchronous functions and their finishing functions are used
71  * together correctly.
72  *
73  * To create a new #GSimpleAsyncResult, call g_simple_async_result_new().
74  * If the result needs to be created for a #GError, use
75  * g_simple_async_result_new_from_error() or
76  * g_simple_async_result_new_take_error(). If a #GError is not available
77  * (e.g. the asynchronous operation's doesn't take a #GError argument),
78  * but the result still needs to be created for an error condition, use
79  * g_simple_async_result_new_error() (or g_simple_async_result_set_error_va()
80  * if your application or binding requires passing a variable argument list
81  * directly), and the error can then be propagated through the use of
82  * g_simple_async_result_propagate_error().
83  *
84  * An asynchronous operation can be made to ignore a cancellation event by
85  * calling g_simple_async_result_set_handle_cancellation() with a
86  * #GSimpleAsyncResult for the operation and %FALSE. This is useful for
87  * operations that are dangerous to cancel, such as close (which would
88  * cause a leak if cancelled before being run).
89  *
90  * GSimpleAsyncResult can integrate into GLib's event loop, #GMainLoop,
91  * or it can use #GThread<!-- -->s if available.
92  * g_simple_async_result_complete() will finish an I/O task directly
93  * from the point where it is called. g_simple_async_result_complete_in_idle()
94  * will finish it from an idle handler in the <link
95  * linkend="g-main-context-push-thread-default">thread-default main
96  * context</link>. g_simple_async_result_run_in_thread() will run the
97  * job in a separate thread and then deliver the result to the
98  * thread-default main context.
99  *
100  * To set the results of an asynchronous function,
101  * g_simple_async_result_set_op_res_gpointer(),
102  * g_simple_async_result_set_op_res_gboolean(), and
103  * g_simple_async_result_set_op_res_gssize()
104  * are provided, setting the operation's result to a gpointer, gboolean, or
105  * gssize, respectively.
106  *
107  * Likewise, to get the result of an asynchronous function,
108  * g_simple_async_result_get_op_res_gpointer(),
109  * g_simple_async_result_get_op_res_gboolean(), and
110  * g_simple_async_result_get_op_res_gssize() are
111  * provided, getting the operation's result as a gpointer, gboolean, and
112  * gssize, respectively.
113  *
114  * For the details of the requirements implementations must respect, see
115  * #GAsyncResult.  A typical implementation of an asynchronous operation
116  * using GSimpleAsyncResult looks something like this:
117  *
118  * |[
119  * static void
120  * baked_cb (Cake    *cake,
121  *           gpointer user_data)
122  * {
123  *   /&ast; In this example, this callback is not given a reference to the cake, so
124  *    &ast; the GSimpleAsyncResult has to take a reference to it.
125  *    &ast;/
126  *   GSimpleAsyncResult *result = user_data;
127  *
128  *   if (cake == NULL)
129  *     g_simple_async_result_set_error (result,
130  *                                      BAKER_ERRORS,
131  *                                      BAKER_ERROR_NO_FLOUR,
132  *                                      "Go to the supermarket");
133  *   else
134  *     g_simple_async_result_set_op_res_gpointer (result,
135  *                                                g_object_ref (cake),
136  *                                                g_object_unref);
137  *
138  *
139  *   /&ast; In this example, we assume that baked_cb is called as a callback from
140  *    &ast; the mainloop, so it's safe to complete the operation synchronously here.
141  *    &ast; If, however, _baker_prepare_cake () might call its callback without
142  *    &ast; first returning to the mainloop — inadvisable, but some APIs do so —
143  *    &ast; we would need to use g_simple_async_result_complete_in_idle().
144  *    &ast;/
145  *   g_simple_async_result_complete (result);
146  *   g_object_unref (result);
147  * }
148  *
149  * void
150  * baker_bake_cake_async (Baker              *self,
151  *                        guint               radius,
152  *                        GAsyncReadyCallback callback,
153  *                        gpointer            user_data)
154  * {
155  *   GSimpleAsyncResult *simple;
156  *   Cake               *cake;
157  *
158  *   if (radius < 3)
159  *     {
160  *       g_simple_async_report_error_in_idle (G_OBJECT (self),
161  *                                            callback,
162  *                                            user_data,
163  *                                            BAKER_ERRORS,
164  *                                            BAKER_ERROR_TOO_SMALL,
165  *                                            "%ucm radius cakes are silly",
166  *                                            radius);
167  *       return;
168  *     }
169  *
170  *   simple = g_simple_async_result_new (G_OBJECT (self),
171  *                                       callback,
172  *                                       user_data,
173  *                                       baker_bake_cake_async);
174  *   cake = _baker_get_cached_cake (self, radius);
175  *
176  *   if (cake != NULL)
177  *     {
178  *       g_simple_async_result_set_op_res_gpointer (simple,
179  *                                                  g_object_ref (cake),
180  *                                                  g_object_unref);
181  *       g_simple_async_result_complete_in_idle (simple);
182  *       g_object_unref (simple);
183  *       /&ast; Drop the reference returned by _baker_get_cached_cake(); the
184  *        &ast; GSimpleAsyncResult has taken its own reference.
185  *        &ast;/
186  *       g_object_unref (cake);
187  *       return;
188  *     }
189  *
190  *   _baker_prepare_cake (self, radius, baked_cb, simple);
191  * }
192  *
193  * Cake *
194  * baker_bake_cake_finish (Baker        *self,
195  *                         GAsyncResult *result,
196  *                         GError      **error)
197  * {
198  *   GSimpleAsyncResult *simple;
199  *   Cake               *cake;
200  *
201  *   g_return_val_if_fail (g_simple_async_result_is_valid (result,
202  *                                                         G_OBJECT (self),
203  *                                                         baker_bake_cake_async),
204  *                         NULL);
205  *
206  *   simple = (GSimpleAsyncResult *) result;
207  *
208  *   if (g_simple_async_result_propagate_error (simple, error))
209  *     return NULL;
210  *
211  *   cake = CAKE (g_simple_async_result_get_op_res_gpointer (simple));
212  *   return g_object_ref (cake);
213  * }
214  * ]|
215  */
216
217 static void g_simple_async_result_async_result_iface_init (GAsyncResultIface       *iface);
218
219 struct _GSimpleAsyncResult
220 {
221   GObject parent_instance;
222
223   GObject *source_object;
224   GAsyncReadyCallback callback;
225   gpointer user_data;
226   GMainContext *context;
227   GError *error;
228   gboolean failed;
229   gboolean handle_cancellation;
230
231   gpointer source_tag;
232
233   union {
234     gpointer v_pointer;
235     gboolean v_boolean;
236     gssize   v_ssize;
237   } op_res;
238
239   GDestroyNotify destroy_op_res;
240 };
241
242 struct _GSimpleAsyncResultClass
243 {
244   GObjectClass parent_class;
245 };
246
247
248 G_DEFINE_TYPE_WITH_CODE (GSimpleAsyncResult, g_simple_async_result, G_TYPE_OBJECT,
249                          G_IMPLEMENT_INTERFACE (G_TYPE_ASYNC_RESULT,
250                                                 g_simple_async_result_async_result_iface_init))
251
252 static void
253 clear_op_res (GSimpleAsyncResult *simple)
254 {
255   if (simple->destroy_op_res)
256     simple->destroy_op_res (simple->op_res.v_pointer);
257   simple->destroy_op_res = NULL;
258   simple->op_res.v_ssize = 0;
259 }
260
261 static void
262 g_simple_async_result_finalize (GObject *object)
263 {
264   GSimpleAsyncResult *simple;
265
266   simple = G_SIMPLE_ASYNC_RESULT (object);
267
268   if (simple->source_object)
269     g_object_unref (simple->source_object);
270
271   if (simple->context)
272     g_main_context_unref (simple->context);
273
274   clear_op_res (simple);
275
276   if (simple->error)
277     g_error_free (simple->error);
278
279   G_OBJECT_CLASS (g_simple_async_result_parent_class)->finalize (object);
280 }
281
282 static void
283 g_simple_async_result_class_init (GSimpleAsyncResultClass *klass)
284 {
285   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
286  
287   gobject_class->finalize = g_simple_async_result_finalize;
288 }
289
290 static void
291 g_simple_async_result_init (GSimpleAsyncResult *simple)
292 {
293   simple->handle_cancellation = TRUE;
294
295   simple->context = g_main_context_get_thread_default ();
296   if (simple->context)
297     g_main_context_ref (simple->context);
298 }
299
300 /**
301  * g_simple_async_result_new:
302  * @source_object: (allow-none): a #GObject, or %NULL.
303  * @callback: (scope async): a #GAsyncReadyCallback.
304  * @user_data: (closure): user data passed to @callback.
305  * @source_tag: the asynchronous function.
306  *
307  * Creates a #GSimpleAsyncResult.
308  *
309  * Returns: a #GSimpleAsyncResult.
310  **/
311 GSimpleAsyncResult *
312 g_simple_async_result_new (GObject             *source_object,
313                            GAsyncReadyCallback  callback,
314                            gpointer             user_data,
315                            gpointer             source_tag)
316 {
317   GSimpleAsyncResult *simple;
318
319   g_return_val_if_fail (!source_object || G_IS_OBJECT (source_object), NULL);
320
321   simple = g_object_new (G_TYPE_SIMPLE_ASYNC_RESULT, NULL);
322   simple->callback = callback;
323   if (source_object)
324     simple->source_object = g_object_ref (source_object);
325   else
326     simple->source_object = NULL;
327   simple->user_data = user_data;
328   simple->source_tag = source_tag;
329  
330   return simple;
331 }
332
333 /**
334  * g_simple_async_result_new_from_error:
335  * @source_object: (allow-none): a #GObject, or %NULL.
336  * @callback: (scope async): a #GAsyncReadyCallback.
337  * @user_data: (closure): user data passed to @callback.
338  * @error: a #GError
339  *
340  * Creates a #GSimpleAsyncResult from an error condition.
341  *
342  * Returns: a #GSimpleAsyncResult.
343  **/
344 GSimpleAsyncResult *
345 g_simple_async_result_new_from_error (GObject             *source_object,
346                                       GAsyncReadyCallback  callback,
347                                       gpointer             user_data,
348                                       const GError        *error)
349 {
350   GSimpleAsyncResult *simple;
351
352   g_return_val_if_fail (!source_object || G_IS_OBJECT (source_object), NULL);
353
354   simple = g_simple_async_result_new (source_object,
355                                       callback,
356                                       user_data, NULL);
357   g_simple_async_result_set_from_error (simple, error);
358
359   return simple;
360 }
361
362 /**
363  * g_simple_async_result_new_take_error: (skip)
364  * @source_object: (allow-none): a #GObject, or %NULL
365  * @callback: (scope async): a #GAsyncReadyCallback
366  * @user_data: (closure): user data passed to @callback
367  * @error: a #GError
368  *
369  * Creates a #GSimpleAsyncResult from an error condition, and takes over the
370  * caller's ownership of @error, so the caller does not need to free it anymore.
371  *
372  * Returns: a #GSimpleAsyncResult
373  *
374  * Since: 2.28
375  **/
376 GSimpleAsyncResult *
377 g_simple_async_result_new_take_error (GObject             *source_object,
378                                       GAsyncReadyCallback  callback,
379                                       gpointer             user_data,
380                                       GError              *error)
381 {
382   GSimpleAsyncResult *simple;
383
384   g_return_val_if_fail (!source_object || G_IS_OBJECT (source_object), NULL);
385
386   simple = g_simple_async_result_new (source_object,
387                                       callback,
388                                       user_data, NULL);
389   g_simple_async_result_take_error (simple, error);
390
391   return simple;
392 }
393
394 /**
395  * g_simple_async_result_new_error:
396  * @source_object: (allow-none): a #GObject, or %NULL.
397  * @callback: (scope async): a #GAsyncReadyCallback.
398  * @user_data: (closure): user data passed to @callback.
399  * @domain: a #GQuark.
400  * @code: an error code.
401  * @format: a string with format characters.
402  * @...: a list of values to insert into @format.
403  *
404  * Creates a new #GSimpleAsyncResult with a set error.
405  *
406  * Returns: a #GSimpleAsyncResult.
407  **/
408 GSimpleAsyncResult *
409 g_simple_async_result_new_error (GObject             *source_object,
410                                  GAsyncReadyCallback  callback,
411                                  gpointer             user_data,
412                                  GQuark               domain,
413                                  gint                 code,
414                                  const char          *format,
415                                  ...)
416 {
417   GSimpleAsyncResult *simple;
418   va_list args;
419  
420   g_return_val_if_fail (!source_object || G_IS_OBJECT (source_object), NULL);
421   g_return_val_if_fail (domain != 0, NULL);
422   g_return_val_if_fail (format != NULL, NULL);
423
424   simple = g_simple_async_result_new (source_object,
425                                       callback,
426                                       user_data, NULL);
427
428   va_start (args, format);
429   g_simple_async_result_set_error_va (simple, domain, code, format, args);
430   va_end (args);
431  
432   return simple;
433 }
434
435
436 static gpointer
437 g_simple_async_result_get_user_data (GAsyncResult *res)
438 {
439   return G_SIMPLE_ASYNC_RESULT (res)->user_data;
440 }
441
442 static GObject *
443 g_simple_async_result_get_source_object (GAsyncResult *res)
444 {
445   if (G_SIMPLE_ASYNC_RESULT (res)->source_object)
446     return g_object_ref (G_SIMPLE_ASYNC_RESULT (res)->source_object);
447   return NULL;
448 }
449
450 static void
451 g_simple_async_result_async_result_iface_init (GAsyncResultIface *iface)
452 {
453   iface->get_user_data = g_simple_async_result_get_user_data;
454   iface->get_source_object = g_simple_async_result_get_source_object;
455 }
456
457 /**
458  * g_simple_async_result_set_handle_cancellation:
459  * @simple: a #GSimpleAsyncResult.
460  * @handle_cancellation: a #gboolean.
461  *
462  * Sets whether to handle cancellation within the asynchronous operation.
463  *
464  **/
465 void
466 g_simple_async_result_set_handle_cancellation (GSimpleAsyncResult *simple,
467                                                gboolean            handle_cancellation)
468 {
469   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple));
470   simple->handle_cancellation = handle_cancellation;
471 }
472
473 /**
474  * g_simple_async_result_get_source_tag: (skip)
475  * @simple: a #GSimpleAsyncResult.
476  *
477  * Gets the source tag for the #GSimpleAsyncResult.
478  *
479  * Returns: a #gpointer to the source object for the #GSimpleAsyncResult.
480  **/
481 gpointer
482 g_simple_async_result_get_source_tag (GSimpleAsyncResult *simple)
483 {
484   g_return_val_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple), NULL);
485   return simple->source_tag;
486 }
487
488 /**
489  * g_simple_async_result_propagate_error:
490  * @simple: a #GSimpleAsyncResult.
491  * @dest: (out): a location to propagate the error to.
492  *
493  * Propagates an error from within the simple asynchronous result to
494  * a given destination.
495  *
496  * Returns: %TRUE if the error was propagated to @dest. %FALSE otherwise.
497  **/
498 gboolean
499 g_simple_async_result_propagate_error (GSimpleAsyncResult  *simple,
500                                        GError             **dest)
501 {
502   g_return_val_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple), FALSE);
503
504   if (simple->failed)
505     {
506       g_propagate_error (dest, simple->error);
507       simple->error = NULL;
508       return TRUE;
509     }
510
511   return FALSE;
512 }
513
514 /**
515  * g_simple_async_result_set_op_res_gpointer: (skip)
516  * @simple: a #GSimpleAsyncResult.
517  * @op_res: a pointer result from an asynchronous function.
518  * @destroy_op_res: a #GDestroyNotify function.
519  *
520  * Sets the operation result within the asynchronous result to a pointer.
521  **/
522 void
523 g_simple_async_result_set_op_res_gpointer (GSimpleAsyncResult *simple,
524                                            gpointer            op_res,
525                                            GDestroyNotify      destroy_op_res)
526 {
527   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple));
528
529   clear_op_res (simple);
530   simple->op_res.v_pointer = op_res;
531   simple->destroy_op_res = destroy_op_res;
532 }
533
534 /**
535  * g_simple_async_result_get_op_res_gpointer: (skip)
536  * @simple: a #GSimpleAsyncResult.
537  *
538  * Gets a pointer result as returned by the asynchronous function.
539  *
540  * Returns: a pointer from the result.
541  **/
542 gpointer
543 g_simple_async_result_get_op_res_gpointer (GSimpleAsyncResult *simple)
544 {
545   g_return_val_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple), NULL);
546   return simple->op_res.v_pointer;
547 }
548
549 /**
550  * g_simple_async_result_set_op_res_gssize:
551  * @simple: a #GSimpleAsyncResult.
552  * @op_res: a #gssize.
553  *
554  * Sets the operation result within the asynchronous result to
555  * the given @op_res.
556  **/
557 void
558 g_simple_async_result_set_op_res_gssize (GSimpleAsyncResult *simple,
559                                          gssize              op_res)
560 {
561   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple));
562   clear_op_res (simple);
563   simple->op_res.v_ssize = op_res;
564 }
565
566 /**
567  * g_simple_async_result_get_op_res_gssize:
568  * @simple: a #GSimpleAsyncResult.
569  *
570  * Gets a gssize from the asynchronous result.
571  *
572  * Returns: a gssize returned from the asynchronous function.
573  **/
574 gssize
575 g_simple_async_result_get_op_res_gssize (GSimpleAsyncResult *simple)
576 {
577   g_return_val_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple), 0);
578   return simple->op_res.v_ssize;
579 }
580
581 /**
582  * g_simple_async_result_set_op_res_gboolean:
583  * @simple: a #GSimpleAsyncResult.
584  * @op_res: a #gboolean.
585  *
586  * Sets the operation result to a boolean within the asynchronous result.
587  **/
588 void
589 g_simple_async_result_set_op_res_gboolean (GSimpleAsyncResult *simple,
590                                            gboolean            op_res)
591 {
592   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple));
593   clear_op_res (simple);
594   simple->op_res.v_boolean = !!op_res;
595 }
596
597 /**
598  * g_simple_async_result_get_op_res_gboolean:
599  * @simple: a #GSimpleAsyncResult.
600  *
601  * Gets the operation result boolean from within the asynchronous result.
602  *
603  * Returns: %TRUE if the operation's result was %TRUE, %FALSE
604  *     if the operation's result was %FALSE.
605  **/
606 gboolean
607 g_simple_async_result_get_op_res_gboolean (GSimpleAsyncResult *simple)
608 {
609   g_return_val_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple), FALSE);
610   return simple->op_res.v_boolean;
611 }
612
613 /**
614  * g_simple_async_result_set_from_error:
615  * @simple: a #GSimpleAsyncResult.
616  * @error: #GError.
617  *
618  * Sets the result from a #GError.
619  **/
620 void
621 g_simple_async_result_set_from_error (GSimpleAsyncResult *simple,
622                                       const GError       *error)
623 {
624   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple));
625   g_return_if_fail (error != NULL);
626
627   if (simple->error)
628     g_error_free (simple->error);
629   simple->error = g_error_copy (error);
630   simple->failed = TRUE;
631 }
632
633 /**
634  * g_simple_async_result_take_error: (skip)
635  * @simple: a #GSimpleAsyncResult
636  * @error: a #GError
637  *
638  * Sets the result from @error, and takes over the caller's ownership
639  * of @error, so the caller does not need to free it any more.
640  *
641  * Since: 2.28
642  **/
643 void
644 g_simple_async_result_take_error (GSimpleAsyncResult *simple,
645                                   GError             *error)
646 {
647   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple));
648   g_return_if_fail (error != NULL);
649
650   if (simple->error)
651     g_error_free (simple->error);
652   simple->error = error;
653   simple->failed = TRUE;
654 }
655
656 /**
657  * g_simple_async_result_set_error_va: (skip)
658  * @simple: a #GSimpleAsyncResult.
659  * @domain: a #GQuark (usually #G_IO_ERROR).
660  * @code: an error code.
661  * @format: a formatted error reporting string.
662  * @args: va_list of arguments.
663  *
664  * Sets an error within the asynchronous result without a #GError.
665  * Unless writing a binding, see g_simple_async_result_set_error().
666  **/
667 void
668 g_simple_async_result_set_error_va (GSimpleAsyncResult *simple,
669                                     GQuark              domain,
670                                     gint                code,
671                                     const char         *format,
672                                     va_list             args)
673 {
674   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple));
675   g_return_if_fail (domain != 0);
676   g_return_if_fail (format != NULL);
677
678   if (simple->error)
679     g_error_free (simple->error);
680   simple->error = g_error_new_valist (domain, code, format, args);
681   simple->failed = TRUE;
682 }
683
684 /**
685  * g_simple_async_result_set_error: (skip)
686  * @simple: a #GSimpleAsyncResult.
687  * @domain: a #GQuark (usually #G_IO_ERROR).
688  * @code: an error code.
689  * @format: a formatted error reporting string.
690  * @...: a list of variables to fill in @format.
691  *
692  * Sets an error within the asynchronous result without a #GError.
693  **/
694 void
695 g_simple_async_result_set_error (GSimpleAsyncResult *simple,
696                                  GQuark              domain,
697                                  gint                code,
698                                  const char         *format,
699                                  ...)
700 {
701   va_list args;
702
703   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple));
704   g_return_if_fail (domain != 0);
705   g_return_if_fail (format != NULL);
706
707   va_start (args, format);
708   g_simple_async_result_set_error_va (simple, domain, code, format, args);
709   va_end (args);
710 }
711
712 /**
713  * g_simple_async_result_complete:
714  * @simple: a #GSimpleAsyncResult.
715  *
716  * Completes an asynchronous I/O job immediately. Must be called in
717  * the thread where the asynchronous result was to be delivered, as it
718  * invokes the callback directly. If you are in a different thread use
719  * g_simple_async_result_complete_in_idle().
720  *
721  * Calling this function takes a reference to @simple for as long as
722  * is needed to complete the call.
723  **/
724 void
725 g_simple_async_result_complete (GSimpleAsyncResult *simple)
726 {
727 #ifndef G_DISABLE_CHECKS
728   GSource *current_source;
729   GMainContext *current_context;
730 #endif
731
732   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple));
733
734 #ifndef G_DISABLE_CHECKS
735   current_source = g_main_current_source ();
736   if (current_source && !g_source_is_destroyed (current_source))
737     {
738       current_context = g_source_get_context (current_source);
739       if (current_context == g_main_context_default ())
740         current_context = NULL;
741       if (simple->context != current_context)
742         g_warning ("g_simple_async_result_complete() called from wrong context!");
743     }
744 #endif
745
746   if (simple->callback)
747     {
748       g_main_context_push_thread_default (simple->context);
749       simple->callback (simple->source_object,
750                         G_ASYNC_RESULT (simple),
751                         simple->user_data);
752       g_main_context_pop_thread_default (simple->context);
753     }
754 }
755
756 static gboolean
757 complete_in_idle_cb (gpointer data)
758 {
759   GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (data);
760
761   g_simple_async_result_complete (simple);
762
763   return FALSE;
764 }
765
766 /**
767  * g_simple_async_result_complete_in_idle:
768  * @simple: a #GSimpleAsyncResult.
769  *
770  * Completes an asynchronous function in an idle handler in the <link
771  * linkend="g-main-context-push-thread-default">thread-default main
772  * loop</link> of the thread that @simple was initially created in.
773  *
774  * Calling this function takes a reference to @simple for as long as
775  * is needed to complete the call.
776  */
777 void
778 g_simple_async_result_complete_in_idle (GSimpleAsyncResult *simple)
779 {
780   GSource *source;
781
782   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple));
783
784   g_object_ref (simple);
785  
786   source = g_idle_source_new ();
787   g_source_set_priority (source, G_PRIORITY_DEFAULT);
788   g_source_set_callback (source, complete_in_idle_cb, simple, g_object_unref);
789
790   g_source_attach (source, simple->context);
791   g_source_unref (source);
792 }
793
794 typedef struct {
795   GSimpleAsyncResult *simple;
796   GCancellable *cancellable;
797   GSimpleAsyncThreadFunc func;
798 } RunInThreadData;
799
800
801 static gboolean
802 complete_in_idle_cb_for_thread (gpointer _data)
803 {
804   RunInThreadData *data = _data;
805   GSimpleAsyncResult *simple;
806
807   simple = data->simple;
808  
809   if (simple->handle_cancellation &&
810       g_cancellable_is_cancelled (data->cancellable))
811     g_simple_async_result_set_error (simple,
812                                      G_IO_ERROR,
813                                      G_IO_ERROR_CANCELLED,
814                                      "%s", _("Operation was cancelled"));
815  
816   g_simple_async_result_complete (simple);
817
818   if (data->cancellable)
819     g_object_unref (data->cancellable);
820   g_object_unref (data->simple);
821   g_free (data);
822  
823   return FALSE;
824 }
825
826 static gboolean
827 run_in_thread (GIOSchedulerJob *job,
828                GCancellable    *c,
829                gpointer         _data)
830 {
831   RunInThreadData *data = _data;
832   GSimpleAsyncResult *simple = data->simple;
833   GSource *source;
834  
835   if (simple->handle_cancellation &&
836       g_cancellable_is_cancelled (c))
837     g_simple_async_result_set_error (simple,
838                                      G_IO_ERROR,
839                                      G_IO_ERROR_CANCELLED,
840                                      "%s", _("Operation was cancelled"));
841   else
842     data->func (simple,
843                 simple->source_object,
844                 c);
845
846   source = g_idle_source_new ();
847   g_source_set_priority (source, G_PRIORITY_DEFAULT);
848   g_source_set_callback (source, complete_in_idle_cb_for_thread, data, NULL);
849
850   g_source_attach (source, simple->context);
851   g_source_unref (source);
852
853   return FALSE;
854 }
855
856 /**
857  * g_simple_async_result_run_in_thread: (skip)
858  * @simple: a #GSimpleAsyncResult.
859  * @func: a #GSimpleAsyncThreadFunc.
860  * @io_priority: the io priority of the request.
861  * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
862  *
863  * Runs the asynchronous job in a separate thread and then calls
864  * g_simple_async_result_complete_in_idle() on @simple to return
865  * the result to the appropriate main loop.
866  *
867  * Calling this function takes a reference to @simple for as long as
868  * is needed to run the job and report its completion.
869  */
870 void
871 g_simple_async_result_run_in_thread (GSimpleAsyncResult     *simple,
872                                      GSimpleAsyncThreadFunc  func,
873                                      int                     io_priority,
874                                      GCancellable           *cancellable)
875 {
876   RunInThreadData *data;
877
878   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple));
879   g_return_if_fail (func != NULL);
880
881   data = g_new (RunInThreadData, 1);
882   data->func = func;
883   data->simple = g_object_ref (simple);
884   data->cancellable = cancellable;
885   if (cancellable)
886     g_object_ref (cancellable);
887   g_io_scheduler_push_job (run_in_thread, data, NULL, io_priority, cancellable);
888 }
889
890 /**
891  * g_simple_async_result_is_valid:
892  * @result: the #GAsyncResult passed to the _finish function.
893  * @source: the #GObject passed to the _finish function.
894  * @source_tag: the asynchronous function.
895  *
896  * Ensures that the data passed to the _finish function of an async
897  * operation is consistent.  Three checks are performed.
898  *
899  * First, @result is checked to ensure that it is really a
900  * #GSimpleAsyncResult.  Second, @source is checked to ensure that it
901  * matches the source object of @result.  Third, @source_tag is
902  * checked to ensure that it is either %NULL (as it is when the result was
903  * created by g_simple_async_report_error_in_idle() or
904  * g_simple_async_report_gerror_in_idle()) or equal to the
905  * @source_tag argument given to g_simple_async_result_new() (which, by
906  * convention, is a pointer to the _async function corresponding to the
907  * _finish function from which this function is called).
908  *
909  * Returns: #TRUE if all checks passed or #FALSE if any failed.
910  *
911  * Since: 2.20
912  **/
913 gboolean
914 g_simple_async_result_is_valid (GAsyncResult *result,
915                                 GObject      *source,
916                                 gpointer      source_tag)
917 {
918   GSimpleAsyncResult *simple;
919   GObject *cmp_source;
920
921   if (!G_IS_SIMPLE_ASYNC_RESULT (result))
922     return FALSE;
923   simple = (GSimpleAsyncResult *)result;
924
925   cmp_source = g_async_result_get_source_object (result);
926   if (cmp_source != source)
927     {
928       if (cmp_source != NULL)
929         g_object_unref (cmp_source);
930       return FALSE;
931     }
932   if (cmp_source != NULL)
933     g_object_unref (cmp_source);
934
935   return source_tag == NULL ||
936          source_tag == g_simple_async_result_get_source_tag (simple);
937 }
938
939 /**
940  * g_simple_async_report_error_in_idle: (skip)
941  * @object: (allow-none): a #GObject, or %NULL.
942  * @callback: a #GAsyncReadyCallback.
943  * @user_data: user data passed to @callback.
944  * @domain: a #GQuark containing the error domain (usually #G_IO_ERROR).
945  * @code: a specific error code.
946  * @format: a formatted error reporting string.
947  * @...: a list of variables to fill in @format.
948  *
949  * Reports an error in an asynchronous function in an idle function by
950  * directly setting the contents of the #GAsyncResult with the given error
951  * information.
952  **/
953 void
954 g_simple_async_report_error_in_idle (GObject             *object,
955                                      GAsyncReadyCallback  callback,
956                                      gpointer             user_data,
957                                      GQuark               domain,
958                                      gint                 code,
959                                      const char          *format,
960                                      ...)
961 {
962   GSimpleAsyncResult *simple;
963   va_list args;
964  
965   g_return_if_fail (!object || G_IS_OBJECT (object));
966   g_return_if_fail (domain != 0);
967   g_return_if_fail (format != NULL);
968
969   simple = g_simple_async_result_new (object,
970                                       callback,
971                                       user_data, NULL);
972
973   va_start (args, format);
974   g_simple_async_result_set_error_va (simple, domain, code, format, args);
975   va_end (args);
976   g_simple_async_result_complete_in_idle (simple);
977   g_object_unref (simple);
978 }
979
980 /**
981  * g_simple_async_report_gerror_in_idle:
982  * @object: (allow-none): a #GObject, or %NULL
983  * @callback: (scope async): a #GAsyncReadyCallback.
984  * @user_data: (closure): user data passed to @callback.
985  * @error: the #GError to report
986  *
987  * Reports an error in an idle function. Similar to
988  * g_simple_async_report_error_in_idle(), but takes a #GError rather
989  * than building a new one.
990  **/
991 void
992 g_simple_async_report_gerror_in_idle (GObject *object,
993                                       GAsyncReadyCallback callback,
994                                       gpointer user_data,
995                                       const GError *error)
996 {
997   GSimpleAsyncResult *simple;
998  
999   g_return_if_fail (!object || G_IS_OBJECT (object));
1000   g_return_if_fail (error != NULL);
1001
1002   simple = g_simple_async_result_new_from_error (object,
1003                                                  callback,
1004                                                  user_data,
1005                                                  error);
1006   g_simple_async_result_complete_in_idle (simple);
1007   g_object_unref (simple);
1008 }
1009
1010 /**
1011  * g_simple_async_report_take_gerror_in_idle: (skip)
1012  * @object: (allow-none): a #GObject, or %NULL
1013  * @callback: a #GAsyncReadyCallback.
1014  * @user_data: user data passed to @callback.
1015  * @error: the #GError to report
1016  *
1017  * Reports an error in an idle function. Similar to
1018  * g_simple_async_report_gerror_in_idle(), but takes over the caller's
1019  * ownership of @error, so the caller does not have to free it any more.
1020  *
1021  * Since: 2.28
1022  **/
1023 void
1024 g_simple_async_report_take_gerror_in_idle (GObject *object,
1025                                            GAsyncReadyCallback callback,
1026                                            gpointer user_data,
1027                                            GError *error)
1028 {
1029   GSimpleAsyncResult *simple;
1030
1031   g_return_if_fail (!object || G_IS_OBJECT (object));
1032   g_return_if_fail (error != NULL);
1033
1034   simple = g_simple_async_result_new_take_error (object,
1035                                                  callback,
1036                                                  user_data,
1037                                                  error);
1038   g_simple_async_result_complete_in_idle (simple);
1039   g_object_unref (simple);
1040 }