593eedafd90ae2f65f67ef4526138cc3b06e938c
[platform/upstream/glib.git] / gio / giostream.c
1 /* GIO - GLib Input, Output and Streaming Library
2  *
3  * Copyright © 2008 codethink
4  * Copyright © 2009 Red Hat, Inc.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General
17  * Public License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19  * Boston, MA 02111-1307, USA.
20  *
21  * Authors: Ryan Lortie <desrt@desrt.ca>
22  *          Alexander Larsson <alexl@redhat.com>
23  */
24
25 #include "config.h"
26 #include <glib.h>
27 #include "glibintl.h"
28
29 #include "giostream.h"
30 #include <gio/gsimpleasyncresult.h>
31 #include <gio/gasyncresult.h>
32
33
34 G_DEFINE_ABSTRACT_TYPE (GIOStream, g_io_stream, G_TYPE_OBJECT);
35
36 /**
37  * SECTION:giostream
38  * @short_description: Base class for implementing read/write streams
39  * @include: gio/gio.h
40  * @see_also: #GInputStream, #GOutputStream
41  *
42  * GIOStream represents an object that has both read and write streams.
43  * Generally the two streams acts as separate input and output streams,
44  * but they share some common resources and state. For instance, for
45  * seekable streams they may use the same position in both streams.
46  *
47  * Examples of #GIOStream objects are #GSocketConnection which represents
48  * a two-way network connection, and #GFileIOStream which represent a
49  * file handle opened in read-write mode.
50  *
51  * To do the actual reading and writing you need to get the substreams
52  * with g_io_stream_get_input_stream() and g_io_stream_get_output_stream().
53  *
54  * The #GIOStream object owns the input and the output streams, not the other
55  * way around, so keeping the substreams alive will not keep the #GIOStream
56  * object alive. If the #GIOStream object is freed it will be closed, thus
57  * closing the substream, so even if the substreams stay alive they will
58  * always just return a %G_IO_ERROR_CLOSED for all operations.
59  *
60  * To close a stream use g_io_stream_close() which will close the common
61  * stream object and also the individual substreams. You can also close
62  * the substreams themselves. In most cases this only marks the
63  * substream as closed, so further I/O on it fails. However, some streams
64  * may support "half-closed" states where one direction of the stream
65  * is actually shut down.
66  *
67  * Since: 2.22
68  */
69
70 enum
71 {
72   PROP_0,
73   PROP_INPUT_STREAM,
74   PROP_OUTPUT_STREAM,
75   PROP_CLOSED
76 };
77
78 struct _GIOStreamPrivate {
79   guint closed : 1;
80   guint pending : 1;
81   GAsyncReadyCallback outstanding_callback;
82 };
83
84 static gboolean g_io_stream_real_close        (GIOStream            *stream,
85                                                GCancellable         *cancellable,
86                                                GError              **error);
87 static void     g_io_stream_real_close_async  (GIOStream            *stream,
88                                                int                   io_priority,
89                                                GCancellable         *cancellable,
90                                                GAsyncReadyCallback   callback,
91                                                gpointer              user_data);
92 static gboolean g_io_stream_real_close_finish (GIOStream            *stream,
93                                                GAsyncResult         *result,
94                                                GError              **error);
95
96 static void
97 g_io_stream_finalize (GObject *object)
98 {
99   G_OBJECT_CLASS (g_io_stream_parent_class)->finalize (object);
100 }
101
102 static void
103 g_io_stream_dispose (GObject *object)
104 {
105   GIOStream *stream;
106
107   stream = G_IO_STREAM (object);
108
109   if (!stream->priv->closed)
110     g_io_stream_close (stream, NULL, NULL);
111
112   G_OBJECT_CLASS (g_io_stream_parent_class)->dispose (object);
113 }
114
115 static void
116 g_io_stream_init (GIOStream *stream)
117 {
118   stream->priv = G_TYPE_INSTANCE_GET_PRIVATE (stream,
119                                               G_TYPE_IO_STREAM,
120                                               GIOStreamPrivate);
121 }
122
123 static void
124 g_io_stream_get_property (GObject    *object,
125                           guint       prop_id,
126                           GValue     *value,
127                           GParamSpec *pspec)
128 {
129   GIOStream *stream = G_IO_STREAM (object);
130
131   switch (prop_id)
132     {
133       case PROP_CLOSED:
134         g_value_set_boolean (value, stream->priv->closed);
135         break;
136
137       case PROP_INPUT_STREAM:
138         g_value_set_object (value, g_io_stream_get_input_stream (stream));
139         break;
140
141       case PROP_OUTPUT_STREAM:
142         g_value_set_object (value, g_io_stream_get_output_stream (stream));
143         break;
144
145       default:
146         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
147     }
148 }
149
150 static void
151 g_io_stream_class_init (GIOStreamClass *klass)
152 {
153   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
154
155   g_type_class_add_private (klass, sizeof (GIOStreamPrivate));
156
157   gobject_class->finalize = g_io_stream_finalize;
158   gobject_class->dispose = g_io_stream_dispose;
159   gobject_class->get_property = g_io_stream_get_property;
160
161   klass->close_fn = g_io_stream_real_close;
162   klass->close_async = g_io_stream_real_close_async;
163   klass->close_finish = g_io_stream_real_close_finish;
164
165   g_object_class_install_property (gobject_class, PROP_CLOSED,
166                                    g_param_spec_boolean ("closed",
167                                                          P_("Closed"),
168                                                          P_("Is the stream closed"),
169                                                          FALSE,
170                                                          G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
171
172   g_object_class_install_property (gobject_class, PROP_INPUT_STREAM,
173                                    g_param_spec_object ("input-stream",
174                                                         P_("Input stream"),
175                                                         P_("The GInputStream to read from"),
176                                                         G_TYPE_INPUT_STREAM,
177                                                         G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
178   g_object_class_install_property (gobject_class, PROP_OUTPUT_STREAM,
179                                    g_param_spec_object ("output-stream",
180                                                         P_("Output stream"),
181                                                         P_("The GOutputStream to write to"),
182                                                         G_TYPE_OUTPUT_STREAM,
183                                                         G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
184 }
185
186 /**
187  * g_io_stream_is_closed:
188  * @stream: a #GIOStream
189  *
190  * Checks if a stream is closed.
191  *
192  * Returns: %TRUE if the stream is closed.
193  *
194  * Since: 2.22
195  */
196 gboolean
197 g_io_stream_is_closed (GIOStream *stream)
198 {
199   g_return_val_if_fail (G_IS_IO_STREAM (stream), TRUE);
200
201   return stream->priv->closed;
202 }
203
204 /**
205  * g_io_stream_get_input_stream:
206  * @stream: a #GIOStream
207  *
208  * Gets the input stream for this object. This is used
209  * for reading.
210  *
211  * Returns: (transfer none): a #GInputStream, owned by the #GIOStream.
212  * Do not free.
213  *
214  * Since: 2.22
215  */
216 GInputStream *
217 g_io_stream_get_input_stream (GIOStream *stream)
218 {
219   GIOStreamClass *klass;
220
221   klass = G_IO_STREAM_GET_CLASS (stream);
222
223   g_assert (klass->get_input_stream != NULL);
224
225   return klass->get_input_stream (stream);
226 }
227
228 /**
229  * g_io_stream_get_output_stream:
230  * @stream: a #GIOStream
231  *
232  * Gets the output stream for this object. This is used for
233  * writing.
234  *
235  * Returns: (transfer none): a #GOutputStream, owned by the #GIOStream.
236  * Do not free.
237  *
238  * Since: 2.22
239  */
240 GOutputStream *
241 g_io_stream_get_output_stream (GIOStream *stream)
242 {
243   GIOStreamClass *klass;
244
245   klass = G_IO_STREAM_GET_CLASS (stream);
246
247   g_assert (klass->get_output_stream != NULL);
248   return klass->get_output_stream (stream);
249 }
250
251 /**
252  * g_io_stream_has_pending:
253  * @stream: a #GIOStream
254  *
255  * Checks if a stream has pending actions.
256  *
257  * Returns: %TRUE if @stream has pending actions.
258  *
259  * Since: 2.22
260  **/
261 gboolean
262 g_io_stream_has_pending (GIOStream *stream)
263 {
264   g_return_val_if_fail (G_IS_IO_STREAM (stream), FALSE);
265
266   return stream->priv->pending;
267 }
268
269 /**
270  * g_io_stream_set_pending:
271  * @stream: a #GIOStream
272  * @error: a #GError location to store the error occurring, or %NULL to
273  *     ignore
274  *
275  * Sets @stream to have actions pending. If the pending flag is
276  * already set or @stream is closed, it will return %FALSE and set
277  * @error.
278  *
279  * Return value: %TRUE if pending was previously unset and is now set.
280  *
281  * Since: 2.22
282  */
283 gboolean
284 g_io_stream_set_pending (GIOStream  *stream,
285                          GError    **error)
286 {
287   g_return_val_if_fail (G_IS_IO_STREAM (stream), FALSE);
288
289   if (stream->priv->closed)
290     {
291       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_CLOSED,
292                            _("Stream is already closed"));
293       return FALSE;
294     }
295
296   if (stream->priv->pending)
297     {
298       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_PENDING,
299                            /* Translators: This is an error you get if there is
300                             * already an operation running against this stream when
301                             * you try to start one */
302                            _("Stream has outstanding operation"));
303       return FALSE;
304     }
305
306   stream->priv->pending = TRUE;
307   return TRUE;
308 }
309
310 /**
311  * g_io_stream_clear_pending:
312  * @stream: a #GIOStream
313  *
314  * Clears the pending flag on @stream.
315  *
316  * Since: 2.22
317  */
318 void
319 g_io_stream_clear_pending (GIOStream *stream)
320 {
321   g_return_if_fail (G_IS_IO_STREAM (stream));
322
323   stream->priv->pending = FALSE;
324 }
325
326 static gboolean
327 g_io_stream_real_close (GIOStream     *stream,
328                         GCancellable  *cancellable,
329                         GError       **error)
330 {
331   gboolean res;
332
333   res = g_output_stream_close (g_io_stream_get_output_stream (stream),
334                                cancellable, error);
335
336   /* If this errored out, unset error so that we don't report
337      further errors, but still do the following ops */
338   if (error != NULL && *error != NULL)
339     error = NULL;
340
341   res &= g_input_stream_close (g_io_stream_get_input_stream (stream),
342                                cancellable, error);
343
344   return res;
345 }
346
347 /**
348  * g_io_stream_close:
349  * @stream: a #GIOStream
350  * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore
351  * @error: location to store the error occurring, or %NULL to ignore
352  *
353  * Closes the stream, releasing resources related to it. This will also
354  * closes the individual input and output streams, if they are not already
355  * closed.
356  *
357  * Once the stream is closed, all other operations will return
358  * %G_IO_ERROR_CLOSED. Closing a stream multiple times will not
359  * return an error.
360  *
361  * Closing a stream will automatically flush any outstanding buffers
362  * in the stream.
363  *
364  * Streams will be automatically closed when the last reference
365  * is dropped, but you might want to call this function to make sure
366  * resources are released as early as possible.
367  *
368  * Some streams might keep the backing store of the stream (e.g. a file
369  * descriptor) open after the stream is closed. See the documentation for
370  * the individual stream for details.
371  *
372  * On failure the first error that happened will be reported, but the
373  * close operation will finish as much as possible. A stream that failed
374  * to close will still return %G_IO_ERROR_CLOSED for all operations.
375  * Still, it is important to check and report the error to the user,
376  * otherwise there might be a loss of data as all data might not be written.
377  *
378  * If @cancellable is not NULL, then the operation can be cancelled by
379  * triggering the cancellable object from another thread. If the operation
380  * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
381  * Cancelling a close will still leave the stream closed, but some streams
382  * can use a faster close that doesn't block to e.g. check errors.
383  *
384  * The default implementation of this method just calls close on the
385  * individual input/output streams.
386  *
387  * Return value: %TRUE on success, %FALSE on failure
388  *
389  * Since: 2.22
390  */
391 gboolean
392 g_io_stream_close (GIOStream     *stream,
393                    GCancellable  *cancellable,
394                    GError       **error)
395 {
396   GIOStreamClass *class;
397   gboolean res;
398
399   g_return_val_if_fail (G_IS_IO_STREAM (stream), FALSE);
400
401   class = G_IO_STREAM_GET_CLASS (stream);
402
403   if (stream->priv->closed)
404     return TRUE;
405
406   if (!g_io_stream_set_pending (stream, error))
407     return FALSE;
408
409   if (cancellable)
410     g_cancellable_push_current (cancellable);
411
412   res = TRUE;
413   if (class->close_fn)
414     res = class->close_fn (stream, cancellable, error);
415
416   if (cancellable)
417     g_cancellable_pop_current (cancellable);
418
419   stream->priv->closed = TRUE;
420   g_io_stream_clear_pending (stream);
421
422   return res;
423 }
424
425 static void
426 async_ready_close_callback_wrapper (GObject      *source_object,
427                                     GAsyncResult *res,
428                                     gpointer      user_data)
429 {
430   GIOStream *stream = G_IO_STREAM (source_object);
431
432   stream->priv->closed = TRUE;
433   g_io_stream_clear_pending (stream);
434   if (stream->priv->outstanding_callback)
435     (*stream->priv->outstanding_callback) (source_object, res, user_data);
436   g_object_unref (stream);
437 }
438
439 /**
440  * g_io_stream_close_async:
441  * @stream: a #GIOStream
442  * @io_priority: the io priority of the request
443  * @cancellable: (allow-none): optional cancellable object
444  * @callback: (scope async): callback to call when the request is satisfied
445  * @user_data: (closure): the data to pass to callback function
446  *
447  * Requests an asynchronous close of the stream, releasing resources
448  * related to it. When the operation is finished @callback will be
449  * called. You can then call g_io_stream_close_finish() to get
450  * the result of the operation.
451  *
452  * For behaviour details see g_io_stream_close().
453  *
454  * The asynchronous methods have a default fallback that uses threads
455  * to implement asynchronicity, so they are optional for inheriting
456  * classes. However, if you override one you must override all.
457  *
458  * Since: 2.22
459  */
460 void
461 g_io_stream_close_async (GIOStream           *stream,
462                          int                  io_priority,
463                          GCancellable        *cancellable,
464                          GAsyncReadyCallback  callback,
465                          gpointer             user_data)
466 {
467   GIOStreamClass *class;
468   GSimpleAsyncResult *simple;
469   GError *error = NULL;
470
471   g_return_if_fail (G_IS_IO_STREAM (stream));
472
473   if (stream->priv->closed)
474     {
475       simple = g_simple_async_result_new (G_OBJECT (stream),
476                                           callback,
477                                           user_data,
478                                           g_io_stream_close_async);
479       g_simple_async_result_complete_in_idle (simple);
480       g_object_unref (simple);
481       return;
482     }
483
484   if (!g_io_stream_set_pending (stream, &error))
485     {
486       g_simple_async_report_take_gerror_in_idle (G_OBJECT (stream),
487                                             callback,
488                                             user_data,
489                                             error);
490       return;
491     }
492
493   class = G_IO_STREAM_GET_CLASS (stream);
494   stream->priv->outstanding_callback = callback;
495   g_object_ref (stream);
496   class->close_async (stream, io_priority, cancellable,
497                       async_ready_close_callback_wrapper, user_data);
498 }
499
500 /**
501  * g_io_stream_close_finish:
502  * @stream: a #GIOStream
503  * @result: a #GAsyncResult
504  * @error: a #GError location to store the error occurring, or %NULL to
505  *    ignore
506  *
507  * Closes a stream.
508  *
509  * Returns: %TRUE if stream was successfully closed, %FALSE otherwise.
510  *
511  * Since: 2.22
512  */
513 gboolean
514 g_io_stream_close_finish (GIOStream     *stream,
515                           GAsyncResult  *result,
516                           GError       **error)
517 {
518   GSimpleAsyncResult *simple;
519   GIOStreamClass *class;
520
521   g_return_val_if_fail (G_IS_IO_STREAM (stream), FALSE);
522   g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
523
524   if (G_IS_SIMPLE_ASYNC_RESULT (result))
525     {
526       simple = G_SIMPLE_ASYNC_RESULT (result);
527       if (g_simple_async_result_propagate_error (simple, error))
528         return FALSE;
529
530       /* Special case already closed */
531       if (g_simple_async_result_get_source_tag (simple) == g_io_stream_close_async)
532         return TRUE;
533     }
534
535   class = G_IO_STREAM_GET_CLASS (stream);
536   return class->close_finish (stream, result, error);
537 }
538
539
540 static void
541 close_async_thread (GSimpleAsyncResult *res,
542                     GObject            *object,
543                     GCancellable       *cancellable)
544 {
545   GIOStreamClass *class;
546   GError *error = NULL;
547   gboolean result;
548
549   /* Auto handling of cancelation disabled, and ignore cancellation,
550    * since we want to close things anyway, although possibly in a
551    * quick-n-dirty way. At least we never want to leak open handles
552    */
553   class = G_IO_STREAM_GET_CLASS (object);
554   if (class->close_fn)
555     {
556       result = class->close_fn (G_IO_STREAM (object), cancellable, &error);
557       if (!result)
558         g_simple_async_result_take_error (res, error);
559     }
560 }
561
562 static void
563 g_io_stream_real_close_async (GIOStream           *stream,
564                               int                  io_priority,
565                               GCancellable        *cancellable,
566                               GAsyncReadyCallback  callback,
567                               gpointer             user_data)
568 {
569   GSimpleAsyncResult *res;
570
571   res = g_simple_async_result_new (G_OBJECT (stream),
572                                    callback,
573                                    user_data,
574                                    g_io_stream_real_close_async);
575
576   g_simple_async_result_set_handle_cancellation (res, FALSE);
577
578   g_simple_async_result_run_in_thread (res,
579                                        close_async_thread,
580                                        io_priority,
581                                        cancellable);
582   g_object_unref (res);
583 }
584
585 static gboolean
586 g_io_stream_real_close_finish (GIOStream     *stream,
587                                GAsyncResult  *result,
588                                GError       **error)
589 {
590   GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
591   g_warn_if_fail (g_simple_async_result_get_source_tag (simple) ==
592                   g_io_stream_real_close_async);
593   return TRUE;
594 }
595
596 typedef struct
597 {
598   GIOStream *stream1;
599   GIOStream *stream2;
600   GIOStreamSpliceFlags flags;
601   gint io_priority;
602   GCancellable *cancellable;
603   gulong cancelled_id;
604   GCancellable *op1_cancellable;
605   GCancellable *op2_cancellable;
606   guint completed;
607   GError *error;
608 } SpliceContext;
609
610 static void
611 splice_context_free (SpliceContext *ctx)
612 {
613   g_object_unref (ctx->stream1);
614   g_object_unref (ctx->stream2);
615   if (ctx->cancellable != NULL)
616     g_object_unref (ctx->cancellable);
617   g_object_unref (ctx->op1_cancellable);
618   g_object_unref (ctx->op2_cancellable);
619   g_clear_error (&ctx->error);
620   g_slice_free (SpliceContext, ctx);
621 }
622
623 static void
624 splice_complete (GSimpleAsyncResult *simple,
625                  SpliceContext      *ctx)
626 {
627   if (ctx->cancelled_id != 0)
628     g_cancellable_disconnect (ctx->cancellable, ctx->cancelled_id);
629   ctx->cancelled_id = 0;
630
631   if (ctx->error != NULL)
632     g_simple_async_result_set_from_error (simple, ctx->error);
633   g_simple_async_result_complete (simple);
634 }
635
636 static void
637 splice_close_cb (GObject      *iostream,
638                  GAsyncResult *res,
639                  gpointer      user_data)
640 {
641   GSimpleAsyncResult *simple = user_data;
642   SpliceContext *ctx;
643   GError *error = NULL;
644
645   g_io_stream_close_finish (G_IO_STREAM (iostream), res, &error);
646
647   ctx = g_simple_async_result_get_op_res_gpointer (simple);
648   ctx->completed++;
649
650   /* Keep the first error that occurred */
651   if (error != NULL && ctx->error == NULL)
652     ctx->error = error;
653   else
654     g_clear_error (&error);
655
656   /* If all operations are done, complete now */
657   if (ctx->completed == 4)
658     splice_complete (simple, ctx);
659
660   g_object_unref (simple);
661 }
662
663 static void
664 splice_cb (GObject      *ostream,
665            GAsyncResult *res,
666            gpointer      user_data)
667 {
668   GSimpleAsyncResult *simple = user_data;
669   SpliceContext *ctx;
670   GError *error = NULL;
671
672   g_output_stream_splice_finish (G_OUTPUT_STREAM (ostream), res, &error);
673
674   ctx = g_simple_async_result_get_op_res_gpointer (simple);
675   ctx->completed++;
676
677   /* ignore cancellation error if it was not requested by the user */
678   if (error != NULL &&
679       g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED) &&
680       (ctx->cancellable == NULL ||
681        !g_cancellable_is_cancelled (ctx->cancellable)))
682     g_clear_error (&error);
683
684   /* Keep the first error that occurred */
685   if (error != NULL && ctx->error == NULL)
686     ctx->error = error;
687   else
688     g_clear_error (&error);
689
690    if (ctx->completed == 1 &&
691        (ctx->flags & G_IO_STREAM_SPLICE_WAIT_FOR_BOTH) == 0)
692     {
693       /* We don't want to wait for the 2nd operation to finish, cancel it */
694       g_cancellable_cancel (ctx->op1_cancellable);
695       g_cancellable_cancel (ctx->op2_cancellable);
696     }
697   else if (ctx->completed == 2)
698     {
699       if (ctx->cancellable == NULL ||
700           !g_cancellable_is_cancelled (ctx->cancellable))
701         {
702           g_cancellable_reset (ctx->op1_cancellable);
703           g_cancellable_reset (ctx->op2_cancellable);
704         }
705
706       /* Close the IO streams if needed */
707       if ((ctx->flags & G_IO_STREAM_SPLICE_CLOSE_STREAM1) != 0)
708         g_io_stream_close_async (ctx->stream1, ctx->io_priority,
709             ctx->op1_cancellable, splice_close_cb, g_object_ref (simple));
710       else
711         ctx->completed++;
712
713       if ((ctx->flags & G_IO_STREAM_SPLICE_CLOSE_STREAM2) != 0)
714         g_io_stream_close_async (ctx->stream2, ctx->io_priority,
715             ctx->op2_cancellable, splice_close_cb, g_object_ref (simple));
716       else
717         ctx->completed++;
718
719       /* If all operations are done, complete now */
720       if (ctx->completed == 4)
721         splice_complete (simple, ctx);
722     }
723
724   g_object_unref (simple);
725 }
726
727 static void
728 splice_cancelled_cb (GCancellable       *cancellable,
729                      GSimpleAsyncResult *simple)
730 {
731   SpliceContext *ctx;
732
733   ctx = g_simple_async_result_get_op_res_gpointer (simple);
734   g_cancellable_cancel (ctx->op1_cancellable);
735   g_cancellable_cancel (ctx->op2_cancellable);
736 }
737
738 /**
739  * g_io_stream_splice_async:
740  * @stream1: a #GIOStream.
741  * @stream2: a #GIOStream.
742  * @flags: a set of #GIOStreamSpliceFlags.
743  * @io_priority: the io priority of the request.
744  * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
745  * @callback: (scope async): a #GAsyncReadyCallback.
746  * @user_data: (closure): user data passed to @callback.
747  *
748  * Asyncronously splice the output stream of @stream1 to the input stream of
749  * @stream2, and splice the output stream of @stream2 to the input stream of
750  * @stream1.
751  *
752  * When the operation is finished @callback will be called.
753  * You can then call g_io_stream_splice_finish() to get the
754  * result of the operation.
755  *
756  * Since: 2.28
757  **/
758 void
759 g_io_stream_splice_async (GIOStream            *stream1,
760                           GIOStream            *stream2,
761                           GIOStreamSpliceFlags  flags,
762                           gint                  io_priority,
763                           GCancellable         *cancellable,
764                           GAsyncReadyCallback   callback,
765                           gpointer              user_data)
766 {
767   GSimpleAsyncResult *simple;
768   SpliceContext *ctx;
769   GInputStream *istream;
770   GOutputStream *ostream;
771
772   if (cancellable != NULL && g_cancellable_is_cancelled (cancellable))
773     {
774       g_simple_async_report_error_in_idle (NULL, callback,
775           user_data, G_IO_ERROR, G_IO_ERROR_CANCELLED,
776           "Operation has been cancelled");
777       return;
778     }
779
780   ctx = g_slice_new0 (SpliceContext);
781   ctx->stream1 = g_object_ref (stream1);
782   ctx->stream2 = g_object_ref (stream2);
783   ctx->flags = flags;
784   ctx->io_priority = io_priority;
785   ctx->op1_cancellable = g_cancellable_new ();
786   ctx->op2_cancellable = g_cancellable_new ();
787   ctx->completed = 0;
788
789   simple = g_simple_async_result_new (NULL, callback, user_data,
790       g_io_stream_splice_finish);
791   g_simple_async_result_set_op_res_gpointer (simple, ctx,
792       (GDestroyNotify) splice_context_free);
793
794   if (cancellable != NULL)
795     {
796       ctx->cancellable = g_object_ref (cancellable);
797       ctx->cancelled_id = g_cancellable_connect (cancellable,
798           G_CALLBACK (splice_cancelled_cb), g_object_ref (simple),
799           g_object_unref);
800     }
801
802   istream = g_io_stream_get_input_stream (stream1);
803   ostream = g_io_stream_get_output_stream (stream2);
804   g_output_stream_splice_async (ostream, istream, G_OUTPUT_STREAM_SPLICE_NONE,
805       io_priority, ctx->op1_cancellable, splice_cb,
806       g_object_ref (simple));
807
808   istream = g_io_stream_get_input_stream (stream2);
809   ostream = g_io_stream_get_output_stream (stream1);
810   g_output_stream_splice_async (ostream, istream, G_OUTPUT_STREAM_SPLICE_NONE,
811       io_priority, ctx->op2_cancellable, splice_cb,
812       g_object_ref (simple));
813
814   g_object_unref (simple);
815 }
816
817 /**
818  * g_io_stream_splice_finish:
819  * @result: a #GAsyncResult.
820  * @error: a #GError location to store the error occurring, or %NULL to
821  * ignore.
822  *
823  * Finishes an asynchronous io stream splice operation.
824  *
825  * Returns: %TRUE on success, %FALSE otherwise.
826  *
827  * Since: 2.28
828  **/
829 gboolean
830 g_io_stream_splice_finish (GAsyncResult  *result,
831                            GError       **error)
832 {
833   GSimpleAsyncResult *simple;
834
835   g_return_val_if_fail (G_IS_SIMPLE_ASYNC_RESULT (result), FALSE);
836
837   simple = G_SIMPLE_ASYNC_RESULT (result);
838
839   if (g_simple_async_result_propagate_error (simple, error))
840     return FALSE;
841
842   g_return_val_if_fail (g_simple_async_result_is_valid (result, NULL,
843       g_io_stream_splice_finish), FALSE);
844
845   return TRUE;
846 }