| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | /* GIO - GLib Input, Output and Streaming Library
 | 
					
						
							|  |  |  |  |  *  | 
					
						
							|  |  |  |  |  * 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 <glib.h>
 | 
					
						
							|  |  |  |  | #include "glibintl.h"
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | #include "ginputstream.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-23 17:32:31 -06:00
										 |  |  |  | #include "gioprivate.h"
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | #include "gseekable.h"
 | 
					
						
							| 
									
										
										
										
											2008-07-01 06:32:35 +00:00
										 |  |  |  | #include "gcancellable.h"
 | 
					
						
							|  |  |  |  | #include "gasyncresult.h"
 | 
					
						
							|  |  |  |  | #include "gioerror.h"
 | 
					
						
							| 
									
										
										
										
											2012-02-04 16:46:29 -05:00
										 |  |  |  | #include "gpollableinputstream.h"
 | 
					
						
							| 
									
										
										
										
											2007-11-28 12:39:07 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2023-10-23 14:39:36 +01:00
										 |  |  |  |  * GInputStream: | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2023-10-23 14:39:36 +01:00
										 |  |  |  |  * `GInputStream` is a base class for implementing streaming input. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * It has functions to read from a stream ([method@Gio.InputStream.read]), | 
					
						
							|  |  |  |  |  * to close a stream ([method@Gio.InputStream.close]) and to skip some content | 
					
						
							|  |  |  |  |  * ([method@Gio.InputStream.skip]). | 
					
						
							| 
									
										
										
										
											2008-08-13 05:35:10 +00:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * To copy the content of an input stream to an output stream without  | 
					
						
							| 
									
										
										
										
											2023-10-23 14:39:36 +01:00
										 |  |  |  |  * manually handling the reads and writes, use [method@Gio.OutputStream.splice]. | 
					
						
							| 
									
										
										
										
											2014-09-26 14:01:16 +01:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2023-10-23 14:39:36 +01:00
										 |  |  |  |  * See the documentation for [class@Gio.IOStream] for details of thread safety | 
					
						
							|  |  |  |  |  * of streaming APIs. | 
					
						
							| 
									
										
										
										
											2008-08-13 05:35:10 +00:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * All of these functions have async variants too. | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | struct _GInputStreamPrivate { | 
					
						
							|  |  |  |  |   guint closed : 1; | 
					
						
							|  |  |  |  |   guint pending : 1; | 
					
						
							|  |  |  |  |   GAsyncReadyCallback outstanding_callback; | 
					
						
							|  |  |  |  | }; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-11 00:29:58 +01:00
										 |  |  |  | G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE (GInputStream, g_input_stream, G_TYPE_OBJECT) | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | static gssize   g_input_stream_real_skip         (GInputStream         *stream, | 
					
						
							|  |  |  |  | 						  gsize                 count, | 
					
						
							|  |  |  |  | 						  GCancellable         *cancellable, | 
					
						
							|  |  |  |  | 						  GError              **error); | 
					
						
							|  |  |  |  | static void     g_input_stream_real_read_async   (GInputStream         *stream, | 
					
						
							|  |  |  |  | 						  void                 *buffer, | 
					
						
							|  |  |  |  | 						  gsize                 count, | 
					
						
							|  |  |  |  | 						  int                   io_priority, | 
					
						
							|  |  |  |  | 						  GCancellable         *cancellable, | 
					
						
							|  |  |  |  | 						  GAsyncReadyCallback   callback, | 
					
						
							|  |  |  |  | 						  gpointer              user_data); | 
					
						
							|  |  |  |  | static gssize   g_input_stream_real_read_finish  (GInputStream         *stream, | 
					
						
							|  |  |  |  | 						  GAsyncResult         *result, | 
					
						
							|  |  |  |  | 						  GError              **error); | 
					
						
							|  |  |  |  | static void     g_input_stream_real_skip_async   (GInputStream         *stream, | 
					
						
							|  |  |  |  | 						  gsize                 count, | 
					
						
							|  |  |  |  | 						  int                   io_priority, | 
					
						
							|  |  |  |  | 						  GCancellable         *cancellable, | 
					
						
							|  |  |  |  | 						  GAsyncReadyCallback   callback, | 
					
						
							|  |  |  |  | 						  gpointer              data); | 
					
						
							|  |  |  |  | static gssize   g_input_stream_real_skip_finish  (GInputStream         *stream, | 
					
						
							|  |  |  |  | 						  GAsyncResult         *result, | 
					
						
							|  |  |  |  | 						  GError              **error); | 
					
						
							|  |  |  |  | static void     g_input_stream_real_close_async  (GInputStream         *stream, | 
					
						
							|  |  |  |  | 						  int                   io_priority, | 
					
						
							|  |  |  |  | 						  GCancellable         *cancellable, | 
					
						
							|  |  |  |  | 						  GAsyncReadyCallback   callback, | 
					
						
							|  |  |  |  | 						  gpointer              data); | 
					
						
							|  |  |  |  | static gboolean g_input_stream_real_close_finish (GInputStream         *stream, | 
					
						
							|  |  |  |  | 						  GAsyncResult         *result, | 
					
						
							|  |  |  |  | 						  GError              **error); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							|  |  |  |  | g_input_stream_dispose (GObject *object) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GInputStream *stream; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   stream = G_INPUT_STREAM (object); | 
					
						
							|  |  |  |  |    | 
					
						
							|  |  |  |  |   if (!stream->priv->closed) | 
					
						
							|  |  |  |  |     g_input_stream_close (stream, NULL, NULL); | 
					
						
							| 
									
										
										
										
											2008-06-16 09:54:04 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   G_OBJECT_CLASS (g_input_stream_parent_class)->dispose (object); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							|  |  |  |  | g_input_stream_class_init (GInputStreamClass *klass) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GObjectClass *gobject_class = G_OBJECT_CLASS (klass); | 
					
						
							|  |  |  |  |    | 
					
						
							|  |  |  |  |   gobject_class->dispose = g_input_stream_dispose; | 
					
						
							|  |  |  |  |    | 
					
						
							|  |  |  |  |   klass->skip = g_input_stream_real_skip; | 
					
						
							|  |  |  |  |   klass->read_async = g_input_stream_real_read_async; | 
					
						
							|  |  |  |  |   klass->read_finish = g_input_stream_real_read_finish; | 
					
						
							|  |  |  |  |   klass->skip_async = g_input_stream_real_skip_async; | 
					
						
							|  |  |  |  |   klass->skip_finish = g_input_stream_real_skip_finish; | 
					
						
							|  |  |  |  |   klass->close_async = g_input_stream_real_close_async; | 
					
						
							|  |  |  |  |   klass->close_finish = g_input_stream_real_close_finish; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							|  |  |  |  | g_input_stream_init (GInputStream *stream) | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-06-24 15:43:04 +01:00
										 |  |  |  |   stream->priv = g_input_stream_get_instance_private (stream); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_input_stream_read: | 
					
						
							|  |  |  |  |  * @stream: a #GInputStream. | 
					
						
							| 
									
										
										
										
											2017-04-13 10:24:11 +01:00
										 |  |  |  |  * @buffer: (array length=count) (element-type guint8) (out caller-allocates): | 
					
						
							| 
									
										
										
										
											2024-09-08 10:15:00 +02:00
										 |  |  |  |  *   a buffer to read data into (which should be at least count bytes long). | 
					
						
							| 
									
										
										
										
											2021-04-07 04:13:26 +09:00
										 |  |  |  |  * @count: (in): the number of bytes that will be read from the stream | 
					
						
							| 
									
										
										
										
											2016-10-28 18:29:02 -07:00
										 |  |  |  |  * @cancellable: (nullable): optional #GCancellable object, %NULL to ignore. | 
					
						
							| 
									
										
										
										
											2011-08-29 14:49:32 -04:00
										 |  |  |  |  * @error: location to store the error occurring, or %NULL to ignore | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Tries to read @count bytes from the stream into the buffer starting at | 
					
						
							|  |  |  |  |  * @buffer. Will block during this read. | 
					
						
							|  |  |  |  |  *  | 
					
						
							|  |  |  |  |  * If count is zero returns zero and does nothing. A value of @count | 
					
						
							|  |  |  |  |  * larger than %G_MAXSSIZE will cause a %G_IO_ERROR_INVALID_ARGUMENT error. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * On success, the number of bytes read into the buffer is returned. | 
					
						
							|  |  |  |  |  * It is not an error if this is not the same as the requested size, as it | 
					
						
							|  |  |  |  |  * can happen e.g. near the end of a file. Zero is returned on end of file | 
					
						
							|  |  |  |  |  * (or if @count is zero),  but never otherwise. | 
					
						
							|  |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-07-03 18:02:31 +02:00
										 |  |  |  |  * The returned @buffer is not a nul-terminated string, it can contain nul bytes | 
					
						
							|  |  |  |  |  * at any position, and this function doesn't nul-terminate the @buffer. | 
					
						
							|  |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2012-04-04 15:22:15 -04:00
										 |  |  |  |  * If @cancellable is not %NULL, then the operation can be cancelled by | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * triggering the cancellable object from another thread. If the operation | 
					
						
							| 
									
										
										
										
											2012-04-04 15:22:15 -04:00
										 |  |  |  |  * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned. If an | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * operation was partially finished when the operation was cancelled the | 
					
						
							|  |  |  |  |  * partial result will be returned, without an error. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * On error -1 is returned and @error is set accordingly. | 
					
						
							|  |  |  |  |  *  | 
					
						
							| 
									
										
										
										
											2014-02-19 19:35:23 -05:00
										 |  |  |  |  * Returns: Number of bytes read, or -1 on error, or 0 on end of file. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | gssize | 
					
						
							|  |  |  |  | g_input_stream_read  (GInputStream  *stream, | 
					
						
							|  |  |  |  | 		      void          *buffer, | 
					
						
							|  |  |  |  | 		      gsize          count, | 
					
						
							|  |  |  |  | 		      GCancellable  *cancellable, | 
					
						
							|  |  |  |  | 		      GError       **error) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GInputStreamClass *class; | 
					
						
							|  |  |  |  |   gssize res; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), -1); | 
					
						
							|  |  |  |  |   g_return_val_if_fail (buffer != NULL, 0); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (count == 0) | 
					
						
							|  |  |  |  |     return 0; | 
					
						
							|  |  |  |  |    | 
					
						
							|  |  |  |  |   if (((gssize) count) < 0) | 
					
						
							|  |  |  |  |     { | 
					
						
							|  |  |  |  |       g_set_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT, | 
					
						
							| 
									
										
										
										
											2008-02-10 04:41:25 +00:00
										 |  |  |  | 		   _("Too large count value passed to %s"), G_STRFUNC); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |       return -1; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   class = G_INPUT_STREAM_GET_CLASS (stream); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-05 10:38:03 +00:00
										 |  |  |  |   if (class->read_fn == NULL)  | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |     { | 
					
						
							| 
									
										
										
										
											2008-06-16 16:53:58 +00:00
										 |  |  |  |       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, | 
					
						
							| 
									
										
										
										
											2016-09-30 05:47:15 +02:00
										 |  |  |  |                            _("Input stream doesn’t implement read")); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |       return -1; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  |   if (!g_input_stream_set_pending (stream, error)) | 
					
						
							|  |  |  |  |     return -1; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   if (cancellable) | 
					
						
							| 
									
										
										
										
											2007-12-13 16:48:06 +00:00
										 |  |  |  |     g_cancellable_push_current (cancellable); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |    | 
					
						
							| 
									
										
										
										
											2007-12-05 10:38:03 +00:00
										 |  |  |  |   res = class->read_fn (stream, buffer, count, cancellable, error); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (cancellable) | 
					
						
							| 
									
										
										
										
											2007-12-13 16:48:06 +00:00
										 |  |  |  |     g_cancellable_pop_current (cancellable); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |    | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  |   g_input_stream_clear_pending (stream); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   return res; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_input_stream_read_all: | 
					
						
							|  |  |  |  |  * @stream: a #GInputStream. | 
					
						
							| 
									
										
										
										
											2017-04-13 10:24:11 +01:00
										 |  |  |  |  * @buffer: (array length=count) (element-type guint8) (out caller-allocates): | 
					
						
							| 
									
										
										
										
											2024-09-08 10:15:00 +02:00
										 |  |  |  |  *   a buffer to read data into (which should be at least count bytes long). | 
					
						
							| 
									
										
										
										
											2021-04-07 04:13:26 +09:00
										 |  |  |  |  * @count: (in): the number of bytes that will be read from the stream | 
					
						
							| 
									
										
										
										
											2010-12-17 16:24:33 +01:00
										 |  |  |  |  * @bytes_read: (out): location to store the number of bytes that was read from the stream | 
					
						
							| 
									
										
										
										
											2016-10-28 18:29:02 -07:00
										 |  |  |  |  * @cancellable: (nullable): optional #GCancellable object, %NULL to ignore. | 
					
						
							| 
									
										
										
										
											2011-08-29 14:49:32 -04:00
										 |  |  |  |  * @error: location to store the error occurring, or %NULL to ignore | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Tries to read @count bytes from the stream into the buffer starting at | 
					
						
							|  |  |  |  |  * @buffer. Will block during this read. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * This function is similar to g_input_stream_read(), except it tries to | 
					
						
							|  |  |  |  |  * read as many bytes as requested, only stopping on an error or end of stream. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * On a successful read of @count bytes, or if we reached the end of the | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * stream,  %TRUE is returned, and @bytes_read is set to the number of bytes | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * read into @buffer. | 
					
						
							|  |  |  |  |  *  | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * If there is an error during the operation %FALSE is returned and @error | 
					
						
							| 
									
										
										
										
											2014-09-29 11:50:05 -04:00
										 |  |  |  |  * is set to indicate the error status. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * As a special exception to the normal conventions for functions that | 
					
						
							|  |  |  |  |  * use #GError, if this function returns %FALSE (and sets @error) then | 
					
						
							|  |  |  |  |  * @bytes_read will be set to the number of bytes that were successfully | 
					
						
							|  |  |  |  |  * read before the error was encountered.  This functionality is only | 
					
						
							|  |  |  |  |  * available from C.  If you need it from another language then you must | 
					
						
							|  |  |  |  |  * write your own loop around g_input_stream_read(). | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-02-19 19:35:23 -05:00
										 |  |  |  |  * Returns: %TRUE on success, %FALSE if there was an error | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | gboolean | 
					
						
							| 
									
										
										
										
											2007-11-29 07:17:59 +00:00
										 |  |  |  | g_input_stream_read_all (GInputStream  *stream, | 
					
						
							|  |  |  |  | 			 void          *buffer, | 
					
						
							|  |  |  |  | 			 gsize          count, | 
					
						
							|  |  |  |  | 			 gsize         *bytes_read, | 
					
						
							|  |  |  |  | 			 GCancellable  *cancellable, | 
					
						
							|  |  |  |  | 			 GError       **error) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   gsize _bytes_read; | 
					
						
							|  |  |  |  |   gssize res; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), FALSE); | 
					
						
							|  |  |  |  |   g_return_val_if_fail (buffer != NULL, FALSE); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   _bytes_read = 0; | 
					
						
							|  |  |  |  |   while (_bytes_read < count) | 
					
						
							|  |  |  |  |     { | 
					
						
							|  |  |  |  |       res = g_input_stream_read (stream, (char *)buffer + _bytes_read, count - _bytes_read, | 
					
						
							|  |  |  |  | 				 cancellable, error); | 
					
						
							|  |  |  |  |       if (res == -1) | 
					
						
							|  |  |  |  | 	{ | 
					
						
							|  |  |  |  | 	  if (bytes_read) | 
					
						
							|  |  |  |  | 	    *bytes_read = _bytes_read; | 
					
						
							|  |  |  |  | 	  return FALSE; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  |        | 
					
						
							|  |  |  |  |       if (res == 0) | 
					
						
							|  |  |  |  | 	break; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |       _bytes_read += res; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (bytes_read) | 
					
						
							|  |  |  |  |     *bytes_read = _bytes_read; | 
					
						
							|  |  |  |  |   return TRUE; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-05 09:19:17 -04:00
										 |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_input_stream_read_bytes: | 
					
						
							|  |  |  |  |  * @stream: a #GInputStream. | 
					
						
							|  |  |  |  |  * @count: maximum number of bytes that will be read from the stream. Common | 
					
						
							|  |  |  |  |  * values include 4096 and 8192. | 
					
						
							| 
									
										
										
										
											2016-10-28 18:29:02 -07:00
										 |  |  |  |  * @cancellable: (nullable): optional #GCancellable object, %NULL to ignore. | 
					
						
							| 
									
										
										
										
											2012-04-05 09:19:17 -04:00
										 |  |  |  |  * @error: location to store the error occurring, or %NULL to ignore | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Like g_input_stream_read(), this tries to read @count bytes from | 
					
						
							|  |  |  |  |  * the stream in a blocking fashion. However, rather than reading into | 
					
						
							|  |  |  |  |  * a user-supplied buffer, this will create a new #GBytes containing | 
					
						
							|  |  |  |  |  * the data that was read. This may be easier to use from language | 
					
						
							|  |  |  |  |  * bindings. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * If count is zero, returns a zero-length #GBytes and does nothing. A | 
					
						
							|  |  |  |  |  * value of @count larger than %G_MAXSSIZE will cause a | 
					
						
							|  |  |  |  |  * %G_IO_ERROR_INVALID_ARGUMENT error. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * On success, a new #GBytes is returned. It is not an error if the | 
					
						
							|  |  |  |  |  * size of this object is not the same as the requested size, as it | 
					
						
							|  |  |  |  |  * can happen e.g. near the end of a file. A zero-length #GBytes is | 
					
						
							|  |  |  |  |  * returned on end of file (or if @count is zero), but never | 
					
						
							|  |  |  |  |  * otherwise. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * If @cancellable is not %NULL, then the operation can be cancelled by | 
					
						
							|  |  |  |  |  * triggering the cancellable object from another thread. If the operation | 
					
						
							|  |  |  |  |  * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned. If an | 
					
						
							|  |  |  |  |  * operation was partially finished when the operation was cancelled the | 
					
						
							|  |  |  |  |  * partial result will be returned, without an error. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * On error %NULL is returned and @error is set accordingly. | 
					
						
							|  |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2017-04-13 10:24:32 +01:00
										 |  |  |  |  * Returns: (transfer full): a new #GBytes, or %NULL on error | 
					
						
							| 
									
										
										
										
											2014-07-08 13:13:51 -03:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Since: 2.34 | 
					
						
							| 
									
										
										
										
											2012-04-05 09:19:17 -04:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | GBytes * | 
					
						
							|  |  |  |  | g_input_stream_read_bytes (GInputStream  *stream, | 
					
						
							|  |  |  |  | 			   gsize          count, | 
					
						
							|  |  |  |  | 			   GCancellable  *cancellable, | 
					
						
							|  |  |  |  | 			   GError       **error) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   guchar *buf; | 
					
						
							|  |  |  |  |   gssize nread; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   buf = g_malloc (count); | 
					
						
							|  |  |  |  |   nread = g_input_stream_read (stream, buf, count, cancellable, error); | 
					
						
							|  |  |  |  |   if (nread == -1) | 
					
						
							|  |  |  |  |     { | 
					
						
							|  |  |  |  |       g_free (buf); | 
					
						
							|  |  |  |  |       return NULL; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  |   else if (nread == 0) | 
					
						
							|  |  |  |  |     { | 
					
						
							|  |  |  |  |       g_free (buf); | 
					
						
							|  |  |  |  |       return g_bytes_new_static ("", 0); | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  |   else | 
					
						
							|  |  |  |  |     return g_bytes_new_take (buf, nread); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_input_stream_skip: | 
					
						
							|  |  |  |  |  * @stream: a #GInputStream. | 
					
						
							|  |  |  |  |  * @count: the number of bytes that will be skipped from the stream | 
					
						
							| 
									
										
										
										
											2016-10-28 18:29:02 -07:00
										 |  |  |  |  * @cancellable: (nullable): optional #GCancellable object, %NULL to ignore.  | 
					
						
							| 
									
										
										
										
											2011-08-29 14:49:32 -04:00
										 |  |  |  |  * @error: location to store the error occurring, or %NULL to ignore | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Tries to skip @count bytes from the stream. Will block during the operation. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * This is identical to g_input_stream_read(), from a behaviour standpoint, | 
					
						
							|  |  |  |  |  * but the bytes that are skipped are not returned to the user. Some | 
					
						
							|  |  |  |  |  * streams have an implementation that is more efficient than reading the data. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * This function is optional for inherited classes, as the default implementation | 
					
						
							|  |  |  |  |  * emulates it using read. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * If @cancellable is not %NULL, then the operation can be cancelled by | 
					
						
							|  |  |  |  |  * triggering the cancellable object from another thread. If the operation | 
					
						
							|  |  |  |  |  * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned. If an | 
					
						
							|  |  |  |  |  * operation was partially finished when the operation was cancelled the | 
					
						
							|  |  |  |  |  * partial result will be returned, without an error. | 
					
						
							|  |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-02-19 19:35:23 -05:00
										 |  |  |  |  * Returns: Number of bytes skipped, or -1 on error | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | gssize | 
					
						
							| 
									
										
										
										
											2007-11-29 07:17:59 +00:00
										 |  |  |  | g_input_stream_skip (GInputStream  *stream, | 
					
						
							|  |  |  |  | 		     gsize          count, | 
					
						
							|  |  |  |  | 		     GCancellable  *cancellable, | 
					
						
							|  |  |  |  | 		     GError       **error) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   GInputStreamClass *class; | 
					
						
							|  |  |  |  |   gssize res; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), -1); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (count == 0) | 
					
						
							|  |  |  |  |     return 0; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (((gssize) count) < 0) | 
					
						
							|  |  |  |  |     { | 
					
						
							|  |  |  |  |       g_set_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT, | 
					
						
							| 
									
										
										
										
											2008-02-10 04:41:25 +00:00
										 |  |  |  | 		   _("Too large count value passed to %s"), G_STRFUNC); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |       return -1; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  |    | 
					
						
							|  |  |  |  |   class = G_INPUT_STREAM_GET_CLASS (stream); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  |   if (!g_input_stream_set_pending (stream, error)) | 
					
						
							|  |  |  |  |     return -1; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   if (cancellable) | 
					
						
							| 
									
										
										
										
											2007-12-13 16:48:06 +00:00
										 |  |  |  |     g_cancellable_push_current (cancellable); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |    | 
					
						
							|  |  |  |  |   res = class->skip (stream, count, cancellable, error); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (cancellable) | 
					
						
							| 
									
										
										
										
											2007-12-13 16:48:06 +00:00
										 |  |  |  |     g_cancellable_pop_current (cancellable); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |    | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  |   g_input_stream_clear_pending (stream); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   return res; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static gssize | 
					
						
							| 
									
										
										
										
											2007-11-29 07:17:59 +00:00
										 |  |  |  | g_input_stream_real_skip (GInputStream  *stream, | 
					
						
							|  |  |  |  | 			  gsize          count, | 
					
						
							|  |  |  |  | 			  GCancellable  *cancellable, | 
					
						
							|  |  |  |  | 			  GError       **error) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   GInputStreamClass *class; | 
					
						
							|  |  |  |  |   gssize ret, read_bytes; | 
					
						
							|  |  |  |  |   char buffer[8192]; | 
					
						
							|  |  |  |  |   GError *my_error; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (G_IS_SEEKABLE (stream) && g_seekable_can_seek (G_SEEKABLE (stream))) | 
					
						
							|  |  |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-02-15 14:58:04 +00:00
										 |  |  |  |       GSeekable *seekable = G_SEEKABLE (stream); | 
					
						
							|  |  |  |  |       goffset start, end; | 
					
						
							|  |  |  |  |       gboolean success; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |       /* g_seekable_seek() may try to set pending itself */ | 
					
						
							|  |  |  |  |       stream->priv->pending = FALSE; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |       start = g_seekable_tell (seekable); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |       if (g_seekable_seek (G_SEEKABLE (stream), | 
					
						
							| 
									
										
										
										
											2021-02-15 14:58:04 +00:00
										 |  |  |  |                            0, | 
					
						
							|  |  |  |  |                            G_SEEK_END, | 
					
						
							|  |  |  |  |                            cancellable, | 
					
						
							|  |  |  |  |                            NULL)) | 
					
						
							|  |  |  |  |         { | 
					
						
							|  |  |  |  |           end = g_seekable_tell (seekable); | 
					
						
							| 
									
										
										
										
											2021-04-15 10:51:33 +02:00
										 |  |  |  |           g_assert (start >= 0); | 
					
						
							| 
									
										
										
										
											2021-02-15 14:58:04 +00:00
										 |  |  |  |           g_assert (end >= start); | 
					
						
							| 
									
										
										
										
											2021-11-04 22:05:30 +01:00
										 |  |  |  |           if (start > (goffset) (G_MAXOFFSET - count) || | 
					
						
							|  |  |  |  |               (goffset) (start + count) > end) | 
					
						
							| 
									
										
										
										
											2021-02-15 14:58:04 +00:00
										 |  |  |  |             { | 
					
						
							|  |  |  |  |               stream->priv->pending = TRUE; | 
					
						
							|  |  |  |  |               return end - start; | 
					
						
							|  |  |  |  |             } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |           success = g_seekable_seek (G_SEEKABLE (stream), | 
					
						
							|  |  |  |  |                                      start + count, | 
					
						
							|  |  |  |  |                                      G_SEEK_SET, | 
					
						
							|  |  |  |  |                                      cancellable, | 
					
						
							|  |  |  |  |                                      error); | 
					
						
							|  |  |  |  |           stream->priv->pending = TRUE; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |           if (success) | 
					
						
							|  |  |  |  |             return count; | 
					
						
							|  |  |  |  |           else | 
					
						
							|  |  |  |  |             return -1; | 
					
						
							|  |  |  |  |         } | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   /* If not seekable, or seek failed, fall back to reading data: */ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   class = G_INPUT_STREAM_GET_CLASS (stream); | 
					
						
							| 
									
										
										
										
											2009-09-09 00:18:23 -04:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   read_bytes = 0; | 
					
						
							|  |  |  |  |   while (1) | 
					
						
							|  |  |  |  |     { | 
					
						
							|  |  |  |  |       my_error = NULL; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-05 10:38:03 +00:00
										 |  |  |  |       ret = class->read_fn (stream, buffer, MIN (sizeof (buffer), count), | 
					
						
							| 
									
										
										
										
											2009-09-09 00:18:23 -04:00
										 |  |  |  |                             cancellable, &my_error); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |       if (ret == -1) | 
					
						
							|  |  |  |  | 	{ | 
					
						
							|  |  |  |  | 	  if (read_bytes > 0 && | 
					
						
							|  |  |  |  | 	      my_error->domain == G_IO_ERROR && | 
					
						
							|  |  |  |  | 	      my_error->code == G_IO_ERROR_CANCELLED) | 
					
						
							|  |  |  |  | 	    { | 
					
						
							|  |  |  |  | 	      g_error_free (my_error); | 
					
						
							|  |  |  |  | 	      return read_bytes; | 
					
						
							|  |  |  |  | 	    } | 
					
						
							| 
									
										
										
										
											2009-09-09 00:18:23 -04:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 	  g_propagate_error (error, my_error); | 
					
						
							|  |  |  |  | 	  return -1; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |       count -= ret; | 
					
						
							|  |  |  |  |       read_bytes += ret; | 
					
						
							| 
									
										
										
										
											2009-09-09 00:18:23 -04:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |       if (ret == 0 || count == 0) | 
					
						
							| 
									
										
										
										
											2009-09-09 00:18:23 -04:00
										 |  |  |  |         return read_bytes; | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_input_stream_close: | 
					
						
							|  |  |  |  |  * @stream: A #GInputStream. | 
					
						
							| 
									
										
										
										
											2016-10-28 18:29:02 -07:00
										 |  |  |  |  * @cancellable: (nullable): optional #GCancellable object, %NULL to ignore. | 
					
						
							| 
									
										
										
										
											2011-08-29 14:49:32 -04:00
										 |  |  |  |  * @error: location to store the error occurring, or %NULL to ignore | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Closes the stream, releasing resources related to it. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Once the stream is closed, all other operations will return %G_IO_ERROR_CLOSED. | 
					
						
							|  |  |  |  |  * Closing a stream multiple times will not return an error. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Streams will be automatically closed when the last reference | 
					
						
							| 
									
										
										
										
											2008-01-21 13:08:23 +00:00
										 |  |  |  |  * is dropped, but you might want to call this function to make sure  | 
					
						
							|  |  |  |  |  * resources are released as early as possible. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Some streams might keep the backing store of the stream (e.g. a file descriptor) | 
					
						
							|  |  |  |  |  * open after the stream is closed. See the documentation for the individual | 
					
						
							|  |  |  |  |  * stream for details. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * On failure the first error that happened will be reported, but the close | 
					
						
							|  |  |  |  |  * operation will finish as much as possible. A stream that failed to | 
					
						
							| 
									
										
										
										
											2008-03-04 13:15:57 +00:00
										 |  |  |  |  * close will still return %G_IO_ERROR_CLOSED for all operations. Still, it | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * is important to check and report the error to the user. | 
					
						
							|  |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2012-04-04 15:22:15 -04:00
										 |  |  |  |  * If @cancellable is not %NULL, then the operation can be cancelled by | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * triggering the cancellable object from another thread. If the operation | 
					
						
							|  |  |  |  |  * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned. | 
					
						
							|  |  |  |  |  * Cancelling a close will still leave the stream closed, but some streams | 
					
						
							|  |  |  |  |  * can use a faster close that doesn't block to e.g. check errors.  | 
					
						
							|  |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-02-19 19:35:23 -05:00
										 |  |  |  |  * Returns: %TRUE on success, %FALSE on failure | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | gboolean | 
					
						
							|  |  |  |  | g_input_stream_close (GInputStream  *stream, | 
					
						
							|  |  |  |  | 		      GCancellable  *cancellable, | 
					
						
							|  |  |  |  | 		      GError       **error) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GInputStreamClass *class; | 
					
						
							|  |  |  |  |   gboolean res; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), FALSE); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   class = G_INPUT_STREAM_GET_CLASS (stream); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (stream->priv->closed) | 
					
						
							|  |  |  |  |     return TRUE; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   res = TRUE; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  |   if (!g_input_stream_set_pending (stream, error)) | 
					
						
							|  |  |  |  |     return FALSE; | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (cancellable) | 
					
						
							| 
									
										
										
										
											2007-12-13 16:48:06 +00:00
										 |  |  |  |     g_cancellable_push_current (cancellable); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-05 10:38:03 +00:00
										 |  |  |  |   if (class->close_fn) | 
					
						
							|  |  |  |  |     res = class->close_fn (stream, cancellable, error); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (cancellable) | 
					
						
							| 
									
										
										
										
											2007-12-13 16:48:06 +00:00
										 |  |  |  |     g_cancellable_pop_current (cancellable); | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   g_input_stream_clear_pending (stream); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |    | 
					
						
							|  |  |  |  |   stream->priv->closed = TRUE; | 
					
						
							|  |  |  |  |    | 
					
						
							|  |  |  |  |   return res; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							| 
									
										
										
										
											2007-11-29 07:17:59 +00:00
										 |  |  |  | async_ready_callback_wrapper (GObject      *source_object, | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 			      GAsyncResult *res, | 
					
						
							|  |  |  |  | 			      gpointer      user_data) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GInputStream *stream = G_INPUT_STREAM (source_object); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  |   g_input_stream_clear_pending (stream); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   if (stream->priv->outstanding_callback) | 
					
						
							|  |  |  |  |     (*stream->priv->outstanding_callback) (source_object, res, user_data); | 
					
						
							|  |  |  |  |   g_object_unref (stream); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							| 
									
										
										
										
											2007-11-29 07:17:59 +00:00
										 |  |  |  | async_ready_close_callback_wrapper (GObject      *source_object, | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 				    GAsyncResult *res, | 
					
						
							|  |  |  |  | 				    gpointer      user_data) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GInputStream *stream = G_INPUT_STREAM (source_object); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  |   g_input_stream_clear_pending (stream); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   stream->priv->closed = TRUE; | 
					
						
							|  |  |  |  |   if (stream->priv->outstanding_callback) | 
					
						
							|  |  |  |  |     (*stream->priv->outstanding_callback) (source_object, res, user_data); | 
					
						
							|  |  |  |  |   g_object_unref (stream); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_input_stream_read_async: | 
					
						
							|  |  |  |  |  * @stream: A #GInputStream. | 
					
						
							| 
									
										
										
										
											2017-04-13 10:24:11 +01:00
										 |  |  |  |  * @buffer: (array length=count) (element-type guint8) (out caller-allocates): | 
					
						
							| 
									
										
										
										
											2024-09-08 10:15:00 +02:00
										 |  |  |  |  *   a buffer to read data into (which should be at least count bytes long). | 
					
						
							| 
									
										
										
										
											2021-04-07 04:13:26 +09:00
										 |  |  |  |  * @count: (in): the number of bytes that will be read from the stream | 
					
						
							| 
									
										
										
										
											2024-03-22 00:51:44 +00:00
										 |  |  |  |  * @io_priority: the [I/O priority](iface.AsyncResult.html#io-priority) | 
					
						
							| 
									
										
										
										
											2007-11-30 05:51:10 +00:00
										 |  |  |  |  * of the request.  | 
					
						
							| 
									
										
										
										
											2016-10-28 18:29:02 -07:00
										 |  |  |  |  * @cancellable: (nullable): optional #GCancellable object, %NULL to ignore. | 
					
						
							| 
									
										
										
										
											2023-02-20 14:43:02 -06:00
										 |  |  |  |  * @callback: (scope async): a #GAsyncReadyCallback | 
					
						
							|  |  |  |  |  *   to call when the request is satisfied | 
					
						
							|  |  |  |  |  * @user_data: the data to pass to callback function | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Request an asynchronous read of @count bytes from the stream into the buffer | 
					
						
							| 
									
										
										
										
											2008-01-21 13:08:23 +00:00
										 |  |  |  |  * starting at @buffer. When the operation is finished @callback will be called.  | 
					
						
							|  |  |  |  |  * You can then call g_input_stream_read_finish() to get the result of the  | 
					
						
							|  |  |  |  |  * operation. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-08-11 14:52:56 +02:00
										 |  |  |  |  * During an async request no other sync and async calls are allowed on @stream, and will | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * result in %G_IO_ERROR_PENDING errors.  | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * A value of @count larger than %G_MAXSSIZE will cause a %G_IO_ERROR_INVALID_ARGUMENT error. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * On success, the number of bytes read into the buffer will be passed to the | 
					
						
							|  |  |  |  |  * callback. It is not an error if this is not the same as the requested size, as it | 
					
						
							|  |  |  |  |  * can happen e.g. near the end of a file, but generally we try to read | 
					
						
							|  |  |  |  |  * as many bytes as requested. Zero is returned on end of file | 
					
						
							|  |  |  |  |  * (or if @count is zero),  but never otherwise. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Any outstanding i/o request with higher priority (lower numerical value) will | 
					
						
							|  |  |  |  |  * be executed before an outstanding request with lower priority. Default | 
					
						
							|  |  |  |  |  * priority is %G_PRIORITY_DEFAULT. | 
					
						
							|  |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2017-04-13 10:23:50 +01:00
										 |  |  |  |  * The asynchronous methods have a default fallback that uses threads to implement | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * asynchronicity, so they are optional for inheriting classes. However, if you | 
					
						
							|  |  |  |  |  * override one you must override all. | 
					
						
							|  |  |  |  |  **/ | 
					
						
							|  |  |  |  | void | 
					
						
							|  |  |  |  | g_input_stream_read_async (GInputStream        *stream, | 
					
						
							|  |  |  |  | 			   void                *buffer, | 
					
						
							|  |  |  |  | 			   gsize                count, | 
					
						
							|  |  |  |  | 			   int                  io_priority, | 
					
						
							|  |  |  |  | 			   GCancellable        *cancellable, | 
					
						
							|  |  |  |  | 			   GAsyncReadyCallback  callback, | 
					
						
							|  |  |  |  | 			   gpointer             user_data) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GInputStreamClass *class; | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  |   GError *error = NULL; | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   g_return_if_fail (G_IS_INPUT_STREAM (stream)); | 
					
						
							|  |  |  |  |   g_return_if_fail (buffer != NULL); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (count == 0) | 
					
						
							|  |  |  |  |     { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |       GTask *task; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |       task = g_task_new (stream, cancellable, callback, user_data); | 
					
						
							|  |  |  |  |       g_task_set_source_tag (task, g_input_stream_read_async); | 
					
						
							|  |  |  |  |       g_task_return_int (task, 0); | 
					
						
							|  |  |  |  |       g_object_unref (task); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |       return; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  |    | 
					
						
							|  |  |  |  |   if (((gssize) count) < 0) | 
					
						
							|  |  |  |  |     { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |       g_task_report_new_error (stream, callback, user_data, | 
					
						
							|  |  |  |  |                                g_input_stream_read_async, | 
					
						
							|  |  |  |  |                                G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT, | 
					
						
							|  |  |  |  |                                _("Too large count value passed to %s"), | 
					
						
							|  |  |  |  |                                G_STRFUNC); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |       return; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  |   if (!g_input_stream_set_pending (stream, &error)) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |     { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |       g_task_report_error (stream, callback, user_data, | 
					
						
							|  |  |  |  |                            g_input_stream_read_async, | 
					
						
							|  |  |  |  |                            error); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |       return; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   class = G_INPUT_STREAM_GET_CLASS (stream); | 
					
						
							|  |  |  |  |   stream->priv->outstanding_callback = callback; | 
					
						
							|  |  |  |  |   g_object_ref (stream); | 
					
						
							|  |  |  |  |   class->read_async (stream, buffer, count, io_priority, cancellable, | 
					
						
							|  |  |  |  | 		     async_ready_callback_wrapper, user_data); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_input_stream_read_finish: | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * @stream: a #GInputStream. | 
					
						
							|  |  |  |  |  * @result: a #GAsyncResult. | 
					
						
							| 
									
										
										
										
											2011-08-29 14:49:32 -04:00
										 |  |  |  |  * @error: a #GError location to store the error occurring, or %NULL to  | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * ignore. | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  *  | 
					
						
							|  |  |  |  |  * Finishes an asynchronous stream read operation.  | 
					
						
							|  |  |  |  |  *  | 
					
						
							| 
									
										
										
										
											2012-03-30 14:44:05 +01:00
										 |  |  |  |  * Returns: number of bytes read in, or -1 on error, or 0 on end of file. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | gssize | 
					
						
							| 
									
										
										
										
											2007-11-29 07:17:59 +00:00
										 |  |  |  | g_input_stream_read_finish (GInputStream  *stream, | 
					
						
							|  |  |  |  | 			    GAsyncResult  *result, | 
					
						
							|  |  |  |  | 			    GError       **error) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   GInputStreamClass *class; | 
					
						
							|  |  |  |  |    | 
					
						
							|  |  |  |  |   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), -1); | 
					
						
							|  |  |  |  |   g_return_val_if_fail (G_IS_ASYNC_RESULT (result), -1); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-10 09:00:45 -04:00
										 |  |  |  |   if (g_async_result_legacy_propagate_error (result, error)) | 
					
						
							|  |  |  |  |     return -1; | 
					
						
							| 
									
										
										
										
											2012-05-10 11:09:52 -04:00
										 |  |  |  |   else if (g_async_result_is_tagged (result, g_input_stream_read_async)) | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |     return g_task_propagate_int (G_TASK (result), error); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   class = G_INPUT_STREAM_GET_CLASS (stream); | 
					
						
							|  |  |  |  |   return class->read_finish (stream, result, error); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-29 11:40:46 -04:00
										 |  |  |  | typedef struct | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   gchar *buffer; | 
					
						
							|  |  |  |  |   gsize to_read; | 
					
						
							|  |  |  |  |   gsize bytes_read; | 
					
						
							|  |  |  |  | } AsyncReadAll; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							|  |  |  |  | free_async_read_all (gpointer data) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   g_slice_free (AsyncReadAll, data); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							|  |  |  |  | read_all_callback (GObject      *stream, | 
					
						
							|  |  |  |  |                    GAsyncResult *result, | 
					
						
							|  |  |  |  |                    gpointer      user_data) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GTask *task = user_data; | 
					
						
							|  |  |  |  |   AsyncReadAll *data = g_task_get_task_data (task); | 
					
						
							|  |  |  |  |   gboolean got_eof = FALSE; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (result) | 
					
						
							|  |  |  |  |     { | 
					
						
							|  |  |  |  |       GError *error = NULL; | 
					
						
							|  |  |  |  |       gssize nread; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |       nread = g_input_stream_read_finish (G_INPUT_STREAM (stream), result, &error); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |       if (nread == -1) | 
					
						
							|  |  |  |  |         { | 
					
						
							|  |  |  |  |           g_task_return_error (task, error); | 
					
						
							|  |  |  |  |           g_object_unref (task); | 
					
						
							|  |  |  |  |           return; | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |       g_assert_cmpint (nread, <=, data->to_read); | 
					
						
							|  |  |  |  |       data->to_read -= nread; | 
					
						
							|  |  |  |  |       data->bytes_read += nread; | 
					
						
							|  |  |  |  |       got_eof = (nread == 0); | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (got_eof || data->to_read == 0) | 
					
						
							|  |  |  |  |     { | 
					
						
							|  |  |  |  |       g_task_return_boolean (task, TRUE); | 
					
						
							|  |  |  |  |       g_object_unref (task); | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   else | 
					
						
							|  |  |  |  |     g_input_stream_read_async (G_INPUT_STREAM (stream), | 
					
						
							|  |  |  |  |                                data->buffer + data->bytes_read, | 
					
						
							|  |  |  |  |                                data->to_read, | 
					
						
							|  |  |  |  |                                g_task_get_priority (task), | 
					
						
							|  |  |  |  |                                g_task_get_cancellable (task), | 
					
						
							|  |  |  |  |                                read_all_callback, task); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							|  |  |  |  | read_all_async_thread (GTask        *task, | 
					
						
							|  |  |  |  |                        gpointer      source_object, | 
					
						
							|  |  |  |  |                        gpointer      task_data, | 
					
						
							|  |  |  |  |                        GCancellable *cancellable) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GInputStream *stream = source_object; | 
					
						
							|  |  |  |  |   AsyncReadAll *data = task_data; | 
					
						
							|  |  |  |  |   GError *error = NULL; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (g_input_stream_read_all (stream, data->buffer, data->to_read, &data->bytes_read, | 
					
						
							|  |  |  |  |                                g_task_get_cancellable (task), &error)) | 
					
						
							|  |  |  |  |     g_task_return_boolean (task, TRUE); | 
					
						
							|  |  |  |  |   else | 
					
						
							|  |  |  |  |     g_task_return_error (task, error); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_input_stream_read_all_async: | 
					
						
							|  |  |  |  |  * @stream: A #GInputStream | 
					
						
							| 
									
										
										
										
											2017-04-13 10:24:11 +01:00
										 |  |  |  |  * @buffer: (array length=count) (element-type guint8) (out caller-allocates): | 
					
						
							| 
									
										
										
										
											2024-09-08 10:15:00 +02:00
										 |  |  |  |  *   a buffer to read data into (which should be at least count bytes long) | 
					
						
							| 
									
										
										
										
											2021-04-07 04:13:26 +09:00
										 |  |  |  |  * @count: (in): the number of bytes that will be read from the stream | 
					
						
							| 
									
										
										
										
											2024-03-22 00:51:44 +00:00
										 |  |  |  |  * @io_priority: the [I/O priority](iface.AsyncResult.html#io-priority) of the request | 
					
						
							| 
									
										
										
										
											2016-10-28 18:29:02 -07:00
										 |  |  |  |  * @cancellable: (nullable): optional #GCancellable object, %NULL to ignore | 
					
						
							| 
									
										
										
										
											2023-02-20 14:43:02 -06:00
										 |  |  |  |  * @callback: (scope async): a #GAsyncReadyCallback | 
					
						
							|  |  |  |  |  *   to call when the request is satisfied | 
					
						
							|  |  |  |  |  * @user_data: the data to pass to callback function | 
					
						
							| 
									
										
										
										
											2014-09-29 11:40:46 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Request an asynchronous read of @count bytes from the stream into the | 
					
						
							|  |  |  |  |  * buffer starting at @buffer. | 
					
						
							|  |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2024-09-08 10:16:25 +02:00
										 |  |  |  |  * This is the asynchronous equivalent of [method@InputStream.read_all]. | 
					
						
							| 
									
										
										
										
											2014-09-29 11:40:46 -04:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2024-09-08 10:16:25 +02:00
										 |  |  |  |  * Call [method@InputStream.read_all_finish] to collect the result. | 
					
						
							| 
									
										
										
										
											2014-09-29 11:40:46 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Any outstanding I/O request with higher priority (lower numerical | 
					
						
							|  |  |  |  |  * value) will be executed before an outstanding request with lower | 
					
						
							|  |  |  |  |  * priority. Default priority is %G_PRIORITY_DEFAULT. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Since: 2.44 | 
					
						
							|  |  |  |  |  **/ | 
					
						
							|  |  |  |  | void | 
					
						
							|  |  |  |  | g_input_stream_read_all_async (GInputStream        *stream, | 
					
						
							|  |  |  |  |                                void                *buffer, | 
					
						
							|  |  |  |  |                                gsize                count, | 
					
						
							|  |  |  |  |                                int                  io_priority, | 
					
						
							|  |  |  |  |                                GCancellable        *cancellable, | 
					
						
							|  |  |  |  |                                GAsyncReadyCallback  callback, | 
					
						
							|  |  |  |  |                                gpointer             user_data) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   AsyncReadAll *data; | 
					
						
							|  |  |  |  |   GTask *task; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   g_return_if_fail (G_IS_INPUT_STREAM (stream)); | 
					
						
							|  |  |  |  |   g_return_if_fail (buffer != NULL || count == 0); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   task = g_task_new (stream, cancellable, callback, user_data); | 
					
						
							|  |  |  |  |   data = g_slice_new0 (AsyncReadAll); | 
					
						
							|  |  |  |  |   data->buffer = buffer; | 
					
						
							|  |  |  |  |   data->to_read = count; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-16 19:39:38 -04:00
										 |  |  |  |   g_task_set_source_tag (task, g_input_stream_read_all_async); | 
					
						
							| 
									
										
										
										
											2014-09-29 11:40:46 -04:00
										 |  |  |  |   g_task_set_task_data (task, data, free_async_read_all); | 
					
						
							|  |  |  |  |   g_task_set_priority (task, io_priority); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   /* If async reads are going to be handled via the threadpool anyway
 | 
					
						
							|  |  |  |  |    * then we may as well do it with a single dispatch instead of | 
					
						
							|  |  |  |  |    * bouncing in and out. | 
					
						
							|  |  |  |  |    */ | 
					
						
							|  |  |  |  |   if (g_input_stream_async_read_is_via_threads (stream)) | 
					
						
							|  |  |  |  |     { | 
					
						
							|  |  |  |  |       g_task_run_in_thread (task, read_all_async_thread); | 
					
						
							|  |  |  |  |       g_object_unref (task); | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  |   else | 
					
						
							|  |  |  |  |     read_all_callback (G_OBJECT (stream), NULL, task); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_input_stream_read_all_finish: | 
					
						
							|  |  |  |  |  * @stream: a #GInputStream | 
					
						
							|  |  |  |  |  * @result: a #GAsyncResult | 
					
						
							|  |  |  |  |  * @bytes_read: (out): location to store the number of bytes that was read from the stream | 
					
						
							|  |  |  |  |  * @error: a #GError location to store the error occurring, or %NULL to ignore | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Finishes an asynchronous stream read operation started with | 
					
						
							| 
									
										
										
										
											2024-09-08 10:16:25 +02:00
										 |  |  |  |  * [method@InputStream.read_all_async]. | 
					
						
							| 
									
										
										
										
											2014-09-29 11:40:46 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * As a special exception to the normal conventions for functions that | 
					
						
							|  |  |  |  |  * use #GError, if this function returns %FALSE (and sets @error) then | 
					
						
							|  |  |  |  |  * @bytes_read will be set to the number of bytes that were successfully | 
					
						
							|  |  |  |  |  * read before the error was encountered.  This functionality is only | 
					
						
							|  |  |  |  |  * available from C.  If you need it from another language then you must | 
					
						
							|  |  |  |  |  * write your own loop around g_input_stream_read_async(). | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Returns: %TRUE on success, %FALSE if there was an error | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Since: 2.44 | 
					
						
							|  |  |  |  |  **/ | 
					
						
							|  |  |  |  | gboolean | 
					
						
							|  |  |  |  | g_input_stream_read_all_finish (GInputStream  *stream, | 
					
						
							|  |  |  |  |                                 GAsyncResult  *result, | 
					
						
							|  |  |  |  |                                 gsize         *bytes_read, | 
					
						
							|  |  |  |  |                                 GError       **error) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GTask *task; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), FALSE); | 
					
						
							|  |  |  |  |   g_return_val_if_fail (g_task_is_valid (result, stream), FALSE); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   task = G_TASK (result); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (bytes_read) | 
					
						
							|  |  |  |  |     { | 
					
						
							|  |  |  |  |       AsyncReadAll *data = g_task_get_task_data (task); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |       *bytes_read = data->bytes_read; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   return g_task_propagate_boolean (task, error); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-05 09:19:17 -04:00
										 |  |  |  | static void | 
					
						
							|  |  |  |  | read_bytes_callback (GObject      *stream, | 
					
						
							|  |  |  |  | 		     GAsyncResult *result, | 
					
						
							|  |  |  |  | 		     gpointer      user_data) | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   GTask *task = user_data; | 
					
						
							|  |  |  |  |   guchar *buf = g_task_get_task_data (task); | 
					
						
							| 
									
										
										
										
											2012-04-05 09:19:17 -04:00
										 |  |  |  |   GError *error = NULL; | 
					
						
							|  |  |  |  |   gssize nread; | 
					
						
							|  |  |  |  |   GBytes *bytes = NULL; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   nread = g_input_stream_read_finish (G_INPUT_STREAM (stream), | 
					
						
							|  |  |  |  | 				      result, &error); | 
					
						
							|  |  |  |  |   if (nread == -1) | 
					
						
							|  |  |  |  |     { | 
					
						
							|  |  |  |  |       g_free (buf); | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |       g_task_return_error (task, error); | 
					
						
							| 
									
										
										
										
											2012-04-05 09:19:17 -04:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  |   else if (nread == 0) | 
					
						
							|  |  |  |  |     { | 
					
						
							|  |  |  |  |       g_free (buf); | 
					
						
							|  |  |  |  |       bytes = g_bytes_new_static ("", 0); | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  |   else | 
					
						
							|  |  |  |  |     bytes = g_bytes_new_take (buf, nread); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (bytes) | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |     g_task_return_pointer (task, bytes, (GDestroyNotify)g_bytes_unref); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   g_object_unref (task); | 
					
						
							| 
									
										
										
										
											2012-04-05 09:19:17 -04:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_input_stream_read_bytes_async: | 
					
						
							|  |  |  |  |  * @stream: A #GInputStream. | 
					
						
							|  |  |  |  |  * @count: the number of bytes that will be read from the stream | 
					
						
							| 
									
										
										
										
											2024-03-22 00:51:44 +00:00
										 |  |  |  |  * @io_priority: the [I/O priority](iface.AsyncResult.html#io-priority) of the request | 
					
						
							| 
									
										
										
										
											2016-10-28 18:29:02 -07:00
										 |  |  |  |  * @cancellable: (nullable): optional #GCancellable object, %NULL to ignore. | 
					
						
							| 
									
										
										
										
											2023-02-20 14:43:02 -06:00
										 |  |  |  |  * @callback: (scope async): a #GAsyncReadyCallback | 
					
						
							|  |  |  |  |  *   to call when the request is satisfied | 
					
						
							|  |  |  |  |  * @user_data: the data to pass to callback function | 
					
						
							| 
									
										
										
										
											2012-04-05 09:19:17 -04:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Request an asynchronous read of @count bytes from the stream into a | 
					
						
							|  |  |  |  |  * new #GBytes. When the operation is finished @callback will be | 
					
						
							|  |  |  |  |  * called. You can then call g_input_stream_read_bytes_finish() to get the | 
					
						
							|  |  |  |  |  * result of the operation. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * During an async request no other sync and async calls are allowed | 
					
						
							|  |  |  |  |  * on @stream, and will result in %G_IO_ERROR_PENDING errors. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * A value of @count larger than %G_MAXSSIZE will cause a | 
					
						
							|  |  |  |  |  * %G_IO_ERROR_INVALID_ARGUMENT error. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * On success, the new #GBytes will be passed to the callback. It is | 
					
						
							|  |  |  |  |  * not an error if this is smaller than the requested size, as it can | 
					
						
							|  |  |  |  |  * happen e.g. near the end of a file, but generally we try to read as | 
					
						
							|  |  |  |  |  * many bytes as requested. Zero is returned on end of file (or if | 
					
						
							|  |  |  |  |  * @count is zero), but never otherwise. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Any outstanding I/O request with higher priority (lower numerical | 
					
						
							|  |  |  |  |  * value) will be executed before an outstanding request with lower | 
					
						
							|  |  |  |  |  * priority. Default priority is %G_PRIORITY_DEFAULT. | 
					
						
							| 
									
										
										
										
											2014-07-08 13:13:51 -03:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Since: 2.34 | 
					
						
							| 
									
										
										
										
											2012-04-05 09:19:17 -04:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | void | 
					
						
							|  |  |  |  | g_input_stream_read_bytes_async (GInputStream          *stream, | 
					
						
							|  |  |  |  | 				 gsize                  count, | 
					
						
							|  |  |  |  | 				 int                    io_priority, | 
					
						
							|  |  |  |  | 				 GCancellable          *cancellable, | 
					
						
							|  |  |  |  | 				 GAsyncReadyCallback    callback, | 
					
						
							|  |  |  |  | 				 gpointer               user_data) | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   GTask *task; | 
					
						
							| 
									
										
										
										
											2012-04-05 09:19:17 -04:00
										 |  |  |  |   guchar *buf; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   task = g_task_new (stream, cancellable, callback, user_data); | 
					
						
							| 
									
										
										
										
											2016-06-16 19:39:38 -04:00
										 |  |  |  |   g_task_set_source_tag (task, g_input_stream_read_bytes_async); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-05 09:19:17 -04:00
										 |  |  |  |   buf = g_malloc (count); | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   g_task_set_task_data (task, buf, NULL); | 
					
						
							| 
									
										
										
										
											2012-04-05 09:19:17 -04:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   g_input_stream_read_async (stream, buf, count, | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |                              io_priority, cancellable, | 
					
						
							|  |  |  |  |                              read_bytes_callback, task); | 
					
						
							| 
									
										
										
										
											2012-04-05 09:19:17 -04:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_input_stream_read_bytes_finish: | 
					
						
							|  |  |  |  |  * @stream: a #GInputStream. | 
					
						
							|  |  |  |  |  * @result: a #GAsyncResult. | 
					
						
							|  |  |  |  |  * @error: a #GError location to store the error occurring, or %NULL to | 
					
						
							|  |  |  |  |  *   ignore. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Finishes an asynchronous stream read-into-#GBytes operation. | 
					
						
							|  |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2017-04-13 10:24:32 +01:00
										 |  |  |  |  * Returns: (transfer full): the newly-allocated #GBytes, or %NULL on error | 
					
						
							| 
									
										
										
										
											2014-07-08 13:13:51 -03:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Since: 2.34 | 
					
						
							| 
									
										
										
										
											2012-04-05 09:19:17 -04:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | GBytes * | 
					
						
							|  |  |  |  | g_input_stream_read_bytes_finish (GInputStream  *stream, | 
					
						
							|  |  |  |  | 				  GAsyncResult  *result, | 
					
						
							|  |  |  |  | 				  GError       **error) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), NULL); | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   g_return_val_if_fail (g_task_is_valid (result, stream), NULL); | 
					
						
							| 
									
										
										
										
											2012-04-05 09:19:17 -04:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   return g_task_propagate_pointer (G_TASK (result), error); | 
					
						
							| 
									
										
										
										
											2012-04-05 09:19:17 -04:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_input_stream_skip_async: | 
					
						
							|  |  |  |  |  * @stream: A #GInputStream. | 
					
						
							|  |  |  |  |  * @count: the number of bytes that will be skipped from the stream | 
					
						
							| 
									
										
										
										
											2024-03-22 00:51:44 +00:00
										 |  |  |  |  * @io_priority: the [I/O priority](iface.AsyncResult.html#io-priority) of the request | 
					
						
							| 
									
										
										
										
											2016-10-28 18:29:02 -07:00
										 |  |  |  |  * @cancellable: (nullable): optional #GCancellable object, %NULL to ignore. | 
					
						
							| 
									
										
										
										
											2023-02-20 14:43:02 -06:00
										 |  |  |  |  * @callback: (scope async): a #GAsyncReadyCallback | 
					
						
							|  |  |  |  |  *   to call when the request is satisfied | 
					
						
							|  |  |  |  |  * @user_data: the data to pass to callback function | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-05-04 00:55:35 +03:00
										 |  |  |  |  * Request an asynchronous skip of @count bytes from the stream. | 
					
						
							| 
									
										
										
										
											2010-08-13 17:19:01 -04:00
										 |  |  |  |  * When the operation is finished @callback will be called. | 
					
						
							|  |  |  |  |  * You can then call g_input_stream_skip_finish() to get the result | 
					
						
							|  |  |  |  |  * of the operation. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-08-13 17:19:01 -04:00
										 |  |  |  |  * During an async request no other sync and async calls are allowed, | 
					
						
							|  |  |  |  |  * and will result in %G_IO_ERROR_PENDING errors. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * A value of @count larger than %G_MAXSSIZE will cause a %G_IO_ERROR_INVALID_ARGUMENT error. | 
					
						
							|  |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-08-13 17:19:01 -04:00
										 |  |  |  |  * On success, the number of bytes skipped will be passed to the callback. | 
					
						
							|  |  |  |  |  * It is not an error if this is not the same as the requested size, as it | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * can happen e.g. near the end of a file, but generally we try to skip | 
					
						
							|  |  |  |  |  * as many bytes as requested. Zero is returned on end of file | 
					
						
							|  |  |  |  |  * (or if @count is zero), but never otherwise. | 
					
						
							|  |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-08-13 17:19:01 -04:00
										 |  |  |  |  * Any outstanding i/o request with higher priority (lower numerical value) | 
					
						
							|  |  |  |  |  * will be executed before an outstanding request with lower priority. | 
					
						
							|  |  |  |  |  * Default priority is %G_PRIORITY_DEFAULT. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-08-13 17:19:01 -04:00
										 |  |  |  |  * The asynchronous methods have a default fallback that uses threads to | 
					
						
							|  |  |  |  |  * implement asynchronicity, so they are optional for inheriting classes. | 
					
						
							|  |  |  |  |  * However, if you override one, you must override all. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | void | 
					
						
							|  |  |  |  | g_input_stream_skip_async (GInputStream        *stream, | 
					
						
							|  |  |  |  | 			   gsize                count, | 
					
						
							|  |  |  |  | 			   int                  io_priority, | 
					
						
							|  |  |  |  | 			   GCancellable        *cancellable, | 
					
						
							|  |  |  |  | 			   GAsyncReadyCallback  callback, | 
					
						
							|  |  |  |  | 			   gpointer             user_data) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GInputStreamClass *class; | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  |   GError *error = NULL; | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   g_return_if_fail (G_IS_INPUT_STREAM (stream)); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (count == 0) | 
					
						
							|  |  |  |  |     { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |       GTask *task; | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |       task = g_task_new (stream, cancellable, callback, user_data); | 
					
						
							|  |  |  |  |       g_task_set_source_tag (task, g_input_stream_skip_async); | 
					
						
							|  |  |  |  |       g_task_return_int (task, 0); | 
					
						
							|  |  |  |  |       g_object_unref (task); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |       return; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  |    | 
					
						
							|  |  |  |  |   if (((gssize) count) < 0) | 
					
						
							|  |  |  |  |     { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |       g_task_report_new_error (stream, callback, user_data, | 
					
						
							|  |  |  |  |                                g_input_stream_skip_async, | 
					
						
							|  |  |  |  |                                G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT, | 
					
						
							|  |  |  |  |                                _("Too large count value passed to %s"), | 
					
						
							|  |  |  |  |                                G_STRFUNC); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |       return; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  |   if (!g_input_stream_set_pending (stream, &error)) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |     { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |       g_task_report_error (stream, callback, user_data, | 
					
						
							|  |  |  |  |                            g_input_stream_skip_async, | 
					
						
							|  |  |  |  |                            error); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |       return; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   class = G_INPUT_STREAM_GET_CLASS (stream); | 
					
						
							|  |  |  |  |   stream->priv->outstanding_callback = callback; | 
					
						
							|  |  |  |  |   g_object_ref (stream); | 
					
						
							|  |  |  |  |   class->skip_async (stream, count, io_priority, cancellable, | 
					
						
							|  |  |  |  | 		     async_ready_callback_wrapper, user_data); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_input_stream_skip_finish: | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * @stream: a #GInputStream. | 
					
						
							|  |  |  |  |  * @result: a #GAsyncResult. | 
					
						
							| 
									
										
										
										
											2011-08-29 14:49:32 -04:00
										 |  |  |  |  * @error: a #GError location to store the error occurring, or %NULL to  | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * ignore. | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  *  | 
					
						
							|  |  |  |  |  * Finishes a stream skip operation. | 
					
						
							|  |  |  |  |  *  | 
					
						
							| 
									
										
										
										
											2019-03-07 17:29:44 +00:00
										 |  |  |  |  * Returns: the size of the bytes skipped, or `-1` on error. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | gssize | 
					
						
							| 
									
										
										
										
											2007-11-29 07:17:59 +00:00
										 |  |  |  | g_input_stream_skip_finish (GInputStream  *stream, | 
					
						
							|  |  |  |  | 			    GAsyncResult  *result, | 
					
						
							|  |  |  |  | 			    GError       **error) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   GInputStreamClass *class; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), -1); | 
					
						
							|  |  |  |  |   g_return_val_if_fail (G_IS_ASYNC_RESULT (result), -1); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-10 09:00:45 -04:00
										 |  |  |  |   if (g_async_result_legacy_propagate_error (result, error)) | 
					
						
							|  |  |  |  |     return -1; | 
					
						
							| 
									
										
										
										
											2012-05-10 11:09:52 -04:00
										 |  |  |  |   else if (g_async_result_is_tagged (result, g_input_stream_skip_async)) | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |     return g_task_propagate_int (G_TASK (result), error); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   class = G_INPUT_STREAM_GET_CLASS (stream); | 
					
						
							|  |  |  |  |   return class->skip_finish (stream, result, error); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_input_stream_close_async: | 
					
						
							|  |  |  |  |  * @stream: A #GInputStream. | 
					
						
							| 
									
										
										
										
											2024-03-22 00:51:44 +00:00
										 |  |  |  |  * @io_priority: the [I/O priority](iface.AsyncResult.html#io-priority) of the request | 
					
						
							| 
									
										
										
										
											2016-10-28 18:29:02 -07:00
										 |  |  |  |  * @cancellable: (nullable): optional cancellable object | 
					
						
							| 
									
										
										
										
											2023-02-20 14:43:02 -06:00
										 |  |  |  |  * @callback: (scope async): a #GAsyncReadyCallback | 
					
						
							|  |  |  |  |  *   to call when the request is satisfied | 
					
						
							|  |  |  |  |  * @user_data: the data to pass to callback function | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Requests an asynchronous closes of the stream, releasing resources related to it. | 
					
						
							| 
									
										
										
										
											2008-01-21 13:08:23 +00:00
										 |  |  |  |  * When the operation is finished @callback will be called.  | 
					
						
							|  |  |  |  |  * You can then call g_input_stream_close_finish() to get the result of the  | 
					
						
							|  |  |  |  |  * operation. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * For behaviour details see g_input_stream_close(). | 
					
						
							|  |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2017-04-13 10:23:50 +01:00
										 |  |  |  |  * The asynchronous methods have a default fallback that uses threads to implement | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * asynchronicity, so they are optional for inheriting classes. However, if you | 
					
						
							|  |  |  |  |  * override one you must override all. | 
					
						
							|  |  |  |  |  **/ | 
					
						
							|  |  |  |  | void | 
					
						
							| 
									
										
										
										
											2007-11-29 07:17:59 +00:00
										 |  |  |  | g_input_stream_close_async (GInputStream        *stream, | 
					
						
							|  |  |  |  | 			    int                  io_priority, | 
					
						
							|  |  |  |  | 			    GCancellable        *cancellable, | 
					
						
							|  |  |  |  | 			    GAsyncReadyCallback  callback, | 
					
						
							|  |  |  |  | 			    gpointer             user_data) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   GInputStreamClass *class; | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  |   GError *error = NULL; | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   g_return_if_fail (G_IS_INPUT_STREAM (stream)); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (stream->priv->closed) | 
					
						
							|  |  |  |  |     { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |       GTask *task; | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |       task = g_task_new (stream, cancellable, callback, user_data); | 
					
						
							|  |  |  |  |       g_task_set_source_tag (task, g_input_stream_close_async); | 
					
						
							|  |  |  |  |       g_task_return_boolean (task, TRUE); | 
					
						
							|  |  |  |  |       g_object_unref (task); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |       return; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  |   if (!g_input_stream_set_pending (stream, &error)) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |     { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |       g_task_report_error (stream, callback, user_data, | 
					
						
							|  |  |  |  |                            g_input_stream_close_async, | 
					
						
							|  |  |  |  |                            error); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |       return; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  |    | 
					
						
							|  |  |  |  |   class = G_INPUT_STREAM_GET_CLASS (stream); | 
					
						
							|  |  |  |  |   stream->priv->outstanding_callback = callback; | 
					
						
							|  |  |  |  |   g_object_ref (stream); | 
					
						
							|  |  |  |  |   class->close_async (stream, io_priority, cancellable, | 
					
						
							|  |  |  |  | 		      async_ready_close_callback_wrapper, user_data); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_input_stream_close_finish: | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * @stream: a #GInputStream. | 
					
						
							|  |  |  |  |  * @result: a #GAsyncResult. | 
					
						
							| 
									
										
										
										
											2011-08-29 14:49:32 -04:00
										 |  |  |  |  * @error: a #GError location to store the error occurring, or %NULL to  | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * ignore. | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  *  | 
					
						
							|  |  |  |  |  * Finishes closing a stream asynchronously, started from g_input_stream_close_async(). | 
					
						
							|  |  |  |  |  *  | 
					
						
							|  |  |  |  |  * Returns: %TRUE if the stream was closed successfully. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | gboolean | 
					
						
							| 
									
										
										
										
											2007-11-29 07:17:59 +00:00
										 |  |  |  | g_input_stream_close_finish (GInputStream  *stream, | 
					
						
							|  |  |  |  | 			     GAsyncResult  *result, | 
					
						
							|  |  |  |  | 			     GError       **error) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   GInputStreamClass *class; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), FALSE); | 
					
						
							|  |  |  |  |   g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-10 09:00:45 -04:00
										 |  |  |  |   if (g_async_result_legacy_propagate_error (result, error)) | 
					
						
							|  |  |  |  |     return FALSE; | 
					
						
							| 
									
										
										
										
											2012-05-10 11:09:52 -04:00
										 |  |  |  |   else if (g_async_result_is_tagged (result, g_input_stream_close_async)) | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |     return g_task_propagate_boolean (G_TASK (result), error); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   class = G_INPUT_STREAM_GET_CLASS (stream); | 
					
						
							|  |  |  |  |   return class->close_finish (stream, result, error); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_input_stream_is_closed: | 
					
						
							|  |  |  |  |  * @stream: input stream. | 
					
						
							|  |  |  |  |  *  | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * Checks if an input stream is closed. | 
					
						
							|  |  |  |  |  *  | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * Returns: %TRUE if the stream is closed. | 
					
						
							|  |  |  |  |  **/ | 
					
						
							|  |  |  |  | gboolean | 
					
						
							|  |  |  |  | g_input_stream_is_closed (GInputStream *stream) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), TRUE); | 
					
						
							|  |  |  |  |    | 
					
						
							|  |  |  |  |   return stream->priv->closed; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  |   | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_input_stream_has_pending: | 
					
						
							|  |  |  |  |  * @stream: input stream. | 
					
						
							|  |  |  |  |  *  | 
					
						
							| 
									
										
										
										
											2007-11-27 14:00:13 +00:00
										 |  |  |  |  * Checks if an input stream has pending actions. | 
					
						
							|  |  |  |  |  *  | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  * Returns: %TRUE if @stream has pending actions. | 
					
						
							|  |  |  |  |  **/   | 
					
						
							|  |  |  |  | gboolean | 
					
						
							|  |  |  |  | g_input_stream_has_pending (GInputStream *stream) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), TRUE); | 
					
						
							|  |  |  |  |    | 
					
						
							|  |  |  |  |   return stream->priv->pending; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_input_stream_set_pending: | 
					
						
							|  |  |  |  |  * @stream: input stream | 
					
						
							| 
									
										
										
										
											2011-08-29 14:49:32 -04:00
										 |  |  |  |  * @error: a #GError location to store the error occurring, or %NULL to  | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  |  * ignore. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  *  | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  |  * Sets @stream to have actions pending. If the pending flag is | 
					
						
							|  |  |  |  |  * already set or @stream is closed, it will return %FALSE and set | 
					
						
							|  |  |  |  |  * @error. | 
					
						
							|  |  |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-02-19 19:35:23 -05:00
										 |  |  |  |  * Returns: %TRUE if pending was previously unset and is now set. | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | gboolean | 
					
						
							|  |  |  |  | g_input_stream_set_pending (GInputStream *stream, GError **error) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), FALSE); | 
					
						
							|  |  |  |  |    | 
					
						
							|  |  |  |  |   if (stream->priv->closed) | 
					
						
							|  |  |  |  |     { | 
					
						
							| 
									
										
										
										
											2008-06-16 16:53:58 +00:00
										 |  |  |  |       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_CLOSED, | 
					
						
							|  |  |  |  |                            _("Stream is already closed")); | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  |       return FALSE; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  |    | 
					
						
							|  |  |  |  |   if (stream->priv->pending) | 
					
						
							|  |  |  |  |     { | 
					
						
							| 
									
										
										
										
											2008-06-16 16:53:58 +00:00
										 |  |  |  |       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_PENDING, | 
					
						
							| 
									
										
										
										
											2008-02-25 14:31:19 +00:00
										 |  |  |  | 		/* Translators: This is an error you get if there is already an
 | 
					
						
							|  |  |  |  | 		 * operation running against this stream when you try to start | 
					
						
							|  |  |  |  | 		 * one */ | 
					
						
							|  |  |  |  | 		 _("Stream has outstanding operation")); | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  |       return FALSE; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  |    | 
					
						
							|  |  |  |  |   stream->priv->pending = TRUE; | 
					
						
							|  |  |  |  |   return TRUE; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | /**
 | 
					
						
							|  |  |  |  |  * g_input_stream_clear_pending: | 
					
						
							|  |  |  |  |  * @stream: input stream | 
					
						
							|  |  |  |  |  *  | 
					
						
							|  |  |  |  |  * Clears the pending flag on @stream. | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  **/ | 
					
						
							|  |  |  |  | void | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  | g_input_stream_clear_pending (GInputStream *stream) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   g_return_if_fail (G_IS_INPUT_STREAM (stream)); | 
					
						
							|  |  |  |  |    | 
					
						
							| 
									
										
										
										
											2007-12-04 08:57:04 +00:00
										 |  |  |  |   stream->priv->pending = FALSE; | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-20 12:54:09 -05:00
										 |  |  |  | /*< internal >
 | 
					
						
							| 
									
										
										
										
											2013-02-23 17:32:31 -06:00
										 |  |  |  |  * g_input_stream_async_read_is_via_threads: | 
					
						
							|  |  |  |  |  * @stream: input stream | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Checks if an input stream's read_async function uses threads. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Returns: %TRUE if @stream's read_async function uses threads. | 
					
						
							|  |  |  |  |  **/ | 
					
						
							|  |  |  |  | gboolean | 
					
						
							|  |  |  |  | g_input_stream_async_read_is_via_threads (GInputStream *stream) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GInputStreamClass *class; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), FALSE); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   class = G_INPUT_STREAM_GET_CLASS (stream); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   return (class->read_async == g_input_stream_real_read_async && | 
					
						
							|  |  |  |  |       !(G_IS_POLLABLE_INPUT_STREAM (stream) && | 
					
						
							|  |  |  |  |         g_pollable_input_stream_can_poll (G_POLLABLE_INPUT_STREAM (stream)))); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-20 08:09:33 -05:00
										 |  |  |  | /*< internal >
 | 
					
						
							|  |  |  |  |  * g_input_stream_async_close_is_via_threads: | 
					
						
							|  |  |  |  |  * @stream: input stream | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Checks if an input stream's close_async function uses threads. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Returns: %TRUE if @stream's close_async function uses threads. | 
					
						
							|  |  |  |  |  **/ | 
					
						
							|  |  |  |  | gboolean | 
					
						
							|  |  |  |  | g_input_stream_async_close_is_via_threads (GInputStream *stream) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GInputStreamClass *class; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), FALSE); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   class = G_INPUT_STREAM_GET_CLASS (stream); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   return class->close_async == g_input_stream_real_close_async; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | /********************************************
 | 
					
						
							|  |  |  |  |  *   Default implementation of async ops    * | 
					
						
							|  |  |  |  |  ********************************************/ | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   void   *buffer; | 
					
						
							|  |  |  |  |   gsize   count; | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | } ReadData; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-27 09:27:38 -04:00
										 |  |  |  | static void | 
					
						
							|  |  |  |  | free_read_data (ReadData *op) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   g_slice_free (ReadData, op); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | static void | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  | read_async_thread (GTask        *task, | 
					
						
							|  |  |  |  |                    gpointer      source_object, | 
					
						
							|  |  |  |  |                    gpointer      task_data, | 
					
						
							|  |  |  |  |                    GCancellable *cancellable) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   GInputStream *stream = source_object; | 
					
						
							|  |  |  |  |   ReadData *op = task_data; | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   GInputStreamClass *class; | 
					
						
							|  |  |  |  |   GError *error = NULL; | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   gssize nread; | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   class = G_INPUT_STREAM_GET_CLASS (stream); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   nread = class->read_fn (stream, | 
					
						
							|  |  |  |  |                           op->buffer, op->count, | 
					
						
							|  |  |  |  |                           g_task_get_cancellable (task), | 
					
						
							|  |  |  |  |                           &error); | 
					
						
							|  |  |  |  |   if (nread == -1) | 
					
						
							|  |  |  |  |     g_task_return_error (task, error); | 
					
						
							|  |  |  |  |   else | 
					
						
							|  |  |  |  |     g_task_return_int (task, nread); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-04 16:46:29 -05:00
										 |  |  |  | static void read_async_pollable (GPollableInputStream *stream, | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |                                  GTask                *task); | 
					
						
							| 
									
										
										
										
											2012-02-04 16:46:29 -05:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | static gboolean | 
					
						
							|  |  |  |  | read_async_pollable_ready (GPollableInputStream *stream, | 
					
						
							|  |  |  |  | 			   gpointer              user_data) | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   GTask *task = user_data; | 
					
						
							| 
									
										
										
										
											2012-02-04 16:46:29 -05:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   read_async_pollable (stream, task); | 
					
						
							| 
									
										
										
										
											2012-02-04 16:46:29 -05:00
										 |  |  |  |   return FALSE; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							|  |  |  |  | read_async_pollable (GPollableInputStream *stream, | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |                      GTask                *task) | 
					
						
							| 
									
										
										
										
											2012-02-04 16:46:29 -05:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   ReadData *op = g_task_get_task_data (task); | 
					
						
							| 
									
										
										
										
											2012-02-04 16:46:29 -05:00
										 |  |  |  |   GError *error = NULL; | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   gssize nread; | 
					
						
							| 
									
										
										
										
											2012-02-04 16:46:29 -05:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   if (g_task_return_error_if_cancelled (task)) | 
					
						
							|  |  |  |  |     return; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   nread = G_POLLABLE_INPUT_STREAM_GET_INTERFACE (stream)-> | 
					
						
							|  |  |  |  |     read_nonblocking (stream, op->buffer, op->count, &error); | 
					
						
							| 
									
										
										
										
											2012-02-04 16:46:29 -05:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_WOULD_BLOCK)) | 
					
						
							|  |  |  |  |     { | 
					
						
							|  |  |  |  |       GSource *source; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |       g_error_free (error); | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |       source = g_pollable_input_stream_create_source (stream, | 
					
						
							|  |  |  |  |                                                       g_task_get_cancellable (task)); | 
					
						
							|  |  |  |  |       g_task_attach_source (task, source, | 
					
						
							|  |  |  |  |                             (GSourceFunc) read_async_pollable_ready); | 
					
						
							| 
									
										
										
										
											2012-02-04 16:46:29 -05:00
										 |  |  |  |       g_source_unref (source); | 
					
						
							|  |  |  |  |       return; | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   if (nread == -1) | 
					
						
							|  |  |  |  |     g_task_return_error (task, error); | 
					
						
							| 
									
										
										
										
											2012-02-04 16:46:29 -05:00
										 |  |  |  |   else | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |     g_task_return_int (task, nread); | 
					
						
							|  |  |  |  |   /* g_input_stream_real_read_async() unrefs task */ | 
					
						
							| 
									
										
										
										
											2012-02-04 16:46:29 -05:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-12 17:39:37 -05:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | static void | 
					
						
							| 
									
										
										
										
											2007-11-29 07:17:59 +00:00
										 |  |  |  | g_input_stream_real_read_async (GInputStream        *stream, | 
					
						
							|  |  |  |  | 				void                *buffer, | 
					
						
							|  |  |  |  | 				gsize                count, | 
					
						
							|  |  |  |  | 				int                  io_priority, | 
					
						
							|  |  |  |  | 				GCancellable        *cancellable, | 
					
						
							|  |  |  |  | 				GAsyncReadyCallback  callback, | 
					
						
							|  |  |  |  | 				gpointer             user_data) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   GTask *task; | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   ReadData *op; | 
					
						
							|  |  |  |  |    | 
					
						
							| 
									
										
										
										
											2012-04-27 09:27:38 -04:00
										 |  |  |  |   op = g_slice_new0 (ReadData); | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   task = g_task_new (stream, cancellable, callback, user_data); | 
					
						
							| 
									
										
										
										
											2016-06-16 19:39:38 -04:00
										 |  |  |  |   g_task_set_source_tag (task, g_input_stream_real_read_async); | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   g_task_set_task_data (task, op, (GDestroyNotify) free_read_data); | 
					
						
							|  |  |  |  |   g_task_set_priority (task, io_priority); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   op->buffer = buffer; | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   op->count = count; | 
					
						
							| 
									
										
										
										
											2012-02-04 16:46:29 -05:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-23 17:32:31 -06:00
										 |  |  |  |   if (!g_input_stream_async_read_is_via_threads (stream)) | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |     read_async_pollable (G_POLLABLE_INPUT_STREAM (stream), task); | 
					
						
							| 
									
										
										
										
											2012-02-04 16:46:29 -05:00
										 |  |  |  |   else | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |     g_task_run_in_thread (task, read_async_thread); | 
					
						
							|  |  |  |  |   g_object_unref (task); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static gssize | 
					
						
							| 
									
										
										
										
											2007-11-29 07:17:59 +00:00
										 |  |  |  | g_input_stream_real_read_finish (GInputStream  *stream, | 
					
						
							|  |  |  |  | 				 GAsyncResult  *result, | 
					
						
							|  |  |  |  | 				 GError       **error) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   g_return_val_if_fail (g_task_is_valid (result, stream), -1); | 
					
						
							| 
									
										
										
										
											2012-06-11 13:44:19 -04:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   return g_task_propagate_int (G_TASK (result), error); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  | skip_async_thread (GTask        *task, | 
					
						
							|  |  |  |  |                    gpointer      source_object, | 
					
						
							|  |  |  |  |                    gpointer      task_data, | 
					
						
							|  |  |  |  |                    GCancellable *cancellable) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   GInputStream *stream = source_object; | 
					
						
							|  |  |  |  |   gsize count = GPOINTER_TO_SIZE (task_data); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   GInputStreamClass *class; | 
					
						
							|  |  |  |  |   GError *error = NULL; | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   gssize ret; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   class = G_INPUT_STREAM_GET_CLASS (stream); | 
					
						
							|  |  |  |  |   ret = class->skip (stream, count, | 
					
						
							|  |  |  |  |                      g_task_get_cancellable (task), | 
					
						
							|  |  |  |  |                      &error); | 
					
						
							|  |  |  |  |   if (ret == -1) | 
					
						
							|  |  |  |  |     g_task_return_error (task, error); | 
					
						
							|  |  |  |  |   else | 
					
						
							|  |  |  |  |     g_task_return_int (task, ret); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | typedef struct { | 
					
						
							|  |  |  |  |   char buffer[8192]; | 
					
						
							|  |  |  |  |   gsize count; | 
					
						
							|  |  |  |  |   gsize count_skipped; | 
					
						
							|  |  |  |  | } SkipFallbackAsyncData; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							| 
									
										
										
										
											2007-11-29 07:17:59 +00:00
										 |  |  |  | skip_callback_wrapper (GObject      *source_object, | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 		       GAsyncResult *res, | 
					
						
							| 
									
										
										
										
											2007-11-29 07:17:59 +00:00
										 |  |  |  | 		       gpointer      user_data) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							|  |  |  |  |   GInputStreamClass *class; | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   GTask *task = user_data; | 
					
						
							|  |  |  |  |   SkipFallbackAsyncData *data = g_task_get_task_data (task); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   GError *error = NULL; | 
					
						
							|  |  |  |  |   gssize ret; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   ret = g_input_stream_read_finish (G_INPUT_STREAM (source_object), res, &error); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   if (ret > 0) | 
					
						
							|  |  |  |  |     { | 
					
						
							|  |  |  |  |       data->count -= ret; | 
					
						
							|  |  |  |  |       data->count_skipped += ret; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |       if (data->count > 0) | 
					
						
							|  |  |  |  | 	{ | 
					
						
							|  |  |  |  | 	  class = G_INPUT_STREAM_GET_CLASS (source_object); | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  | 	  class->read_async (G_INPUT_STREAM (source_object), | 
					
						
							|  |  |  |  |                              data->buffer, MIN (8192, data->count), | 
					
						
							|  |  |  |  |                              g_task_get_priority (task), | 
					
						
							|  |  |  |  |                              g_task_get_cancellable (task), | 
					
						
							| 
									
										
										
										
											2013-01-16 00:04:58 +01:00
										 |  |  |  |                              skip_callback_wrapper, task); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 	  return; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   if (ret == -1 && | 
					
						
							|  |  |  |  |       g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED) && | 
					
						
							|  |  |  |  |       data->count_skipped) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |     { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |       /* No error, return partial read */ | 
					
						
							|  |  |  |  |       g_clear_error (&error); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   if (error) | 
					
						
							|  |  |  |  |     g_task_return_error (task, error); | 
					
						
							|  |  |  |  |   else | 
					
						
							|  |  |  |  |     g_task_return_int (task, data->count_skipped); | 
					
						
							|  |  |  |  |   g_object_unref (task); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |  } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							|  |  |  |  | g_input_stream_real_skip_async (GInputStream        *stream, | 
					
						
							|  |  |  |  | 				gsize                count, | 
					
						
							|  |  |  |  | 				int                  io_priority, | 
					
						
							|  |  |  |  | 				GCancellable        *cancellable, | 
					
						
							|  |  |  |  | 				GAsyncReadyCallback  callback, | 
					
						
							|  |  |  |  | 				gpointer             user_data) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  |   GInputStreamClass *class; | 
					
						
							|  |  |  |  |   SkipFallbackAsyncData *data; | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   GTask *task; | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   class = G_INPUT_STREAM_GET_CLASS (stream); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   task = g_task_new (stream, cancellable, callback, user_data); | 
					
						
							| 
									
										
										
										
											2016-06-16 19:39:38 -04:00
										 |  |  |  |   g_task_set_source_tag (task, g_input_stream_real_skip_async); | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   g_task_set_priority (task, io_priority); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-23 17:32:31 -06:00
										 |  |  |  |   if (g_input_stream_async_read_is_via_threads (stream)) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |     { | 
					
						
							|  |  |  |  |       /* Read is thread-using async fallback.
 | 
					
						
							|  |  |  |  |        * Make skip use threads too, so that we can use a possible sync skip | 
					
						
							|  |  |  |  |        * implementation. */ | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |       g_task_set_task_data (task, GSIZE_TO_POINTER (count), NULL); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |       g_task_run_in_thread (task, skip_async_thread); | 
					
						
							|  |  |  |  |       g_object_unref (task); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  |   else | 
					
						
							|  |  |  |  |     { | 
					
						
							|  |  |  |  |       /* TODO: Skip fallback uses too much memory, should do multiple read calls */ | 
					
						
							|  |  |  |  |        | 
					
						
							|  |  |  |  |       /* There is a custom async read function, lets use that. */ | 
					
						
							|  |  |  |  |       data = g_new (SkipFallbackAsyncData, 1); | 
					
						
							|  |  |  |  |       data->count = count; | 
					
						
							|  |  |  |  |       data->count_skipped = 0; | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |       g_task_set_task_data (task, data, g_free); | 
					
						
							|  |  |  |  |       g_task_set_check_cancellable (task, FALSE); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |       class->read_async (stream, data->buffer, MIN (8192, count), io_priority, cancellable, | 
					
						
							| 
									
										
										
										
											2013-01-16 00:04:58 +01:00
										 |  |  |  | 			 skip_callback_wrapper, task); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |     } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static gssize | 
					
						
							| 
									
										
										
										
											2007-11-29 07:17:59 +00:00
										 |  |  |  | g_input_stream_real_skip_finish (GInputStream  *stream, | 
					
						
							|  |  |  |  | 				 GAsyncResult  *result, | 
					
						
							|  |  |  |  | 				 GError       **error) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   g_return_val_if_fail (g_task_is_valid (result, stream), -1); | 
					
						
							| 
									
										
										
										
											2012-06-11 13:44:19 -04:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   return g_task_propagate_int (G_TASK (result), error); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  | close_async_thread (GTask        *task, | 
					
						
							|  |  |  |  |                     gpointer      source_object, | 
					
						
							|  |  |  |  |                     gpointer      task_data, | 
					
						
							|  |  |  |  |                     GCancellable *cancellable) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   GInputStream *stream = source_object; | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |   GInputStreamClass *class; | 
					
						
							|  |  |  |  |   GError *error = NULL; | 
					
						
							|  |  |  |  |   gboolean result; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   class = G_INPUT_STREAM_GET_CLASS (stream); | 
					
						
							| 
									
										
										
										
											2009-05-20 13:37:55 +02:00
										 |  |  |  |   if (class->close_fn) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |     { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |       result = class->close_fn (stream, | 
					
						
							|  |  |  |  |                                 g_task_get_cancellable (task), | 
					
						
							|  |  |  |  |                                 &error); | 
					
						
							| 
									
										
										
										
											2009-05-20 13:37:55 +02:00
										 |  |  |  |       if (!result) | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |         { | 
					
						
							|  |  |  |  |           g_task_return_error (task, error); | 
					
						
							|  |  |  |  |           return; | 
					
						
							|  |  |  |  |         } | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |     } | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   g_task_return_boolean (task, TRUE); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static void | 
					
						
							|  |  |  |  | g_input_stream_real_close_async (GInputStream        *stream, | 
					
						
							|  |  |  |  | 				 int                  io_priority, | 
					
						
							|  |  |  |  | 				 GCancellable        *cancellable, | 
					
						
							|  |  |  |  | 				 GAsyncReadyCallback  callback, | 
					
						
							|  |  |  |  | 				 gpointer             user_data) | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   GTask *task; | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   task = g_task_new (stream, cancellable, callback, user_data); | 
					
						
							| 
									
										
										
										
											2016-06-16 19:39:38 -04:00
										 |  |  |  |   g_task_set_source_tag (task, g_input_stream_real_close_async); | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   g_task_set_check_cancellable (task, FALSE); | 
					
						
							|  |  |  |  |   g_task_set_priority (task, io_priority); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  |    | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   g_task_run_in_thread (task, close_async_thread); | 
					
						
							|  |  |  |  |   g_object_unref (task); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | static gboolean | 
					
						
							| 
									
										
										
										
											2007-11-29 07:17:59 +00:00
										 |  |  |  | g_input_stream_real_close_finish (GInputStream  *stream, | 
					
						
							|  |  |  |  | 				  GAsyncResult  *result, | 
					
						
							|  |  |  |  | 				  GError       **error) | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   g_return_val_if_fail (g_task_is_valid (result, stream), FALSE); | 
					
						
							| 
									
										
										
										
											2012-06-11 13:44:19 -04:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-02 15:49:59 -04:00
										 |  |  |  |   return g_task_propagate_boolean (G_TASK (result), error); | 
					
						
							| 
									
										
										
										
											2007-11-26 16:13:05 +00:00
										 |  |  |  | } |