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, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * Author: Alexander Larsson <alexl@redhat.com>
24 #include "goutputstream.h"
25 #include "gcancellable.h"
26 #include "gasyncresult.h"
27 #include "gsimpleasyncresult.h"
28 #include "ginputstream.h"
34 * SECTION:goutputstream
35 * @short_description: Base class for implementing streaming output
38 * GOutputStream has functions to write to a stream (g_output_stream_write()),
39 * to close a stream (g_output_stream_close()) and to flush pending writes
40 * (g_output_stream_flush()).
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 G_DEFINE_ABSTRACT_TYPE (GOutputStream, g_output_stream, G_TYPE_OBJECT);
50 struct _GOutputStreamPrivate {
54 GAsyncReadyCallback outstanding_callback;
57 static gssize g_output_stream_real_splice (GOutputStream *stream,
59 GOutputStreamSpliceFlags flags,
60 GCancellable *cancellable,
62 static void g_output_stream_real_write_async (GOutputStream *stream,
66 GCancellable *cancellable,
67 GAsyncReadyCallback callback,
69 static gssize g_output_stream_real_write_finish (GOutputStream *stream,
72 static void g_output_stream_real_splice_async (GOutputStream *stream,
74 GOutputStreamSpliceFlags flags,
76 GCancellable *cancellable,
77 GAsyncReadyCallback callback,
79 static gssize g_output_stream_real_splice_finish (GOutputStream *stream,
82 static void g_output_stream_real_flush_async (GOutputStream *stream,
84 GCancellable *cancellable,
85 GAsyncReadyCallback callback,
87 static gboolean g_output_stream_real_flush_finish (GOutputStream *stream,
90 static void g_output_stream_real_close_async (GOutputStream *stream,
92 GCancellable *cancellable,
93 GAsyncReadyCallback callback,
95 static gboolean g_output_stream_real_close_finish (GOutputStream *stream,
100 g_output_stream_finalize (GObject *object)
102 G_OBJECT_CLASS (g_output_stream_parent_class)->finalize (object);
106 g_output_stream_dispose (GObject *object)
108 GOutputStream *stream;
110 stream = G_OUTPUT_STREAM (object);
112 if (!stream->priv->closed)
113 g_output_stream_close (stream, NULL, NULL);
115 G_OBJECT_CLASS (g_output_stream_parent_class)->dispose (object);
119 g_output_stream_class_init (GOutputStreamClass *klass)
121 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
123 g_type_class_add_private (klass, sizeof (GOutputStreamPrivate));
125 gobject_class->finalize = g_output_stream_finalize;
126 gobject_class->dispose = g_output_stream_dispose;
128 klass->splice = g_output_stream_real_splice;
130 klass->write_async = g_output_stream_real_write_async;
131 klass->write_finish = g_output_stream_real_write_finish;
132 klass->splice_async = g_output_stream_real_splice_async;
133 klass->splice_finish = g_output_stream_real_splice_finish;
134 klass->flush_async = g_output_stream_real_flush_async;
135 klass->flush_finish = g_output_stream_real_flush_finish;
136 klass->close_async = g_output_stream_real_close_async;
137 klass->close_finish = g_output_stream_real_close_finish;
141 g_output_stream_init (GOutputStream *stream)
143 stream->priv = G_TYPE_INSTANCE_GET_PRIVATE (stream,
144 G_TYPE_OUTPUT_STREAM,
145 GOutputStreamPrivate);
149 * g_output_stream_write:
150 * @stream: a #GOutputStream.
151 * @buffer: (array length=count) (element-type uint8): the buffer containing the data to write.
152 * @count: the number of bytes to write
153 * @cancellable: optional cancellable object
154 * @error: location to store the error occuring, or %NULL to ignore
156 * Tries to write @count bytes from @buffer into the stream. Will block
157 * during the operation.
159 * If count is zero returns zero and does nothing. A value of @count
160 * larger than %G_MAXSSIZE will cause a %G_IO_ERROR_INVALID_ARGUMENT error.
162 * On success, the number of bytes written to the stream is returned.
163 * It is not an error if this is not the same as the requested size, as it
164 * can happen e.g. on a partial i/o error, or if there is not enough
165 * storage in the stream. All writes either block until at least one byte
166 * is written, so zero is never returned (unless @count is zero).
168 * If @cancellable is not NULL, then the operation can be cancelled by
169 * triggering the cancellable object from another thread. If the operation
170 * was cancelled, the error G_IO_ERROR_CANCELLED will be returned. If an
171 * operation was partially finished when the operation was cancelled the
172 * partial result will be returned, without an error.
174 * On error -1 is returned and @error is set accordingly.
176 * Return value: Number of bytes written, or -1 on error
179 g_output_stream_write (GOutputStream *stream,
182 GCancellable *cancellable,
185 GOutputStreamClass *class;
188 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), -1);
189 g_return_val_if_fail (buffer != NULL, 0);
194 if (((gssize) count) < 0)
196 g_set_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
197 _("Too large count value passed to %s"), G_STRFUNC);
201 class = G_OUTPUT_STREAM_GET_CLASS (stream);
203 if (class->write_fn == NULL)
205 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
206 _("Output stream doesn't implement write"));
210 if (!g_output_stream_set_pending (stream, error))
214 g_cancellable_push_current (cancellable);
216 res = class->write_fn (stream, buffer, count, cancellable, error);
219 g_cancellable_pop_current (cancellable);
221 g_output_stream_clear_pending (stream);
227 * g_output_stream_write_all:
228 * @stream: a #GOutputStream.
229 * @buffer: (array length=count) (element-type uint8): the buffer containing the data to write.
230 * @count: the number of bytes to write
231 * @bytes_written: location to store the number of bytes that was
232 * written to the stream
233 * @cancellable: optional #GCancellable object, %NULL to ignore.
234 * @error: location to store the error occuring, or %NULL to ignore
236 * Tries to write @count bytes from @buffer into the stream. Will block
237 * during the operation.
239 * This function is similar to g_output_stream_write(), except it tries to
240 * write as many bytes as requested, only stopping on an error.
242 * On a successful write of @count bytes, %TRUE is returned, and @bytes_written
245 * If there is an error during the operation FALSE is returned and @error
246 * is set to indicate the error status, @bytes_written is updated to contain
247 * the number of bytes written into the stream before the error occurred.
249 * Return value: %TRUE on success, %FALSE if there was an error
252 g_output_stream_write_all (GOutputStream *stream,
255 gsize *bytes_written,
256 GCancellable *cancellable,
259 gsize _bytes_written;
262 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), FALSE);
263 g_return_val_if_fail (buffer != NULL, FALSE);
266 while (_bytes_written < count)
268 res = g_output_stream_write (stream, (char *)buffer + _bytes_written, count - _bytes_written,
273 *bytes_written = _bytes_written;
278 g_warning ("Write returned zero without error");
280 _bytes_written += res;
284 *bytes_written = _bytes_written;
290 * g_output_stream_flush:
291 * @stream: a #GOutputStream.
292 * @cancellable: optional cancellable object
293 * @error: location to store the error occuring, or %NULL to ignore
295 * Flushed any outstanding buffers in the stream. Will block during
296 * the operation. Closing the stream will implicitly cause a flush.
298 * This function is optional for inherited classes.
300 * If @cancellable is not %NULL, then the operation can be cancelled by
301 * triggering the cancellable object from another thread. If the operation
302 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
304 * Return value: %TRUE on success, %FALSE on error
307 g_output_stream_flush (GOutputStream *stream,
308 GCancellable *cancellable,
311 GOutputStreamClass *class;
314 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), FALSE);
316 if (!g_output_stream_set_pending (stream, error))
319 class = G_OUTPUT_STREAM_GET_CLASS (stream);
325 g_cancellable_push_current (cancellable);
327 res = class->flush (stream, cancellable, error);
330 g_cancellable_pop_current (cancellable);
333 g_output_stream_clear_pending (stream);
339 * g_output_stream_splice:
340 * @stream: a #GOutputStream.
341 * @source: a #GInputStream.
342 * @flags: a set of #GOutputStreamSpliceFlags.
343 * @cancellable: optional #GCancellable object, %NULL to ignore.
344 * @error: a #GError location to store the error occuring, or %NULL to
347 * Splices an input stream into an output stream.
349 * Returns: a #gssize containing the size of the data spliced, or
350 * -1 if an error occurred.
353 g_output_stream_splice (GOutputStream *stream,
354 GInputStream *source,
355 GOutputStreamSpliceFlags flags,
356 GCancellable *cancellable,
359 GOutputStreamClass *class;
362 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), -1);
363 g_return_val_if_fail (G_IS_INPUT_STREAM (source), -1);
365 if (g_input_stream_is_closed (source))
367 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_CLOSED,
368 _("Source stream is already closed"));
372 if (!g_output_stream_set_pending (stream, error))
375 class = G_OUTPUT_STREAM_GET_CLASS (stream);
378 g_cancellable_push_current (cancellable);
380 bytes_copied = class->splice (stream, source, flags, cancellable, error);
383 g_cancellable_pop_current (cancellable);
385 g_output_stream_clear_pending (stream);
391 g_output_stream_real_splice (GOutputStream *stream,
392 GInputStream *source,
393 GOutputStreamSpliceFlags flags,
394 GCancellable *cancellable,
397 GOutputStreamClass *class = G_OUTPUT_STREAM_GET_CLASS (stream);
398 gssize n_read, n_written;
400 char buffer[8192], *p;
404 if (class->write_fn == NULL)
406 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
407 _("Output stream doesn't implement write"));
415 n_read = g_input_stream_read (source, buffer, sizeof (buffer), cancellable, error);
428 n_written = class->write_fn (stream, p, n_read, cancellable, error);
437 bytes_copied += n_written;
444 error = NULL; /* Ignore further errors */
446 if (flags & G_OUTPUT_STREAM_SPLICE_CLOSE_SOURCE)
448 /* Don't care about errors in source here */
449 g_input_stream_close (source, cancellable, NULL);
452 if (flags & G_OUTPUT_STREAM_SPLICE_CLOSE_TARGET)
454 /* But write errors on close are bad! */
455 if (class->close_fn &&
456 !class->close_fn (stream, cancellable, error))
468 * g_output_stream_close:
469 * @stream: A #GOutputStream.
470 * @cancellable: optional cancellable object
471 * @error: location to store the error occuring, or %NULL to ignore
473 * Closes the stream, releasing resources related to it.
475 * Once the stream is closed, all other operations will return %G_IO_ERROR_CLOSED.
476 * Closing a stream multiple times will not return an error.
478 * Closing a stream will automatically flush any outstanding buffers in the
481 * Streams will be automatically closed when the last reference
482 * is dropped, but you might want to call this function to make sure
483 * resources are released as early as possible.
485 * Some streams might keep the backing store of the stream (e.g. a file descriptor)
486 * open after the stream is closed. See the documentation for the individual
487 * stream for details.
489 * On failure the first error that happened will be reported, but the close
490 * operation will finish as much as possible. A stream that failed to
491 * close will still return %G_IO_ERROR_CLOSED for all operations. Still, it
492 * is important to check and report the error to the user, otherwise
493 * there might be a loss of data as all data might not be written.
495 * If @cancellable is not NULL, then the operation can be cancelled by
496 * triggering the cancellable object from another thread. If the operation
497 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
498 * Cancelling a close will still leave the stream closed, but there some streams
499 * can use a faster close that doesn't block to e.g. check errors. On
500 * cancellation (as with any error) there is no guarantee that all written
501 * data will reach the target.
503 * Return value: %TRUE on success, %FALSE on failure
506 g_output_stream_close (GOutputStream *stream,
507 GCancellable *cancellable,
510 GOutputStreamClass *class;
513 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), FALSE);
515 class = G_OUTPUT_STREAM_GET_CLASS (stream);
517 if (stream->priv->closed)
520 if (!g_output_stream_set_pending (stream, error))
523 stream->priv->closing = TRUE;
526 g_cancellable_push_current (cancellable);
529 res = class->flush (stream, cancellable, error);
535 /* flushing caused the error that we want to return,
536 * but we still want to close the underlying stream if possible
539 class->close_fn (stream, cancellable, NULL);
545 res = class->close_fn (stream, cancellable, error);
549 g_cancellable_pop_current (cancellable);
551 stream->priv->closing = FALSE;
552 stream->priv->closed = TRUE;
553 g_output_stream_clear_pending (stream);
559 async_ready_callback_wrapper (GObject *source_object,
563 GOutputStream *stream = G_OUTPUT_STREAM (source_object);
565 g_output_stream_clear_pending (stream);
566 if (stream->priv->outstanding_callback)
567 (*stream->priv->outstanding_callback) (source_object, res, user_data);
568 g_object_unref (stream);
573 GCancellable *cancellable;
579 async_ready_close_callback_wrapper (GObject *source_object,
583 GOutputStream *stream = G_OUTPUT_STREAM (source_object);
584 CloseUserData *data = user_data;
586 stream->priv->closing = FALSE;
587 stream->priv->closed = TRUE;
589 g_output_stream_clear_pending (stream);
591 if (stream->priv->outstanding_callback)
593 if (data->flush_error != NULL)
595 GSimpleAsyncResult *err;
597 err = g_simple_async_result_new_from_error (source_object,
598 stream->priv->outstanding_callback,
602 (*stream->priv->outstanding_callback) (source_object,
603 G_ASYNC_RESULT (err),
605 g_object_unref (err);
609 (*stream->priv->outstanding_callback) (source_object,
615 g_object_unref (stream);
617 if (data->cancellable)
618 g_object_unref (data->cancellable);
620 if (data->flush_error)
621 g_error_free (data->flush_error);
623 g_slice_free (CloseUserData, data);
627 async_ready_close_flushed_callback_wrapper (GObject *source_object,
631 GOutputStream *stream = G_OUTPUT_STREAM (source_object);
632 GOutputStreamClass *class;
633 CloseUserData *data = user_data;
634 GSimpleAsyncResult *simple;
636 /* propagate the possible error */
637 if (G_IS_SIMPLE_ASYNC_RESULT (res))
639 simple = G_SIMPLE_ASYNC_RESULT (res);
640 g_simple_async_result_propagate_error (simple, &data->flush_error);
643 class = G_OUTPUT_STREAM_GET_CLASS (stream);
645 /* we still close, even if there was a flush error */
646 class->close_async (stream, data->io_priority, data->cancellable,
647 async_ready_close_callback_wrapper, user_data);
651 * g_output_stream_write_async:
652 * @stream: A #GOutputStream.
653 * @buffer: (array length=count) (element-type uint8): the buffer containing the data to write.
654 * @count: the number of bytes to write
655 * @io_priority: the io priority of the request.
656 * @cancellable: optional #GCancellable object, %NULL to ignore.
657 * @callback: callback to call when the request is satisfied
658 * @user_data: the data to pass to callback function
660 * Request an asynchronous write of @count bytes from @buffer into
661 * the stream. When the operation is finished @callback will be called.
662 * You can then call g_output_stream_write_finish() to get the result of the
665 * During an async request no other sync and async calls are allowed,
666 * and will result in %G_IO_ERROR_PENDING errors.
668 * A value of @count larger than %G_MAXSSIZE will cause a
669 * %G_IO_ERROR_INVALID_ARGUMENT error.
671 * On success, the number of bytes written will be passed to the
672 * @callback. It is not an error if this is not the same as the
673 * requested size, as it can happen e.g. on a partial I/O error,
674 * but generally we try to write as many bytes as requested.
676 * You are guaranteed that this method will never fail with
677 * %G_IO_ERROR_WOULD_BLOCK - if @stream can't accept more data, the
678 * method will just wait until this changes.
680 * Any outstanding I/O request with higher priority (lower numerical
681 * value) will be executed before an outstanding request with lower
682 * priority. Default priority is %G_PRIORITY_DEFAULT.
684 * The asyncronous methods have a default fallback that uses threads
685 * to implement asynchronicity, so they are optional for inheriting
686 * classes. However, if you override one you must override all.
688 * For the synchronous, blocking version of this function, see
689 * g_output_stream_write().
692 g_output_stream_write_async (GOutputStream *stream,
696 GCancellable *cancellable,
697 GAsyncReadyCallback callback,
700 GOutputStreamClass *class;
701 GSimpleAsyncResult *simple;
702 GError *error = NULL;
704 g_return_if_fail (G_IS_OUTPUT_STREAM (stream));
705 g_return_if_fail (buffer != NULL);
709 simple = g_simple_async_result_new (G_OBJECT (stream),
712 g_output_stream_write_async);
713 g_simple_async_result_complete_in_idle (simple);
714 g_object_unref (simple);
718 if (((gssize) count) < 0)
720 g_simple_async_report_error_in_idle (G_OBJECT (stream),
723 G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
724 _("Too large count value passed to %s"),
729 if (!g_output_stream_set_pending (stream, &error))
731 g_simple_async_report_gerror_in_idle (G_OBJECT (stream),
735 g_error_free (error);
739 class = G_OUTPUT_STREAM_GET_CLASS (stream);
741 stream->priv->outstanding_callback = callback;
742 g_object_ref (stream);
743 class->write_async (stream, buffer, count, io_priority, cancellable,
744 async_ready_callback_wrapper, user_data);
748 * g_output_stream_write_finish:
749 * @stream: a #GOutputStream.
750 * @result: a #GAsyncResult.
751 * @error: a #GError location to store the error occuring, or %NULL to
754 * Finishes a stream write operation.
756 * Returns: a #gssize containing the number of bytes written to the stream.
759 g_output_stream_write_finish (GOutputStream *stream,
760 GAsyncResult *result,
763 GSimpleAsyncResult *simple;
764 GOutputStreamClass *class;
766 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), -1);
767 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), -1);
769 if (G_IS_SIMPLE_ASYNC_RESULT (result))
771 simple = G_SIMPLE_ASYNC_RESULT (result);
772 if (g_simple_async_result_propagate_error (simple, error))
775 /* Special case writes of 0 bytes */
776 if (g_simple_async_result_get_source_tag (simple) == g_output_stream_write_async)
780 class = G_OUTPUT_STREAM_GET_CLASS (stream);
781 return class->write_finish (stream, result, error);
785 GInputStream *source;
787 GAsyncReadyCallback callback;
791 async_ready_splice_callback_wrapper (GObject *source_object,
795 GOutputStream *stream = G_OUTPUT_STREAM (source_object);
796 SpliceUserData *data = _data;
798 g_output_stream_clear_pending (stream);
801 (*data->callback) (source_object, res, data->user_data);
803 g_object_unref (stream);
804 g_object_unref (data->source);
809 * g_output_stream_splice_async:
810 * @stream: a #GOutputStream.
811 * @source: a #GInputStream.
812 * @flags: a set of #GOutputStreamSpliceFlags.
813 * @io_priority: the io priority of the request.
814 * @cancellable: optional #GCancellable object, %NULL to ignore.
815 * @callback: a #GAsyncReadyCallback.
816 * @user_data: user data passed to @callback.
818 * Splices a stream asynchronously.
819 * When the operation is finished @callback will be called.
820 * You can then call g_output_stream_splice_finish() to get the
821 * result of the operation.
823 * For the synchronous, blocking version of this function, see
824 * g_output_stream_splice().
827 g_output_stream_splice_async (GOutputStream *stream,
828 GInputStream *source,
829 GOutputStreamSpliceFlags flags,
831 GCancellable *cancellable,
832 GAsyncReadyCallback callback,
835 GOutputStreamClass *class;
836 SpliceUserData *data;
837 GError *error = NULL;
839 g_return_if_fail (G_IS_OUTPUT_STREAM (stream));
840 g_return_if_fail (G_IS_INPUT_STREAM (source));
842 if (g_input_stream_is_closed (source))
844 g_simple_async_report_error_in_idle (G_OBJECT (stream),
847 G_IO_ERROR, G_IO_ERROR_CLOSED,
848 _("Source stream is already closed"));
852 if (!g_output_stream_set_pending (stream, &error))
854 g_simple_async_report_gerror_in_idle (G_OBJECT (stream),
858 g_error_free (error);
862 class = G_OUTPUT_STREAM_GET_CLASS (stream);
864 data = g_new0 (SpliceUserData, 1);
865 data->callback = callback;
866 data->user_data = user_data;
867 data->source = g_object_ref (source);
869 g_object_ref (stream);
870 class->splice_async (stream, source, flags, io_priority, cancellable,
871 async_ready_splice_callback_wrapper, data);
875 * g_output_stream_splice_finish:
876 * @stream: a #GOutputStream.
877 * @result: a #GAsyncResult.
878 * @error: a #GError location to store the error occuring, or %NULL to
881 * Finishes an asynchronous stream splice operation.
883 * Returns: a #gssize of the number of bytes spliced.
886 g_output_stream_splice_finish (GOutputStream *stream,
887 GAsyncResult *result,
890 GSimpleAsyncResult *simple;
891 GOutputStreamClass *class;
893 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), -1);
894 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), -1);
896 if (G_IS_SIMPLE_ASYNC_RESULT (result))
898 simple = G_SIMPLE_ASYNC_RESULT (result);
899 if (g_simple_async_result_propagate_error (simple, error))
903 class = G_OUTPUT_STREAM_GET_CLASS (stream);
904 return class->splice_finish (stream, result, error);
908 * g_output_stream_flush_async:
909 * @stream: a #GOutputStream.
910 * @io_priority: the io priority of the request.
911 * @cancellable: optional #GCancellable object, %NULL to ignore.
912 * @callback: a #GAsyncReadyCallback to call when the request is satisfied
913 * @user_data: the data to pass to callback function
915 * Flushes a stream asynchronously.
916 * For behaviour details see g_output_stream_flush().
918 * When the operation is finished @callback will be
919 * called. You can then call g_output_stream_flush_finish() to get the
920 * result of the operation.
923 g_output_stream_flush_async (GOutputStream *stream,
925 GCancellable *cancellable,
926 GAsyncReadyCallback callback,
929 GOutputStreamClass *class;
930 GSimpleAsyncResult *simple;
931 GError *error = NULL;
933 g_return_if_fail (G_IS_OUTPUT_STREAM (stream));
935 if (!g_output_stream_set_pending (stream, &error))
937 g_simple_async_report_gerror_in_idle (G_OBJECT (stream),
941 g_error_free (error);
945 stream->priv->outstanding_callback = callback;
946 g_object_ref (stream);
948 class = G_OUTPUT_STREAM_GET_CLASS (stream);
950 if (class->flush_async == NULL)
952 simple = g_simple_async_result_new (G_OBJECT (stream),
953 async_ready_callback_wrapper,
955 g_output_stream_flush_async);
956 g_simple_async_result_complete_in_idle (simple);
957 g_object_unref (simple);
961 class->flush_async (stream, io_priority, cancellable,
962 async_ready_callback_wrapper, user_data);
966 * g_output_stream_flush_finish:
967 * @stream: a #GOutputStream.
968 * @result: a GAsyncResult.
969 * @error: a #GError location to store the error occuring, or %NULL to
972 * Finishes flushing an output stream.
974 * Returns: %TRUE if flush operation suceeded, %FALSE otherwise.
977 g_output_stream_flush_finish (GOutputStream *stream,
978 GAsyncResult *result,
981 GSimpleAsyncResult *simple;
982 GOutputStreamClass *klass;
984 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), FALSE);
985 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
987 if (G_IS_SIMPLE_ASYNC_RESULT (result))
989 simple = G_SIMPLE_ASYNC_RESULT (result);
990 if (g_simple_async_result_propagate_error (simple, error))
993 /* Special case default implementation */
994 if (g_simple_async_result_get_source_tag (simple) == g_output_stream_flush_async)
998 klass = G_OUTPUT_STREAM_GET_CLASS (stream);
999 return klass->flush_finish (stream, result, error);
1004 * g_output_stream_close_async:
1005 * @stream: A #GOutputStream.
1006 * @io_priority: the io priority of the request.
1007 * @callback: callback to call when the request is satisfied
1008 * @user_data: the data to pass to callback function
1009 * @cancellable: optional cancellable object
1011 * Requests an asynchronous close of the stream, releasing resources
1012 * related to it. When the operation is finished @callback will be
1013 * called. You can then call g_output_stream_close_finish() to get
1014 * the result of the operation.
1016 * For behaviour details see g_output_stream_close().
1018 * The asyncronous methods have a default fallback that uses threads
1019 * to implement asynchronicity, so they are optional for inheriting
1020 * classes. However, if you override one you must override all.
1023 g_output_stream_close_async (GOutputStream *stream,
1025 GCancellable *cancellable,
1026 GAsyncReadyCallback callback,
1029 GOutputStreamClass *class;
1030 GSimpleAsyncResult *simple;
1031 GError *error = NULL;
1032 CloseUserData *data;
1034 g_return_if_fail (G_IS_OUTPUT_STREAM (stream));
1036 if (stream->priv->closed)
1038 simple = g_simple_async_result_new (G_OBJECT (stream),
1041 g_output_stream_close_async);
1042 g_simple_async_result_complete_in_idle (simple);
1043 g_object_unref (simple);
1047 if (!g_output_stream_set_pending (stream, &error))
1049 g_simple_async_report_gerror_in_idle (G_OBJECT (stream),
1053 g_error_free (error);
1057 class = G_OUTPUT_STREAM_GET_CLASS (stream);
1058 stream->priv->closing = TRUE;
1059 stream->priv->outstanding_callback = callback;
1060 g_object_ref (stream);
1062 data = g_slice_new0 (CloseUserData);
1064 if (cancellable != NULL)
1065 data->cancellable = g_object_ref (cancellable);
1067 data->io_priority = io_priority;
1068 data->user_data = user_data;
1070 /* Call close_async directly if there is no need to flush, or if the flush
1071 can be done sync (in the output stream async close thread) */
1072 if (class->flush_async == NULL ||
1073 (class->flush_async == g_output_stream_real_flush_async &&
1074 (class->flush == NULL || class->close_async == g_output_stream_real_close_async)))
1076 class->close_async (stream, io_priority, cancellable,
1077 async_ready_close_callback_wrapper, data);
1081 /* First do an async flush, then do the async close in the callback
1082 wrapper (see async_ready_close_flushed_callback_wrapper) */
1083 class->flush_async (stream, io_priority, cancellable,
1084 async_ready_close_flushed_callback_wrapper, data);
1089 * g_output_stream_close_finish:
1090 * @stream: a #GOutputStream.
1091 * @result: a #GAsyncResult.
1092 * @error: a #GError location to store the error occuring, or %NULL to
1095 * Closes an output stream.
1097 * Returns: %TRUE if stream was successfully closed, %FALSE otherwise.
1100 g_output_stream_close_finish (GOutputStream *stream,
1101 GAsyncResult *result,
1104 GSimpleAsyncResult *simple;
1105 GOutputStreamClass *class;
1107 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), FALSE);
1108 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
1110 if (G_IS_SIMPLE_ASYNC_RESULT (result))
1112 simple = G_SIMPLE_ASYNC_RESULT (result);
1113 if (g_simple_async_result_propagate_error (simple, error))
1116 /* Special case already closed */
1117 if (g_simple_async_result_get_source_tag (simple) == g_output_stream_close_async)
1121 class = G_OUTPUT_STREAM_GET_CLASS (stream);
1122 return class->close_finish (stream, result, error);
1126 * g_output_stream_is_closed:
1127 * @stream: a #GOutputStream.
1129 * Checks if an output stream has already been closed.
1131 * Returns: %TRUE if @stream is closed. %FALSE otherwise.
1134 g_output_stream_is_closed (GOutputStream *stream)
1136 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), TRUE);
1138 return stream->priv->closed;
1142 * g_output_stream_is_closing:
1143 * @stream: a #GOutputStream.
1145 * Checks if an output stream is being closed. This can be
1146 * used inside e.g. a flush implementation to see if the
1147 * flush (or other i/o operation) is called from within
1148 * the closing operation.
1150 * Returns: %TRUE if @stream is being closed. %FALSE otherwise.
1155 g_output_stream_is_closing (GOutputStream *stream)
1157 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), TRUE);
1159 return stream->priv->closing;
1163 * g_output_stream_has_pending:
1164 * @stream: a #GOutputStream.
1166 * Checks if an ouput stream has pending actions.
1168 * Returns: %TRUE if @stream has pending actions.
1171 g_output_stream_has_pending (GOutputStream *stream)
1173 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), FALSE);
1175 return stream->priv->pending;
1179 * g_output_stream_set_pending:
1180 * @stream: a #GOutputStream.
1181 * @error: a #GError location to store the error occuring, or %NULL to
1184 * Sets @stream to have actions pending. If the pending flag is
1185 * already set or @stream is closed, it will return %FALSE and set
1188 * Return value: %TRUE if pending was previously unset and is now set.
1191 g_output_stream_set_pending (GOutputStream *stream,
1194 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), FALSE);
1196 if (stream->priv->closed)
1198 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_CLOSED,
1199 _("Stream is already closed"));
1203 if (stream->priv->pending)
1205 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_PENDING,
1206 /* Translators: This is an error you get if there is
1207 * already an operation running against this stream when
1208 * you try to start one */
1209 _("Stream has outstanding operation"));
1213 stream->priv->pending = TRUE;
1218 * g_output_stream_clear_pending:
1219 * @stream: output stream
1221 * Clears the pending flag on @stream.
1224 g_output_stream_clear_pending (GOutputStream *stream)
1226 g_return_if_fail (G_IS_OUTPUT_STREAM (stream));
1228 stream->priv->pending = FALSE;
1232 /********************************************
1233 * Default implementation of async ops *
1234 ********************************************/
1238 gsize count_requested;
1239 gssize count_written;
1243 write_async_thread (GSimpleAsyncResult *res,
1245 GCancellable *cancellable)
1248 GOutputStreamClass *class;
1249 GError *error = NULL;
1251 class = G_OUTPUT_STREAM_GET_CLASS (object);
1252 op = g_simple_async_result_get_op_res_gpointer (res);
1253 op->count_written = class->write_fn (G_OUTPUT_STREAM (object), op->buffer, op->count_requested,
1254 cancellable, &error);
1255 if (op->count_written == -1)
1257 g_simple_async_result_set_from_error (res, error);
1258 g_error_free (error);
1263 g_output_stream_real_write_async (GOutputStream *stream,
1267 GCancellable *cancellable,
1268 GAsyncReadyCallback callback,
1271 GSimpleAsyncResult *res;
1274 op = g_new0 (WriteData, 1);
1275 res = g_simple_async_result_new (G_OBJECT (stream), callback, user_data, g_output_stream_real_write_async);
1276 g_simple_async_result_set_op_res_gpointer (res, op, g_free);
1277 op->buffer = buffer;
1278 op->count_requested = count;
1280 g_simple_async_result_run_in_thread (res, write_async_thread, io_priority, cancellable);
1281 g_object_unref (res);
1285 g_output_stream_real_write_finish (GOutputStream *stream,
1286 GAsyncResult *result,
1289 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
1292 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_output_stream_real_write_async);
1293 op = g_simple_async_result_get_op_res_gpointer (simple);
1294 return op->count_written;
1298 GInputStream *source;
1299 GOutputStreamSpliceFlags flags;
1300 gssize bytes_copied;
1304 splice_async_thread (GSimpleAsyncResult *result,
1306 GCancellable *cancellable)
1309 GOutputStreamClass *class;
1310 GError *error = NULL;
1311 GOutputStream *stream;
1313 stream = G_OUTPUT_STREAM (object);
1314 class = G_OUTPUT_STREAM_GET_CLASS (object);
1315 op = g_simple_async_result_get_op_res_gpointer (result);
1317 op->bytes_copied = class->splice (stream,
1322 if (op->bytes_copied == -1)
1324 g_simple_async_result_set_from_error (result, error);
1325 g_error_free (error);
1330 g_output_stream_real_splice_async (GOutputStream *stream,
1331 GInputStream *source,
1332 GOutputStreamSpliceFlags flags,
1334 GCancellable *cancellable,
1335 GAsyncReadyCallback callback,
1338 GSimpleAsyncResult *res;
1341 op = g_new0 (SpliceData, 1);
1342 res = g_simple_async_result_new (G_OBJECT (stream), callback, user_data, g_output_stream_real_splice_async);
1343 g_simple_async_result_set_op_res_gpointer (res, op, g_free);
1345 op->source = source;
1347 /* TODO: In the case where both source and destintion have
1348 non-threadbased async calls we can use a true async copy here */
1350 g_simple_async_result_run_in_thread (res, splice_async_thread, io_priority, cancellable);
1351 g_object_unref (res);
1355 g_output_stream_real_splice_finish (GOutputStream *stream,
1356 GAsyncResult *result,
1359 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
1362 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_output_stream_real_splice_async);
1363 op = g_simple_async_result_get_op_res_gpointer (simple);
1364 return op->bytes_copied;
1369 flush_async_thread (GSimpleAsyncResult *res,
1371 GCancellable *cancellable)
1373 GOutputStreamClass *class;
1375 GError *error = NULL;
1377 class = G_OUTPUT_STREAM_GET_CLASS (object);
1380 result = class->flush (G_OUTPUT_STREAM (object), cancellable, &error);
1384 g_simple_async_result_set_from_error (res, error);
1385 g_error_free (error);
1390 g_output_stream_real_flush_async (GOutputStream *stream,
1392 GCancellable *cancellable,
1393 GAsyncReadyCallback callback,
1396 GSimpleAsyncResult *res;
1398 res = g_simple_async_result_new (G_OBJECT (stream), callback, user_data, g_output_stream_real_write_async);
1400 g_simple_async_result_run_in_thread (res, flush_async_thread, io_priority, cancellable);
1401 g_object_unref (res);
1405 g_output_stream_real_flush_finish (GOutputStream *stream,
1406 GAsyncResult *result,
1413 close_async_thread (GSimpleAsyncResult *res,
1415 GCancellable *cancellable)
1417 GOutputStreamClass *class;
1418 GError *error = NULL;
1419 gboolean result = TRUE;
1421 class = G_OUTPUT_STREAM_GET_CLASS (object);
1423 /* Do a flush here if there is a flush function, and we did not have to do
1424 an async flush before (see g_output_stream_close_async) */
1425 if (class->flush != NULL &&
1426 (class->flush_async == NULL ||
1427 class->flush_async == g_output_stream_real_flush_async))
1429 result = class->flush (G_OUTPUT_STREAM (object), cancellable, &error);
1432 /* Auto handling of cancelation disabled, and ignore
1433 cancellation, since we want to close things anyway, although
1434 possibly in a quick-n-dirty way. At least we never want to leak
1437 if (class->close_fn)
1439 /* Make sure to close, even if the flush failed (see sync close) */
1441 class->close_fn (G_OUTPUT_STREAM (object), cancellable, NULL);
1443 result = class->close_fn (G_OUTPUT_STREAM (object), cancellable, &error);
1447 g_simple_async_result_set_from_error (res, error);
1448 g_error_free (error);
1454 g_output_stream_real_close_async (GOutputStream *stream,
1456 GCancellable *cancellable,
1457 GAsyncReadyCallback callback,
1460 GSimpleAsyncResult *res;
1462 res = g_simple_async_result_new (G_OBJECT (stream), callback, user_data, g_output_stream_real_close_async);
1464 g_simple_async_result_set_handle_cancellation (res, FALSE);
1466 g_simple_async_result_run_in_thread (res, close_async_thread, io_priority, cancellable);
1467 g_object_unref (res);
1471 g_output_stream_real_close_finish (GOutputStream *stream,
1472 GAsyncResult *result,
1475 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
1476 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_output_stream_real_close_async);