gtask: annotate source_object arguments and return values as GObject
[platform/upstream/glib.git] / gio / gtask.c
1 /* GIO - GLib Input, Output and Streaming Library
2  *
3  * Copyright 2011 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
21 #include "config.h"
22
23 #include "gtask.h"
24
25 #include "gasyncresult.h"
26 #include "gcancellable.h"
27
28 /**
29  * SECTION:gtask
30  * @short_description: Cancellable synchronous or asynchronous task and result
31  * @include: gio/gio.h
32  * @see_also: #GAsyncResult
33  *
34  * <para>
35  *   A #GTask represents and manages a cancellable "task".
36  * </para>
37  * <refsect2>
38  *   <title>Asynchronous operations</title>
39  *   <para>
40  *     The most common usage of #GTask is as a #GAsyncResult, to
41  *     manage data during an asynchronous operation. You call
42  *     g_task_new() in the "start" method, followed by
43  *     g_task_set_task_data() and the like if you need to keep some
44  *     additional data associated with the task, and then pass the
45  *     task object around through your asynchronous operation.
46  *     Eventually, you will call a method such as
47  *     g_task_return_pointer() or g_task_return_error(), which will
48  *     save the value you give it and then invoke the task's callback
49  *     function (waiting until the next next iteration of the main
50  *     loop first, if necessary). The caller will pass the #GTask back
51  *     to the operation's finish function (as a #GAsyncResult), and
52  *     you can use g_task_propagate_pointer() or the like to extract
53  *     the return value.
54  *   </para>
55  *   <example id="gtask-async"><title>GTask as a GAsyncResult</title>
56  *   <programlisting>
57  *     typedef struct {
58  *       CakeFrostingType frosting;
59  *       char *message;
60  *     } DecorationData;
61  *
62  *     static void
63  *     decoration_data_free (DecorationData *decoration)
64  *     {
65  *       g_free (decoration->message);
66  *       g_slice_free (DecorationData, decoration);
67  *     }
68  *
69  *     static void
70  *     baked_cb (Cake     *cake,
71  *               gpointer  user_data)
72  *     {
73  *       GTask *task = user_data;
74  *       DecorationData *decoration = g_task_get_task_data (task);
75  *       GError *error = NULL;
76  *
77  *       if (cake == NULL)
78  *         {
79  *           g_task_return_new_error (task, BAKER_ERROR, BAKER_ERROR_NO_FLOUR,
80  *                                    "Go to the supermarket");
81  *           g_object_unref (task);
82  *           return;
83  *         }
84  *
85  *       if (!cake_decorate (cake, decoration->frosting, decoration->message, &error))
86  *         {
87  *           g_object_unref (cake);
88  *           /&ast; g_task_return_error() takes ownership of error &ast;/
89  *           g_task_return_error (task, error);
90  *           g_object_unref (task);
91  *           return;
92  *         }
93  *
94  *       g_task_return_pointer (result, cake, g_object_unref);
95  *       g_object_unref (task);
96  *     }
97  *
98  *     void
99  *     baker_bake_cake_async (Baker               *self,
100  *                            guint                radius,
101  *                            CakeFlavor           flavor,
102  *                            CakeFrostingType     frosting,
103  *                            const char          *message,
104  *                            GCancellable        *cancellable,
105  *                            GAsyncReadyCallback  callback,
106  *                            gpointer             user_data)
107  *     {
108  *       GTask *task;
109  *       DecorationData *decoration;
110  *       Cake  *cake;
111  *
112  *       task = g_task_new (self, cancellable, callback, user_data);
113  *       if (radius < 3)
114  *         {
115  *           g_task_return_new_error (task, BAKER_ERROR, BAKER_ERROR_TOO_SMALL,
116  *                                    "%ucm radius cakes are silly",
117  *                                    radius);
118  *           g_object_unref (task);
119  *           return;
120  *         }
121  *
122  *       cake = _baker_get_cached_cake (self, radius, flavor, frosting, message);
123  *       if (cake != NULL)
124  *         {
125  *           /&ast; _baker_get_cached_cake() returns a reffed cake &ast;/
126  *           g_task_return_pointer (task, cake, g_object_unref);
127  *           g_object_unref (task);
128  *           return;
129  *         }
130  *
131  *       decoration = g_slice_new (DecorationData);
132  *       decoration->frosting = frosting;
133  *       decoration->message = g_strdup (message);
134  *       g_task_set_task_data (task, decoration, (GDestroyNotify) decoration_data_free);
135  *
136  *       _baker_begin_cake (self, radius, flavor, cancellable, baked_cb, task);
137  *     }
138  *
139  *     Cake *
140  *     baker_bake_cake_finish (Baker         *self,
141  *                             GAsyncResult  *result,
142  *                             GError       **error)
143  *     {
144  *       g_return_val_if_fail (g_task_is_valid (result, self), NULL);
145  *
146  *       return g_task_propagate_pointer (G_TASK (result), error);
147  *     }
148  *   </programlisting>
149  *   </example>
150  * </refsect2>
151  * <refsect2>
152  *   <title>Chained asynchronous operations</title>
153  *   <para>
154  *     #GTask also tries to simplify asynchronous operations that
155  *     internally chain together several smaller asynchronous
156  *     operations. g_task_get_cancellable(), g_task_get_context(), and
157  *     g_task_get_priority() allow you to get back the task's
158  *     #GCancellable, #GMainContext, and <link
159  *     linkend="io-priority">I/O priority</link> when starting a new
160  *     subtask, so you don't have to keep track of them yourself.
161  *     g_task_attach_source() simplifies the case of waiting for a
162  *     source to fire (automatically using the correct #GMainContext
163  *     and priority).
164  *   </para>
165  *   <example id="gtask-chained"><title>Chained asynchronous operations</title>
166  *   <programlisting>
167  *     typedef struct {
168  *       Cake *cake;
169  *       CakeFrostingType frosting;
170  *       char *message;
171  *     } BakingData;
172  *
173  *     static void
174  *     decoration_data_free (BakingData *bd)
175  *     {
176  *       if (bd->cake)
177  *         g_object_unref (bd->cake);
178  *       g_free (bd->message);
179  *       g_slice_free (BakingData, bd);
180  *     }
181  *
182  *     static void
183  *     decorated_cb (Cake         *cake,
184  *                   GAsyncResult *result,
185  *                   gpointer      user_data)
186  *     {
187  *       GTask *task = user_data;
188  *       GError *error = NULL;
189  *
190  *       if (!cake_decorate_finish (cake, result, &error))
191  *         {
192  *           g_object_unref (cake);
193  *           g_task_return_error (task, error);
194  *           g_object_unref (task);
195  *           return;
196  *         }
197  *
198  *       /&ast; baking_data_free() will drop its ref on the cake, so
199  *        &ast; we have to take another here to give to the caller.
200  *        &ast;/
201  *       g_task_return_pointer (result, g_object_ref (cake), g_object_unref);
202  *       g_object_unref (task);
203  *     }
204  *
205  *     static void
206  *     decorator_ready (gpointer user_data)
207  *     {
208  *       GTask *task = user_data;
209  *       BakingData *bd = g_task_get_task_data (task);
210  *
211  *       cake_decorate_async (bd->cake, bd->frosting, bd->message,
212  *                            g_task_get_cancellable (task),
213  *                            decorated_cb, task);
214  *     }
215  *
216  *     static void
217  *     baked_cb (Cake     *cake,
218  *               gpointer  user_data)
219  *     {
220  *       GTask *task = user_data;
221  *       BakingData *bd = g_task_get_task_data (task);
222  *       GError *error = NULL;
223  *
224  *       if (cake == NULL)
225  *         {
226  *           g_task_return_new_error (task, BAKER_ERROR, BAKER_ERROR_NO_FLOUR,
227  *                                    "Go to the supermarket");
228  *           g_object_unref (task);
229  *           return;
230  *         }
231  *
232  *       bd->cake = cake;
233  *
234  *       /&ast; Bail out now if the user has already cancelled &ast;/
235  *       if (g_task_return_error_if_cancelled (g_task_get_cancellable (task)))
236  *         {
237  *           g_object_unref (task);
238  *           return;
239  *         }
240  *
241  *       if (cake_decorator_available (cake))
242  *         decorator_ready (task);
243  *       else
244  *         {
245  *           GSource *source;
246  *
247  *           source = cake_decorator_wait_source_new (cake);
248  *           /&ast; Attach @source to @task's GMainContext and have it call
249  *            &ast; decorator_ready() when it is ready.
250  *            &ast;/
251  *           g_task_attach_source (task, source,
252  *                                 G_CALLBACK (decorator_ready));
253  *           g_source_unref (source);
254  *         }
255  *     }
256  *
257  *     void
258  *     baker_bake_cake_async (Baker               *self,
259  *                            guint                radius,
260  *                            CakeFlavor           flavor,
261  *                            CakeFrostingType     frosting,
262  *                            const char          *message,
263  *                            gint                 priority,
264  *                            GCancellable        *cancellable,
265  *                            GAsyncReadyCallback  callback,
266  *                            gpointer             user_data)
267  *     {
268  *       GTask *task;
269  *       BakingData *bd;
270  *
271  *       task = g_task_new (self, cancellable, callback, user_data);
272  *       g_task_set_priority (task, priority);
273  *
274  *       bd = g_slice_new0 (BakingData);
275  *       bd->frosting = frosting;
276  *       bd->message = g_strdup (message);
277  *       g_task_set_task_data (task, bd, (GDestroyNotify) baking_data_free);
278  *
279  *       _baker_begin_cake (self, radius, flavor, cancellable, baked_cb, task);
280  *     }
281  *
282  *     Cake *
283  *     baker_bake_cake_finish (Baker         *self,
284  *                             GAsyncResult  *result,
285  *                             GError       **error)
286  *     {
287  *       g_return_val_if_fail (g_task_is_valid (result, self), NULL);
288  *
289  *       return g_task_propagate_pointer (G_TASK (result), error);
290  *     }
291  *   </programlisting>
292  *   </example>
293  * </refsect2>
294  * <refsect2>
295  *   <title>Asynchronous operations from synchronous ones</title>
296  *   <para>
297  *     You can use g_task_run_in_thread() to turn a synchronous
298  *     operation into an asynchronous one, by running it in a thread
299  *     which will then dispatch the result back to the caller's
300  *     #GMainContext when it completes.
301  *   </para>
302  *   <example id="gtask-run-in-thread"><title>g_task_run_in_thread()</title>
303  *   <programlisting>
304  *     typedef struct {
305  *       guint radius;
306  *       CakeFlavor flavor;
307  *       CakeFrostingType frosting;
308  *       char *message;
309  *     } CakeData;
310  *
311  *     static void
312  *     cake_data_free (CakeData *cake_data)
313  *     {
314  *       g_free (cake_data->message);
315  *       g_slice_free (CakeData, cake_data);
316  *     }
317  *
318  *     static void
319  *     bake_cake_thread (GTask         *task,
320  *                       gpointer       source_object,
321  *                       gpointer       task_data,
322  *                       GCancellable  *cancellable)
323  *     {
324  *       Baker *self = source_object;
325  *       CakeData *cake_data = task_data;
326  *       Cake *cake;
327  *       GError *error = NULL;
328  *
329  *       cake = bake_cake (baker, cake_data->radius, cake_data->flavor,
330  *                         cake_data->frosting, cake_data->message,
331  *                         cancellable, &error);
332  *       if (cake)
333  *         g_task_return_pointer (task, cake, g_object_unref);
334  *       else
335  *         g_task_return_error (task, error);
336  *     }
337  *
338  *     void
339  *     baker_bake_cake_async (Baker               *self,
340  *                            guint                radius,
341  *                            CakeFlavor           flavor,
342  *                            CakeFrostingType     frosting,
343  *                            const char          *message,
344  *                            GCancellable        *cancellable,
345  *                            GAsyncReadyCallback  callback,
346  *                            gpointer             user_data)
347  *     {
348  *       CakeData *cake_data;
349  *       GTask *task;
350  *
351  *       cake_data = g_slice_new (CakeData);
352  *       cake_data->radius = radius;
353  *       cake_data->flavor = flavor;
354  *       cake_data->frosting = frosting;
355  *       cake_data->message = g_strdup (message);
356  *       task = g_task_new (self, cancellable, callback, user_data);
357  *       g_task_set_task_data (task, cake_data, (GDestroyNotify) cake_data_free);
358  *       g_task_run_in_thread (task, bake_cake_thread);
359  *     }
360  *
361  *     Cake *
362  *     baker_bake_cake_finish (Baker         *self,
363  *                             GAsyncResult  *result,
364  *                             GError       **error)
365  *     {
366  *       g_return_val_if_fail (g_task_is_valid (result, self), NULL);
367  *
368  *       return g_task_propagate_pointer (G_TASK (result), error);
369  *     }
370  *   </programlisting>
371  *   </example>
372  * </refsect2>
373  * <refsect2>
374  *   <title>Adding cancellability to uncancellable tasks</title>
375  *   <para>
376  *     Finally, g_task_run_in_thread() and g_task_run_in_thread_sync()
377  *     can be used to turn an uncancellable operation into a
378  *     cancellable one. If you call g_task_set_return_on_cancel(),
379  *     passing %TRUE, then if the task's #GCancellable is cancelled,
380  *     it will return control back to the caller immediately, while
381  *     allowing the task thread to continue running in the background
382  *     (and simply discarding its result when it finally does finish).
383  *     Provided that the task thread is careful about how it uses
384  *     locks and other externally-visible resources, this allows you
385  *     to make "GLib-friendly" asynchronous and cancellable
386  *     synchronous variants of blocking APIs.
387  *   </para>
388  *   <example id="gtask-cancellable"><title>g_task_set_return_on_cancel()</title>
389  *   <programlisting>
390  *     static void
391  *     bake_cake_thread (GTask         *task,
392  *                       gpointer       source_object,
393  *                       gpointer       task_data,
394  *                       GCancellable  *cancellable)
395  *     {
396  *       Baker *self = source_object;
397  *       CakeData *cake_data = task_data;
398  *       Cake *cake;
399  *       GError *error = NULL;
400  *
401  *       cake = bake_cake (baker, cake_data->radius, cake_data->flavor,
402  *                         cake_data->frosting, cake_data->message,
403  *                         &error);
404  *       if (error)
405  *         {
406  *           g_task_return_error (task, error);
407  *           return;
408  *         }
409  *
410  *       /&ast; If the task has already been cancelled, then we don't
411  *        &ast; want to add the cake to the cake cache. Likewise, we don't
412  *        &ast; want to have the task get cancelled in the middle of
413  *        &ast; updating the cache. g_task_set_return_on_cancel() will
414  *        &ast; return %TRUE here if it managed to disable return-on-cancel,
415  *        &ast; or %FALSE if the task was cancelled before it could.
416  *        &ast;/
417  *       if (g_task_set_return_on_cancel (task, FALSE))
418  *         {
419  *           /&ast; If the caller cancels at this point, their
420  *            &ast; GAsyncReadyCallback won't be invoked until we return,
421  *            &ast; so we don't have to worry that this code will run at
422  *            &ast; the same time as that code does. But if there were
423  *            &ast; other functions that might look at the cake cache,
424  *            &ast; then we'd probably need a GMutex here as well.
425  *            &ast;/
426  *           baker_add_cake_to_cache (baker, cake);
427  *           g_task_return_pointer (task, cake, g_object_unref);
428  *         }
429  *     }
430  *
431  *     void
432  *     baker_bake_cake_async (Baker               *self,
433  *                            guint                radius,
434  *                            CakeFlavor           flavor,
435  *                            CakeFrostingType     frosting,
436  *                            const char          *message,
437  *                            GCancellable        *cancellable,
438  *                            GAsyncReadyCallback  callback,
439  *                            gpointer             user_data)
440  *     {
441  *       CakeData *cake_data;
442  *       GTask *task;
443  *
444  *       cake_data = g_slice_new (CakeData);
445  *       /&ast; ... &ast;/
446  *
447  *       task = g_task_new (self, cancellable, callback, user_data);
448  *       g_task_set_task_data (task, cake_data, (GDestroyNotify) cake_data_free);
449  *       g_task_set_return_on_cancel (task, TRUE);
450  *       g_task_run_in_thread (task, bake_cake_thread);
451  *     }
452  *
453  *     Cake *
454  *     baker_bake_cake_sync (Baker               *self,
455  *                           guint                radius,
456  *                           CakeFlavor           flavor,
457  *                           CakeFrostingType     frosting,
458  *                           const char          *message,
459  *                           GCancellable        *cancellable,
460  *                           GError             **error)
461  *     {
462  *       CakeData *cake_data;
463  *       GTask *task;
464  *       Cake *cake;
465  *
466  *       cake_data = g_slice_new (CakeData);
467  *       /&ast; ... &ast;/
468  *
469  *       task = g_task_new (self, cancellable, NULL, NULL);
470  *       g_task_set_task_data (task, cake_data, (GDestroyNotify) cake_data_free);
471  *       g_task_set_return_on_cancel (task, TRUE);
472  *       g_task_run_in_thread_sync (task, bake_cake_thread);
473  *
474  *       cake = g_task_propagate_pointer (task, error);
475  *       g_object_unref (task);
476  *       return cake;
477  *     }
478  *   </programlisting>
479  *   </example>
480  * </refsect2>
481  * <refsect2>
482  *   <title>Porting from <literal>GSimpleAsyncResult</literal></title>
483  *   <para>
484  *     #GTask's API attempts to be simpler than #GSimpleAsyncResult's
485  *     in several ways:
486  *   </para>
487  *   <itemizedlist>
488  *     <listitem><para>
489  *       You can save task-specific data with g_task_set_task_data(), and
490  *       retrieve it later with g_task_get_task_data(). This replaces the
491  *       abuse of g_simple_async_result_set_op_res_gpointer() for the same
492  *       purpose with #GSimpleAsyncResult.
493  *     </para></listitem>
494  *     <listitem><para>
495  *       In addition to the task data, #GTask also keeps track of the
496  *       <link linkend="io-priority">priority</link>, #GCancellable, and
497  *       #GMainContext associated with the task, so tasks that consist of
498  *       a chain of simpler asynchronous operations will have easy access
499  *       to those values when starting each sub-task.
500  *     </para></listitem>
501  *     <listitem><para>
502  *       g_task_return_error_if_cancelled() provides simplified
503  *       handling for cancellation. In addition, cancellation
504  *       overrides any other #GTask return value by default, like
505  *       #GSimpleAsyncResult does when
506  *       g_simple_async_result_set_check_cancellable() is called.
507  *       (You can use g_task_set_check_cancellable() to turn off that
508  *       behavior.) On the other hand, g_task_run_in_thread()
509  *       guarantees that it will always run your
510  *       <literal>task_func</literal>, even if the task's #GCancellable
511  *       is already cancelled before the task gets a chance to run;
512  *       you can start your <literal>task_func</literal> with a
513  *       g_task_return_error_if_cancelled() check if you need the
514  *       old behavior.
515  *     </para></listitem>
516  *     <listitem><para>
517  *       The "return" methods (eg, g_task_return_pointer())
518  *       automatically cause the task to be "completed" as well, and
519  *       there is no need to worry about the "complete" vs "complete
520  *       in idle" distinction. (#GTask automatically figures out
521  *       whether the task's callback can be invoked directly, or
522  *       if it needs to be sent to another #GMainContext, or delayed
523  *       until the next iteration of the current #GMainContext.)
524  *     </para></listitem>
525  *     <listitem><para>
526  *       The "finish" functions for #GTask-based operations are generally
527  *       much simpler than #GSimpleAsyncResult ones, normally consisting
528  *       of only a single call to g_task_propagate_pointer() or the like.
529  *       Since g_task_propagate_pointer() "steals" the return value from
530  *       the #GTask, it is not necessary to juggle pointers around to
531  *       prevent it from being freed twice.
532  *     </para></listitem>
533  *     <listitem><para>
534  *       With #GSimpleAsyncResult, it was common to call
535  *       g_simple_async_result_propagate_error() from the
536  *       <literal>_finish()</literal> wrapper function, and have
537  *       virtual method implementations only deal with successful
538  *       returns. This behavior is deprecated, because it makes it
539  *       difficult for a subclass to chain to a parent class's async
540  *       methods. Instead, the wrapper function should just be a
541  *       simple wrapper, and the virtual method should call an
542  *       appropriate <literal>g_task_propagate_</literal> function.
543  *       Note that wrapper methods can now use
544  *       g_async_result_legacy_propagate_error() to do old-style
545  *       #GSimpleAsyncResult error-returning behavior, and
546  *       g_async_result_is_tagged() to check if a result is tagged as
547  *       having come from the <literal>_async()</literal> wrapper
548  *       function (for "short-circuit" results, such as when passing
549  *       0 to g_input_stream_read_async()).
550  *     </para></listitem>
551  *   </itemizedlist>
552  * </refsect2>
553  */
554
555 /**
556  * GTask:
557  *
558  * The opaque object representing a synchronous or asynchronous task
559  * and its result.
560  */
561
562 struct _GTask {
563   GObject parent_instance;
564
565   gpointer source_object;
566   gpointer source_tag;
567
568   gpointer task_data;
569   GDestroyNotify task_data_destroy;
570
571   GMainContext *context;
572   guint64 creation_time;
573   gint priority;
574   GCancellable *cancellable;
575   gboolean check_cancellable;
576
577   GAsyncReadyCallback callback;
578   gpointer callback_data;
579
580   GTaskThreadFunc task_func;
581   GMutex lock;
582   GCond cond;
583   gboolean return_on_cancel;
584   gboolean thread_cancelled;
585   gboolean synchronous;
586   gboolean thread_complete;
587
588   GError *error;
589   union {
590     gpointer pointer;
591     gssize   size;
592     gboolean boolean;
593   } result;
594   GDestroyNotify result_destroy;
595   gboolean result_set;
596 };
597
598 #define G_TASK_IS_THREADED(task) ((task)->task_func != NULL)
599
600 struct _GTaskClass
601 {
602   GObjectClass parent_class;
603 };
604
605 static void g_task_thread_pool_resort (void);
606
607 static void g_task_async_result_iface_init (GAsyncResultIface *iface);
608 static void g_task_thread_pool_init (void);
609
610 G_DEFINE_TYPE_WITH_CODE (GTask, g_task, G_TYPE_OBJECT,
611                          G_IMPLEMENT_INTERFACE (G_TYPE_ASYNC_RESULT,
612                                                 g_task_async_result_iface_init);
613                          g_task_thread_pool_init ();)
614
615 static GThreadPool *task_pool;
616
617 static void
618 g_task_init (GTask *task)
619 {
620   task->check_cancellable = TRUE;
621 }
622
623 static void
624 g_task_finalize (GObject *object)
625 {
626   GTask *task = G_TASK (object);
627
628   g_clear_object (&task->source_object);
629   g_clear_object (&task->cancellable);
630
631   if (task->context)
632     g_main_context_unref (task->context);
633
634   if (task->task_data_destroy)
635     task->task_data_destroy (task->task_data);
636
637   if (task->result_destroy && task->result.pointer)
638     task->result_destroy (task->result.pointer);
639
640   if (G_TASK_IS_THREADED (task))
641     {
642       g_mutex_clear (&task->lock);
643       g_cond_clear (&task->cond);
644     }
645
646   G_OBJECT_CLASS (g_task_parent_class)->finalize (object);
647 }
648
649 /**
650  * g_task_new:
651  * @source_object: (allow-none) (type GObject): the #GObject that owns
652  *   this task, or %NULL.
653  * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
654  * @callback: (scope async): a #GAsyncReadyCallback.
655  * @callback_data: (closure): user data passed to @callback.
656  *
657  * Creates a #GTask acting on @source_object, which will eventually be
658  * used to invoke @callback in the current <link
659  * linkend="g-main-context-push-thread-default">thread-default main
660  * context</link>.
661  *
662  * Call this in the "start" method of your asynchronous method, and
663  * pass the #GTask around throughout the asynchronous operation. You
664  * can use g_task_set_task_data() to attach task-specific data to the
665  * object, which you can retrieve later via g_task_get_task_data().
666  *
667  * By default, if @cancellable is cancelled, then the return value of
668  * the task will always be %G_IO_ERROR_CANCELLED, even if the task had
669  * already completed before the cancellation. This allows for
670  * simplified handling in cases where cancellation may imply that
671  * other objects that the task depends on have been destroyed. If you
672  * do not want this behavior, you can use
673  * g_task_set_check_cancellable() to change it.
674  *
675  * Returns: a #GTask.
676  *
677  * Since: 2.36
678  */
679 GTask *
680 g_task_new (gpointer              source_object,
681             GCancellable         *cancellable,
682             GAsyncReadyCallback   callback,
683             gpointer              callback_data)
684 {
685   GTask *task;
686   GSource *source;
687
688   task = g_object_new (G_TYPE_TASK, NULL);
689   task->source_object = source_object ? g_object_ref (source_object) : NULL;
690   task->cancellable = cancellable ? g_object_ref (cancellable) : NULL;
691   task->callback = callback;
692   task->callback_data = callback_data;
693   task->context = g_main_context_ref_thread_default ();
694
695   source = g_main_current_source ();
696   if (source)
697     task->creation_time = g_source_get_time (source);
698
699   return task;
700 }
701
702 /**
703  * g_task_report_error:
704  * @source_object: (allow-none) (type GObject): the #GObject that owns
705  *   this task, or %NULL.
706  * @callback: (scope async): a #GAsyncReadyCallback.
707  * @callback_data: (closure): user data passed to @callback.
708  * @source_tag: an opaque pointer indicating the source of this task
709  * @error: (transfer full): error to report
710  *
711  * Creates a #GTask and then immediately calls g_task_return_error()
712  * on it. Use this in the wrapper function of an asynchronous method
713  * when you want to avoid even calling the virtual method. You can
714  * then use g_async_result_is_tagged() in the finish method wrapper to
715  * check if the result there is tagged as having been created by the
716  * wrapper method, and deal with it appropriately if so.
717  *
718  * See also g_task_report_new_error().
719  *
720  * Since: 2.36
721  */
722 void
723 g_task_report_error (gpointer             source_object,
724                      GAsyncReadyCallback  callback,
725                      gpointer             callback_data,
726                      gpointer             source_tag,
727                      GError              *error)
728 {
729   GTask *task;
730
731   task = g_task_new (source_object, NULL, callback, callback_data);
732   g_task_set_source_tag (task, source_tag);
733   g_task_return_error (task, error);
734   g_object_unref (task);
735 }
736
737 /**
738  * g_task_report_new_error:
739  * @source_object: (allow-none) (type GObject): the #GObject that owns
740  *   this task, or %NULL.
741  * @callback: (scope async): a #GAsyncReadyCallback.
742  * @callback_data: (closure): user data passed to @callback.
743  * @source_tag: an opaque pointer indicating the source of this task
744  * @domain: a #GQuark.
745  * @code: an error code.
746  * @format: a string with format characters.
747  * @...: a list of values to insert into @format.
748  *
749  * Creates a #GTask and then immediately calls
750  * g_task_return_new_error() on it. Use this in the wrapper function
751  * of an asynchronous method when you want to avoid even calling the
752  * virtual method. You can then use g_async_result_is_tagged() in the
753  * finish method wrapper to check if the result there is tagged as
754  * having been created by the wrapper method, and deal with it
755  * appropriately if so.
756  *
757  * See also g_task_report_error().
758  *
759  * Since: 2.36
760  */
761 void
762 g_task_report_new_error (gpointer             source_object,
763                          GAsyncReadyCallback  callback,
764                          gpointer             callback_data,
765                          gpointer             source_tag,
766                          GQuark               domain,
767                          gint                 code,
768                          const char          *format,
769                          ...)
770 {
771   GError *error;
772   va_list ap;
773
774   va_start (ap, format);
775   error = g_error_new_valist (domain, code, format, ap);
776   va_end (ap);
777
778   g_task_report_error (source_object, callback, callback_data,
779                        source_tag, error);
780 }
781
782 /**
783  * g_task_set_task_data:
784  * @task: the #GTask
785  * @task_data: (allow-none): task-specific data
786  * @task_data_destroy: (allow-none): #GDestroyNotify for @task_data
787  *
788  * Sets @task's task data (freeing the existing task data, if any).
789  *
790  * Since: 2.36
791  */
792 void
793 g_task_set_task_data (GTask          *task,
794                       gpointer        task_data,
795                       GDestroyNotify  task_data_destroy)
796 {
797   if (task->task_data_destroy)
798     task->task_data_destroy (task->task_data);
799
800   task->task_data = task_data;
801   task->task_data_destroy = task_data_destroy;
802 }
803
804 /**
805  * g_task_set_priority:
806  * @task: the #GTask
807  * @priority: the <link linkend="io-priority">priority</link>
808  *   of the request.
809  *
810  * Sets @task's priority. If you do not call this, it will default to
811  * %G_PRIORITY_DEFAULT.
812  *
813  * This will affect the priority of #GSources created with
814  * g_task_attach_source() and the scheduling of tasks run in threads,
815  * and can also be explicitly retrieved later via
816  * g_task_get_priority().
817  *
818  * Since: 2.36
819  */
820 void
821 g_task_set_priority (GTask *task,
822                      gint   priority)
823 {
824   task->priority = priority;
825 }
826
827 /**
828  * g_task_set_check_cancellable:
829  * @task: the #GTask
830  * @check_cancellable: whether #GTask will check the state of
831  *   its #GCancellable for you.
832  *
833  * Sets or clears @task's check-cancellable flag. If this is %TRUE
834  * (the default), then g_task_propagate_pointer(), etc, and
835  * g_task_had_error() will check the task's #GCancellable first, and
836  * if it has been cancelled, then they will consider the task to have
837  * returned an "Operation was cancelled" error
838  * (%G_IO_ERROR_CANCELLED), regardless of any other error or return
839  * value the task may have had.
840  *
841  * If @check_cancellable is %FALSE, then the #GTask will not check the
842  * cancellable itself, and it is up to @task's owner to do this (eg,
843  * via g_task_return_error_if_cancelled()).
844  *
845  * If you are using g_task_set_return_on_cancel() as well, then
846  * you must leave check-cancellable set %TRUE.
847  *
848  * Since: 2.36
849  */
850 void
851 g_task_set_check_cancellable (GTask    *task,
852                               gboolean  check_cancellable)
853 {
854   g_return_if_fail (check_cancellable || !task->return_on_cancel);
855
856   task->check_cancellable = check_cancellable;
857 }
858
859 static void g_task_thread_complete (GTask *task);
860
861 /**
862  * g_task_set_return_on_cancel:
863  * @task: the #GTask
864  * @return_on_cancel: whether the task returns automatically when
865  *   it is cancelled.
866  *
867  * Sets or clears @task's return-on-cancel flag. This is only
868  * meaningful for tasks run via g_task_run_in_thread() or
869  * g_task_run_in_thread_sync().
870  *
871  * If @return_on_cancel is %TRUE, then cancelling @task's
872  * #GCancellable will immediately cause it to return, as though the
873  * task's #GTaskThreadFunc had called
874  * g_task_return_error_if_cancelled() and then returned.
875  *
876  * This allows you to create a cancellable wrapper around an
877  * uninterruptable function. The #GTaskThreadFunc just needs to be
878  * careful that it does not modify any externally-visible state after
879  * it has been cancelled. To do that, the thread should call
880  * g_task_set_return_on_cancel() again to (atomically) set
881  * return-on-cancel %FALSE before making externally-visible changes;
882  * if the task gets cancelled before the return-on-cancel flag could
883  * be changed, g_task_set_return_on_cancel() will indicate this by
884  * returning %FALSE.
885  *
886  * You can disable and re-enable this flag multiple times if you wish.
887  * If the task's #GCancellable is cancelled while return-on-cancel is
888  * %FALSE, then calling g_task_set_return_on_cancel() to set it %TRUE
889  * again will cause the task to be cancelled at that point.
890  *
891  * If the task's #GCancellable is already cancelled before you call
892  * g_task_run_in_thread()/g_task_run_in_thread_sync(), then the
893  * #GTaskThreadFunc will still be run (for consistency), but the task
894  * will also be completed right away.
895  *
896  * Returns: %TRUE if @task's return-on-cancel flag was changed to
897  *   match @return_on_cancel. %FALSE if @task has already been
898  *   cancelled.
899  *
900  * Since: 2.36
901  */
902 gboolean
903 g_task_set_return_on_cancel (GTask    *task,
904                              gboolean  return_on_cancel)
905 {
906   g_return_val_if_fail (task->check_cancellable || !return_on_cancel, FALSE);
907
908   if (!G_TASK_IS_THREADED (task))
909     {
910       task->return_on_cancel = return_on_cancel;
911       return TRUE;
912     }
913
914   g_mutex_lock (&task->lock);
915   if (task->thread_cancelled)
916     {
917       if (return_on_cancel && !task->return_on_cancel)
918         {
919           g_mutex_unlock (&task->lock);
920           g_task_thread_complete (task);
921         }
922       else
923         g_mutex_unlock (&task->lock);
924       return FALSE;
925     }
926   task->return_on_cancel = return_on_cancel;
927   g_mutex_unlock (&task->lock);
928
929   return TRUE;
930 }
931
932 /**
933  * g_task_set_source_tag:
934  * @task: the #GTask
935  * @source_tag: an opaque pointer indicating the source of this task
936  *
937  * Sets @task's source tag. You can use this to tag a task return
938  * value with a particular pointer (usually a pointer to the function
939  * doing the tagging) and then later check it using
940  * g_task_get_source_tag() (or g_async_result_is_tagged()) in the
941  * task's "finish" function, to figure out if the response came from a
942  * particular place.
943  *
944  * Since: 2.36
945  */
946 void
947 g_task_set_source_tag (GTask    *task,
948                        gpointer  source_tag)
949 {
950   task->source_tag = source_tag;
951 }
952
953 /**
954  * g_task_get_source_object:
955  * @task: a #GTask
956  *
957  * Gets the source object from @task. Like
958  * g_async_result_get_source_object(), but does not ref the object.
959  *
960  * Returns: (transfer none) (type GObject): @task's source object, or %NULL
961  *
962  * Since: 2.36
963  */
964 gpointer
965 g_task_get_source_object (GTask *task)
966 {
967   return task->source_object;
968 }
969
970 static GObject *
971 g_task_ref_source_object (GAsyncResult *res)
972 {
973   GTask *task = G_TASK (res);
974
975   if (task->source_object)
976     return g_object_ref (task->source_object);
977   else
978     return NULL;
979 }
980
981 /**
982  * g_task_get_task_data:
983  * @task: a #GTask
984  *
985  * Gets @task's <literal>task_data</literal>.
986  *
987  * Returns: (transfer none): @task's <literal>task_data</literal>.
988  *
989  * Since: 2.36
990  */
991 gpointer
992 g_task_get_task_data (GTask *task)
993 {
994   return task->task_data;
995 }
996
997 /**
998  * g_task_get_priority:
999  * @task: a #GTask
1000  *
1001  * Gets @task's priority
1002  *
1003  * Returns: @task's priority
1004  *
1005  * Since: 2.36
1006  */
1007 gint
1008 g_task_get_priority (GTask *task)
1009 {
1010   return task->priority;
1011 }
1012
1013 /**
1014  * g_task_get_context:
1015  * @task: a #GTask
1016  *
1017  * Gets the #GMainContext that @task will return its result in (that
1018  * is, the context that was the <link
1019  * linkend="g-main-context-push-thread-default">thread-default main
1020  * context</link> at the point when @task was created).
1021  *
1022  * This will always return a non-%NULL value, even if the task's
1023  * context is the default #GMainContext.
1024  *
1025  * Returns: (transfer none): @task's #GMainContext
1026  *
1027  * Since: 2.36
1028  */
1029 GMainContext *
1030 g_task_get_context (GTask *task)
1031 {
1032   return task->context;
1033 }
1034
1035 /**
1036  * g_task_get_cancellable:
1037  * @task: a #GTask
1038  *
1039  * Gets @task's #GCancellable
1040  *
1041  * Returns: (transfer none): @task's #GCancellable
1042  *
1043  * Since: 2.36
1044  */
1045 GCancellable *
1046 g_task_get_cancellable (GTask *task)
1047 {
1048   return task->cancellable;
1049 }
1050
1051 /**
1052  * g_task_get_check_cancellable:
1053  * @task: the #GTask
1054  *
1055  * Gets @task's check-cancellable flag. See
1056  * g_task_set_check_cancellable() for more details.
1057  *
1058  * Since: 2.36
1059  */
1060 gboolean
1061 g_task_get_check_cancellable (GTask *task)
1062 {
1063   return task->check_cancellable;
1064 }
1065
1066 /**
1067  * g_task_get_return_on_cancel:
1068  * @task: the #GTask
1069  *
1070  * Gets @task's return-on-cancel flag. See
1071  * g_task_set_return_on_cancel() for more details.
1072  *
1073  * Since: 2.36
1074  */
1075 gboolean
1076 g_task_get_return_on_cancel (GTask *task)
1077 {
1078   return task->return_on_cancel;
1079 }
1080
1081 /**
1082  * g_task_get_source_tag:
1083  * @task: a #GTask
1084  *
1085  * Gets @task's source tag. See g_task_set_source_tag().
1086  *
1087  * Return value: (transfer none): @task's source tag
1088  *
1089  * Since: 2.36
1090  */
1091 gpointer
1092 g_task_get_source_tag (GTask *task)
1093 {
1094   return task->source_tag;
1095 }
1096
1097
1098 static void
1099 g_task_return_now (GTask *task)
1100 {
1101   g_main_context_push_thread_default (task->context);
1102   task->callback (task->source_object,
1103                   G_ASYNC_RESULT (task),
1104                   task->callback_data);
1105   g_main_context_pop_thread_default (task->context);
1106 }
1107
1108 static gboolean
1109 complete_in_idle_cb (gpointer task)
1110 {
1111   g_task_return_now (task);
1112   g_object_unref (task);
1113   return FALSE;
1114 }
1115
1116 typedef enum {
1117   G_TASK_RETURN_SUCCESS,
1118   G_TASK_RETURN_ERROR,
1119   G_TASK_RETURN_FROM_THREAD
1120 } GTaskReturnType;
1121
1122 static void
1123 g_task_return (GTask           *task,
1124                GTaskReturnType  type)
1125 {
1126   GSource *source;
1127
1128   if (type == G_TASK_RETURN_SUCCESS)
1129     task->result_set = TRUE;
1130
1131   if (task->synchronous || !task->callback)
1132     return;
1133
1134   /* Normally we want to invoke the task's callback when its return
1135    * value is set. But if the task is running in a thread, then we
1136    * want to wait until after the task_func returns, to simplify
1137    * locking/refcounting/etc.
1138    */
1139   if (G_TASK_IS_THREADED (task) && type != G_TASK_RETURN_FROM_THREAD)
1140     return;
1141
1142   g_object_ref (task);
1143
1144   /* See if we can complete the task immediately. First, we have to be
1145    * running inside the task's thread/GMainContext.
1146    */
1147   source = g_main_current_source ();
1148   if (source && g_source_get_context (source) == task->context)
1149     {
1150       /* Second, we can only complete immediately if this is not the
1151        * same iteration of the main loop that the task was created in.
1152        */
1153       if (g_source_get_time (source) > task->creation_time)
1154         {
1155           g_task_return_now (task);
1156           g_object_unref (task);
1157           return;
1158         }
1159     }
1160
1161   /* Otherwise, complete in the next iteration */
1162   source = g_idle_source_new ();
1163   g_task_attach_source (task, source, complete_in_idle_cb);
1164   g_source_unref (source);
1165 }
1166
1167
1168 /**
1169  * GTaskThreadFunc:
1170  * @task: the #GTask
1171  * @source_object: (type GObject): @task's source object
1172  * @task_data: @task's task data
1173  * @cancellable: @task's #GCancellable, or %NULL
1174  *
1175  * The prototype for a task function to be run in a thread via
1176  * g_task_run_in_thread() or g_task_run_in_thread_sync().
1177  *
1178  * If the return-on-cancel flag is set on @task, and @cancellable gets
1179  * cancelled, then the #GTask will be completed immediately (as though
1180  * g_task_return_error_if_cancelled() had been called), without
1181  * waiting for the task function to complete. However, the task
1182  * function will continue running in its thread in the background. The
1183  * function therefore needs to be careful about how it uses
1184  * externally-visible state in this case. See
1185  * g_task_set_return_on_cancel() for more details.
1186  *
1187  * Other than in that case, @task will be completed when the
1188  * #GTaskThreadFunc returns, <emphasis>not</emphasis> when it calls
1189  * a <literal>g_task_return_</literal> function.
1190  *
1191  * Since: 2.36
1192  */
1193
1194 static void task_thread_cancelled (GCancellable *cancellable,
1195                                    gpointer      user_data);
1196
1197 static void
1198 g_task_thread_complete (GTask *task)
1199 {
1200   g_mutex_lock (&task->lock);
1201   if (task->thread_complete)
1202     {
1203       /* The task belatedly completed after having been cancelled
1204        * (or was cancelled in the midst of being completed).
1205        */
1206       g_mutex_unlock (&task->lock);
1207       return;
1208     }
1209
1210   task->thread_complete = TRUE;
1211   g_mutex_unlock (&task->lock);
1212
1213   if (task->cancellable)
1214     g_signal_handlers_disconnect_by_func (task->cancellable, task_thread_cancelled, task);
1215
1216   if (task->synchronous)
1217     g_cond_signal (&task->cond);
1218   else
1219     g_task_return (task, G_TASK_RETURN_FROM_THREAD);
1220 }
1221
1222 static void
1223 g_task_thread_pool_thread (gpointer thread_data,
1224                            gpointer pool_data)
1225 {
1226   GTask *task = thread_data;
1227
1228   task->task_func (task, task->source_object, task->task_data,
1229                    task->cancellable);
1230   g_task_thread_complete (task);
1231   g_object_unref (task);
1232 }
1233
1234 static void
1235 task_thread_cancelled (GCancellable *cancellable,
1236                        gpointer      user_data)
1237 {
1238   GTask *task = user_data;
1239
1240   g_task_thread_pool_resort ();
1241
1242   g_mutex_lock (&task->lock);
1243   task->thread_cancelled = TRUE;
1244
1245   if (!task->return_on_cancel)
1246     {
1247       g_mutex_unlock (&task->lock);
1248       return;
1249     }
1250
1251   /* We don't actually set task->error; g_task_return_error() doesn't
1252    * use a lock, and g_task_propagate_error() will call
1253    * g_cancellable_set_error_if_cancelled() anyway.
1254    */
1255   g_mutex_unlock (&task->lock);
1256   g_task_thread_complete (task);
1257 }
1258
1259 static void
1260 task_thread_cancelled_disconnect_notify (gpointer  task,
1261                                          GClosure *closure)
1262 {
1263   g_object_unref (task);
1264 }
1265
1266 static void
1267 g_task_start_task_thread (GTask           *task,
1268                           GTaskThreadFunc  task_func)
1269 {
1270   g_mutex_init (&task->lock);
1271   g_cond_init (&task->cond);
1272
1273   g_mutex_lock (&task->lock);
1274
1275   task->task_func = task_func;
1276
1277   if (task->cancellable)
1278     {
1279       if (task->return_on_cancel &&
1280           g_cancellable_set_error_if_cancelled (task->cancellable,
1281                                                 &task->error))
1282         {
1283           task->thread_cancelled = task->thread_complete = TRUE;
1284           g_thread_pool_push (task_pool, g_object_ref (task), NULL);
1285           return;
1286         }
1287
1288       g_signal_connect_data (task->cancellable, "cancelled",
1289                              G_CALLBACK (task_thread_cancelled),
1290                              g_object_ref (task),
1291                              task_thread_cancelled_disconnect_notify, 0);
1292     }
1293
1294   g_thread_pool_push (task_pool, g_object_ref (task), &task->error);
1295   if (task->error)
1296     task->thread_complete = TRUE;
1297 }
1298
1299 /**
1300  * g_task_run_in_thread:
1301  * @task: a #GTask
1302  * @task_func: a #GTaskThreadFunc
1303  *
1304  * Runs @task_func in another thread. When @task_func returns, @task's
1305  * #GAsyncReadyCallback will be invoked in @task's #GMainContext.
1306  *
1307  * This takes a ref on @task until the task completes.
1308  *
1309  * See #GTaskThreadFunc for more details about how @task_func is handled.
1310  *
1311  * Since: 2.36
1312  */
1313 void
1314 g_task_run_in_thread (GTask           *task,
1315                       GTaskThreadFunc  task_func)
1316 {
1317   g_return_if_fail (G_IS_TASK (task));
1318
1319   g_object_ref (task);
1320   g_task_start_task_thread (task, task_func);
1321
1322   /* The task may already be cancelled, or g_thread_pool_push() may
1323    * have failed.
1324    */
1325   if (task->thread_complete)
1326     {
1327       g_mutex_unlock (&task->lock);
1328       g_task_return (task, G_TASK_RETURN_FROM_THREAD);
1329     }
1330   else
1331     g_mutex_unlock (&task->lock);
1332
1333   g_object_unref (task);
1334 }
1335
1336 /**
1337  * g_task_run_in_thread_sync:
1338  * @task: a #GTask
1339  * @task_func: a #GTaskThreadFunc
1340  *
1341  * Runs @task_func in another thread, and waits for it to return or be
1342  * cancelled. You can use g_task_propagate_pointer(), etc, afterward
1343  * to get the result of @task_func.
1344  *
1345  * See #GTaskThreadFunc for more details about how @task_func is handled.
1346  *
1347  * Normally this is used with tasks created with a %NULL
1348  * <literal>callback</literal>, but note that even if the task does
1349  * have a callback, it will not be invoked when @task_func returns.
1350  *
1351  * Since: 2.36
1352  */
1353 void
1354 g_task_run_in_thread_sync (GTask           *task,
1355                            GTaskThreadFunc  task_func)
1356 {
1357   g_return_if_fail (G_IS_TASK (task));
1358
1359   g_object_ref (task);
1360
1361   task->synchronous = TRUE;
1362   g_task_start_task_thread (task, task_func);
1363
1364   while (!task->thread_complete)
1365     g_cond_wait (&task->cond, &task->lock);
1366
1367   g_mutex_unlock (&task->lock);
1368   g_object_unref (task);
1369 }
1370
1371 /**
1372  * g_task_attach_source:
1373  * @task: a #GTask
1374  * @source: the source to attach
1375  * @callback: the callback to invoke when @source triggers
1376  *
1377  * A utility function for dealing with async operations where you need
1378  * to wait for a #GSource to trigger. Attaches @source to @task's
1379  * #GMainContext with @task's <link
1380  * linkend="io-priority">priority</link>, and sets @source's callback
1381  * to @callback, with @task as the callback's
1382  * <literal>user_data</literal>.
1383  *
1384  * This takes a reference on @task until @source is destroyed.
1385  *
1386  * Since: 2.36
1387  */
1388 void
1389 g_task_attach_source (GTask       *task,
1390                       GSource     *source,
1391                       GSourceFunc  callback)
1392 {
1393   g_source_set_callback (source, callback,
1394                          g_object_ref (task), g_object_unref);
1395   g_source_set_priority (source, task->priority);
1396   g_source_attach (source, task->context);
1397 }
1398
1399
1400 static gboolean
1401 g_task_propagate_error (GTask   *task,
1402                         GError **error)
1403 {
1404   if (task->check_cancellable &&
1405       g_cancellable_set_error_if_cancelled (task->cancellable, error))
1406     return TRUE;
1407   else if (task->error)
1408     {
1409       g_propagate_error (error, task->error);
1410       task->error = NULL;
1411       return TRUE;
1412     }
1413   else
1414     return FALSE;
1415 }
1416
1417 /**
1418  * g_task_return_pointer:
1419  * @task: a #GTask
1420  * @result: (allow-none) (transfer full): the pointer result of a task
1421  *     function
1422  * @result_destroy: (allow-none): a #GDestroyNotify function.
1423  *
1424  * Sets @task's result to @result and completes the task. If @result
1425  * is not %NULL, then @result_destroy will be used to free @result if
1426  * the caller does not take ownership of it with
1427  * g_task_propagate_pointer().
1428  *
1429  * "Completes the task" means that for an ordinary asynchronous task
1430  * it will either invoke the task's callback, or else queue that
1431  * callback to be invoked in the proper #GMainContext, or in the next
1432  * iteration of the current #GMainContext. For a task run via
1433  * g_task_run_in_thread() or g_task_run_in_thread_sync(), calling this
1434  * method will save @result to be returned to the caller later, but
1435  * the task will not actually be completed until the #GTaskThreadFunc
1436  * exits.
1437  *
1438  * Note that since the task may be completed before returning from
1439  * g_task_return_pointer(), you cannot assume that @result is still
1440  * valid after calling this, unless you are still holding another
1441  * reference on it.
1442  *
1443  * Since: 2.36
1444  */
1445 void
1446 g_task_return_pointer (GTask          *task,
1447                        gpointer        result,
1448                        GDestroyNotify  result_destroy)
1449 {
1450   g_return_if_fail (task->result_set == FALSE);
1451
1452   task->result.pointer = result;
1453   task->result_destroy = result_destroy;
1454
1455   g_task_return (task, G_TASK_RETURN_SUCCESS);
1456 }
1457
1458 /**
1459  * g_task_propagate_pointer:
1460  * @task: a #GTask
1461  * @error: return location for a #GError
1462  *
1463  * Gets the result of @task as a pointer, and transfers ownership
1464  * of that value to the caller.
1465  *
1466  * If the task resulted in an error, or was cancelled, then this will
1467  * instead return %NULL and set @error.
1468  *
1469  * Since this method transfers ownership of the return value (or
1470  * error) to the caller, you may only call it once.
1471  *
1472  * Returns: (transfer full): the task result, or %NULL on error
1473  *
1474  * Since: 2.36
1475  */
1476 gpointer
1477 g_task_propagate_pointer (GTask   *task,
1478                           GError **error)
1479 {
1480   if (g_task_propagate_error (task, error))
1481     return NULL;
1482
1483   g_return_val_if_fail (task->result_set == TRUE, NULL);
1484
1485   task->result_destroy = NULL;
1486   task->result_set = FALSE;
1487   return task->result.pointer;
1488 }
1489
1490 /**
1491  * g_task_return_int:
1492  * @task: a #GTask.
1493  * @result: the integer (#gssize) result of a task function.
1494  *
1495  * Sets @task's result to @result and completes the task (see
1496  * g_task_return_pointer() for more discussion of exactly what this
1497  * means).
1498  *
1499  * Since: 2.36
1500  */
1501 void
1502 g_task_return_int (GTask  *task,
1503                    gssize  result)
1504 {
1505   g_return_if_fail (task->result_set == FALSE);
1506
1507   task->result.size = result;
1508
1509   g_task_return (task, G_TASK_RETURN_SUCCESS);
1510 }
1511
1512 /**
1513  * g_task_propagate_int:
1514  * @task: a #GTask.
1515  * @error: return location for a #GError
1516  *
1517  * Gets the result of @task as an integer (#gssize).
1518  *
1519  * If the task resulted in an error, or was cancelled, then this will
1520  * instead return -1 and set @error.
1521  *
1522  * Since this method transfers ownership of the return value (or
1523  * error) to the caller, you may only call it once.
1524  *
1525  * Returns: the task result, or -1 on error
1526  *
1527  * Since: 2.36
1528  */
1529 gssize
1530 g_task_propagate_int (GTask   *task,
1531                       GError **error)
1532 {
1533   if (g_task_propagate_error (task, error))
1534     return -1;
1535
1536   g_return_val_if_fail (task->result_set == TRUE, -1);
1537
1538   task->result_set = FALSE;
1539   return task->result.size;
1540 }
1541
1542 /**
1543  * g_task_return_boolean:
1544  * @task: a #GTask.
1545  * @result: the #gboolean result of a task function.
1546  *
1547  * Sets @task's result to @result and completes the task (see
1548  * g_task_return_pointer() for more discussion of exactly what this
1549  * means).
1550  *
1551  * Since: 2.36
1552  */
1553 void
1554 g_task_return_boolean (GTask    *task,
1555                        gboolean  result)
1556 {
1557   g_return_if_fail (task->result_set == FALSE);
1558
1559   task->result.boolean = result;
1560
1561   g_task_return (task, G_TASK_RETURN_SUCCESS);
1562 }
1563
1564 /**
1565  * g_task_propagate_boolean:
1566  * @task: a #GTask.
1567  * @error: return location for a #GError
1568  *
1569  * Gets the result of @task as a #gboolean.
1570  *
1571  * If the task resulted in an error, or was cancelled, then this will
1572  * instead return %FALSE and set @error.
1573  *
1574  * Since this method transfers ownership of the return value (or
1575  * error) to the caller, you may only call it once.
1576  *
1577  * Returns: the task result, or %FALSE on error
1578  *
1579  * Since: 2.36
1580  */
1581 gboolean
1582 g_task_propagate_boolean (GTask   *task,
1583                           GError **error)
1584 {
1585   if (g_task_propagate_error (task, error))
1586     return FALSE;
1587
1588   g_return_val_if_fail (task->result_set == TRUE, FALSE);
1589
1590   task->result_set = FALSE;
1591   return task->result.boolean;
1592 }
1593
1594 /**
1595  * g_task_return_error:
1596  * @task: a #GTask.
1597  * @error: (transfer full): the #GError result of a task function.
1598  *
1599  * Sets @task's result to @error (which @task assumes ownership of)
1600  * and completes the task (see g_task_return_pointer() for more
1601  * discussion of exactly what this means).
1602  *
1603  * Note that since the task takes ownership of @error, and since the
1604  * task may be completed before returning from g_task_return_error(),
1605  * you cannot assume that @error is still valid after calling this.
1606  * Call g_error_copy() on the error if you need to keep a local copy
1607  * as well.
1608  *
1609  * See also g_task_return_new_error().
1610  *
1611  * Since: 2.36
1612  */
1613 void
1614 g_task_return_error (GTask  *task,
1615                      GError *error)
1616 {
1617   g_return_if_fail (task->result_set == FALSE);
1618   g_return_if_fail (error != NULL);
1619
1620   task->error = error;
1621
1622   g_task_return (task, G_TASK_RETURN_ERROR);
1623 }
1624
1625 /**
1626  * g_task_return_new_error:
1627  * @task: a #GTask.
1628  * @domain: a #GQuark.
1629  * @code: an error code.
1630  * @format: a string with format characters.
1631  * @...: a list of values to insert into @format.
1632  *
1633  * Sets @task's result to a new #GError created from @domain, @code,
1634  * @format, and the remaining arguments, and completes the task (see
1635  * g_task_return_pointer() for more discussion of exactly what this
1636  * means).
1637  *
1638  * See also g_task_return_error().
1639  *
1640  * Since: 2.36
1641  */
1642 void
1643 g_task_return_new_error (GTask           *task,
1644                          GQuark           domain,
1645                          gint             code,
1646                          const char      *format,
1647                          ...)
1648 {
1649   GError *error;
1650   va_list args;
1651
1652   va_start (args, format);
1653   error = g_error_new_valist (domain, code, format, args);
1654   va_end (args);
1655
1656   g_task_return_error (task, error);
1657 }
1658
1659 /**
1660  * g_task_return_error_if_cancelled:
1661  * @task: a #GTask
1662  *
1663  * Checks if @task's #GCancellable has been cancelled, and if so, sets
1664  * @task's error accordingly and completes the task (see
1665  * g_task_return_pointer() for more discussion of exactly what this
1666  * means).
1667  *
1668  * Return value: %TRUE if @task has been cancelled, %FALSE if not
1669  *
1670  * Since: 2.36
1671  */
1672 gboolean
1673 g_task_return_error_if_cancelled (GTask *task)
1674 {
1675   GError *error = NULL;
1676
1677   g_return_val_if_fail (task->result_set == FALSE, FALSE);
1678
1679   if (g_cancellable_set_error_if_cancelled (task->cancellable, &error))
1680     {
1681       /* We explicitly set task->error so this works even when
1682        * check-cancellable is not set.
1683        */
1684       g_clear_error (&task->error);
1685       task->error = error;
1686
1687       g_task_return (task, G_TASK_RETURN_ERROR);
1688       return TRUE;
1689     }
1690   else
1691     return FALSE;
1692 }
1693
1694 /**
1695  * g_task_had_error:
1696  * @task: a #GTask.
1697  *
1698  * Tests if @task resulted in an error.
1699  *
1700  * Returns: %TRUE if the task resulted in an error, %FALSE otherwise.
1701  *
1702  * Since: 2.36
1703  */
1704 gboolean
1705 g_task_had_error (GTask *task)
1706 {
1707   if (task->error != NULL)
1708     return TRUE;
1709
1710   if (task->check_cancellable && g_cancellable_is_cancelled (task->cancellable))
1711     return TRUE;
1712
1713   return FALSE;
1714 }
1715
1716 /**
1717  * g_task_is_valid:
1718  * @result: (type Gio.AsyncResult): A #GAsyncResult
1719  * @source_object: (allow-none) (type GObject): the source object
1720  *   expected to be associated with the task
1721  *
1722  * Checks that @result is a #GTask, and that @source_object is its
1723  * source object (or that @source_object is %NULL and @result has no
1724  * source object). This can be used in g_return_if_fail() checks.
1725  *
1726  * Return value: %TRUE if @result and @source_object are valid, %FALSE
1727  * if not
1728  *
1729  * Since: 2.36
1730  */
1731 gboolean
1732 g_task_is_valid (gpointer result,
1733                  gpointer source_object)
1734 {
1735   if (!G_IS_TASK (result))
1736     return FALSE;
1737
1738   return G_TASK (result)->source_object == source_object;
1739 }
1740
1741 static gint
1742 g_task_compare_priority (gconstpointer a,
1743                          gconstpointer b,
1744                          gpointer      user_data)
1745 {
1746   const GTask *ta = a;
1747   const GTask *tb = b;
1748   gboolean a_cancelled, b_cancelled;
1749
1750   a_cancelled = (ta->check_cancellable &&
1751                  g_cancellable_is_cancelled (ta->cancellable));
1752   b_cancelled = (tb->check_cancellable &&
1753                  g_cancellable_is_cancelled (tb->cancellable));
1754
1755   /* Let already-cancelled tasks finish right away */
1756   if (a_cancelled && !b_cancelled)
1757     return -1;
1758   else if (b_cancelled && !a_cancelled)
1759     return 1;
1760
1761   /* Lower priority == run sooner == negative return value */
1762   return ta->priority - tb->priority;
1763 }
1764
1765 static void
1766 g_task_thread_pool_init (void)
1767 {
1768   task_pool = g_thread_pool_new (g_task_thread_pool_thread, NULL,
1769                                  100, FALSE, NULL);
1770   g_assert (task_pool != NULL);
1771
1772   g_thread_pool_set_sort_function (task_pool, g_task_compare_priority, NULL);
1773 }
1774
1775 static void
1776 g_task_thread_pool_resort (void)
1777 {
1778   g_thread_pool_set_sort_function (task_pool, g_task_compare_priority, NULL);
1779 }
1780
1781 static void
1782 g_task_class_init (GTaskClass *klass)
1783 {
1784   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
1785
1786   gobject_class->finalize = g_task_finalize;
1787 }
1788
1789 static gpointer
1790 g_task_get_user_data (GAsyncResult *res)
1791 {
1792   return G_TASK (res)->callback_data;
1793 }
1794
1795 static gboolean
1796 g_task_is_tagged (GAsyncResult *res,
1797                   gpointer      source_tag)
1798 {
1799   return G_TASK (res)->source_tag == source_tag;
1800 }
1801
1802 static void
1803 g_task_async_result_iface_init (GAsyncResultIface *iface)
1804 {
1805   iface->get_user_data = g_task_get_user_data;
1806   iface->get_source_object = g_task_ref_source_object;
1807   iface->is_tagged = g_task_is_tagged;
1808 }