| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | /* GIO - GLib Input, Output and Streaming Library
 | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * Copyright (C) 2006-2007 Red Hat, Inc. | 
					
						
							|  |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2022-05-18 09:12:45 +01:00
										 |  |  |  |  * SPDX-License-Identifier: LGPL-2.1-or-later | 
					
						
							|  |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * This library is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							| 
									
										
										
										
											2017-05-27 18:21:30 +02:00
										 |  |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * This library is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * You should have received a copy of the GNU Lesser General | 
					
						
							| 
									
										
										
										
											2014-01-23 12:58:29 +01:00
										 |  |  |  |  * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Author: Alexander Larsson <alexl@redhat.com> | 
					
						
							|  |  |  |  |  */ | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-22 15:10:51 +00:00
										 |  |  |  | #include "config.h"
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | #include <string.h>
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | #include "gsimpleasyncresult.h"
 | 
					
						
							| 
									
										
										
										
											2008-07-01 06:32:35 +00:00
										 |  |  |  | #include "gasyncresult.h"
 | 
					
						
							|  |  |  |  | #include "gcancellable.h"
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | #include "gioscheduler.h"
 | 
					
						
							|  |  |  |  | #include <gio/gioerror.h>
 | 
					
						
							|  |  |  |  | #include "glibintl.h"
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-28 12:39:07 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2023-10-24 10:56:40 +01:00
										 |  |  |  |  * GSimpleAsyncResult: | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2023-10-24 10:56:40 +01:00
										 |  |  |  |  * As of GLib 2.46, `GSimpleAsyncResult` is deprecated in favor of | 
					
						
							|  |  |  |  |  * [class@Gio.Task], which provides a simpler API. | 
					
						
							| 
									
										
										
										
											2011-11-21 09:19:56 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2023-10-24 10:56:40 +01:00
										 |  |  |  |  * `GSimpleAsyncResult` implements [iface@Gio.AsyncResult]. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2023-10-24 10:56:40 +01:00
										 |  |  |  |  * `GSimpleAsyncResult` handles [type@Gio.AsyncReadyCallback]s, error | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * reporting, operation cancellation and the final state of an operation, | 
					
						
							|  |  |  |  |  * completely transparent to the application. Results can be returned | 
					
						
							|  |  |  |  |  * as a pointer e.g. for functions that return data that is collected | 
					
						
							|  |  |  |  |  * asynchronously, a boolean value for checking the success or failure | 
					
						
							| 
									
										
										
										
											2023-10-24 10:56:40 +01:00
										 |  |  |  |  * of an operation, or a `gssize` for operations which return the number | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * of bytes modified by the operation; all of the simple return cases | 
					
						
							| 
									
										
										
										
											2007-12-18 02:52:11 +00:00
										 |  |  |  |  * are covered. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Most of the time, an application will not need to know of the details | 
					
						
							|  |  |  |  |  * of this API; it is handled transparently, and any necessary operations | 
					
						
							| 
									
										
										
										
											2023-10-24 10:56:40 +01:00
										 |  |  |  |  * are handled by [iface@Gio.AsyncResult]’s interface. However, if implementing | 
					
						
							|  |  |  |  |  * a new GIO module, for writing language bindings, or for complex | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * applications that need better control of how asynchronous operations | 
					
						
							| 
									
										
										
										
											2007-12-18 02:52:11 +00:00
										 |  |  |  |  * are completed, it is important to understand this functionality. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2023-10-24 10:56:40 +01:00
										 |  |  |  |  * `GSimpleAsyncResult`s are tagged with the calling function to ensure | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * that asynchronous functions and their finishing functions are used | 
					
						
							| 
									
										
										
										
											2007-12-18 02:52:11 +00:00
										 |  |  |  |  * together correctly. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2023-10-24 10:56:40 +01:00
										 |  |  |  |  * To create a new `GSimpleAsyncResult`, call [ctor@Gio.SimpleAsyncResult.new]. | 
					
						
							|  |  |  |  |  * If the result needs to be created for a `GError`, use | 
					
						
							|  |  |  |  |  * [ctor@Gio.SimpleAsyncResult.new_from_error] or | 
					
						
							|  |  |  |  |  * [ctor@Gio.SimpleAsyncResult.new_take_error]. If a `GError` is not available | 
					
						
							|  |  |  |  |  * (e.g. the asynchronous operation doesn’t take a `GError` argument), | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  |  * but the result still needs to be created for an error condition, use | 
					
						
							| 
									
										
										
										
											2023-10-24 10:56:40 +01:00
										 |  |  |  |  * [ctor@Gio.SimpleAsyncResult.new_error] (or | 
					
						
							|  |  |  |  |  * [method@Gio.SimpleAsyncResult.set_error_va] if your application or binding | 
					
						
							|  |  |  |  |  * requires passing a variable argument list directly), and the error can then | 
					
						
							|  |  |  |  |  * be propagated through the use of | 
					
						
							|  |  |  |  |  * [method@Gio.SimpleAsyncResult.propagate_error]. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * An asynchronous operation can be made to ignore a cancellation event by | 
					
						
							| 
									
										
										
										
											2023-10-24 10:56:40 +01:00
										 |  |  |  |  * calling [method@Gio.SimpleAsyncResult.set_handle_cancellation] with a | 
					
						
							|  |  |  |  |  * `GSimpleAsyncResult` for the operation and `FALSE`. This is useful for | 
					
						
							| 
									
										
										
										
											2008-12-10 13:25:59 +00:00
										 |  |  |  |  * operations that are dangerous to cancel, such as close (which would | 
					
						
							|  |  |  |  |  * cause a leak if cancelled before being run). | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2023-10-24 10:56:40 +01:00
										 |  |  |  |  * `GSimpleAsyncResult` can integrate into GLib’s event loop, | 
					
						
							|  |  |  |  |  * [type@GLib.MainLoop], or it can use [type@GLib.Thread]s. | 
					
						
							|  |  |  |  |  * [method@Gio.SimpleAsyncResult.complete] will finish an I/O task directly | 
					
						
							|  |  |  |  |  * from the point where it is called. | 
					
						
							|  |  |  |  |  * [method@Gio.SimpleAsyncResult.complete_in_idle] will finish it from an idle | 
					
						
							|  |  |  |  |  * handler in the  thread-default main context (see | 
					
						
							|  |  |  |  |  * [method@GLib.MainContext.push_thread_default]) where the `GSimpleAsyncResult` | 
					
						
							|  |  |  |  |  * was created. [method@Gio.SimpleAsyncResult.run_in_thread] will run the job in | 
					
						
							|  |  |  |  |  * a separate thread and then use | 
					
						
							|  |  |  |  |  * [method@Gio.SimpleAsyncResult.complete_in_idle] to deliver the result. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * To set the results of an asynchronous function, | 
					
						
							| 
									
										
										
										
											2023-10-24 10:56:40 +01:00
										 |  |  |  |  * [method@Gio.SimpleAsyncResult.set_op_res_gpointer], | 
					
						
							|  |  |  |  |  * [method@Gio.SimpleAsyncResult.set_op_res_gboolean], and | 
					
						
							|  |  |  |  |  * [method@Gio.SimpleAsyncResult.set_op_res_gssize] | 
					
						
							|  |  |  |  |  * are provided, setting the operation's result to a `gpointer`, `gboolean`, or | 
					
						
							|  |  |  |  |  * `gssize`, respectively. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Likewise, to get the result of an asynchronous function, | 
					
						
							| 
									
										
										
										
											2023-10-24 10:56:40 +01:00
										 |  |  |  |  * [method@Gio.SimpleAsyncResult.get_op_res_gpointer], | 
					
						
							|  |  |  |  |  * [method@Gio.SimpleAsyncResult.get_op_res_gboolean], and | 
					
						
							|  |  |  |  |  * [method@Gio.SimpleAsyncResult.get_op_res_gssize] are | 
					
						
							|  |  |  |  |  * provided, getting the operation’s result as a `gpointer`, `gboolean`, and | 
					
						
							|  |  |  |  |  * `gssize`, respectively. | 
					
						
							| 
									
										
										
										
											2010-08-13 23:34:44 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * For the details of the requirements implementations must respect, see | 
					
						
							| 
									
										
										
										
											2023-10-24 10:56:40 +01:00
										 |  |  |  |  * [iface@Gio.AsyncResult].  A typical implementation of an asynchronous | 
					
						
							|  |  |  |  |  * operation using `GSimpleAsyncResult` looks something like this: | 
					
						
							| 
									
										
										
										
											2010-08-13 23:34:44 -04:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2023-10-24 10:56:40 +01:00
										 |  |  |  |  * ```c | 
					
						
							| 
									
										
										
										
											2010-08-13 23:34:44 -04:00
										 |  |  |  |  * static void | 
					
						
							|  |  |  |  |  * baked_cb (Cake    *cake, | 
					
						
							|  |  |  |  |  *           gpointer user_data) | 
					
						
							|  |  |  |  |  * { | 
					
						
							| 
									
										
										
										
											2014-02-14 21:33:36 -05:00
										 |  |  |  |  *   // In this example, this callback is not given a reference to the cake,
 | 
					
						
							|  |  |  |  |  *   // so the GSimpleAsyncResult has to take a reference to it.
 | 
					
						
							| 
									
										
										
										
											2010-08-13 23:34:44 -04:00
										 |  |  |  |  *   GSimpleAsyncResult *result = user_data; | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  *   if (cake == NULL) | 
					
						
							|  |  |  |  |  *     g_simple_async_result_set_error (result, | 
					
						
							|  |  |  |  |  *                                      BAKER_ERRORS, | 
					
						
							|  |  |  |  |  *                                      BAKER_ERROR_NO_FLOUR, | 
					
						
							|  |  |  |  |  *                                      "Go to the supermarket"); | 
					
						
							|  |  |  |  |  *   else | 
					
						
							|  |  |  |  |  *     g_simple_async_result_set_op_res_gpointer (result, | 
					
						
							|  |  |  |  |  *                                                g_object_ref (cake), | 
					
						
							|  |  |  |  |  *                                                g_object_unref); | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-02-14 21:33:36 -05:00
										 |  |  |  |  *   // In this example, we assume that baked_cb is called as a callback from
 | 
					
						
							|  |  |  |  |  *   // the mainloop, so it's safe to complete the operation synchronously here.
 | 
					
						
							|  |  |  |  |  *   // If, however, _baker_prepare_cake () might call its callback without
 | 
					
						
							|  |  |  |  |  *   // first returning to the mainloop — inadvisable, but some APIs do so —
 | 
					
						
							|  |  |  |  |  *   // we would need to use g_simple_async_result_complete_in_idle().
 | 
					
						
							| 
									
										
										
										
											2010-08-13 23:34:44 -04:00
										 |  |  |  |  *   g_simple_async_result_complete (result); | 
					
						
							|  |  |  |  |  *   g_object_unref (result); | 
					
						
							|  |  |  |  |  * } | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * void | 
					
						
							|  |  |  |  |  * baker_bake_cake_async (Baker              *self, | 
					
						
							|  |  |  |  |  *                        guint               radius, | 
					
						
							|  |  |  |  |  *                        GAsyncReadyCallback callback, | 
					
						
							|  |  |  |  |  *                        gpointer            user_data) | 
					
						
							|  |  |  |  |  * { | 
					
						
							|  |  |  |  |  *   GSimpleAsyncResult *simple; | 
					
						
							|  |  |  |  |  *   Cake               *cake; | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  *   if (radius < 3) | 
					
						
							|  |  |  |  |  *     { | 
					
						
							|  |  |  |  |  *       g_simple_async_report_error_in_idle (G_OBJECT (self), | 
					
						
							|  |  |  |  |  *                                            callback, | 
					
						
							|  |  |  |  |  *                                            user_data, | 
					
						
							|  |  |  |  |  *                                            BAKER_ERRORS, | 
					
						
							|  |  |  |  |  *                                            BAKER_ERROR_TOO_SMALL, | 
					
						
							|  |  |  |  |  *                                            "%ucm radius cakes are silly", | 
					
						
							|  |  |  |  |  *                                            radius); | 
					
						
							|  |  |  |  |  *       return; | 
					
						
							|  |  |  |  |  *     } | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  *   simple = g_simple_async_result_new (G_OBJECT (self), | 
					
						
							|  |  |  |  |  *                                       callback, | 
					
						
							|  |  |  |  |  *                                       user_data, | 
					
						
							|  |  |  |  |  *                                       baker_bake_cake_async); | 
					
						
							|  |  |  |  |  *   cake = _baker_get_cached_cake (self, radius); | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  *   if (cake != NULL) | 
					
						
							|  |  |  |  |  *     { | 
					
						
							|  |  |  |  |  *       g_simple_async_result_set_op_res_gpointer (simple, | 
					
						
							|  |  |  |  |  *                                                  g_object_ref (cake), | 
					
						
							|  |  |  |  |  *                                                  g_object_unref); | 
					
						
							|  |  |  |  |  *       g_simple_async_result_complete_in_idle (simple); | 
					
						
							|  |  |  |  |  *       g_object_unref (simple); | 
					
						
							| 
									
										
										
										
											2014-02-14 21:33:36 -05:00
										 |  |  |  |  *       // Drop the reference returned by _baker_get_cached_cake();
 | 
					
						
							|  |  |  |  |  *       // the GSimpleAsyncResult has taken its own reference.
 | 
					
						
							| 
									
										
										
										
											2010-08-13 23:34:44 -04:00
										 |  |  |  |  *       g_object_unref (cake); | 
					
						
							|  |  |  |  |  *       return; | 
					
						
							|  |  |  |  |  *     } | 
					
						
							|  |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-12-07 17:45:06 +01:00
										 |  |  |  |  *   _baker_prepare_cake (self, radius, baked_cb, simple); | 
					
						
							| 
									
										
										
										
											2010-08-13 23:34:44 -04:00
										 |  |  |  |  * } | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Cake * | 
					
						
							|  |  |  |  |  * baker_bake_cake_finish (Baker        *self, | 
					
						
							|  |  |  |  |  *                         GAsyncResult *result, | 
					
						
							|  |  |  |  |  *                         GError      **error) | 
					
						
							|  |  |  |  |  * { | 
					
						
							|  |  |  |  |  *   GSimpleAsyncResult *simple; | 
					
						
							|  |  |  |  |  *   Cake               *cake; | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  *   g_return_val_if_fail (g_simple_async_result_is_valid (result, | 
					
						
							|  |  |  |  |  *                                                         G_OBJECT (self), | 
					
						
							|  |  |  |  |  *                                                         baker_bake_cake_async), | 
					
						
							|  |  |  |  |  *                         NULL); | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  *   simple = (GSimpleAsyncResult *) result; | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  *   if (g_simple_async_result_propagate_error (simple, error)) | 
					
						
							|  |  |  |  |  *     return NULL; | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  *   cake = CAKE (g_simple_async_result_get_op_res_gpointer (simple)); | 
					
						
							|  |  |  |  |  *   return g_object_ref (cake); | 
					
						
							|  |  |  |  |  * } | 
					
						
							| 
									
										
										
										
											2023-10-24 10:56:40 +01:00
										 |  |  |  |  * ``` | 
					
						
							| 
									
										
										
										
											2010-08-13 23:34:44 -04:00
										 |  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  | G_GNUC_BEGIN_IGNORE_DEPRECATIONS | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | static void g_simple_async_result_async_result_iface_init (GAsyncResultIface       *iface); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | struct _GSimpleAsyncResult | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GObject parent_instance; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   GObject *source_object; | 
					
						
							|  |  |  |  |   GAsyncReadyCallback callback; | 
					
						
							|  |  |  |  |   gpointer user_data; | 
					
						
							| 
									
										
										
										
											2009-06-16 20:22:58 -04:00
										 |  |  |  |   GMainContext *context; | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   GError *error; | 
					
						
							|  |  |  |  |   gboolean failed; | 
					
						
							|  |  |  |  |   gboolean handle_cancellation; | 
					
						
							| 
									
										
										
										
											2012-03-13 16:09:01 -04:00
										 |  |  |  |   GCancellable *check_cancellable; | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   gpointer source_tag; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   union { | 
					
						
							|  |  |  |  |     gpointer v_pointer; | 
					
						
							|  |  |  |  |     gboolean v_boolean; | 
					
						
							|  |  |  |  |     gssize   v_ssize; | 
					
						
							|  |  |  |  |   } op_res; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   GDestroyNotify destroy_op_res; | 
					
						
							|  |  |  |  | }; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | struct _GSimpleAsyncResultClass | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GObjectClass parent_class; | 
					
						
							|  |  |  |  | }; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | G_DEFINE_TYPE_WITH_CODE (GSimpleAsyncResult, g_simple_async_result, G_TYPE_OBJECT, | 
					
						
							|  |  |  |  | 			 G_IMPLEMENT_INTERFACE (G_TYPE_ASYNC_RESULT, | 
					
						
							|  |  |  |  | 						g_simple_async_result_async_result_iface_init)) | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-02 22:59:02 -04:00
										 |  |  |  | static void | 
					
						
							|  |  |  |  | clear_op_res (GSimpleAsyncResult *simple) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   if (simple->destroy_op_res) | 
					
						
							|  |  |  |  |     simple->destroy_op_res (simple->op_res.v_pointer); | 
					
						
							|  |  |  |  |   simple->destroy_op_res = NULL; | 
					
						
							|  |  |  |  |   simple->op_res.v_ssize = 0; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | static void | 
					
						
							|  |  |  |  | g_simple_async_result_finalize (GObject *object) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GSimpleAsyncResult *simple; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   simple = G_SIMPLE_ASYNC_RESULT (object); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (simple->source_object) | 
					
						
							|  |  |  |  |     g_object_unref (simple->source_object); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-13 16:09:01 -04:00
										 |  |  |  |   if (simple->check_cancellable) | 
					
						
							|  |  |  |  |     g_object_unref (simple->check_cancellable); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 10:46:57 -04:00
										 |  |  |  |   g_main_context_unref (simple->context); | 
					
						
							| 
									
										
										
										
											2009-06-16 20:22:58 -04:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-02 22:59:02 -04:00
										 |  |  |  |   clear_op_res (simple); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (simple->error) | 
					
						
							|  |  |  |  |     g_error_free (simple->error); | 
					
						
							| 
									
										
										
										
											2008-06-16 09:54:04 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   G_OBJECT_CLASS (g_simple_async_result_parent_class)->finalize (object); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							|  |  |  |  | g_simple_async_result_class_init (GSimpleAsyncResultClass *klass) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GObjectClass *gobject_class = G_OBJECT_CLASS (klass); | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |   | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   gobject_class->finalize = g_simple_async_result_finalize; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							|  |  |  |  | g_simple_async_result_init (GSimpleAsyncResult *simple) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   simple->handle_cancellation = TRUE; | 
					
						
							| 
									
										
										
										
											2009-06-16 20:22:58 -04:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 10:46:57 -04:00
										 |  |  |  |   simple->context = g_main_context_ref_thread_default (); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_simple_async_result_new: | 
					
						
							| 
									
										
										
										
											2016-10-28 18:29:02 -07:00
										 |  |  |  |  * @source_object: (nullable): a #GObject, or %NULL. | 
					
						
							| 
									
										
										
										
											2010-12-21 17:35:11 +01:00
										 |  |  |  |  * @callback: (scope async): a #GAsyncReadyCallback. | 
					
						
							| 
									
										
										
										
											2023-02-20 14:43:02 -06:00
										 |  |  |  |  * @user_data: user data passed to @callback. | 
					
						
							| 
									
										
										
										
											2007-11-29 10:18:55 +00:00
										 |  |  |  |  * @source_tag: the asynchronous function. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * Creates a #GSimpleAsyncResult. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2012-03-13 16:09:01 -04:00
										 |  |  |  |  * The common convention is to create the #GSimpleAsyncResult in the | 
					
						
							|  |  |  |  |  * function that starts the asynchronous operation and use that same | 
					
						
							|  |  |  |  |  * function as the @source_tag. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * If your operation supports cancellation with #GCancellable (which it | 
					
						
							|  |  |  |  |  * probably should) then you should provide the user's cancellable to | 
					
						
							|  |  |  |  |  * g_simple_async_result_set_check_cancellable() immediately after | 
					
						
							|  |  |  |  |  * this function returns. | 
					
						
							|  |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * Returns: a #GSimpleAsyncResult. | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use g_task_new() instead. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | GSimpleAsyncResult * | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  | g_simple_async_result_new (GObject             *source_object, | 
					
						
							|  |  |  |  |                            GAsyncReadyCallback  callback, | 
					
						
							|  |  |  |  |                            gpointer             user_data, | 
					
						
							|  |  |  |  |                            gpointer             source_tag) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   GSimpleAsyncResult *simple; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-16 09:33:39 +00:00
										 |  |  |  |   g_return_val_if_fail (!source_object || G_IS_OBJECT (source_object), NULL); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   simple = g_object_new (G_TYPE_SIMPLE_ASYNC_RESULT, NULL); | 
					
						
							|  |  |  |  |   simple->callback = callback; | 
					
						
							| 
									
										
										
										
											2009-02-16 09:33:39 +00:00
										 |  |  |  |   if (source_object) | 
					
						
							|  |  |  |  |     simple->source_object = g_object_ref (source_object); | 
					
						
							|  |  |  |  |   else | 
					
						
							|  |  |  |  |     simple->source_object = NULL; | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   simple->user_data = user_data; | 
					
						
							|  |  |  |  |   simple->source_tag = source_tag; | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |   | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   return simple; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_simple_async_result_new_from_error: | 
					
						
							| 
									
										
										
										
											2016-10-28 18:29:02 -07:00
										 |  |  |  |  * @source_object: (nullable): a #GObject, or %NULL. | 
					
						
							| 
									
										
										
										
											2010-12-21 17:35:11 +01:00
										 |  |  |  |  * @callback: (scope async): a #GAsyncReadyCallback. | 
					
						
							| 
									
										
										
										
											2023-02-20 14:43:02 -06:00
										 |  |  |  |  * @user_data: user data passed to @callback. | 
					
						
							| 
									
										
										
										
											2010-10-31 22:38:38 -04:00
										 |  |  |  |  * @error: a #GError | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * Creates a #GSimpleAsyncResult from an error condition. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * Returns: a #GSimpleAsyncResult. | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use g_task_new() and g_task_return_error() instead. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | GSimpleAsyncResult * | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  | g_simple_async_result_new_from_error (GObject             *source_object, | 
					
						
							|  |  |  |  |                                       GAsyncReadyCallback  callback, | 
					
						
							|  |  |  |  |                                       gpointer             user_data, | 
					
						
							| 
									
										
										
										
											2010-10-31 22:38:38 -04:00
										 |  |  |  |                                       const GError        *error) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   GSimpleAsyncResult *simple; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-16 09:33:39 +00:00
										 |  |  |  |   g_return_val_if_fail (!source_object || G_IS_OBJECT (source_object), NULL); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   simple = g_simple_async_result_new (source_object, | 
					
						
							|  |  |  |  | 				      callback, | 
					
						
							|  |  |  |  | 				      user_data, NULL); | 
					
						
							|  |  |  |  |   g_simple_async_result_set_from_error (simple, error); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   return simple; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-31 22:38:38 -04:00
										 |  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-12-21 17:35:11 +01:00
										 |  |  |  |  * g_simple_async_result_new_take_error: (skip) | 
					
						
							| 
									
										
										
										
											2016-10-28 18:29:02 -07:00
										 |  |  |  |  * @source_object: (nullable): a #GObject, or %NULL | 
					
						
							| 
									
										
										
										
											2023-02-20 14:43:02 -06:00
										 |  |  |  |  * @callback: (scope async): a #GAsyncReadyCallback. | 
					
						
							|  |  |  |  |  * @user_data: user data passed to @callback. | 
					
						
							| 
									
										
										
										
											2010-10-31 22:38:38 -04:00
										 |  |  |  |  * @error: a #GError | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Creates a #GSimpleAsyncResult from an error condition, and takes over the | 
					
						
							|  |  |  |  |  * caller's ownership of @error, so the caller does not need to free it anymore. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Returns: a #GSimpleAsyncResult | 
					
						
							|  |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-11-01 11:06:26 +01:00
										 |  |  |  |  * Since: 2.28 | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use g_task_new() and g_task_return_error() instead. | 
					
						
							| 
									
										
										
										
											2010-10-31 22:38:38 -04:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | GSimpleAsyncResult * | 
					
						
							|  |  |  |  | g_simple_async_result_new_take_error (GObject             *source_object, | 
					
						
							|  |  |  |  |                                       GAsyncReadyCallback  callback, | 
					
						
							|  |  |  |  |                                       gpointer             user_data, | 
					
						
							|  |  |  |  |                                       GError              *error) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GSimpleAsyncResult *simple; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   g_return_val_if_fail (!source_object || G_IS_OBJECT (source_object), NULL); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   simple = g_simple_async_result_new (source_object, | 
					
						
							|  |  |  |  | 				      callback, | 
					
						
							|  |  |  |  | 				      user_data, NULL); | 
					
						
							|  |  |  |  |   g_simple_async_result_take_error (simple, error); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   return simple; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_simple_async_result_new_error: | 
					
						
							| 
									
										
										
										
											2016-10-28 18:29:02 -07:00
										 |  |  |  |  * @source_object: (nullable): a #GObject, or %NULL. | 
					
						
							| 
									
										
										
										
											2010-12-21 17:35:11 +01:00
										 |  |  |  |  * @callback: (scope async): a #GAsyncReadyCallback. | 
					
						
							| 
									
										
										
										
											2023-02-20 14:43:02 -06:00
										 |  |  |  |  * @user_data: user data passed to @callback. | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * @domain: a #GQuark. | 
					
						
							|  |  |  |  |  * @code: an error code. | 
					
						
							|  |  |  |  |  * @format: a string with format characters. | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  |  * @...: a list of values to insert into @format. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * Creates a new #GSimpleAsyncResult with a set error. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * Returns: a #GSimpleAsyncResult. | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use g_task_new() and g_task_return_new_error() instead. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | GSimpleAsyncResult * | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  | g_simple_async_result_new_error (GObject             *source_object, | 
					
						
							|  |  |  |  |                                  GAsyncReadyCallback  callback, | 
					
						
							|  |  |  |  |                                  gpointer             user_data, | 
					
						
							|  |  |  |  |                                  GQuark               domain, | 
					
						
							|  |  |  |  |                                  gint                 code, | 
					
						
							|  |  |  |  |                                  const char          *format, | 
					
						
							|  |  |  |  |                                  ...) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   GSimpleAsyncResult *simple; | 
					
						
							|  |  |  |  |   va_list args; | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |   | 
					
						
							| 
									
										
										
										
											2009-02-16 09:33:39 +00:00
										 |  |  |  |   g_return_val_if_fail (!source_object || G_IS_OBJECT (source_object), NULL); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   g_return_val_if_fail (domain != 0, NULL); | 
					
						
							|  |  |  |  |   g_return_val_if_fail (format != NULL, NULL); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   simple = g_simple_async_result_new (source_object, | 
					
						
							|  |  |  |  | 				      callback, | 
					
						
							|  |  |  |  | 				      user_data, NULL); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   va_start (args, format); | 
					
						
							|  |  |  |  |   g_simple_async_result_set_error_va (simple, domain, code, format, args); | 
					
						
							|  |  |  |  |   va_end (args); | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |   | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   return simple; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static gpointer | 
					
						
							|  |  |  |  | g_simple_async_result_get_user_data (GAsyncResult *res) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   return G_SIMPLE_ASYNC_RESULT (res)->user_data; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static GObject * | 
					
						
							|  |  |  |  | g_simple_async_result_get_source_object (GAsyncResult *res) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   if (G_SIMPLE_ASYNC_RESULT (res)->source_object) | 
					
						
							|  |  |  |  |     return g_object_ref (G_SIMPLE_ASYNC_RESULT (res)->source_object); | 
					
						
							|  |  |  |  |   return NULL; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-10 11:09:52 -04:00
										 |  |  |  | static gboolean | 
					
						
							|  |  |  |  | g_simple_async_result_is_tagged (GAsyncResult *res, | 
					
						
							|  |  |  |  | 				 gpointer      source_tag) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   return G_SIMPLE_ASYNC_RESULT (res)->source_tag == source_tag; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | static void | 
					
						
							|  |  |  |  | g_simple_async_result_async_result_iface_init (GAsyncResultIface *iface) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   iface->get_user_data = g_simple_async_result_get_user_data; | 
					
						
							|  |  |  |  |   iface->get_source_object = g_simple_async_result_get_source_object; | 
					
						
							| 
									
										
										
										
											2012-05-10 11:09:52 -04:00
										 |  |  |  |   iface->is_tagged = g_simple_async_result_is_tagged; | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_simple_async_result_set_handle_cancellation: | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * @simple: a #GSimpleAsyncResult. | 
					
						
							|  |  |  |  |  * @handle_cancellation: a #gboolean. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * Sets whether to handle cancellation within the asynchronous operation. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2012-03-13 16:09:01 -04:00
										 |  |  |  |  * This function has nothing to do with | 
					
						
							|  |  |  |  |  * g_simple_async_result_set_check_cancellable().  It only refers to the | 
					
						
							|  |  |  |  |  * #GCancellable passed to g_simple_async_result_run_in_thread(). | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | void | 
					
						
							|  |  |  |  | g_simple_async_result_set_handle_cancellation (GSimpleAsyncResult *simple, | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  |                                                gboolean            handle_cancellation) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple)); | 
					
						
							|  |  |  |  |   simple->handle_cancellation = handle_cancellation; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-09-24 18:24:41 -03:00
										 |  |  |  |  * g_simple_async_result_get_source_tag: (skip) | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * @simple: a #GSimpleAsyncResult. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * Gets the source tag for the #GSimpleAsyncResult. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * Returns: a #gpointer to the source object for the #GSimpleAsyncResult. | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46. Use #GTask and g_task_get_source_tag() instead. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | gpointer | 
					
						
							|  |  |  |  | g_simple_async_result_get_source_tag (GSimpleAsyncResult *simple) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   g_return_val_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple), NULL); | 
					
						
							|  |  |  |  |   return simple->source_tag; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * g_simple_async_result_propagate_error: | 
					
						
							|  |  |  |  |  * @simple: a #GSimpleAsyncResult. | 
					
						
							| 
									
										
										
										
											2010-12-21 17:35:11 +01:00
										 |  |  |  |  * @dest: (out): a location to propagate the error to. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-11-29 10:18:55 +00:00
										 |  |  |  |  * Propagates an error from within the simple asynchronous result to | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * a given destination. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2012-03-13 16:09:01 -04:00
										 |  |  |  |  * If the #GCancellable given to a prior call to | 
					
						
							|  |  |  |  |  * g_simple_async_result_set_check_cancellable() is cancelled then this | 
					
						
							|  |  |  |  |  * function will return %TRUE with @dest set appropriately. | 
					
						
							|  |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-01-24 20:50:51 -05:00
										 |  |  |  |  * Returns: %TRUE if the error was propagated to @dest. %FALSE otherwise. | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use #GTask instead. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | gboolean | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  | g_simple_async_result_propagate_error (GSimpleAsyncResult  *simple, | 
					
						
							|  |  |  |  |                                        GError             **dest) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   g_return_val_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple), FALSE); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-13 16:09:01 -04:00
										 |  |  |  |   if (g_cancellable_set_error_if_cancelled (simple->check_cancellable, dest)) | 
					
						
							|  |  |  |  |     return TRUE; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   if (simple->failed) | 
					
						
							|  |  |  |  |     { | 
					
						
							|  |  |  |  |       g_propagate_error (dest, simple->error); | 
					
						
							|  |  |  |  |       simple->error = NULL; | 
					
						
							|  |  |  |  |       return TRUE; | 
					
						
							|  |  |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   return FALSE; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-12-21 17:35:11 +01:00
										 |  |  |  |  * g_simple_async_result_set_op_res_gpointer: (skip) | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * @simple: a #GSimpleAsyncResult. | 
					
						
							|  |  |  |  |  * @op_res: a pointer result from an asynchronous function. | 
					
						
							|  |  |  |  |  * @destroy_op_res: a #GDestroyNotify function. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * Sets the operation result within the asynchronous result to a pointer. | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use #GTask and g_task_return_pointer() instead. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | void | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  | g_simple_async_result_set_op_res_gpointer (GSimpleAsyncResult *simple, | 
					
						
							|  |  |  |  |                                            gpointer            op_res, | 
					
						
							|  |  |  |  |                                            GDestroyNotify      destroy_op_res) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple)); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-02 22:59:02 -04:00
										 |  |  |  |   clear_op_res (simple); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   simple->op_res.v_pointer = op_res; | 
					
						
							|  |  |  |  |   simple->destroy_op_res = destroy_op_res; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-12-03 14:25:51 -05:00
										 |  |  |  |  * g_simple_async_result_get_op_res_gpointer: (skip) | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * @simple: a #GSimpleAsyncResult. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * Gets a pointer result as returned by the asynchronous function. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * Returns: a pointer from the result. | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use #GTask and g_task_propagate_pointer() instead. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | gpointer | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  | g_simple_async_result_get_op_res_gpointer (GSimpleAsyncResult *simple) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   g_return_val_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple), NULL); | 
					
						
							|  |  |  |  |   return simple->op_res.v_pointer; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_simple_async_result_set_op_res_gssize: | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * @simple: a #GSimpleAsyncResult. | 
					
						
							|  |  |  |  |  * @op_res: a #gssize. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Sets the operation result within the asynchronous result to | 
					
						
							|  |  |  |  |  * the given @op_res. | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use #GTask and g_task_return_int() instead. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | void | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  | g_simple_async_result_set_op_res_gssize (GSimpleAsyncResult *simple, | 
					
						
							|  |  |  |  |                                          gssize              op_res) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple)); | 
					
						
							| 
									
										
										
										
											2009-05-02 22:59:02 -04:00
										 |  |  |  |   clear_op_res (simple); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   simple->op_res.v_ssize = op_res; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_simple_async_result_get_op_res_gssize: | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * @simple: a #GSimpleAsyncResult. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * Gets a gssize from the asynchronous result. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * Returns: a gssize returned from the asynchronous function. | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use #GTask and g_task_propagate_int() instead. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | gssize | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  | g_simple_async_result_get_op_res_gssize (GSimpleAsyncResult *simple) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   g_return_val_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple), 0); | 
					
						
							|  |  |  |  |   return simple->op_res.v_ssize; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_simple_async_result_set_op_res_gboolean: | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * @simple: a #GSimpleAsyncResult. | 
					
						
							|  |  |  |  |  * @op_res: a #gboolean. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * Sets the operation result to a boolean within the asynchronous result. | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use #GTask and g_task_return_boolean() instead. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | void | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  | g_simple_async_result_set_op_res_gboolean (GSimpleAsyncResult *simple, | 
					
						
							|  |  |  |  |                                            gboolean            op_res) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple)); | 
					
						
							| 
									
										
										
										
											2009-05-02 22:59:02 -04:00
										 |  |  |  |   clear_op_res (simple); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   simple->op_res.v_boolean = !!op_res; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_simple_async_result_get_op_res_gboolean: | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * @simple: a #GSimpleAsyncResult. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * Gets the operation result boolean from within the asynchronous result. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Returns: %TRUE if the operation's result was %TRUE, %FALSE | 
					
						
							|  |  |  |  |  *     if the operation's result was %FALSE. | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use #GTask and g_task_propagate_boolean() instead. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | gboolean | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  | g_simple_async_result_get_op_res_gboolean (GSimpleAsyncResult *simple) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   g_return_val_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple), FALSE); | 
					
						
							|  |  |  |  |   return simple->op_res.v_boolean; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_simple_async_result_set_from_error: | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * @simple: a #GSimpleAsyncResult. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * @error: #GError. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Sets the result from a #GError. | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use #GTask and g_task_return_error() instead. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | void | 
					
						
							|  |  |  |  | g_simple_async_result_set_from_error (GSimpleAsyncResult *simple, | 
					
						
							| 
									
										
										
										
											2009-09-02 19:15:38 +01:00
										 |  |  |  |                                       const GError       *error) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple)); | 
					
						
							|  |  |  |  |   g_return_if_fail (error != NULL); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-10 13:25:59 +00:00
										 |  |  |  |   if (simple->error) | 
					
						
							|  |  |  |  |     g_error_free (simple->error); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   simple->error = g_error_copy (error); | 
					
						
							|  |  |  |  |   simple->failed = TRUE; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-31 22:38:38 -04:00
										 |  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-12-21 17:35:11 +01:00
										 |  |  |  |  * g_simple_async_result_take_error: (skip) | 
					
						
							| 
									
										
										
										
											2010-10-31 22:38:38 -04:00
										 |  |  |  |  * @simple: a #GSimpleAsyncResult | 
					
						
							|  |  |  |  |  * @error: a #GError | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Sets the result from @error, and takes over the caller's ownership | 
					
						
							|  |  |  |  |  * of @error, so the caller does not need to free it any more. | 
					
						
							|  |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-11-01 11:06:26 +01:00
										 |  |  |  |  * Since: 2.28 | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use #GTask and g_task_return_error() instead. | 
					
						
							| 
									
										
										
										
											2010-10-31 22:38:38 -04:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | void | 
					
						
							|  |  |  |  | g_simple_async_result_take_error (GSimpleAsyncResult *simple, | 
					
						
							|  |  |  |  |                                   GError             *error) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple)); | 
					
						
							|  |  |  |  |   g_return_if_fail (error != NULL); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (simple->error) | 
					
						
							|  |  |  |  |     g_error_free (simple->error); | 
					
						
							|  |  |  |  |   simple->error = error; | 
					
						
							|  |  |  |  |   simple->failed = TRUE; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-12-21 17:35:11 +01:00
										 |  |  |  |  * g_simple_async_result_set_error_va: (skip) | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * @simple: a #GSimpleAsyncResult. | 
					
						
							| 
									
										
										
										
											2022-03-04 16:21:55 +00:00
										 |  |  |  |  * @domain: a #GQuark (usually %G_IO_ERROR). | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * @code: an error code. | 
					
						
							|  |  |  |  |  * @format: a formatted error reporting string. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * @args: va_list of arguments. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Sets an error within the asynchronous result without a #GError. | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  |  * Unless writing a binding, see g_simple_async_result_set_error(). | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use #GTask and g_task_return_error() instead. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | void | 
					
						
							|  |  |  |  | g_simple_async_result_set_error_va (GSimpleAsyncResult *simple, | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  |                                     GQuark              domain, | 
					
						
							|  |  |  |  |                                     gint                code, | 
					
						
							|  |  |  |  |                                     const char         *format, | 
					
						
							|  |  |  |  |                                     va_list             args) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple)); | 
					
						
							|  |  |  |  |   g_return_if_fail (domain != 0); | 
					
						
							|  |  |  |  |   g_return_if_fail (format != NULL); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-10 13:25:59 +00:00
										 |  |  |  |   if (simple->error) | 
					
						
							|  |  |  |  |     g_error_free (simple->error); | 
					
						
							| 
									
										
										
										
											2009-04-20 13:46:09 +02:00
										 |  |  |  |   simple->error = g_error_new_valist (domain, code, format, args); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   simple->failed = TRUE; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-12-21 17:35:11 +01:00
										 |  |  |  |  * g_simple_async_result_set_error: (skip) | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * @simple: a #GSimpleAsyncResult. | 
					
						
							| 
									
										
										
										
											2022-03-04 16:21:55 +00:00
										 |  |  |  |  * @domain: a #GQuark (usually %G_IO_ERROR). | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * @code: an error code. | 
					
						
							|  |  |  |  |  * @format: a formatted error reporting string. | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  |  * @...: a list of variables to fill in @format. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * Sets an error within the asynchronous result without a #GError. | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use #GTask and g_task_return_new_error() instead. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | void | 
					
						
							|  |  |  |  | g_simple_async_result_set_error (GSimpleAsyncResult *simple, | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  |                                  GQuark              domain, | 
					
						
							|  |  |  |  |                                  gint                code, | 
					
						
							|  |  |  |  |                                  const char         *format, | 
					
						
							|  |  |  |  |                                  ...) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   va_list args; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple)); | 
					
						
							|  |  |  |  |   g_return_if_fail (domain != 0); | 
					
						
							|  |  |  |  |   g_return_if_fail (format != NULL); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   va_start (args, format); | 
					
						
							|  |  |  |  |   g_simple_async_result_set_error_va (simple, domain, code, format, args); | 
					
						
							|  |  |  |  |   va_end (args); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_simple_async_result_complete: | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * @simple: a #GSimpleAsyncResult. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-06-16 20:22:58 -04:00
										 |  |  |  |  * Completes an asynchronous I/O job immediately. Must be called in | 
					
						
							|  |  |  |  |  * the thread where the asynchronous result was to be delivered, as it | 
					
						
							|  |  |  |  |  * invokes the callback directly. If you are in a different thread use | 
					
						
							|  |  |  |  |  * g_simple_async_result_complete_in_idle(). | 
					
						
							| 
									
										
										
										
											2010-08-13 23:20:06 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Calling this function takes a reference to @simple for as long as | 
					
						
							|  |  |  |  |  * is needed to complete the call. | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use #GTask instead. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | void | 
					
						
							|  |  |  |  | g_simple_async_result_complete (GSimpleAsyncResult *simple) | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-06-16 20:22:58 -04:00
										 |  |  |  | #ifndef G_DISABLE_CHECKS
 | 
					
						
							|  |  |  |  |   GSource *current_source; | 
					
						
							|  |  |  |  |   GMainContext *current_context; | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple)); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-16 20:22:58 -04:00
										 |  |  |  | #ifndef G_DISABLE_CHECKS
 | 
					
						
							|  |  |  |  |   current_source = g_main_current_source (); | 
					
						
							| 
									
										
										
										
											2009-09-29 11:25:13 +02:00
										 |  |  |  |   if (current_source && !g_source_is_destroyed (current_source)) | 
					
						
							| 
									
										
										
										
											2009-06-16 20:22:58 -04:00
										 |  |  |  |     { | 
					
						
							|  |  |  |  |       current_context = g_source_get_context (current_source); | 
					
						
							|  |  |  |  |       if (simple->context != current_context) | 
					
						
							|  |  |  |  | 	g_warning ("g_simple_async_result_complete() called from wrong context!"); | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | #endif
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   if (simple->callback) | 
					
						
							| 
									
										
										
										
											2011-04-20 11:41:47 -04:00
										 |  |  |  |     { | 
					
						
							|  |  |  |  |       g_main_context_push_thread_default (simple->context); | 
					
						
							|  |  |  |  |       simple->callback (simple->source_object, | 
					
						
							|  |  |  |  | 			G_ASYNC_RESULT (simple), | 
					
						
							|  |  |  |  | 			simple->user_data); | 
					
						
							|  |  |  |  |       g_main_context_pop_thread_default (simple->context); | 
					
						
							|  |  |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static gboolean | 
					
						
							|  |  |  |  | complete_in_idle_cb (gpointer data) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (data); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   g_simple_async_result_complete (simple); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   return FALSE; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_simple_async_result_complete_in_idle: | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * @simple: a #GSimpleAsyncResult. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-02-08 12:26:56 -05:00
										 |  |  |  |  * Completes an asynchronous function in an idle handler in the | 
					
						
							| 
									
										
										
										
											2025-01-28 21:05:26 +02:00
										 |  |  |  |  * thread-default main context (see [method@GLib.MainContext.push_thread_default]) | 
					
						
							| 
									
										
										
										
											2014-02-08 12:26:56 -05:00
										 |  |  |  |  * of the thread that @simple was initially created in | 
					
						
							| 
									
										
										
										
											2011-09-26 12:42:23 -04:00
										 |  |  |  |  * (and re-pushes that context around the invocation of the callback). | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Calling this function takes a reference to @simple for as long as | 
					
						
							|  |  |  |  |  * is needed to complete the call. | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use #GTask instead. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | void | 
					
						
							|  |  |  |  | g_simple_async_result_complete_in_idle (GSimpleAsyncResult *simple) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GSource *source; | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple)); | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   g_object_ref (simple); | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |   | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   source = g_idle_source_new (); | 
					
						
							|  |  |  |  |   g_source_set_priority (source, G_PRIORITY_DEFAULT); | 
					
						
							|  |  |  |  |   g_source_set_callback (source, complete_in_idle_cb, simple, g_object_unref); | 
					
						
							| 
									
										
										
										
											2021-07-26 10:53:02 +01:00
										 |  |  |  |   g_source_set_static_name (source, "[gio] complete_in_idle_cb"); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-16 20:22:58 -04:00
										 |  |  |  |   g_source_attach (source, simple->context); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   g_source_unref (source); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | typedef struct { | 
					
						
							|  |  |  |  |   GSimpleAsyncResult *simple; | 
					
						
							| 
									
										
										
										
											2008-12-10 13:25:59 +00:00
										 |  |  |  |   GCancellable *cancellable; | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   GSimpleAsyncThreadFunc func; | 
					
						
							|  |  |  |  | } RunInThreadData; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-10 13:25:59 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | static gboolean | 
					
						
							|  |  |  |  | complete_in_idle_cb_for_thread (gpointer _data) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   RunInThreadData *data = _data; | 
					
						
							|  |  |  |  |   GSimpleAsyncResult *simple; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   simple = data->simple; | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |   | 
					
						
							| 
									
										
										
										
											2008-12-10 13:25:59 +00:00
										 |  |  |  |   if (simple->handle_cancellation && | 
					
						
							|  |  |  |  |       g_cancellable_is_cancelled (data->cancellable)) | 
					
						
							|  |  |  |  |     g_simple_async_result_set_error (simple, | 
					
						
							|  |  |  |  |                                      G_IO_ERROR, | 
					
						
							|  |  |  |  |                                      G_IO_ERROR_CANCELLED, | 
					
						
							|  |  |  |  |                                      "%s", _("Operation was cancelled")); | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |   | 
					
						
							| 
									
										
										
										
											2008-12-10 13:25:59 +00:00
										 |  |  |  |   g_simple_async_result_complete (simple); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (data->cancellable) | 
					
						
							|  |  |  |  |     g_object_unref (data->cancellable); | 
					
						
							|  |  |  |  |   g_object_unref (data->simple); | 
					
						
							|  |  |  |  |   g_free (data); | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |   | 
					
						
							| 
									
										
										
										
											2008-12-10 13:25:59 +00:00
										 |  |  |  |   return FALSE; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-25 14:40:54 +00:00
										 |  |  |  | static gboolean | 
					
						
							|  |  |  |  | run_in_thread (GIOSchedulerJob *job, | 
					
						
							|  |  |  |  |                GCancellable    *c, | 
					
						
							|  |  |  |  |                gpointer         _data) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   RunInThreadData *data = _data; | 
					
						
							|  |  |  |  |   GSimpleAsyncResult *simple = data->simple; | 
					
						
							| 
									
										
										
										
											2008-12-10 13:25:59 +00:00
										 |  |  |  |   GSource *source; | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |   | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   if (simple->handle_cancellation && | 
					
						
							|  |  |  |  |       g_cancellable_is_cancelled (c)) | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  |     g_simple_async_result_set_error (simple, | 
					
						
							|  |  |  |  |                                      G_IO_ERROR, | 
					
						
							|  |  |  |  |                                      G_IO_ERROR_CANCELLED, | 
					
						
							| 
									
										
										
										
											2008-10-13 12:43:37 +00:00
										 |  |  |  |                                      "%s", _("Operation was cancelled")); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   else | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  |     data->func (simple, | 
					
						
							|  |  |  |  |                 simple->source_object, | 
					
						
							|  |  |  |  |                 c); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-10 13:25:59 +00:00
										 |  |  |  |   source = g_idle_source_new (); | 
					
						
							|  |  |  |  |   g_source_set_priority (source, G_PRIORITY_DEFAULT); | 
					
						
							|  |  |  |  |   g_source_set_callback (source, complete_in_idle_cb_for_thread, data, NULL); | 
					
						
							| 
									
										
										
										
											2021-07-26 10:53:02 +01:00
										 |  |  |  |   g_source_set_static_name (source, "[gio] complete_in_idle_cb_for_thread"); | 
					
						
							| 
									
										
										
										
											2008-12-10 13:25:59 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-16 20:22:58 -04:00
										 |  |  |  |   g_source_attach (source, simple->context); | 
					
						
							| 
									
										
										
										
											2008-12-10 13:25:59 +00:00
										 |  |  |  |   g_source_unref (source); | 
					
						
							| 
									
										
										
										
											2008-01-25 14:40:54 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   return FALSE; | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-12-21 17:35:11 +01:00
										 |  |  |  |  * g_simple_async_result_run_in_thread: (skip) | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * @simple: a #GSimpleAsyncResult. | 
					
						
							|  |  |  |  |  * @func: a #GSimpleAsyncThreadFunc. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * @io_priority: the io priority of the request. | 
					
						
							| 
									
										
										
										
											2016-10-28 18:29:02 -07:00
										 |  |  |  |  * @cancellable: (nullable): optional #GCancellable object, %NULL to ignore. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-06-16 20:22:58 -04:00
										 |  |  |  |  * Runs the asynchronous job in a separate thread and then calls | 
					
						
							|  |  |  |  |  * g_simple_async_result_complete_in_idle() on @simple to return | 
					
						
							|  |  |  |  |  * the result to the appropriate main loop. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Calling this function takes a reference to @simple for as long as | 
					
						
							|  |  |  |  |  * is needed to run the job and report its completion. | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use #GTask and g_task_run_in_thread() instead. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | void | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  | g_simple_async_result_run_in_thread (GSimpleAsyncResult     *simple, | 
					
						
							|  |  |  |  |                                      GSimpleAsyncThreadFunc  func, | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |                                      int                     io_priority, | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  |                                      GCancellable           *cancellable) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   RunInThreadData *data; | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple)); | 
					
						
							|  |  |  |  |   g_return_if_fail (func != NULL); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   data = g_new (RunInThreadData, 1); | 
					
						
							|  |  |  |  |   data->func = func; | 
					
						
							|  |  |  |  |   data->simple = g_object_ref (simple); | 
					
						
							| 
									
										
										
										
											2008-12-10 13:25:59 +00:00
										 |  |  |  |   data->cancellable = cancellable; | 
					
						
							|  |  |  |  |   if (cancellable) | 
					
						
							|  |  |  |  |     g_object_ref (cancellable); | 
					
						
							| 
									
										
										
										
											2011-11-21 09:19:56 -05:00
										 |  |  |  |   G_GNUC_BEGIN_IGNORE_DEPRECATIONS; | 
					
						
							| 
									
										
										
										
											2007-12-14 09:42:59 +00:00
										 |  |  |  |   g_io_scheduler_push_job (run_in_thread, data, NULL, io_priority, cancellable); | 
					
						
							| 
									
										
										
										
											2011-11-21 09:19:56 -05:00
										 |  |  |  |   G_GNUC_END_IGNORE_DEPRECATIONS; | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-05 06:57:16 +00:00
										 |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_simple_async_result_is_valid: | 
					
						
							|  |  |  |  |  * @result: the #GAsyncResult passed to the _finish function. | 
					
						
							| 
									
										
										
										
											2016-10-28 18:29:02 -07:00
										 |  |  |  |  * @source: (nullable): the #GObject passed to the _finish function. | 
					
						
							|  |  |  |  |  * @source_tag: (nullable): the asynchronous function. | 
					
						
							| 
									
										
										
										
											2009-01-05 06:57:16 +00:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Ensures that the data passed to the _finish function of an async | 
					
						
							|  |  |  |  |  * operation is consistent.  Three checks are performed. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-01-05 06:57:16 +00:00
										 |  |  |  |  * First, @result is checked to ensure that it is really a | 
					
						
							|  |  |  |  |  * #GSimpleAsyncResult.  Second, @source is checked to ensure that it | 
					
						
							|  |  |  |  |  * matches the source object of @result.  Third, @source_tag is | 
					
						
							| 
									
										
										
										
											2014-02-16 09:24:04 -05:00
										 |  |  |  |  * checked to ensure that it is equal to the @source_tag argument given | 
					
						
							|  |  |  |  |  * to g_simple_async_result_new() (which, by convention, is a pointer | 
					
						
							|  |  |  |  |  * to the _async function corresponding to the _finish function from | 
					
						
							|  |  |  |  |  * which this function is called).  (Alternatively, if either | 
					
						
							|  |  |  |  |  * @source_tag or @result's source tag is %NULL, then the source tag | 
					
						
							|  |  |  |  |  * check is skipped.) | 
					
						
							| 
									
										
										
										
											2009-01-05 06:57:16 +00:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Returns: #TRUE if all checks passed or #FALSE if any failed. | 
					
						
							| 
									
										
										
										
											2010-12-03 14:48:35 -05:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Since: 2.20 | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use #GTask and g_task_is_valid() instead. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  **/ | 
					
						
							| 
									
										
										
										
											2009-01-05 06:57:16 +00:00
										 |  |  |  | gboolean | 
					
						
							|  |  |  |  | g_simple_async_result_is_valid (GAsyncResult *result, | 
					
						
							|  |  |  |  |                                 GObject      *source, | 
					
						
							|  |  |  |  |                                 gpointer      source_tag) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GSimpleAsyncResult *simple; | 
					
						
							|  |  |  |  |   GObject *cmp_source; | 
					
						
							| 
									
										
										
										
											2014-02-16 09:24:04 -05:00
										 |  |  |  |   gpointer result_source_tag; | 
					
						
							| 
									
										
										
										
											2009-01-05 06:57:16 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (!G_IS_SIMPLE_ASYNC_RESULT (result)) | 
					
						
							|  |  |  |  |     return FALSE; | 
					
						
							|  |  |  |  |   simple = (GSimpleAsyncResult *)result; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   cmp_source = g_async_result_get_source_object (result); | 
					
						
							|  |  |  |  |   if (cmp_source != source) | 
					
						
							|  |  |  |  |     { | 
					
						
							| 
									
										
										
										
											2010-08-07 17:08:54 -04:00
										 |  |  |  |       if (cmp_source != NULL) | 
					
						
							|  |  |  |  |         g_object_unref (cmp_source); | 
					
						
							| 
									
										
										
										
											2009-01-05 06:57:16 +00:00
										 |  |  |  |       return FALSE; | 
					
						
							|  |  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-08-07 17:08:54 -04:00
										 |  |  |  |   if (cmp_source != NULL) | 
					
						
							|  |  |  |  |     g_object_unref (cmp_source); | 
					
						
							| 
									
										
										
										
											2009-01-05 06:57:16 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-16 09:24:04 -05:00
										 |  |  |  |   result_source_tag = g_simple_async_result_get_source_tag (simple); | 
					
						
							|  |  |  |  |   return source_tag == NULL || result_source_tag == NULL || | 
					
						
							|  |  |  |  |          source_tag == result_source_tag; | 
					
						
							| 
									
										
										
										
											2009-01-05 06:57:16 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-12-21 17:35:11 +01:00
										 |  |  |  |  * g_simple_async_report_error_in_idle: (skip) | 
					
						
							| 
									
										
										
										
											2016-10-28 18:29:02 -07:00
										 |  |  |  |  * @object: (nullable): a #GObject, or %NULL. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * @callback: a #GAsyncReadyCallback. | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * @user_data: user data passed to @callback. | 
					
						
							| 
									
										
										
										
											2022-03-04 16:21:55 +00:00
										 |  |  |  |  * @domain: a #GQuark containing the error domain (usually %G_IO_ERROR). | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * @code: a specific error code. | 
					
						
							|  |  |  |  |  * @format: a formatted error reporting string. | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  |  * @...: a list of variables to fill in @format. | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Reports an error in an asynchronous function in an idle function by | 
					
						
							| 
									
										
										
										
											2007-12-09 15:51:12 +00:00
										 |  |  |  |  * directly setting the contents of the #GAsyncResult with the given error | 
					
						
							|  |  |  |  |  * information. | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use g_task_report_error(). | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | void | 
					
						
							| 
									
										
										
										
											2007-11-30 05:11:25 +00:00
										 |  |  |  | g_simple_async_report_error_in_idle (GObject             *object, | 
					
						
							|  |  |  |  |                                      GAsyncReadyCallback  callback, | 
					
						
							|  |  |  |  |                                      gpointer             user_data, | 
					
						
							|  |  |  |  |                                      GQuark               domain, | 
					
						
							|  |  |  |  |                                      gint                 code, | 
					
						
							|  |  |  |  |                                      const char          *format, | 
					
						
							|  |  |  |  |                                      ...) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   GSimpleAsyncResult *simple; | 
					
						
							|  |  |  |  |   va_list args; | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |   | 
					
						
							| 
									
										
										
										
											2010-12-10 15:07:04 +01:00
										 |  |  |  |   g_return_if_fail (!object || G_IS_OBJECT (object)); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   g_return_if_fail (domain != 0); | 
					
						
							|  |  |  |  |   g_return_if_fail (format != NULL); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   simple = g_simple_async_result_new (object, | 
					
						
							|  |  |  |  | 				      callback, | 
					
						
							|  |  |  |  | 				      user_data, NULL); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   va_start (args, format); | 
					
						
							|  |  |  |  |   g_simple_async_result_set_error_va (simple, domain, code, format, args); | 
					
						
							|  |  |  |  |   va_end (args); | 
					
						
							|  |  |  |  |   g_simple_async_result_complete_in_idle (simple); | 
					
						
							|  |  |  |  |   g_object_unref (simple); | 
					
						
							|  |  |  |  | } | 
					
						
							| 
									
										
										
										
											2007-11-28 12:39:07 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2007-12-09 15:51:12 +00:00
										 |  |  |  |  * g_simple_async_report_gerror_in_idle: | 
					
						
							| 
									
										
										
										
											2016-10-28 18:29:02 -07:00
										 |  |  |  |  * @object: (nullable): a #GObject, or %NULL | 
					
						
							| 
									
										
										
										
											2010-12-21 17:35:11 +01:00
										 |  |  |  |  * @callback: (scope async): a #GAsyncReadyCallback. | 
					
						
							| 
									
										
										
										
											2023-02-20 14:43:02 -06:00
										 |  |  |  |  * @user_data: user data passed to @callback. | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  |  * @error: the #GError to report | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Reports an error in an idle function. Similar to | 
					
						
							|  |  |  |  |  * g_simple_async_report_error_in_idle(), but takes a #GError rather | 
					
						
							| 
									
										
										
										
											2007-12-09 15:51:12 +00:00
										 |  |  |  |  * than building a new one. | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use g_task_report_error(). | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | void | 
					
						
							|  |  |  |  | g_simple_async_report_gerror_in_idle (GObject *object, | 
					
						
							|  |  |  |  | 				      GAsyncReadyCallback callback, | 
					
						
							|  |  |  |  | 				      gpointer user_data, | 
					
						
							| 
									
										
										
										
											2010-09-23 13:47:13 +02:00
										 |  |  |  | 				      const GError *error) | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   GSimpleAsyncResult *simple; | 
					
						
							| 
									
										
										
										
											2010-01-02 19:50:55 -05:00
										 |  |  |  |   | 
					
						
							| 
									
										
										
										
											2010-12-20 17:15:15 +01:00
										 |  |  |  |   g_return_if_fail (!object || G_IS_OBJECT (object)); | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  |   g_return_if_fail (error != NULL); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   simple = g_simple_async_result_new_from_error (object, | 
					
						
							|  |  |  |  | 						 callback, | 
					
						
							|  |  |  |  | 						 user_data, | 
					
						
							|  |  |  |  | 						 error); | 
					
						
							|  |  |  |  |   g_simple_async_result_complete_in_idle (simple); | 
					
						
							|  |  |  |  |   g_object_unref (simple); | 
					
						
							|  |  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-09-23 13:47:13 +02:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-12-21 17:35:11 +01:00
										 |  |  |  |  * g_simple_async_report_take_gerror_in_idle: (skip) | 
					
						
							| 
									
										
										
										
											2016-10-28 18:29:02 -07:00
										 |  |  |  |  * @object: (nullable): a #GObject, or %NULL | 
					
						
							| 
									
										
										
										
											2010-09-23 13:47:13 +02:00
										 |  |  |  |  * @callback: a #GAsyncReadyCallback. | 
					
						
							|  |  |  |  |  * @user_data: user data passed to @callback. | 
					
						
							|  |  |  |  |  * @error: the #GError to report | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Reports an error in an idle function. Similar to | 
					
						
							|  |  |  |  |  * g_simple_async_report_gerror_in_idle(), but takes over the caller's | 
					
						
							|  |  |  |  |  * ownership of @error, so the caller does not have to free it any more. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Since: 2.28 | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use g_task_report_error(). | 
					
						
							| 
									
										
										
										
											2010-09-23 13:47:13 +02:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | void | 
					
						
							|  |  |  |  | g_simple_async_report_take_gerror_in_idle (GObject *object, | 
					
						
							|  |  |  |  |                                            GAsyncReadyCallback callback, | 
					
						
							|  |  |  |  |                                            gpointer user_data, | 
					
						
							|  |  |  |  |                                            GError *error) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GSimpleAsyncResult *simple; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-10 15:07:04 +01:00
										 |  |  |  |   g_return_if_fail (!object || G_IS_OBJECT (object)); | 
					
						
							| 
									
										
										
										
											2010-09-23 13:47:13 +02:00
										 |  |  |  |   g_return_if_fail (error != NULL); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   simple = g_simple_async_result_new_take_error (object, | 
					
						
							|  |  |  |  |                                                  callback, | 
					
						
							|  |  |  |  |                                                  user_data, | 
					
						
							|  |  |  |  |                                                  error); | 
					
						
							|  |  |  |  |   g_simple_async_result_complete_in_idle (simple); | 
					
						
							|  |  |  |  |   g_object_unref (simple); | 
					
						
							|  |  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-03-13 16:09:01 -04:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_simple_async_result_set_check_cancellable: | 
					
						
							|  |  |  |  |  * @simple: a #GSimpleAsyncResult | 
					
						
							| 
									
										
										
										
											2016-10-28 18:29:02 -07:00
										 |  |  |  |  * @check_cancellable: (nullable): a #GCancellable to check, or %NULL to unset | 
					
						
							| 
									
										
										
										
											2012-03-13 16:09:01 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Sets a #GCancellable to check before dispatching results. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * This function has one very specific purpose: the provided cancellable | 
					
						
							|  |  |  |  |  * is checked at the time of g_simple_async_result_propagate_error() If | 
					
						
							|  |  |  |  |  * it is cancelled, these functions will return an "Operation was | 
					
						
							|  |  |  |  |  * cancelled" error (%G_IO_ERROR_CANCELLED). | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Implementors of cancellable asynchronous functions should use this in | 
					
						
							|  |  |  |  |  * order to provide a guarantee to their callers that cancelling an | 
					
						
							|  |  |  |  |  * async operation will reliably result in an error being returned for | 
					
						
							|  |  |  |  |  * that operation (even if a positive result for the operation has | 
					
						
							|  |  |  |  |  * already been sent as an idle to the main context to be dispatched). | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * The checking described above is done regardless of any call to the | 
					
						
							|  |  |  |  |  * unrelated g_simple_async_result_set_handle_cancellation() function. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Since: 2.32 | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Deprecated: 2.46: Use #GTask instead. | 
					
						
							| 
									
										
										
										
											2012-03-13 16:09:01 -04:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | void | 
					
						
							|  |  |  |  | g_simple_async_result_set_check_cancellable (GSimpleAsyncResult *simple, | 
					
						
							|  |  |  |  |                                              GCancellable *check_cancellable) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   g_return_if_fail (G_IS_SIMPLE_ASYNC_RESULT (simple)); | 
					
						
							|  |  |  |  |   g_return_if_fail (check_cancellable == NULL || G_IS_CANCELLABLE (check_cancellable)); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   g_clear_object (&simple->check_cancellable); | 
					
						
							|  |  |  |  |   if (check_cancellable) | 
					
						
							|  |  |  |  |     simple->check_cancellable = g_object_ref (check_cancellable); | 
					
						
							|  |  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-04-17 10:38:37 -04:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | G_GNUC_END_IGNORE_DEPRECATIONS |