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"
35 * SECTION:goutputstream
36 * @short_description: Base class for implementing streaming output
39 * GOutputStream has functions to write to a stream (g_output_stream_write()),
40 * to close a stream (g_output_stream_close()) and to flush pending writes
41 * (g_output_stream_flush()).
43 * To copy the content of an input stream to an output stream without
44 * manually handling the reads and writes, use g_output_stream_splice().
46 * All of these functions have async variants too.
49 G_DEFINE_TYPE (GOutputStream, g_output_stream, G_TYPE_OBJECT);
51 struct _GOutputStreamPrivate {
55 GAsyncReadyCallback outstanding_callback;
58 static gssize g_output_stream_real_splice (GOutputStream *stream,
60 GOutputStreamSpliceFlags flags,
61 GCancellable *cancellable,
63 static void g_output_stream_real_write_async (GOutputStream *stream,
67 GCancellable *cancellable,
68 GAsyncReadyCallback callback,
70 static gssize g_output_stream_real_write_finish (GOutputStream *stream,
73 static void g_output_stream_real_splice_async (GOutputStream *stream,
75 GOutputStreamSpliceFlags flags,
77 GCancellable *cancellable,
78 GAsyncReadyCallback callback,
80 static gssize g_output_stream_real_splice_finish (GOutputStream *stream,
83 static void g_output_stream_real_flush_async (GOutputStream *stream,
85 GCancellable *cancellable,
86 GAsyncReadyCallback callback,
88 static gboolean g_output_stream_real_flush_finish (GOutputStream *stream,
91 static void g_output_stream_real_close_async (GOutputStream *stream,
93 GCancellable *cancellable,
94 GAsyncReadyCallback callback,
96 static gboolean g_output_stream_real_close_finish (GOutputStream *stream,
101 g_output_stream_finalize (GObject *object)
103 G_OBJECT_CLASS (g_output_stream_parent_class)->finalize (object);
107 g_output_stream_dispose (GObject *object)
109 GOutputStream *stream;
111 stream = G_OUTPUT_STREAM (object);
113 if (!stream->priv->closed)
114 g_output_stream_close (stream, NULL, NULL);
116 G_OBJECT_CLASS (g_output_stream_parent_class)->dispose (object);
120 g_output_stream_class_init (GOutputStreamClass *klass)
122 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
124 g_type_class_add_private (klass, sizeof (GOutputStreamPrivate));
126 gobject_class->finalize = g_output_stream_finalize;
127 gobject_class->dispose = g_output_stream_dispose;
129 klass->splice = g_output_stream_real_splice;
131 klass->write_async = g_output_stream_real_write_async;
132 klass->write_finish = g_output_stream_real_write_finish;
133 klass->splice_async = g_output_stream_real_splice_async;
134 klass->splice_finish = g_output_stream_real_splice_finish;
135 klass->flush_async = g_output_stream_real_flush_async;
136 klass->flush_finish = g_output_stream_real_flush_finish;
137 klass->close_async = g_output_stream_real_close_async;
138 klass->close_finish = g_output_stream_real_close_finish;
142 g_output_stream_init (GOutputStream *stream)
144 stream->priv = G_TYPE_INSTANCE_GET_PRIVATE (stream,
145 G_TYPE_OUTPUT_STREAM,
146 GOutputStreamPrivate);
150 * g_output_stream_write:
151 * @stream: a #GOutputStream.
152 * @buffer: the buffer containing the data to write.
153 * @count: the number of bytes to write
154 * @cancellable: optional cancellable object
155 * @error: location to store the error occuring, or %NULL to ignore
157 * Tries to write @count bytes from @buffer into the stream. Will block
158 * during the operation.
160 * If count is zero returns zero and does nothing. A value of @count
161 * larger than %G_MAXSSIZE will cause a %G_IO_ERROR_INVALID_ARGUMENT error.
163 * On success, the number of bytes written to the stream is returned.
164 * It is not an error if this is not the same as the requested size, as it
165 * can happen e.g. on a partial i/o error, or if there is not enough
166 * storage in the stream. All writes either block until at least one byte
167 * is written, so zero is never returned (unless @count is zero).
169 * If @cancellable is not NULL, then the operation can be cancelled by
170 * triggering the cancellable object from another thread. If the operation
171 * was cancelled, the error G_IO_ERROR_CANCELLED will be returned. If an
172 * operation was partially finished when the operation was cancelled the
173 * partial result will be returned, without an error.
175 * On error -1 is returned and @error is set accordingly.
177 * Return value: Number of bytes written, or -1 on error
180 g_output_stream_write (GOutputStream *stream,
183 GCancellable *cancellable,
186 GOutputStreamClass *class;
189 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), -1);
190 g_return_val_if_fail (buffer != NULL, 0);
195 if (((gssize) count) < 0)
197 g_set_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
198 _("Too large count value passed to %s"), G_STRFUNC);
202 class = G_OUTPUT_STREAM_GET_CLASS (stream);
204 if (class->write_fn == NULL)
206 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
207 _("Output stream doesn't implement write"));
211 if (!g_output_stream_set_pending (stream, error))
215 g_cancellable_push_current (cancellable);
217 res = class->write_fn (stream, buffer, count, cancellable, error);
220 g_cancellable_pop_current (cancellable);
222 g_output_stream_clear_pending (stream);
228 * g_output_stream_write_all:
229 * @stream: a #GOutputStream.
230 * @buffer: the buffer containing the data to write.
231 * @count: the number of bytes to write
232 * @bytes_written: location to store the number of bytes that was
233 * written to the stream
234 * @cancellable: optional #GCancellable object, %NULL to ignore.
235 * @error: location to store the error occuring, or %NULL to ignore
237 * Tries to write @count bytes from @buffer into the stream. Will block
238 * during the operation.
240 * This function is similar to g_output_stream_write(), except it tries to
241 * write as many bytes as requested, only stopping on an error.
243 * On a successful write of @count bytes, %TRUE is returned, and @bytes_written
246 * If there is an error during the operation FALSE is returned and @error
247 * is set to indicate the error status, @bytes_written is updated to contain
248 * the number of bytes written into the stream before the error occurred.
250 * Return value: %TRUE on success, %FALSE if there was an error
253 g_output_stream_write_all (GOutputStream *stream,
256 gsize *bytes_written,
257 GCancellable *cancellable,
260 gsize _bytes_written;
263 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), FALSE);
264 g_return_val_if_fail (buffer != NULL, FALSE);
267 while (_bytes_written < count)
269 res = g_output_stream_write (stream, (char *)buffer + _bytes_written, count - _bytes_written,
274 *bytes_written = _bytes_written;
279 g_warning ("Write returned zero without error");
281 _bytes_written += res;
285 *bytes_written = _bytes_written;
291 * g_output_stream_flush:
292 * @stream: a #GOutputStream.
293 * @cancellable: optional cancellable object
294 * @error: location to store the error occuring, or %NULL to ignore
296 * Flushed any outstanding buffers in the stream. Will block during
297 * the operation. Closing the stream will implicitly cause a flush.
299 * This function is optional for inherited classes.
301 * If @cancellable is not %NULL, then the operation can be cancelled by
302 * triggering the cancellable object from another thread. If the operation
303 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
305 * Return value: %TRUE on success, %FALSE on error
308 g_output_stream_flush (GOutputStream *stream,
309 GCancellable *cancellable,
312 GOutputStreamClass *class;
315 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), FALSE);
317 if (!g_output_stream_set_pending (stream, error))
320 class = G_OUTPUT_STREAM_GET_CLASS (stream);
326 g_cancellable_push_current (cancellable);
328 res = class->flush (stream, cancellable, error);
331 g_cancellable_pop_current (cancellable);
334 g_output_stream_clear_pending (stream);
340 * g_output_stream_splice:
341 * @stream: a #GOutputStream.
342 * @source: a #GInputStream.
343 * @flags: a set of #GOutputStreamSpliceFlags.
344 * @cancellable: optional #GCancellable object, %NULL to ignore.
345 * @error: a #GError location to store the error occuring, or %NULL to
348 * Splices an input stream into an output stream.
350 * Returns: a #gssize containing the size of the data spliced, or
351 * -1 if an error occurred.
354 g_output_stream_splice (GOutputStream *stream,
355 GInputStream *source,
356 GOutputStreamSpliceFlags flags,
357 GCancellable *cancellable,
360 GOutputStreamClass *class;
363 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), -1);
364 g_return_val_if_fail (G_IS_INPUT_STREAM (source), -1);
366 if (g_input_stream_is_closed (source))
368 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_CLOSED,
369 _("Source stream is already closed"));
373 if (!g_output_stream_set_pending (stream, error))
376 class = G_OUTPUT_STREAM_GET_CLASS (stream);
379 g_cancellable_push_current (cancellable);
381 bytes_copied = class->splice (stream, source, flags, cancellable, error);
384 g_cancellable_pop_current (cancellable);
386 g_output_stream_clear_pending (stream);
392 g_output_stream_real_splice (GOutputStream *stream,
393 GInputStream *source,
394 GOutputStreamSpliceFlags flags,
395 GCancellable *cancellable,
398 GOutputStreamClass *class = G_OUTPUT_STREAM_GET_CLASS (stream);
399 gssize n_read, n_written;
401 char buffer[8192], *p;
405 if (class->write_fn == NULL)
407 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
408 _("Output stream doesn't implement write"));
416 n_read = g_input_stream_read (source, buffer, sizeof (buffer), cancellable, error);
429 n_written = class->write_fn (stream, p, n_read, cancellable, error);
438 bytes_copied += n_written;
445 error = NULL; /* Ignore further errors */
447 if (flags & G_OUTPUT_STREAM_SPLICE_CLOSE_SOURCE)
449 /* Don't care about errors in source here */
450 g_input_stream_close (source, cancellable, NULL);
453 if (flags & G_OUTPUT_STREAM_SPLICE_CLOSE_TARGET)
455 /* But write errors on close are bad! */
456 if (class->close_fn &&
457 !class->close_fn (stream, cancellable, error))
469 * g_output_stream_close:
470 * @stream: A #GOutputStream.
471 * @cancellable: optional cancellable object
472 * @error: location to store the error occuring, or %NULL to ignore
474 * Closes the stream, releasing resources related to it.
476 * Once the stream is closed, all other operations will return %G_IO_ERROR_CLOSED.
477 * Closing a stream multiple times will not return an error.
479 * Closing a stream will automatically flush any outstanding buffers in the
482 * Streams will be automatically closed when the last reference
483 * is dropped, but you might want to call this function to make sure
484 * resources are released as early as possible.
486 * Some streams might keep the backing store of the stream (e.g. a file descriptor)
487 * open after the stream is closed. See the documentation for the individual
488 * stream for details.
490 * On failure the first error that happened will be reported, but the close
491 * operation will finish as much as possible. A stream that failed to
492 * close will still return %G_IO_ERROR_CLOSED for all operations. Still, it
493 * is important to check and report the error to the user, otherwise
494 * there might be a loss of data as all data might not be written.
496 * If @cancellable is not NULL, then the operation can be cancelled by
497 * triggering the cancellable object from another thread. If the operation
498 * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
499 * Cancelling a close will still leave the stream closed, but there some streams
500 * can use a faster close that doesn't block to e.g. check errors. On
501 * cancellation (as with any error) there is no guarantee that all written
502 * data will reach the target.
504 * Return value: %TRUE on success, %FALSE on failure
507 g_output_stream_close (GOutputStream *stream,
508 GCancellable *cancellable,
511 GOutputStreamClass *class;
514 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), FALSE);
516 class = G_OUTPUT_STREAM_GET_CLASS (stream);
518 if (stream->priv->closed)
521 if (!g_output_stream_set_pending (stream, error))
524 stream->priv->closing = TRUE;
527 g_cancellable_push_current (cancellable);
530 res = class->flush (stream, cancellable, error);
536 /* flushing caused the error that we want to return,
537 * but we still want to close the underlying stream if possible
540 class->close_fn (stream, cancellable, NULL);
546 res = class->close_fn (stream, cancellable, error);
550 g_cancellable_pop_current (cancellable);
552 stream->priv->closing = FALSE;
553 stream->priv->closed = TRUE;
554 g_output_stream_clear_pending (stream);
560 async_ready_callback_wrapper (GObject *source_object,
564 GOutputStream *stream = G_OUTPUT_STREAM (source_object);
566 g_output_stream_clear_pending (stream);
567 if (stream->priv->outstanding_callback)
568 (*stream->priv->outstanding_callback) (source_object, res, user_data);
569 g_object_unref (stream);
574 GCancellable *cancellable;
580 async_ready_close_callback_wrapper (GObject *source_object,
584 GOutputStream *stream = G_OUTPUT_STREAM (source_object);
585 CloseUserData *data = user_data;
587 stream->priv->closing = FALSE;
588 stream->priv->closed = TRUE;
590 g_output_stream_clear_pending (stream);
592 if (stream->priv->outstanding_callback)
594 if (data->flush_error != NULL)
596 GSimpleAsyncResult *err;
598 err = g_simple_async_result_new_from_error (source_object,
599 stream->priv->outstanding_callback,
603 (*stream->priv->outstanding_callback) (source_object,
604 G_ASYNC_RESULT (err),
606 g_object_unref (err);
610 (*stream->priv->outstanding_callback) (source_object,
616 g_object_unref (stream);
618 if (data->cancellable)
619 g_object_unref (data->cancellable);
621 if (data->flush_error)
622 g_error_free (data->flush_error);
624 g_slice_free (CloseUserData, data);
628 async_ready_close_flushed_callback_wrapper (GObject *source_object,
632 GOutputStream *stream = G_OUTPUT_STREAM (source_object);
633 GOutputStreamClass *class;
634 CloseUserData *data = user_data;
635 GSimpleAsyncResult *simple;
637 /* propagate the possible error */
638 if (G_IS_SIMPLE_ASYNC_RESULT (res))
640 simple = G_SIMPLE_ASYNC_RESULT (res);
641 g_simple_async_result_propagate_error (simple, &data->flush_error);
644 class = G_OUTPUT_STREAM_GET_CLASS (stream);
646 /* we still close, even if there was a flush error */
647 class->close_async (stream, data->io_priority, data->cancellable,
648 async_ready_close_callback_wrapper, user_data);
652 * g_output_stream_write_async:
653 * @stream: A #GOutputStream.
654 * @buffer: the buffer containing the data to write.
655 * @count: the number of bytes to write
656 * @io_priority: the io priority of the request.
657 * @cancellable: optional #GCancellable object, %NULL to ignore.
658 * @callback: callback to call when the request is satisfied
659 * @user_data: the data to pass to callback function
661 * Request an asynchronous write of @count bytes from @buffer into
662 * the stream. When the operation is finished @callback will be called.
663 * You can then call g_output_stream_write_finish() to get the result of the
666 * During an async request no other sync and async calls are allowed,
667 * and will result in %G_IO_ERROR_PENDING errors.
669 * A value of @count larger than %G_MAXSSIZE will cause a
670 * %G_IO_ERROR_INVALID_ARGUMENT error.
672 * On success, the number of bytes written will be passed to the
673 * @callback. It is not an error if this is not the same as the
674 * requested size, as it can happen e.g. on a partial I/O error,
675 * but generally we try to write as many bytes as requested.
677 * Any outstanding I/O request with higher priority (lower numerical
678 * value) will be executed before an outstanding request with lower
679 * priority. Default priority is %G_PRIORITY_DEFAULT.
681 * The asyncronous methods have a default fallback that uses threads
682 * to implement asynchronicity, so they are optional for inheriting
683 * classes. However, if you override one you must override all.
685 * For the synchronous, blocking version of this function, see
686 * g_output_stream_write().
689 g_output_stream_write_async (GOutputStream *stream,
693 GCancellable *cancellable,
694 GAsyncReadyCallback callback,
697 GOutputStreamClass *class;
698 GSimpleAsyncResult *simple;
699 GError *error = NULL;
701 g_return_if_fail (G_IS_OUTPUT_STREAM (stream));
702 g_return_if_fail (buffer != NULL);
706 simple = g_simple_async_result_new (G_OBJECT (stream),
709 g_output_stream_write_async);
710 g_simple_async_result_complete_in_idle (simple);
711 g_object_unref (simple);
715 if (((gssize) count) < 0)
717 g_simple_async_report_error_in_idle (G_OBJECT (stream),
720 G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
721 _("Too large count value passed to %s"),
726 if (!g_output_stream_set_pending (stream, &error))
728 g_simple_async_report_gerror_in_idle (G_OBJECT (stream),
732 g_error_free (error);
736 class = G_OUTPUT_STREAM_GET_CLASS (stream);
738 stream->priv->outstanding_callback = callback;
739 g_object_ref (stream);
740 class->write_async (stream, buffer, count, io_priority, cancellable,
741 async_ready_callback_wrapper, user_data);
745 * g_output_stream_write_finish:
746 * @stream: a #GOutputStream.
747 * @result: a #GAsyncResult.
748 * @error: a #GError location to store the error occuring, or %NULL to
751 * Finishes a stream write operation.
753 * Returns: a #gssize containing the number of bytes written to the stream.
756 g_output_stream_write_finish (GOutputStream *stream,
757 GAsyncResult *result,
760 GSimpleAsyncResult *simple;
761 GOutputStreamClass *class;
763 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), -1);
764 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), -1);
766 if (G_IS_SIMPLE_ASYNC_RESULT (result))
768 simple = G_SIMPLE_ASYNC_RESULT (result);
769 if (g_simple_async_result_propagate_error (simple, error))
772 /* Special case writes of 0 bytes */
773 if (g_simple_async_result_get_source_tag (simple) == g_output_stream_write_async)
777 class = G_OUTPUT_STREAM_GET_CLASS (stream);
778 return class->write_finish (stream, result, error);
782 GInputStream *source;
784 GAsyncReadyCallback callback;
788 async_ready_splice_callback_wrapper (GObject *source_object,
792 GOutputStream *stream = G_OUTPUT_STREAM (source_object);
793 SpliceUserData *data = _data;
795 g_output_stream_clear_pending (stream);
798 (*data->callback) (source_object, res, data->user_data);
800 g_object_unref (stream);
801 g_object_unref (data->source);
806 * g_output_stream_splice_async:
807 * @stream: a #GOutputStream.
808 * @source: a #GInputStream.
809 * @flags: a set of #GOutputStreamSpliceFlags.
810 * @io_priority: the io priority of the request.
811 * @cancellable: optional #GCancellable object, %NULL to ignore.
812 * @callback: a #GAsyncReadyCallback.
813 * @user_data: user data passed to @callback.
815 * Splices a stream asynchronously.
816 * When the operation is finished @callback will be called.
817 * You can then call g_output_stream_splice_finish() to get the
818 * result of the operation.
820 * For the synchronous, blocking version of this function, see
821 * g_output_stream_splice().
824 g_output_stream_splice_async (GOutputStream *stream,
825 GInputStream *source,
826 GOutputStreamSpliceFlags flags,
828 GCancellable *cancellable,
829 GAsyncReadyCallback callback,
832 GOutputStreamClass *class;
833 SpliceUserData *data;
834 GError *error = NULL;
836 g_return_if_fail (G_IS_OUTPUT_STREAM (stream));
837 g_return_if_fail (G_IS_INPUT_STREAM (source));
839 if (g_input_stream_is_closed (source))
841 g_simple_async_report_error_in_idle (G_OBJECT (stream),
844 G_IO_ERROR, G_IO_ERROR_CLOSED,
845 _("Source stream is already closed"));
849 if (!g_output_stream_set_pending (stream, &error))
851 g_simple_async_report_gerror_in_idle (G_OBJECT (stream),
855 g_error_free (error);
859 class = G_OUTPUT_STREAM_GET_CLASS (stream);
861 data = g_new0 (SpliceUserData, 1);
862 data->callback = callback;
863 data->user_data = user_data;
864 data->source = g_object_ref (source);
866 g_object_ref (stream);
867 class->splice_async (stream, source, flags, io_priority, cancellable,
868 async_ready_splice_callback_wrapper, data);
872 * g_output_stream_splice_finish:
873 * @stream: a #GOutputStream.
874 * @result: a #GAsyncResult.
875 * @error: a #GError location to store the error occuring, or %NULL to
878 * Finishes an asynchronous stream splice operation.
880 * Returns: a #gssize of the number of bytes spliced.
883 g_output_stream_splice_finish (GOutputStream *stream,
884 GAsyncResult *result,
887 GSimpleAsyncResult *simple;
888 GOutputStreamClass *class;
890 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), -1);
891 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), -1);
893 if (G_IS_SIMPLE_ASYNC_RESULT (result))
895 simple = G_SIMPLE_ASYNC_RESULT (result);
896 if (g_simple_async_result_propagate_error (simple, error))
900 class = G_OUTPUT_STREAM_GET_CLASS (stream);
901 return class->splice_finish (stream, result, error);
905 * g_output_stream_flush_async:
906 * @stream: a #GOutputStream.
907 * @io_priority: the io priority of the request.
908 * @cancellable: optional #GCancellable object, %NULL to ignore.
909 * @callback: a #GAsyncReadyCallback to call when the request is satisfied
910 * @user_data: the data to pass to callback function
912 * Flushes a stream asynchronously.
913 * For behaviour details see g_output_stream_flush().
915 * When the operation is finished @callback will be
916 * called. You can then call g_output_stream_flush_finish() to get the
917 * result of the operation.
920 g_output_stream_flush_async (GOutputStream *stream,
922 GCancellable *cancellable,
923 GAsyncReadyCallback callback,
926 GOutputStreamClass *class;
927 GSimpleAsyncResult *simple;
928 GError *error = NULL;
930 g_return_if_fail (G_IS_OUTPUT_STREAM (stream));
932 if (!g_output_stream_set_pending (stream, &error))
934 g_simple_async_report_gerror_in_idle (G_OBJECT (stream),
938 g_error_free (error);
942 stream->priv->outstanding_callback = callback;
943 g_object_ref (stream);
945 class = G_OUTPUT_STREAM_GET_CLASS (stream);
947 if (class->flush_async == NULL)
949 simple = g_simple_async_result_new (G_OBJECT (stream),
950 async_ready_callback_wrapper,
952 g_output_stream_flush_async);
953 g_simple_async_result_complete_in_idle (simple);
954 g_object_unref (simple);
958 class->flush_async (stream, io_priority, cancellable,
959 async_ready_callback_wrapper, user_data);
963 * g_output_stream_flush_finish:
964 * @stream: a #GOutputStream.
965 * @result: a GAsyncResult.
966 * @error: a #GError location to store the error occuring, or %NULL to
969 * Finishes flushing an output stream.
971 * Returns: %TRUE if flush operation suceeded, %FALSE otherwise.
974 g_output_stream_flush_finish (GOutputStream *stream,
975 GAsyncResult *result,
978 GSimpleAsyncResult *simple;
979 GOutputStreamClass *klass;
981 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), FALSE);
982 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
984 if (G_IS_SIMPLE_ASYNC_RESULT (result))
986 simple = G_SIMPLE_ASYNC_RESULT (result);
987 if (g_simple_async_result_propagate_error (simple, error))
990 /* Special case default implementation */
991 if (g_simple_async_result_get_source_tag (simple) == g_output_stream_flush_async)
995 klass = G_OUTPUT_STREAM_GET_CLASS (stream);
996 return klass->flush_finish (stream, result, error);
1001 * g_output_stream_close_async:
1002 * @stream: A #GOutputStream.
1003 * @io_priority: the io priority of the request.
1004 * @callback: callback to call when the request is satisfied
1005 * @user_data: the data to pass to callback function
1006 * @cancellable: optional cancellable object
1008 * Requests an asynchronous close of the stream, releasing resources
1009 * related to it. When the operation is finished @callback will be
1010 * called. You can then call g_output_stream_close_finish() to get
1011 * the result of the operation.
1013 * For behaviour details see g_output_stream_close().
1015 * The asyncronous methods have a default fallback that uses threads
1016 * to implement asynchronicity, so they are optional for inheriting
1017 * classes. However, if you override one you must override all.
1020 g_output_stream_close_async (GOutputStream *stream,
1022 GCancellable *cancellable,
1023 GAsyncReadyCallback callback,
1026 GOutputStreamClass *class;
1027 GSimpleAsyncResult *simple;
1028 GError *error = NULL;
1029 CloseUserData *data;
1031 g_return_if_fail (G_IS_OUTPUT_STREAM (stream));
1033 if (stream->priv->closed)
1035 simple = g_simple_async_result_new (G_OBJECT (stream),
1038 g_output_stream_close_async);
1039 g_simple_async_result_complete_in_idle (simple);
1040 g_object_unref (simple);
1044 if (!g_output_stream_set_pending (stream, &error))
1046 g_simple_async_report_gerror_in_idle (G_OBJECT (stream),
1050 g_error_free (error);
1054 class = G_OUTPUT_STREAM_GET_CLASS (stream);
1055 stream->priv->closing = TRUE;
1056 stream->priv->outstanding_callback = callback;
1057 g_object_ref (stream);
1059 data = g_slice_new0 (CloseUserData);
1061 if (cancellable != NULL)
1062 data->cancellable = g_object_ref (cancellable);
1064 data->io_priority = io_priority;
1065 data->user_data = user_data;
1067 /* Call close_async directly if there is no need to flush, or if the flush
1068 can be done sync (in the output stream async close thread) */
1069 if (class->flush_async == NULL ||
1070 (class->flush_async == g_output_stream_real_flush_async &&
1071 (class->flush == NULL || class->close_async == g_output_stream_real_close_async)))
1073 class->close_async (stream, io_priority, cancellable,
1074 async_ready_close_callback_wrapper, data);
1078 /* First do an async flush, then do the async close in the callback
1079 wrapper (see async_ready_close_flushed_callback_wrapper) */
1080 class->flush_async (stream, io_priority, cancellable,
1081 async_ready_close_flushed_callback_wrapper, data);
1086 * g_output_stream_close_finish:
1087 * @stream: a #GOutputStream.
1088 * @result: a #GAsyncResult.
1089 * @error: a #GError location to store the error occuring, or %NULL to
1092 * Closes an output stream.
1094 * Returns: %TRUE if stream was successfully closed, %FALSE otherwise.
1097 g_output_stream_close_finish (GOutputStream *stream,
1098 GAsyncResult *result,
1101 GSimpleAsyncResult *simple;
1102 GOutputStreamClass *class;
1104 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), FALSE);
1105 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
1107 if (G_IS_SIMPLE_ASYNC_RESULT (result))
1109 simple = G_SIMPLE_ASYNC_RESULT (result);
1110 if (g_simple_async_result_propagate_error (simple, error))
1113 /* Special case already closed */
1114 if (g_simple_async_result_get_source_tag (simple) == g_output_stream_close_async)
1118 class = G_OUTPUT_STREAM_GET_CLASS (stream);
1119 return class->close_finish (stream, result, error);
1123 * g_output_stream_is_closed:
1124 * @stream: a #GOutputStream.
1126 * Checks if an output stream has already been closed.
1128 * Returns: %TRUE if @stream is closed. %FALSE otherwise.
1131 g_output_stream_is_closed (GOutputStream *stream)
1133 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), TRUE);
1135 return stream->priv->closed;
1139 * g_output_stream_is_closing:
1140 * @stream: a #GOutputStream.
1142 * Checks if an output stream is being closed. This can be
1143 * used inside e.g. a flush implementation to see if the
1144 * flush (or other i/o operation) is called from within
1145 * the closing operation.
1147 * Returns: %TRUE if @stream is being closed. %FALSE otherwise.
1152 g_output_stream_is_closing (GOutputStream *stream)
1154 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), TRUE);
1156 return stream->priv->closing;
1160 * g_output_stream_has_pending:
1161 * @stream: a #GOutputStream.
1163 * Checks if an ouput stream has pending actions.
1165 * Returns: %TRUE if @stream has pending actions.
1168 g_output_stream_has_pending (GOutputStream *stream)
1170 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), FALSE);
1172 return stream->priv->pending;
1176 * g_output_stream_set_pending:
1177 * @stream: a #GOutputStream.
1178 * @error: a #GError location to store the error occuring, or %NULL to
1181 * Sets @stream to have actions pending. If the pending flag is
1182 * already set or @stream is closed, it will return %FALSE and set
1185 * Return value: %TRUE if pending was previously unset and is now set.
1188 g_output_stream_set_pending (GOutputStream *stream,
1191 g_return_val_if_fail (G_IS_OUTPUT_STREAM (stream), FALSE);
1193 if (stream->priv->closed)
1195 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_CLOSED,
1196 _("Stream is already closed"));
1200 if (stream->priv->pending)
1202 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_PENDING,
1203 /* Translators: This is an error you get if there is
1204 * already an operation running against this stream when
1205 * you try to start one */
1206 _("Stream has outstanding operation"));
1210 stream->priv->pending = TRUE;
1215 * g_output_stream_clear_pending:
1216 * @stream: output stream
1218 * Clears the pending flag on @stream.
1221 g_output_stream_clear_pending (GOutputStream *stream)
1223 g_return_if_fail (G_IS_OUTPUT_STREAM (stream));
1225 stream->priv->pending = FALSE;
1229 /********************************************
1230 * Default implementation of async ops *
1231 ********************************************/
1235 gsize count_requested;
1236 gssize count_written;
1240 write_async_thread (GSimpleAsyncResult *res,
1242 GCancellable *cancellable)
1245 GOutputStreamClass *class;
1246 GError *error = NULL;
1248 class = G_OUTPUT_STREAM_GET_CLASS (object);
1249 op = g_simple_async_result_get_op_res_gpointer (res);
1250 op->count_written = class->write_fn (G_OUTPUT_STREAM (object), op->buffer, op->count_requested,
1251 cancellable, &error);
1252 if (op->count_written == -1)
1254 g_simple_async_result_set_from_error (res, error);
1255 g_error_free (error);
1260 g_output_stream_real_write_async (GOutputStream *stream,
1264 GCancellable *cancellable,
1265 GAsyncReadyCallback callback,
1268 GSimpleAsyncResult *res;
1271 op = g_new0 (WriteData, 1);
1272 res = g_simple_async_result_new (G_OBJECT (stream), callback, user_data, g_output_stream_real_write_async);
1273 g_simple_async_result_set_op_res_gpointer (res, op, g_free);
1274 op->buffer = buffer;
1275 op->count_requested = count;
1277 g_simple_async_result_run_in_thread (res, write_async_thread, io_priority, cancellable);
1278 g_object_unref (res);
1282 g_output_stream_real_write_finish (GOutputStream *stream,
1283 GAsyncResult *result,
1286 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
1289 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_output_stream_real_write_async);
1290 op = g_simple_async_result_get_op_res_gpointer (simple);
1291 return op->count_written;
1295 GInputStream *source;
1296 GOutputStreamSpliceFlags flags;
1297 gssize bytes_copied;
1301 splice_async_thread (GSimpleAsyncResult *result,
1303 GCancellable *cancellable)
1306 GOutputStreamClass *class;
1307 GError *error = NULL;
1308 GOutputStream *stream;
1310 stream = G_OUTPUT_STREAM (object);
1311 class = G_OUTPUT_STREAM_GET_CLASS (object);
1312 op = g_simple_async_result_get_op_res_gpointer (result);
1314 op->bytes_copied = class->splice (stream,
1319 if (op->bytes_copied == -1)
1321 g_simple_async_result_set_from_error (result, error);
1322 g_error_free (error);
1327 g_output_stream_real_splice_async (GOutputStream *stream,
1328 GInputStream *source,
1329 GOutputStreamSpliceFlags flags,
1331 GCancellable *cancellable,
1332 GAsyncReadyCallback callback,
1335 GSimpleAsyncResult *res;
1338 op = g_new0 (SpliceData, 1);
1339 res = g_simple_async_result_new (G_OBJECT (stream), callback, user_data, g_output_stream_real_splice_async);
1340 g_simple_async_result_set_op_res_gpointer (res, op, g_free);
1342 op->source = source;
1344 /* TODO: In the case where both source and destintion have
1345 non-threadbased async calls we can use a true async copy here */
1347 g_simple_async_result_run_in_thread (res, splice_async_thread, io_priority, cancellable);
1348 g_object_unref (res);
1352 g_output_stream_real_splice_finish (GOutputStream *stream,
1353 GAsyncResult *result,
1356 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
1359 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_output_stream_real_splice_async);
1360 op = g_simple_async_result_get_op_res_gpointer (simple);
1361 return op->bytes_copied;
1366 flush_async_thread (GSimpleAsyncResult *res,
1368 GCancellable *cancellable)
1370 GOutputStreamClass *class;
1372 GError *error = NULL;
1374 class = G_OUTPUT_STREAM_GET_CLASS (object);
1377 result = class->flush (G_OUTPUT_STREAM (object), cancellable, &error);
1381 g_simple_async_result_set_from_error (res, error);
1382 g_error_free (error);
1387 g_output_stream_real_flush_async (GOutputStream *stream,
1389 GCancellable *cancellable,
1390 GAsyncReadyCallback callback,
1393 GSimpleAsyncResult *res;
1395 res = g_simple_async_result_new (G_OBJECT (stream), callback, user_data, g_output_stream_real_write_async);
1397 g_simple_async_result_run_in_thread (res, flush_async_thread, io_priority, cancellable);
1398 g_object_unref (res);
1402 g_output_stream_real_flush_finish (GOutputStream *stream,
1403 GAsyncResult *result,
1410 close_async_thread (GSimpleAsyncResult *res,
1412 GCancellable *cancellable)
1414 GOutputStreamClass *class;
1415 GError *error = NULL;
1416 gboolean result = TRUE;
1418 class = G_OUTPUT_STREAM_GET_CLASS (object);
1420 /* Do a flush here if there is a flush function, and we did not have to do
1421 an async flush before (see g_output_stream_close_async) */
1422 if (class->flush != NULL &&
1423 (class->flush_async == NULL ||
1424 class->flush_async == g_output_stream_real_flush_async))
1426 result = class->flush (G_OUTPUT_STREAM (object), cancellable, &error);
1429 /* Auto handling of cancelation disabled, and ignore
1430 cancellation, since we want to close things anyway, although
1431 possibly in a quick-n-dirty way. At least we never want to leak
1434 if (class->close_fn)
1436 /* Make sure to close, even if the flush failed (see sync close) */
1438 class->close_fn (G_OUTPUT_STREAM (object), cancellable, NULL);
1440 result = class->close_fn (G_OUTPUT_STREAM (object), cancellable, &error);
1444 g_simple_async_result_set_from_error (res, error);
1445 g_error_free (error);
1451 g_output_stream_real_close_async (GOutputStream *stream,
1453 GCancellable *cancellable,
1454 GAsyncReadyCallback callback,
1457 GSimpleAsyncResult *res;
1459 res = g_simple_async_result_new (G_OBJECT (stream), callback, user_data, g_output_stream_real_close_async);
1461 g_simple_async_result_set_handle_cancellation (res, FALSE);
1463 g_simple_async_result_run_in_thread (res, close_async_thread, io_priority, cancellable);
1464 g_object_unref (res);
1468 g_output_stream_real_close_finish (GOutputStream *stream,
1469 GAsyncResult *result,
1472 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
1473 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_output_stream_real_close_async);
1477 #define __G_OUTPUT_STREAM_C__
1478 #include "gioaliasdef.c"