1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2006-2007 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 * Author: Alexander Larsson <alexl@redhat.com>
25 #include "ginputstream.h"
26 #include "gioprivate.h"
27 #include "gseekable.h"
28 #include "gcancellable.h"
29 #include "gasyncresult.h"
31 #include "gpollableinputstream.h"
34 * SECTION:ginputstream
35 * @short_description: Base class for implementing streaming input
38 * #GInputStream has functions to read from a stream (g_input_stream_read()),
39 * to close a stream (g_input_stream_close()) and to skip some content
40 * (g_input_stream_skip()).
42 * To copy the content of an input stream to an output stream without
43 * manually handling the reads and writes, use g_output_stream_splice().
45 * All of these functions have async variants too.
48 struct _GInputStreamPrivate {
51 GAsyncReadyCallback outstanding_callback;
54 G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE (GInputStream, g_input_stream, G_TYPE_OBJECT)
56 static gssize g_input_stream_real_skip (GInputStream *stream,
58 GCancellable *cancellable,
60 static void g_input_stream_real_read_async (GInputStream *stream,
64 GCancellable *cancellable,
65 GAsyncReadyCallback callback,
67 static gssize g_input_stream_real_read_finish (GInputStream *stream,
70 static void g_input_stream_real_skip_async (GInputStream *stream,
73 GCancellable *cancellable,
74 GAsyncReadyCallback callback,
76 static gssize g_input_stream_real_skip_finish (GInputStream *stream,
79 static void g_input_stream_real_close_async (GInputStream *stream,
81 GCancellable *cancellable,
82 GAsyncReadyCallback callback,
84 static gboolean g_input_stream_real_close_finish (GInputStream *stream,
89 g_input_stream_dispose (GObject *object)
93 stream = G_INPUT_STREAM (object);
95 if (!stream->priv->closed)
96 g_input_stream_close (stream, NULL, NULL);
98 G_OBJECT_CLASS (g_input_stream_parent_class)->dispose (object);
103 g_input_stream_class_init (GInputStreamClass *klass)
105 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
107 gobject_class->dispose = g_input_stream_dispose;
109 klass->skip = g_input_stream_real_skip;
110 klass->read_async = g_input_stream_real_read_async;
111 klass->read_finish = g_input_stream_real_read_finish;
112 klass->skip_async = g_input_stream_real_skip_async;
113 klass->skip_finish = g_input_stream_real_skip_finish;
114 klass->close_async = g_input_stream_real_close_async;
115 klass->close_finish = g_input_stream_real_close_finish;
119 g_input_stream_init (GInputStream *stream)
121 stream->priv = g_input_stream_get_instance_private (stream);
125 * g_input_stream_read:
126 * @stream: a #GInputStream.
127 * @buffer: (array length=count) (element-type guint8): a buffer to
128 * read data into (which should be at least count bytes long).
129 * @count: the number of bytes that will be read from the stream
130 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
131 * @error: location to store the error occurring, or %NULL to ignore
133 * Tries to read @count bytes from the stream into the buffer starting at
134 * @buffer. Will block during this read.
136 * If count is zero returns zero and does nothing. A value of @count
137 * larger than %G_MAXSSIZE will cause a %G_IO_ERROR_INVALID_ARGUMENT error.
139 * On success, the number of bytes read into the buffer is returned.
140 * It is not an error if this is not the same as the requested size, as it
141 * can happen e.g. near the end of a file. Zero is returned on end of file
142 * (or if @count is zero), but never otherwise.
144 * The returned @buffer is not a nul-terminated string, it can contain nul bytes
145 * at any position, and this function doesn't nul-terminate the @buffer.
147 * If @cancellable is not %NULL, then the operation can be cancelled by
148 * triggering the cancellable object from another thread. If the operation
149 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned. If an
150 * operation was partially finished when the operation was cancelled the
151 * partial result will be returned, without an error.
153 * On error -1 is returned and @error is set accordingly.
155 * Returns: Number of bytes read, or -1 on error, or 0 on end of file.
158 g_input_stream_read (GInputStream *stream,
161 GCancellable *cancellable,
164 GInputStreamClass *class;
167 g_return_val_if_fail (G_IS_INPUT_STREAM (stream), -1);
168 g_return_val_if_fail (buffer != NULL, 0);
173 if (((gssize) count) < 0)
175 g_set_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
176 _("Too large count value passed to %s"), G_STRFUNC);
180 class = G_INPUT_STREAM_GET_CLASS (stream);
182 if (class->read_fn == NULL)
184 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
185 _("Input stream doesn't implement read"));
189 if (!g_input_stream_set_pending (stream, error))
193 g_cancellable_push_current (cancellable);
195 res = class->read_fn (stream, buffer, count, cancellable, error);
198 g_cancellable_pop_current (cancellable);
200 g_input_stream_clear_pending (stream);
206 * g_input_stream_read_all:
207 * @stream: a #GInputStream.
208 * @buffer: (array length=count) (element-type guint8): a buffer to
209 * read data into (which should be at least count bytes long).
210 * @count: the number of bytes that will be read from the stream
211 * @bytes_read: (out): location to store the number of bytes that was read from the stream
212 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
213 * @error: location to store the error occurring, or %NULL to ignore
215 * Tries to read @count bytes from the stream into the buffer starting at
216 * @buffer. Will block during this read.
218 * This function is similar to g_input_stream_read(), except it tries to
219 * read as many bytes as requested, only stopping on an error or end of stream.
221 * On a successful read of @count bytes, or if we reached the end of the
222 * stream, %TRUE is returned, and @bytes_read is set to the number of bytes
225 * If there is an error during the operation %FALSE is returned and @error
226 * is set to indicate the error status.
228 * As a special exception to the normal conventions for functions that
229 * use #GError, if this function returns %FALSE (and sets @error) then
230 * @bytes_read will be set to the number of bytes that were successfully
231 * read before the error was encountered. This functionality is only
232 * available from C. If you need it from another language then you must
233 * write your own loop around g_input_stream_read().
235 * Returns: %TRUE on success, %FALSE if there was an error
238 g_input_stream_read_all (GInputStream *stream,
242 GCancellable *cancellable,
248 g_return_val_if_fail (G_IS_INPUT_STREAM (stream), FALSE);
249 g_return_val_if_fail (buffer != NULL, FALSE);
252 while (_bytes_read < count)
254 res = g_input_stream_read (stream, (char *)buffer + _bytes_read, count - _bytes_read,
259 *bytes_read = _bytes_read;
270 *bytes_read = _bytes_read;
275 * g_input_stream_read_bytes:
276 * @stream: a #GInputStream.
277 * @count: maximum number of bytes that will be read from the stream. Common
278 * values include 4096 and 8192.
279 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
280 * @error: location to store the error occurring, or %NULL to ignore
282 * Like g_input_stream_read(), this tries to read @count bytes from
283 * the stream in a blocking fashion. However, rather than reading into
284 * a user-supplied buffer, this will create a new #GBytes containing
285 * the data that was read. This may be easier to use from language
288 * If count is zero, returns a zero-length #GBytes and does nothing. A
289 * value of @count larger than %G_MAXSSIZE will cause a
290 * %G_IO_ERROR_INVALID_ARGUMENT error.
292 * On success, a new #GBytes is returned. It is not an error if the
293 * size of this object is not the same as the requested size, as it
294 * can happen e.g. near the end of a file. A zero-length #GBytes is
295 * returned on end of file (or if @count is zero), but never
298 * If @cancellable is not %NULL, then the operation can be cancelled by
299 * triggering the cancellable object from another thread. If the operation
300 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned. If an
301 * operation was partially finished when the operation was cancelled the
302 * partial result will be returned, without an error.
304 * On error %NULL is returned and @error is set accordingly.
306 * Returns: a new #GBytes, or %NULL on error
311 g_input_stream_read_bytes (GInputStream *stream,
313 GCancellable *cancellable,
319 buf = g_malloc (count);
320 nread = g_input_stream_read (stream, buf, count, cancellable, error);
329 return g_bytes_new_static ("", 0);
332 return g_bytes_new_take (buf, nread);
336 * g_input_stream_skip:
337 * @stream: a #GInputStream.
338 * @count: the number of bytes that will be skipped from the stream
339 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
340 * @error: location to store the error occurring, or %NULL to ignore
342 * Tries to skip @count bytes from the stream. Will block during the operation.
344 * This is identical to g_input_stream_read(), from a behaviour standpoint,
345 * but the bytes that are skipped are not returned to the user. Some
346 * streams have an implementation that is more efficient than reading the data.
348 * This function is optional for inherited classes, as the default implementation
349 * emulates it using read.
351 * If @cancellable is not %NULL, then the operation can be cancelled by
352 * triggering the cancellable object from another thread. If the operation
353 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned. If an
354 * operation was partially finished when the operation was cancelled the
355 * partial result will be returned, without an error.
357 * Returns: Number of bytes skipped, or -1 on error
360 g_input_stream_skip (GInputStream *stream,
362 GCancellable *cancellable,
365 GInputStreamClass *class;
368 g_return_val_if_fail (G_IS_INPUT_STREAM (stream), -1);
373 if (((gssize) count) < 0)
375 g_set_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
376 _("Too large count value passed to %s"), G_STRFUNC);
380 class = G_INPUT_STREAM_GET_CLASS (stream);
382 if (!g_input_stream_set_pending (stream, error))
386 g_cancellable_push_current (cancellable);
388 res = class->skip (stream, count, cancellable, error);
391 g_cancellable_pop_current (cancellable);
393 g_input_stream_clear_pending (stream);
399 g_input_stream_real_skip (GInputStream *stream,
401 GCancellable *cancellable,
404 GInputStreamClass *class;
405 gssize ret, read_bytes;
409 if (G_IS_SEEKABLE (stream) && g_seekable_can_seek (G_SEEKABLE (stream)))
411 if (g_seekable_seek (G_SEEKABLE (stream),
419 /* If not seekable, or seek failed, fall back to reading data: */
421 class = G_INPUT_STREAM_GET_CLASS (stream);
428 ret = class->read_fn (stream, buffer, MIN (sizeof (buffer), count),
429 cancellable, &my_error);
432 if (read_bytes > 0 &&
433 my_error->domain == G_IO_ERROR &&
434 my_error->code == G_IO_ERROR_CANCELLED)
436 g_error_free (my_error);
440 g_propagate_error (error, my_error);
447 if (ret == 0 || count == 0)
453 * g_input_stream_close:
454 * @stream: A #GInputStream.
455 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
456 * @error: location to store the error occurring, or %NULL to ignore
458 * Closes the stream, releasing resources related to it.
460 * Once the stream is closed, all other operations will return %G_IO_ERROR_CLOSED.
461 * Closing a stream multiple times will not return an error.
463 * Streams will be automatically closed when the last reference
464 * is dropped, but you might want to call this function to make sure
465 * resources are released as early as possible.
467 * Some streams might keep the backing store of the stream (e.g. a file descriptor)
468 * open after the stream is closed. See the documentation for the individual
469 * stream for details.
471 * On failure the first error that happened will be reported, but the close
472 * operation will finish as much as possible. A stream that failed to
473 * close will still return %G_IO_ERROR_CLOSED for all operations. Still, it
474 * is important to check and report the error to the user.
476 * If @cancellable is not %NULL, then the operation can be cancelled by
477 * triggering the cancellable object from another thread. If the operation
478 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
479 * Cancelling a close will still leave the stream closed, but some streams
480 * can use a faster close that doesn't block to e.g. check errors.
482 * Returns: %TRUE on success, %FALSE on failure
485 g_input_stream_close (GInputStream *stream,
486 GCancellable *cancellable,
489 GInputStreamClass *class;
492 g_return_val_if_fail (G_IS_INPUT_STREAM (stream), FALSE);
494 class = G_INPUT_STREAM_GET_CLASS (stream);
496 if (stream->priv->closed)
501 if (!g_input_stream_set_pending (stream, error))
505 g_cancellable_push_current (cancellable);
508 res = class->close_fn (stream, cancellable, error);
511 g_cancellable_pop_current (cancellable);
513 g_input_stream_clear_pending (stream);
515 stream->priv->closed = TRUE;
521 async_ready_callback_wrapper (GObject *source_object,
525 GInputStream *stream = G_INPUT_STREAM (source_object);
527 g_input_stream_clear_pending (stream);
528 if (stream->priv->outstanding_callback)
529 (*stream->priv->outstanding_callback) (source_object, res, user_data);
530 g_object_unref (stream);
534 async_ready_close_callback_wrapper (GObject *source_object,
538 GInputStream *stream = G_INPUT_STREAM (source_object);
540 g_input_stream_clear_pending (stream);
541 stream->priv->closed = TRUE;
542 if (stream->priv->outstanding_callback)
543 (*stream->priv->outstanding_callback) (source_object, res, user_data);
544 g_object_unref (stream);
548 * g_input_stream_read_async:
549 * @stream: A #GInputStream.
550 * @buffer: (array length=count) (element-type guint8): a buffer to
551 * read data into (which should be at least count bytes long).
552 * @count: the number of bytes that will be read from the stream
553 * @io_priority: the [I/O priority][io-priority]
555 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
556 * @callback: (scope async): callback to call when the request is satisfied
557 * @user_data: (closure): the data to pass to callback function
559 * Request an asynchronous read of @count bytes from the stream into the buffer
560 * starting at @buffer. When the operation is finished @callback will be called.
561 * You can then call g_input_stream_read_finish() to get the result of the
564 * During an async request no other sync and async calls are allowed on @stream, and will
565 * result in %G_IO_ERROR_PENDING errors.
567 * A value of @count larger than %G_MAXSSIZE will cause a %G_IO_ERROR_INVALID_ARGUMENT error.
569 * On success, the number of bytes read into the buffer will be passed to the
570 * callback. It is not an error if this is not the same as the requested size, as it
571 * can happen e.g. near the end of a file, but generally we try to read
572 * as many bytes as requested. Zero is returned on end of file
573 * (or if @count is zero), but never otherwise.
575 * Any outstanding i/o request with higher priority (lower numerical value) will
576 * be executed before an outstanding request with lower priority. Default
577 * priority is %G_PRIORITY_DEFAULT.
579 * The asyncronous methods have a default fallback that uses threads to implement
580 * asynchronicity, so they are optional for inheriting classes. However, if you
581 * override one you must override all.
584 g_input_stream_read_async (GInputStream *stream,
588 GCancellable *cancellable,
589 GAsyncReadyCallback callback,
592 GInputStreamClass *class;
593 GError *error = NULL;
595 g_return_if_fail (G_IS_INPUT_STREAM (stream));
596 g_return_if_fail (buffer != NULL);
602 task = g_task_new (stream, cancellable, callback, user_data);
603 g_task_set_source_tag (task, g_input_stream_read_async);
604 g_task_return_int (task, 0);
605 g_object_unref (task);
609 if (((gssize) count) < 0)
611 g_task_report_new_error (stream, callback, user_data,
612 g_input_stream_read_async,
613 G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
614 _("Too large count value passed to %s"),
619 if (!g_input_stream_set_pending (stream, &error))
621 g_task_report_error (stream, callback, user_data,
622 g_input_stream_read_async,
627 class = G_INPUT_STREAM_GET_CLASS (stream);
628 stream->priv->outstanding_callback = callback;
629 g_object_ref (stream);
630 class->read_async (stream, buffer, count, io_priority, cancellable,
631 async_ready_callback_wrapper, user_data);
635 * g_input_stream_read_finish:
636 * @stream: a #GInputStream.
637 * @result: a #GAsyncResult.
638 * @error: a #GError location to store the error occurring, or %NULL to
641 * Finishes an asynchronous stream read operation.
643 * Returns: number of bytes read in, or -1 on error, or 0 on end of file.
646 g_input_stream_read_finish (GInputStream *stream,
647 GAsyncResult *result,
650 GInputStreamClass *class;
652 g_return_val_if_fail (G_IS_INPUT_STREAM (stream), -1);
653 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), -1);
655 if (g_async_result_legacy_propagate_error (result, error))
657 else if (g_async_result_is_tagged (result, g_input_stream_read_async))
658 return g_task_propagate_int (G_TASK (result), error);
660 class = G_INPUT_STREAM_GET_CLASS (stream);
661 return class->read_finish (stream, result, error);
672 free_async_read_all (gpointer data)
674 g_slice_free (AsyncReadAll, data);
678 read_all_callback (GObject *stream,
679 GAsyncResult *result,
682 GTask *task = user_data;
683 AsyncReadAll *data = g_task_get_task_data (task);
684 gboolean got_eof = FALSE;
688 GError *error = NULL;
691 nread = g_input_stream_read_finish (G_INPUT_STREAM (stream), result, &error);
695 g_task_return_error (task, error);
696 g_object_unref (task);
700 g_assert_cmpint (nread, <=, data->to_read);
701 data->to_read -= nread;
702 data->bytes_read += nread;
703 got_eof = (nread == 0);
706 if (got_eof || data->to_read == 0)
708 g_task_return_boolean (task, TRUE);
709 g_object_unref (task);
713 g_input_stream_read_async (G_INPUT_STREAM (stream),
714 data->buffer + data->bytes_read,
716 g_task_get_priority (task),
717 g_task_get_cancellable (task),
718 read_all_callback, task);
723 read_all_async_thread (GTask *task,
724 gpointer source_object,
726 GCancellable *cancellable)
728 GInputStream *stream = source_object;
729 AsyncReadAll *data = task_data;
730 GError *error = NULL;
732 if (g_input_stream_read_all (stream, data->buffer, data->to_read, &data->bytes_read,
733 g_task_get_cancellable (task), &error))
734 g_task_return_boolean (task, TRUE);
736 g_task_return_error (task, error);
740 * g_input_stream_read_all_async:
741 * @stream: A #GInputStream
742 * @buffer: (array length=count) (element-type guint8): a buffer to
743 * read data into (which should be at least count bytes long)
744 * @count: the number of bytes that will be read from the stream
745 * @io_priority: the [I/O priority][io-priority] of the request
746 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore
747 * @callback: (scope async): callback to call when the request is satisfied
748 * @user_data: (closure): the data to pass to callback function
750 * Request an asynchronous read of @count bytes from the stream into the
751 * buffer starting at @buffer.
753 * This is the asynchronous equivalent of g_input_stream_read_all().
755 * Call g_input_stream_read_all_finish() to collect the result.
757 * Any outstanding I/O request with higher priority (lower numerical
758 * value) will be executed before an outstanding request with lower
759 * priority. Default priority is %G_PRIORITY_DEFAULT.
764 g_input_stream_read_all_async (GInputStream *stream,
768 GCancellable *cancellable,
769 GAsyncReadyCallback callback,
775 g_return_if_fail (G_IS_INPUT_STREAM (stream));
776 g_return_if_fail (buffer != NULL || count == 0);
778 task = g_task_new (stream, cancellable, callback, user_data);
779 data = g_slice_new0 (AsyncReadAll);
780 data->buffer = buffer;
781 data->to_read = count;
783 g_task_set_task_data (task, data, free_async_read_all);
784 g_task_set_priority (task, io_priority);
786 /* If async reads are going to be handled via the threadpool anyway
787 * then we may as well do it with a single dispatch instead of
788 * bouncing in and out.
790 if (g_input_stream_async_read_is_via_threads (stream))
792 g_task_run_in_thread (task, read_all_async_thread);
793 g_object_unref (task);
796 read_all_callback (G_OBJECT (stream), NULL, task);
800 * g_input_stream_read_all_finish:
801 * @stream: a #GInputStream
802 * @result: a #GAsyncResult
803 * @bytes_read: (out): location to store the number of bytes that was read from the stream
804 * @error: a #GError location to store the error occurring, or %NULL to ignore
806 * Finishes an asynchronous stream read operation started with
807 * g_input_stream_read_all_async().
809 * As a special exception to the normal conventions for functions that
810 * use #GError, if this function returns %FALSE (and sets @error) then
811 * @bytes_read will be set to the number of bytes that were successfully
812 * read before the error was encountered. This functionality is only
813 * available from C. If you need it from another language then you must
814 * write your own loop around g_input_stream_read_async().
816 * Returns: %TRUE on success, %FALSE if there was an error
821 g_input_stream_read_all_finish (GInputStream *stream,
822 GAsyncResult *result,
828 g_return_val_if_fail (G_IS_INPUT_STREAM (stream), FALSE);
829 g_return_val_if_fail (g_task_is_valid (result, stream), FALSE);
831 task = G_TASK (result);
835 AsyncReadAll *data = g_task_get_task_data (task);
837 *bytes_read = data->bytes_read;
840 return g_task_propagate_boolean (task, error);
844 read_bytes_callback (GObject *stream,
845 GAsyncResult *result,
848 GTask *task = user_data;
849 guchar *buf = g_task_get_task_data (task);
850 GError *error = NULL;
852 GBytes *bytes = NULL;
854 nread = g_input_stream_read_finish (G_INPUT_STREAM (stream),
859 g_task_return_error (task, error);
864 bytes = g_bytes_new_static ("", 0);
867 bytes = g_bytes_new_take (buf, nread);
870 g_task_return_pointer (task, bytes, (GDestroyNotify)g_bytes_unref);
872 g_object_unref (task);
876 * g_input_stream_read_bytes_async:
877 * @stream: A #GInputStream.
878 * @count: the number of bytes that will be read from the stream
879 * @io_priority: the [I/O priority][io-priority] of the request
880 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
881 * @callback: (scope async): callback to call when the request is satisfied
882 * @user_data: (closure): the data to pass to callback function
884 * Request an asynchronous read of @count bytes from the stream into a
885 * new #GBytes. When the operation is finished @callback will be
886 * called. You can then call g_input_stream_read_bytes_finish() to get the
887 * result of the operation.
889 * During an async request no other sync and async calls are allowed
890 * on @stream, and will result in %G_IO_ERROR_PENDING errors.
892 * A value of @count larger than %G_MAXSSIZE will cause a
893 * %G_IO_ERROR_INVALID_ARGUMENT error.
895 * On success, the new #GBytes will be passed to the callback. It is
896 * not an error if this is smaller than the requested size, as it can
897 * happen e.g. near the end of a file, but generally we try to read as
898 * many bytes as requested. Zero is returned on end of file (or if
899 * @count is zero), but never otherwise.
901 * Any outstanding I/O request with higher priority (lower numerical
902 * value) will be executed before an outstanding request with lower
903 * priority. Default priority is %G_PRIORITY_DEFAULT.
908 g_input_stream_read_bytes_async (GInputStream *stream,
911 GCancellable *cancellable,
912 GAsyncReadyCallback callback,
918 task = g_task_new (stream, cancellable, callback, user_data);
919 buf = g_malloc (count);
920 g_task_set_task_data (task, buf, NULL);
922 g_input_stream_read_async (stream, buf, count,
923 io_priority, cancellable,
924 read_bytes_callback, task);
928 * g_input_stream_read_bytes_finish:
929 * @stream: a #GInputStream.
930 * @result: a #GAsyncResult.
931 * @error: a #GError location to store the error occurring, or %NULL to
934 * Finishes an asynchronous stream read-into-#GBytes operation.
936 * Returns: the newly-allocated #GBytes, or %NULL on error
941 g_input_stream_read_bytes_finish (GInputStream *stream,
942 GAsyncResult *result,
945 g_return_val_if_fail (G_IS_INPUT_STREAM (stream), NULL);
946 g_return_val_if_fail (g_task_is_valid (result, stream), NULL);
948 return g_task_propagate_pointer (G_TASK (result), error);
952 * g_input_stream_skip_async:
953 * @stream: A #GInputStream.
954 * @count: the number of bytes that will be skipped from the stream
955 * @io_priority: the [I/O priority][io-priority] of the request
956 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
957 * @callback: (scope async): callback to call when the request is satisfied
958 * @user_data: (closure): the data to pass to callback function
960 * Request an asynchronous skip of @count bytes from the stream.
961 * When the operation is finished @callback will be called.
962 * You can then call g_input_stream_skip_finish() to get the result
965 * During an async request no other sync and async calls are allowed,
966 * and will result in %G_IO_ERROR_PENDING errors.
968 * A value of @count larger than %G_MAXSSIZE will cause a %G_IO_ERROR_INVALID_ARGUMENT error.
970 * On success, the number of bytes skipped will be passed to the callback.
971 * It is not an error if this is not the same as the requested size, as it
972 * can happen e.g. near the end of a file, but generally we try to skip
973 * as many bytes as requested. Zero is returned on end of file
974 * (or if @count is zero), but never otherwise.
976 * Any outstanding i/o request with higher priority (lower numerical value)
977 * will be executed before an outstanding request with lower priority.
978 * Default priority is %G_PRIORITY_DEFAULT.
980 * The asynchronous methods have a default fallback that uses threads to
981 * implement asynchronicity, so they are optional for inheriting classes.
982 * However, if you override one, you must override all.
985 g_input_stream_skip_async (GInputStream *stream,
988 GCancellable *cancellable,
989 GAsyncReadyCallback callback,
992 GInputStreamClass *class;
993 GError *error = NULL;
995 g_return_if_fail (G_IS_INPUT_STREAM (stream));
1001 task = g_task_new (stream, cancellable, callback, user_data);
1002 g_task_set_source_tag (task, g_input_stream_skip_async);
1003 g_task_return_int (task, 0);
1004 g_object_unref (task);
1008 if (((gssize) count) < 0)
1010 g_task_report_new_error (stream, callback, user_data,
1011 g_input_stream_skip_async,
1012 G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
1013 _("Too large count value passed to %s"),
1018 if (!g_input_stream_set_pending (stream, &error))
1020 g_task_report_error (stream, callback, user_data,
1021 g_input_stream_skip_async,
1026 class = G_INPUT_STREAM_GET_CLASS (stream);
1027 stream->priv->outstanding_callback = callback;
1028 g_object_ref (stream);
1029 class->skip_async (stream, count, io_priority, cancellable,
1030 async_ready_callback_wrapper, user_data);
1034 * g_input_stream_skip_finish:
1035 * @stream: a #GInputStream.
1036 * @result: a #GAsyncResult.
1037 * @error: a #GError location to store the error occurring, or %NULL to
1040 * Finishes a stream skip operation.
1042 * Returns: the size of the bytes skipped, or %-1 on error.
1045 g_input_stream_skip_finish (GInputStream *stream,
1046 GAsyncResult *result,
1049 GInputStreamClass *class;
1051 g_return_val_if_fail (G_IS_INPUT_STREAM (stream), -1);
1052 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), -1);
1054 if (g_async_result_legacy_propagate_error (result, error))
1056 else if (g_async_result_is_tagged (result, g_input_stream_skip_async))
1057 return g_task_propagate_int (G_TASK (result), error);
1059 class = G_INPUT_STREAM_GET_CLASS (stream);
1060 return class->skip_finish (stream, result, error);
1064 * g_input_stream_close_async:
1065 * @stream: A #GInputStream.
1066 * @io_priority: the [I/O priority][io-priority] of the request
1067 * @cancellable: (allow-none): optional cancellable object
1068 * @callback: (scope async): callback to call when the request is satisfied
1069 * @user_data: (closure): the data to pass to callback function
1071 * Requests an asynchronous closes of the stream, releasing resources related to it.
1072 * When the operation is finished @callback will be called.
1073 * You can then call g_input_stream_close_finish() to get the result of the
1076 * For behaviour details see g_input_stream_close().
1078 * The asyncronous methods have a default fallback that uses threads to implement
1079 * asynchronicity, so they are optional for inheriting classes. However, if you
1080 * override one you must override all.
1083 g_input_stream_close_async (GInputStream *stream,
1085 GCancellable *cancellable,
1086 GAsyncReadyCallback callback,
1089 GInputStreamClass *class;
1090 GError *error = NULL;
1092 g_return_if_fail (G_IS_INPUT_STREAM (stream));
1094 if (stream->priv->closed)
1098 task = g_task_new (stream, cancellable, callback, user_data);
1099 g_task_set_source_tag (task, g_input_stream_close_async);
1100 g_task_return_boolean (task, TRUE);
1101 g_object_unref (task);
1105 if (!g_input_stream_set_pending (stream, &error))
1107 g_task_report_error (stream, callback, user_data,
1108 g_input_stream_close_async,
1113 class = G_INPUT_STREAM_GET_CLASS (stream);
1114 stream->priv->outstanding_callback = callback;
1115 g_object_ref (stream);
1116 class->close_async (stream, io_priority, cancellable,
1117 async_ready_close_callback_wrapper, user_data);
1121 * g_input_stream_close_finish:
1122 * @stream: a #GInputStream.
1123 * @result: a #GAsyncResult.
1124 * @error: a #GError location to store the error occurring, or %NULL to
1127 * Finishes closing a stream asynchronously, started from g_input_stream_close_async().
1129 * Returns: %TRUE if the stream was closed successfully.
1132 g_input_stream_close_finish (GInputStream *stream,
1133 GAsyncResult *result,
1136 GInputStreamClass *class;
1138 g_return_val_if_fail (G_IS_INPUT_STREAM (stream), FALSE);
1139 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
1141 if (g_async_result_legacy_propagate_error (result, error))
1143 else if (g_async_result_is_tagged (result, g_input_stream_close_async))
1144 return g_task_propagate_boolean (G_TASK (result), error);
1146 class = G_INPUT_STREAM_GET_CLASS (stream);
1147 return class->close_finish (stream, result, error);
1151 * g_input_stream_is_closed:
1152 * @stream: input stream.
1154 * Checks if an input stream is closed.
1156 * Returns: %TRUE if the stream is closed.
1159 g_input_stream_is_closed (GInputStream *stream)
1161 g_return_val_if_fail (G_IS_INPUT_STREAM (stream), TRUE);
1163 return stream->priv->closed;
1167 * g_input_stream_has_pending:
1168 * @stream: input stream.
1170 * Checks if an input stream has pending actions.
1172 * Returns: %TRUE if @stream has pending actions.
1175 g_input_stream_has_pending (GInputStream *stream)
1177 g_return_val_if_fail (G_IS_INPUT_STREAM (stream), TRUE);
1179 return stream->priv->pending;
1183 * g_input_stream_set_pending:
1184 * @stream: input stream
1185 * @error: a #GError location to store the error occurring, or %NULL to
1188 * Sets @stream to have actions pending. If the pending flag is
1189 * already set or @stream is closed, it will return %FALSE and set
1192 * Returns: %TRUE if pending was previously unset and is now set.
1195 g_input_stream_set_pending (GInputStream *stream, GError **error)
1197 g_return_val_if_fail (G_IS_INPUT_STREAM (stream), FALSE);
1199 if (stream->priv->closed)
1201 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_CLOSED,
1202 _("Stream is already closed"));
1206 if (stream->priv->pending)
1208 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_PENDING,
1209 /* Translators: This is an error you get if there is already an
1210 * operation running against this stream when you try to start
1212 _("Stream has outstanding operation"));
1216 stream->priv->pending = TRUE;
1221 * g_input_stream_clear_pending:
1222 * @stream: input stream
1224 * Clears the pending flag on @stream.
1227 g_input_stream_clear_pending (GInputStream *stream)
1229 g_return_if_fail (G_IS_INPUT_STREAM (stream));
1231 stream->priv->pending = FALSE;
1235 * g_input_stream_async_read_is_via_threads:
1236 * @stream: input stream
1238 * Checks if an input stream's read_async function uses threads.
1240 * Returns: %TRUE if @stream's read_async function uses threads.
1243 g_input_stream_async_read_is_via_threads (GInputStream *stream)
1245 GInputStreamClass *class;
1247 g_return_val_if_fail (G_IS_INPUT_STREAM (stream), FALSE);
1249 class = G_INPUT_STREAM_GET_CLASS (stream);
1251 return (class->read_async == g_input_stream_real_read_async &&
1252 !(G_IS_POLLABLE_INPUT_STREAM (stream) &&
1253 g_pollable_input_stream_can_poll (G_POLLABLE_INPUT_STREAM (stream))));
1256 /********************************************
1257 * Default implementation of async ops *
1258 ********************************************/
1266 free_read_data (ReadData *op)
1268 g_slice_free (ReadData, op);
1272 read_async_thread (GTask *task,
1273 gpointer source_object,
1275 GCancellable *cancellable)
1277 GInputStream *stream = source_object;
1278 ReadData *op = task_data;
1279 GInputStreamClass *class;
1280 GError *error = NULL;
1283 class = G_INPUT_STREAM_GET_CLASS (stream);
1285 nread = class->read_fn (stream,
1286 op->buffer, op->count,
1287 g_task_get_cancellable (task),
1290 g_task_return_error (task, error);
1292 g_task_return_int (task, nread);
1295 static void read_async_pollable (GPollableInputStream *stream,
1299 read_async_pollable_ready (GPollableInputStream *stream,
1302 GTask *task = user_data;
1304 read_async_pollable (stream, task);
1309 read_async_pollable (GPollableInputStream *stream,
1312 ReadData *op = g_task_get_task_data (task);
1313 GError *error = NULL;
1316 if (g_task_return_error_if_cancelled (task))
1319 nread = G_POLLABLE_INPUT_STREAM_GET_INTERFACE (stream)->
1320 read_nonblocking (stream, op->buffer, op->count, &error);
1322 if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_WOULD_BLOCK))
1326 g_error_free (error);
1328 source = g_pollable_input_stream_create_source (stream,
1329 g_task_get_cancellable (task));
1330 g_task_attach_source (task, source,
1331 (GSourceFunc) read_async_pollable_ready);
1332 g_source_unref (source);
1337 g_task_return_error (task, error);
1339 g_task_return_int (task, nread);
1340 /* g_input_stream_real_read_async() unrefs task */
1345 g_input_stream_real_read_async (GInputStream *stream,
1349 GCancellable *cancellable,
1350 GAsyncReadyCallback callback,
1356 op = g_slice_new0 (ReadData);
1357 task = g_task_new (stream, cancellable, callback, user_data);
1358 g_task_set_task_data (task, op, (GDestroyNotify) free_read_data);
1359 g_task_set_priority (task, io_priority);
1360 op->buffer = buffer;
1363 if (!g_input_stream_async_read_is_via_threads (stream))
1364 read_async_pollable (G_POLLABLE_INPUT_STREAM (stream), task);
1366 g_task_run_in_thread (task, read_async_thread);
1367 g_object_unref (task);
1371 g_input_stream_real_read_finish (GInputStream *stream,
1372 GAsyncResult *result,
1375 g_return_val_if_fail (g_task_is_valid (result, stream), -1);
1377 return g_task_propagate_int (G_TASK (result), error);
1382 skip_async_thread (GTask *task,
1383 gpointer source_object,
1385 GCancellable *cancellable)
1387 GInputStream *stream = source_object;
1388 gsize count = GPOINTER_TO_SIZE (task_data);
1389 GInputStreamClass *class;
1390 GError *error = NULL;
1393 class = G_INPUT_STREAM_GET_CLASS (stream);
1394 ret = class->skip (stream, count,
1395 g_task_get_cancellable (task),
1398 g_task_return_error (task, error);
1400 g_task_return_int (task, ret);
1406 gsize count_skipped;
1407 } SkipFallbackAsyncData;
1410 skip_callback_wrapper (GObject *source_object,
1414 GInputStreamClass *class;
1415 GTask *task = user_data;
1416 SkipFallbackAsyncData *data = g_task_get_task_data (task);
1417 GError *error = NULL;
1420 ret = g_input_stream_read_finish (G_INPUT_STREAM (source_object), res, &error);
1425 data->count_skipped += ret;
1427 if (data->count > 0)
1429 class = G_INPUT_STREAM_GET_CLASS (source_object);
1430 class->read_async (G_INPUT_STREAM (source_object),
1431 data->buffer, MIN (8192, data->count),
1432 g_task_get_priority (task),
1433 g_task_get_cancellable (task),
1434 skip_callback_wrapper, task);
1440 g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED) &&
1441 data->count_skipped)
1443 /* No error, return partial read */
1444 g_clear_error (&error);
1448 g_task_return_error (task, error);
1450 g_task_return_int (task, data->count_skipped);
1451 g_object_unref (task);
1455 g_input_stream_real_skip_async (GInputStream *stream,
1458 GCancellable *cancellable,
1459 GAsyncReadyCallback callback,
1462 GInputStreamClass *class;
1463 SkipFallbackAsyncData *data;
1466 class = G_INPUT_STREAM_GET_CLASS (stream);
1468 task = g_task_new (stream, cancellable, callback, user_data);
1469 g_task_set_priority (task, io_priority);
1471 if (g_input_stream_async_read_is_via_threads (stream))
1473 /* Read is thread-using async fallback.
1474 * Make skip use threads too, so that we can use a possible sync skip
1475 * implementation. */
1476 g_task_set_task_data (task, GSIZE_TO_POINTER (count), NULL);
1478 g_task_run_in_thread (task, skip_async_thread);
1479 g_object_unref (task);
1483 /* TODO: Skip fallback uses too much memory, should do multiple read calls */
1485 /* There is a custom async read function, lets use that. */
1486 data = g_new (SkipFallbackAsyncData, 1);
1487 data->count = count;
1488 data->count_skipped = 0;
1489 g_task_set_task_data (task, data, g_free);
1490 g_task_set_check_cancellable (task, FALSE);
1491 class->read_async (stream, data->buffer, MIN (8192, count), io_priority, cancellable,
1492 skip_callback_wrapper, task);
1498 g_input_stream_real_skip_finish (GInputStream *stream,
1499 GAsyncResult *result,
1502 g_return_val_if_fail (g_task_is_valid (result, stream), -1);
1504 return g_task_propagate_int (G_TASK (result), error);
1508 close_async_thread (GTask *task,
1509 gpointer source_object,
1511 GCancellable *cancellable)
1513 GInputStream *stream = source_object;
1514 GInputStreamClass *class;
1515 GError *error = NULL;
1518 class = G_INPUT_STREAM_GET_CLASS (stream);
1519 if (class->close_fn)
1521 result = class->close_fn (stream,
1522 g_task_get_cancellable (task),
1526 g_task_return_error (task, error);
1531 g_task_return_boolean (task, TRUE);
1535 g_input_stream_real_close_async (GInputStream *stream,
1537 GCancellable *cancellable,
1538 GAsyncReadyCallback callback,
1543 task = g_task_new (stream, cancellable, callback, user_data);
1544 g_task_set_check_cancellable (task, FALSE);
1545 g_task_set_priority (task, io_priority);
1547 g_task_run_in_thread (task, close_async_thread);
1548 g_object_unref (task);
1552 g_input_stream_real_close_finish (GInputStream *stream,
1553 GAsyncResult *result,
1556 g_return_val_if_fail (g_task_is_valid (result, stream), FALSE);
1558 return g_task_propagate_boolean (G_TASK (result), error);