gio: add GBytes-based input/output stream methods
[platform/upstream/glib.git] / gio / ginputstream.c
1 /* GIO - GLib Input, Output and Streaming Library
2  * 
3  * Copyright (C) 2006-2007 Red Hat, Inc.
4  *
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.
9  *
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.
14  *
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.
19  *
20  * Author: Alexander Larsson <alexl@redhat.com>
21  */
22
23 #include "config.h"
24 #include <glib.h>
25 #include "glibintl.h"
26
27 #include "ginputstream.h"
28 #include "gseekable.h"
29 #include "gcancellable.h"
30 #include "gasyncresult.h"
31 #include "gsimpleasyncresult.h"
32 #include "gioerror.h"
33 #include "gpollableinputstream.h"
34
35 /**
36  * SECTION:ginputstream
37  * @short_description: Base class for implementing streaming input
38  * @include: gio/gio.h
39  *
40  * #GInputStream has functions to read from a stream (g_input_stream_read()),
41  * to close a stream (g_input_stream_close()) and to skip some content
42  * (g_input_stream_skip()). 
43  *
44  * To copy the content of an input stream to an output stream without 
45  * manually handling the reads and writes, use g_output_stream_splice(). 
46  *
47  * All of these functions have async variants too.
48  **/
49
50 G_DEFINE_ABSTRACT_TYPE (GInputStream, g_input_stream, G_TYPE_OBJECT);
51
52 struct _GInputStreamPrivate {
53   guint closed : 1;
54   guint pending : 1;
55   GAsyncReadyCallback outstanding_callback;
56 };
57
58 static gssize   g_input_stream_real_skip         (GInputStream         *stream,
59                                                   gsize                 count,
60                                                   GCancellable         *cancellable,
61                                                   GError              **error);
62 static void     g_input_stream_real_read_async   (GInputStream         *stream,
63                                                   void                 *buffer,
64                                                   gsize                 count,
65                                                   int                   io_priority,
66                                                   GCancellable         *cancellable,
67                                                   GAsyncReadyCallback   callback,
68                                                   gpointer              user_data);
69 static gssize   g_input_stream_real_read_finish  (GInputStream         *stream,
70                                                   GAsyncResult         *result,
71                                                   GError              **error);
72 static void     g_input_stream_real_skip_async   (GInputStream         *stream,
73                                                   gsize                 count,
74                                                   int                   io_priority,
75                                                   GCancellable         *cancellable,
76                                                   GAsyncReadyCallback   callback,
77                                                   gpointer              data);
78 static gssize   g_input_stream_real_skip_finish  (GInputStream         *stream,
79                                                   GAsyncResult         *result,
80                                                   GError              **error);
81 static void     g_input_stream_real_close_async  (GInputStream         *stream,
82                                                   int                   io_priority,
83                                                   GCancellable         *cancellable,
84                                                   GAsyncReadyCallback   callback,
85                                                   gpointer              data);
86 static gboolean g_input_stream_real_close_finish (GInputStream         *stream,
87                                                   GAsyncResult         *result,
88                                                   GError              **error);
89
90 static void
91 g_input_stream_finalize (GObject *object)
92 {
93   G_OBJECT_CLASS (g_input_stream_parent_class)->finalize (object);
94 }
95
96 static void
97 g_input_stream_dispose (GObject *object)
98 {
99   GInputStream *stream;
100
101   stream = G_INPUT_STREAM (object);
102   
103   if (!stream->priv->closed)
104     g_input_stream_close (stream, NULL, NULL);
105
106   G_OBJECT_CLASS (g_input_stream_parent_class)->dispose (object);
107 }
108
109
110 static void
111 g_input_stream_class_init (GInputStreamClass *klass)
112 {
113   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
114   
115   g_type_class_add_private (klass, sizeof (GInputStreamPrivate));
116   
117   gobject_class->finalize = g_input_stream_finalize;
118   gobject_class->dispose = g_input_stream_dispose;
119   
120   klass->skip = g_input_stream_real_skip;
121   klass->read_async = g_input_stream_real_read_async;
122   klass->read_finish = g_input_stream_real_read_finish;
123   klass->skip_async = g_input_stream_real_skip_async;
124   klass->skip_finish = g_input_stream_real_skip_finish;
125   klass->close_async = g_input_stream_real_close_async;
126   klass->close_finish = g_input_stream_real_close_finish;
127 }
128
129 static void
130 g_input_stream_init (GInputStream *stream)
131 {
132   stream->priv = G_TYPE_INSTANCE_GET_PRIVATE (stream,
133                                               G_TYPE_INPUT_STREAM,
134                                               GInputStreamPrivate);
135 }
136
137 /**
138  * g_input_stream_read:
139  * @stream: a #GInputStream.
140  * @buffer: a buffer to read data into (which should be at least count bytes long).
141  * @count: the number of bytes that will be read from the stream
142  * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
143  * @error: location to store the error occurring, or %NULL to ignore
144  *
145  * Tries to read @count bytes from the stream into the buffer starting at
146  * @buffer. Will block during this read.
147  * 
148  * If count is zero returns zero and does nothing. A value of @count
149  * larger than %G_MAXSSIZE will cause a %G_IO_ERROR_INVALID_ARGUMENT error.
150  *
151  * On success, the number of bytes read into the buffer is returned.
152  * It is not an error if this is not the same as the requested size, as it
153  * can happen e.g. near the end of a file. Zero is returned on end of file
154  * (or if @count is zero),  but never otherwise.
155  *
156  * If @cancellable is not %NULL, then the operation can be cancelled by
157  * triggering the cancellable object from another thread. If the operation
158  * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned. If an
159  * operation was partially finished when the operation was cancelled the
160  * partial result will be returned, without an error.
161  *
162  * On error -1 is returned and @error is set accordingly.
163  * 
164  * Return value: Number of bytes read, or -1 on error, or 0 on end of file.
165  **/
166 gssize
167 g_input_stream_read  (GInputStream  *stream,
168                       void          *buffer,
169                       gsize          count,
170                       GCancellable  *cancellable,
171                       GError       **error)
172 {
173   GInputStreamClass *class;
174   gssize res;
175
176   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), -1);
177   g_return_val_if_fail (buffer != NULL, 0);
178
179   if (count == 0)
180     return 0;
181   
182   if (((gssize) count) < 0)
183     {
184       g_set_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
185                    _("Too large count value passed to %s"), G_STRFUNC);
186       return -1;
187     }
188
189   class = G_INPUT_STREAM_GET_CLASS (stream);
190
191   if (class->read_fn == NULL) 
192     {
193       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
194                            _("Input stream doesn't implement read"));
195       return -1;
196     }
197
198   if (!g_input_stream_set_pending (stream, error))
199     return -1;
200
201   if (cancellable)
202     g_cancellable_push_current (cancellable);
203   
204   res = class->read_fn (stream, buffer, count, cancellable, error);
205
206   if (cancellable)
207     g_cancellable_pop_current (cancellable);
208   
209   g_input_stream_clear_pending (stream);
210
211   return res;
212 }
213
214 /**
215  * g_input_stream_read_all:
216  * @stream: a #GInputStream.
217  * @buffer: a buffer to read data into (which should be at least count bytes long).
218  * @count: the number of bytes that will be read from the stream
219  * @bytes_read: (out): location to store the number of bytes that was read from the stream
220  * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
221  * @error: location to store the error occurring, or %NULL to ignore
222  *
223  * Tries to read @count bytes from the stream into the buffer starting at
224  * @buffer. Will block during this read.
225  *
226  * This function is similar to g_input_stream_read(), except it tries to
227  * read as many bytes as requested, only stopping on an error or end of stream.
228  *
229  * On a successful read of @count bytes, or if we reached the end of the
230  * stream,  %TRUE is returned, and @bytes_read is set to the number of bytes
231  * read into @buffer.
232  * 
233  * If there is an error during the operation %FALSE is returned and @error
234  * is set to indicate the error status, @bytes_read is updated to contain
235  * the number of bytes read into @buffer before the error occurred.
236  *
237  * Return value: %TRUE on success, %FALSE if there was an error
238  **/
239 gboolean
240 g_input_stream_read_all (GInputStream  *stream,
241                          void          *buffer,
242                          gsize          count,
243                          gsize         *bytes_read,
244                          GCancellable  *cancellable,
245                          GError       **error)
246 {
247   gsize _bytes_read;
248   gssize res;
249
250   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), FALSE);
251   g_return_val_if_fail (buffer != NULL, FALSE);
252
253   _bytes_read = 0;
254   while (_bytes_read < count)
255     {
256       res = g_input_stream_read (stream, (char *)buffer + _bytes_read, count - _bytes_read,
257                                  cancellable, error);
258       if (res == -1)
259         {
260           if (bytes_read)
261             *bytes_read = _bytes_read;
262           return FALSE;
263         }
264       
265       if (res == 0)
266         break;
267
268       _bytes_read += res;
269     }
270
271   if (bytes_read)
272     *bytes_read = _bytes_read;
273   return TRUE;
274 }
275
276 /**
277  * g_input_stream_read_bytes:
278  * @stream: a #GInputStream.
279  * @count: maximum number of bytes that will be read from the stream. Common
280  * values include 4096 and 8192.
281  * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
282  * @error: location to store the error occurring, or %NULL to ignore
283  *
284  * Like g_input_stream_read(), this tries to read @count bytes from
285  * the stream in a blocking fashion. However, rather than reading into
286  * a user-supplied buffer, this will create a new #GBytes containing
287  * the data that was read. This may be easier to use from language
288  * bindings.
289  *
290  * If count is zero, returns a zero-length #GBytes and does nothing. A
291  * value of @count larger than %G_MAXSSIZE will cause a
292  * %G_IO_ERROR_INVALID_ARGUMENT error.
293  *
294  * On success, a new #GBytes is returned. It is not an error if the
295  * size of this object is not the same as the requested size, as it
296  * can happen e.g. near the end of a file. A zero-length #GBytes is
297  * returned on end of file (or if @count is zero), but never
298  * otherwise.
299  *
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. If an
303  * operation was partially finished when the operation was cancelled the
304  * partial result will be returned, without an error.
305  *
306  * On error %NULL is returned and @error is set accordingly.
307  *
308  * Return value: a new #GBytes, or %NULL on error
309  **/
310 GBytes *
311 g_input_stream_read_bytes (GInputStream  *stream,
312                            gsize          count,
313                            GCancellable  *cancellable,
314                            GError       **error)
315 {
316   guchar *buf;
317   gssize nread;
318
319   buf = g_malloc (count);
320   nread = g_input_stream_read (stream, buf, count, cancellable, error);
321   if (nread == -1)
322     {
323       g_free (buf);
324       return NULL;
325     }
326   else if (nread == 0)
327     {
328       g_free (buf);
329       return g_bytes_new_static ("", 0);
330     }
331   else
332     return g_bytes_new_take (buf, nread);
333 }
334
335 /**
336  * g_input_stream_skip:
337  * @stream: a #GInputStream.
338  * @count: the number of bytes that will be skipped from the stream
339  * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore. 
340  * @error: location to store the error occurring, or %NULL to ignore
341  *
342  * Tries to skip @count bytes from the stream. Will block during the operation.
343  *
344  * This is identical to g_input_stream_read(), from a behaviour standpoint,
345  * but the bytes that are skipped are not returned to the user. Some
346  * streams have an implementation that is more efficient than reading the data.
347  *
348  * This function is optional for inherited classes, as the default implementation
349  * emulates it using read.
350  *
351  * If @cancellable is not %NULL, then the operation can be cancelled by
352  * triggering the cancellable object from another thread. If the operation
353  * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned. If an
354  * operation was partially finished when the operation was cancelled the
355  * partial result will be returned, without an error.
356  *
357  * Return value: Number of bytes skipped, or -1 on error
358  **/
359 gssize
360 g_input_stream_skip (GInputStream  *stream,
361                      gsize          count,
362                      GCancellable  *cancellable,
363                      GError       **error)
364 {
365   GInputStreamClass *class;
366   gssize res;
367
368   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), -1);
369
370   if (count == 0)
371     return 0;
372
373   if (((gssize) count) < 0)
374     {
375       g_set_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
376                    _("Too large count value passed to %s"), G_STRFUNC);
377       return -1;
378     }
379   
380   class = G_INPUT_STREAM_GET_CLASS (stream);
381
382   if (!g_input_stream_set_pending (stream, error))
383     return -1;
384
385   if (cancellable)
386     g_cancellable_push_current (cancellable);
387   
388   res = class->skip (stream, count, cancellable, error);
389
390   if (cancellable)
391     g_cancellable_pop_current (cancellable);
392   
393   g_input_stream_clear_pending (stream);
394
395   return res;
396 }
397
398 static gssize
399 g_input_stream_real_skip (GInputStream  *stream,
400                           gsize          count,
401                           GCancellable  *cancellable,
402                           GError       **error)
403 {
404   GInputStreamClass *class;
405   gssize ret, read_bytes;
406   char buffer[8192];
407   GError *my_error;
408
409   if (G_IS_SEEKABLE (stream) && g_seekable_can_seek (G_SEEKABLE (stream)))
410     {
411       if (g_seekable_seek (G_SEEKABLE (stream),
412                            count,
413                            G_SEEK_CUR,
414                            cancellable,
415                            NULL))
416         return count;
417     }
418
419   /* If not seekable, or seek failed, fall back to reading data: */
420
421   class = G_INPUT_STREAM_GET_CLASS (stream);
422
423   read_bytes = 0;
424   while (1)
425     {
426       my_error = NULL;
427
428       ret = class->read_fn (stream, buffer, MIN (sizeof (buffer), count),
429                             cancellable, &my_error);
430       if (ret == -1)
431         {
432           if (read_bytes > 0 &&
433               my_error->domain == G_IO_ERROR &&
434               my_error->code == G_IO_ERROR_CANCELLED)
435             {
436               g_error_free (my_error);
437               return read_bytes;
438             }
439
440           g_propagate_error (error, my_error);
441           return -1;
442         }
443
444       count -= ret;
445       read_bytes += ret;
446
447       if (ret == 0 || count == 0)
448         return read_bytes;
449     }
450 }
451
452 /**
453  * g_input_stream_close:
454  * @stream: A #GInputStream.
455  * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
456  * @error: location to store the error occurring, or %NULL to ignore
457  *
458  * Closes the stream, releasing resources related to it.
459  *
460  * Once the stream is closed, all other operations will return %G_IO_ERROR_CLOSED.
461  * Closing a stream multiple times will not return an error.
462  *
463  * Streams will be automatically closed when the last reference
464  * is dropped, but you might want to call this function to make sure 
465  * resources are released as early as possible.
466  *
467  * Some streams might keep the backing store of the stream (e.g. a file descriptor)
468  * open after the stream is closed. See the documentation for the individual
469  * stream for details.
470  *
471  * On failure the first error that happened will be reported, but the close
472  * operation will finish as much as possible. A stream that failed to
473  * close will still return %G_IO_ERROR_CLOSED for all operations. Still, it
474  * is important to check and report the error to the user.
475  *
476  * If @cancellable is not %NULL, then the operation can be cancelled by
477  * triggering the cancellable object from another thread. If the operation
478  * was cancelled, the error %G_IO_ERROR_CANCELLED will be returned.
479  * Cancelling a close will still leave the stream closed, but some streams
480  * can use a faster close that doesn't block to e.g. check errors. 
481  *
482  * Return value: %TRUE on success, %FALSE on failure
483  **/
484 gboolean
485 g_input_stream_close (GInputStream  *stream,
486                       GCancellable  *cancellable,
487                       GError       **error)
488 {
489   GInputStreamClass *class;
490   gboolean res;
491
492   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), FALSE);
493
494   class = G_INPUT_STREAM_GET_CLASS (stream);
495
496   if (stream->priv->closed)
497     return TRUE;
498
499   res = TRUE;
500
501   if (!g_input_stream_set_pending (stream, error))
502     return FALSE;
503
504   if (cancellable)
505     g_cancellable_push_current (cancellable);
506
507   if (class->close_fn)
508     res = class->close_fn (stream, cancellable, error);
509
510   if (cancellable)
511     g_cancellable_pop_current (cancellable);
512
513   g_input_stream_clear_pending (stream);
514   
515   stream->priv->closed = TRUE;
516   
517   return res;
518 }
519
520 static void
521 async_ready_callback_wrapper (GObject      *source_object,
522                               GAsyncResult *res,
523                               gpointer      user_data)
524 {
525   GInputStream *stream = G_INPUT_STREAM (source_object);
526
527   g_input_stream_clear_pending (stream);
528   if (stream->priv->outstanding_callback)
529     (*stream->priv->outstanding_callback) (source_object, res, user_data);
530   g_object_unref (stream);
531 }
532
533 static void
534 async_ready_close_callback_wrapper (GObject      *source_object,
535                                     GAsyncResult *res,
536                                     gpointer      user_data)
537 {
538   GInputStream *stream = G_INPUT_STREAM (source_object);
539
540   g_input_stream_clear_pending (stream);
541   stream->priv->closed = TRUE;
542   if (stream->priv->outstanding_callback)
543     (*stream->priv->outstanding_callback) (source_object, res, user_data);
544   g_object_unref (stream);
545 }
546
547 /**
548  * g_input_stream_read_async:
549  * @stream: A #GInputStream.
550  * @buffer: a buffer to read data into (which should be at least count bytes long).
551  * @count: the number of bytes that will be read from the stream
552  * @io_priority: the <link linkend="io-priority">I/O priority</link> 
553  * of the request. 
554  * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
555  * @callback: (scope async): callback to call when the request is satisfied
556  * @user_data: (closure): the data to pass to callback function
557  *
558  * Request an asynchronous read of @count bytes from the stream into the buffer
559  * starting at @buffer. When the operation is finished @callback will be called. 
560  * You can then call g_input_stream_read_finish() to get the result of the 
561  * operation.
562  *
563  * During an async request no other sync and async calls are allowed on @stream, and will
564  * result in %G_IO_ERROR_PENDING errors. 
565  *
566  * A value of @count larger than %G_MAXSSIZE will cause a %G_IO_ERROR_INVALID_ARGUMENT error.
567  *
568  * On success, the number of bytes read into the buffer will be passed to the
569  * callback. It is not an error if this is not the same as the requested size, as it
570  * can happen e.g. near the end of a file, but generally we try to read
571  * as many bytes as requested. Zero is returned on end of file
572  * (or if @count is zero),  but never otherwise.
573  *
574  * Any outstanding i/o request with higher priority (lower numerical value) will
575  * be executed before an outstanding request with lower priority. Default
576  * priority is %G_PRIORITY_DEFAULT.
577  *
578  * The asyncronous methods have a default fallback that uses threads to implement
579  * asynchronicity, so they are optional for inheriting classes. However, if you
580  * override one you must override all.
581  **/
582 void
583 g_input_stream_read_async (GInputStream        *stream,
584                            void                *buffer,
585                            gsize                count,
586                            int                  io_priority,
587                            GCancellable        *cancellable,
588                            GAsyncReadyCallback  callback,
589                            gpointer             user_data)
590 {
591   GInputStreamClass *class;
592   GSimpleAsyncResult *simple;
593   GError *error = NULL;
594
595   g_return_if_fail (G_IS_INPUT_STREAM (stream));
596   g_return_if_fail (buffer != NULL);
597
598   if (count == 0)
599     {
600       simple = g_simple_async_result_new (G_OBJECT (stream),
601                                           callback,
602                                           user_data,
603                                           g_input_stream_read_async);
604       g_simple_async_result_complete_in_idle (simple);
605       g_object_unref (simple);
606       return;
607     }
608   
609   if (((gssize) count) < 0)
610     {
611       g_simple_async_report_error_in_idle (G_OBJECT (stream),
612                                            callback,
613                                            user_data,
614                                            G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
615                                            _("Too large count value passed to %s"),
616                                            G_STRFUNC);
617       return;
618     }
619
620   if (!g_input_stream_set_pending (stream, &error))
621     {
622       g_simple_async_report_take_gerror_in_idle (G_OBJECT (stream),
623                                             callback,
624                                             user_data,
625                                             error);
626       return;
627     }
628
629   class = G_INPUT_STREAM_GET_CLASS (stream);
630   stream->priv->outstanding_callback = callback;
631   g_object_ref (stream);
632   class->read_async (stream, buffer, count, io_priority, cancellable,
633                      async_ready_callback_wrapper, user_data);
634 }
635
636 /**
637  * g_input_stream_read_finish:
638  * @stream: a #GInputStream.
639  * @result: a #GAsyncResult.
640  * @error: a #GError location to store the error occurring, or %NULL to 
641  * ignore.
642  * 
643  * Finishes an asynchronous stream read operation. 
644  * 
645  * Returns: number of bytes read in, or -1 on error, or 0 on end of file.
646  **/
647 gssize
648 g_input_stream_read_finish (GInputStream  *stream,
649                             GAsyncResult  *result,
650                             GError       **error)
651 {
652   GSimpleAsyncResult *simple;
653   GInputStreamClass *class;
654   
655   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), -1);
656   g_return_val_if_fail (G_IS_ASYNC_RESULT (result), -1);
657
658   if (G_IS_SIMPLE_ASYNC_RESULT (result))
659     {
660       simple = G_SIMPLE_ASYNC_RESULT (result);
661       if (g_simple_async_result_propagate_error (simple, error))
662         return -1;
663
664       /* Special case read of 0 bytes */
665       if (g_simple_async_result_get_source_tag (simple) == g_input_stream_read_async)
666         return 0;
667     }
668
669   class = G_INPUT_STREAM_GET_CLASS (stream);
670   return class->read_finish (stream, result, error);
671 }
672
673 static void
674 read_bytes_callback (GObject      *stream,
675                      GAsyncResult *result,
676                      gpointer      user_data)
677 {
678   GSimpleAsyncResult *simple = user_data;
679   guchar *buf = g_simple_async_result_get_op_res_gpointer (simple);
680   GError *error = NULL;
681   gssize nread;
682   GBytes *bytes = NULL;
683
684   nread = g_input_stream_read_finish (G_INPUT_STREAM (stream),
685                                       result, &error);
686   if (nread == -1)
687     {
688       g_free (buf);
689       g_simple_async_result_take_error (simple, error);
690     }
691   else if (nread == 0)
692     {
693       g_free (buf);
694       bytes = g_bytes_new_static ("", 0);
695     }
696   else
697     bytes = g_bytes_new_take (buf, nread);
698
699   if (bytes)
700     {
701       g_simple_async_result_set_op_res_gpointer (simple, bytes,
702                                                  (GDestroyNotify)g_bytes_unref);
703     }
704   g_simple_async_result_complete (simple);
705   g_object_unref (simple);
706 }
707
708 /**
709  * g_input_stream_read_bytes_async:
710  * @stream: A #GInputStream.
711  * @count: the number of bytes that will be read from the stream
712  * @io_priority: the <link linkend="io-priority">I/O priority</link>
713  *   of the request.
714  * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
715  * @callback: (scope async): callback to call when the request is satisfied
716  * @user_data: (closure): the data to pass to callback function
717  *
718  * Request an asynchronous read of @count bytes from the stream into a
719  * new #GBytes. When the operation is finished @callback will be
720  * called. You can then call g_input_stream_read_bytes_finish() to get the
721  * result of the operation.
722  *
723  * During an async request no other sync and async calls are allowed
724  * on @stream, and will result in %G_IO_ERROR_PENDING errors.
725  *
726  * A value of @count larger than %G_MAXSSIZE will cause a
727  * %G_IO_ERROR_INVALID_ARGUMENT error.
728  *
729  * On success, the new #GBytes will be passed to the callback. It is
730  * not an error if this is smaller than the requested size, as it can
731  * happen e.g. near the end of a file, but generally we try to read as
732  * many bytes as requested. Zero is returned on end of file (or if
733  * @count is zero), but never otherwise.
734  *
735  * Any outstanding I/O request with higher priority (lower numerical
736  * value) will be executed before an outstanding request with lower
737  * priority. Default priority is %G_PRIORITY_DEFAULT.
738  **/
739 void
740 g_input_stream_read_bytes_async (GInputStream          *stream,
741                                  gsize                  count,
742                                  int                    io_priority,
743                                  GCancellable          *cancellable,
744                                  GAsyncReadyCallback    callback,
745                                  gpointer               user_data)
746 {
747   GSimpleAsyncResult *simple;
748   guchar *buf;
749
750   simple = g_simple_async_result_new (G_OBJECT (stream),
751                                       callback, user_data,
752                                       g_input_stream_read_bytes_async);
753   buf = g_malloc (count);
754   g_simple_async_result_set_op_res_gpointer (simple, buf, NULL);
755
756   g_input_stream_read_async (stream, buf, count,
757                              io_priority, cancellable,
758                              read_bytes_callback, simple);
759 }
760
761 /**
762  * g_input_stream_read_bytes_finish:
763  * @stream: a #GInputStream.
764  * @result: a #GAsyncResult.
765  * @error: a #GError location to store the error occurring, or %NULL to
766  *   ignore.
767  *
768  * Finishes an asynchronous stream read-into-#GBytes operation.
769  *
770  * Returns: the newly-allocated #GBytes, or %NULL on error
771  **/
772 GBytes *
773 g_input_stream_read_bytes_finish (GInputStream  *stream,
774                                   GAsyncResult  *result,
775                                   GError       **error)
776 {
777   GSimpleAsyncResult *simple;
778
779   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), NULL);
780   g_return_val_if_fail (g_simple_async_result_is_valid (result, G_OBJECT (stream), g_input_stream_read_bytes_async), NULL);
781
782   simple = G_SIMPLE_ASYNC_RESULT (result);
783   if (g_simple_async_result_propagate_error (simple, error))
784     return NULL;
785   return g_bytes_ref (g_simple_async_result_get_op_res_gpointer (simple));
786 }
787
788 /**
789  * g_input_stream_skip_async:
790  * @stream: A #GInputStream.
791  * @count: the number of bytes that will be skipped from the stream
792  * @io_priority: the <link linkend="io-priority">I/O priority</link>
793  * of the request.
794  * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
795  * @callback: (scope async): callback to call when the request is satisfied
796  * @user_data: (closure): the data to pass to callback function
797  *
798  * Request an asynchronous skip of @count bytes from the stream.
799  * When the operation is finished @callback will be called.
800  * You can then call g_input_stream_skip_finish() to get the result
801  * of the operation.
802  *
803  * During an async request no other sync and async calls are allowed,
804  * and will result in %G_IO_ERROR_PENDING errors.
805  *
806  * A value of @count larger than %G_MAXSSIZE will cause a %G_IO_ERROR_INVALID_ARGUMENT error.
807  *
808  * On success, the number of bytes skipped will be passed to the callback.
809  * It is not an error if this is not the same as the requested size, as it
810  * can happen e.g. near the end of a file, but generally we try to skip
811  * as many bytes as requested. Zero is returned on end of file
812  * (or if @count is zero), but never otherwise.
813  *
814  * Any outstanding i/o request with higher priority (lower numerical value)
815  * will be executed before an outstanding request with lower priority.
816  * Default priority is %G_PRIORITY_DEFAULT.
817  *
818  * The asynchronous methods have a default fallback that uses threads to
819  * implement asynchronicity, so they are optional for inheriting classes.
820  * However, if you override one, you must override all.
821  **/
822 void
823 g_input_stream_skip_async (GInputStream        *stream,
824                            gsize                count,
825                            int                  io_priority,
826                            GCancellable        *cancellable,
827                            GAsyncReadyCallback  callback,
828                            gpointer             user_data)
829 {
830   GInputStreamClass *class;
831   GSimpleAsyncResult *simple;
832   GError *error = NULL;
833
834   g_return_if_fail (G_IS_INPUT_STREAM (stream));
835
836   if (count == 0)
837     {
838       simple = g_simple_async_result_new (G_OBJECT (stream),
839                                           callback,
840                                           user_data,
841                                           g_input_stream_skip_async);
842
843       g_simple_async_result_complete_in_idle (simple);
844       g_object_unref (simple);
845       return;
846     }
847   
848   if (((gssize) count) < 0)
849     {
850       g_simple_async_report_error_in_idle (G_OBJECT (stream),
851                                            callback,
852                                            user_data,
853                                            G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
854                                            _("Too large count value passed to %s"),
855                                            G_STRFUNC);
856       return;
857     }
858
859   if (!g_input_stream_set_pending (stream, &error))
860     {
861       g_simple_async_report_take_gerror_in_idle (G_OBJECT (stream),
862                                             callback,
863                                             user_data,
864                                             error);
865       return;
866     }
867
868   class = G_INPUT_STREAM_GET_CLASS (stream);
869   stream->priv->outstanding_callback = callback;
870   g_object_ref (stream);
871   class->skip_async (stream, count, io_priority, cancellable,
872                      async_ready_callback_wrapper, user_data);
873 }
874
875 /**
876  * g_input_stream_skip_finish:
877  * @stream: a #GInputStream.
878  * @result: a #GAsyncResult.
879  * @error: a #GError location to store the error occurring, or %NULL to 
880  * ignore.
881  * 
882  * Finishes a stream skip operation.
883  * 
884  * Returns: the size of the bytes skipped, or %-1 on error.
885  **/
886 gssize
887 g_input_stream_skip_finish (GInputStream  *stream,
888                             GAsyncResult  *result,
889                             GError       **error)
890 {
891   GSimpleAsyncResult *simple;
892   GInputStreamClass *class;
893
894   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), -1);
895   g_return_val_if_fail (G_IS_ASYNC_RESULT (result), -1);
896
897   if (G_IS_SIMPLE_ASYNC_RESULT (result))
898     {
899       simple = G_SIMPLE_ASYNC_RESULT (result);
900       if (g_simple_async_result_propagate_error (simple, error))
901         return -1;
902
903       /* Special case skip of 0 bytes */
904       if (g_simple_async_result_get_source_tag (simple) == g_input_stream_skip_async)
905         return 0;
906     }
907
908   class = G_INPUT_STREAM_GET_CLASS (stream);
909   return class->skip_finish (stream, result, error);
910 }
911
912 /**
913  * g_input_stream_close_async:
914  * @stream: A #GInputStream.
915  * @io_priority: the <link linkend="io-priority">I/O priority</link> 
916  * of the request. 
917  * @cancellable: (allow-none): optional cancellable object
918  * @callback: (scope async): callback to call when the request is satisfied
919  * @user_data: (closure): the data to pass to callback function
920  *
921  * Requests an asynchronous closes of the stream, releasing resources related to it.
922  * When the operation is finished @callback will be called. 
923  * You can then call g_input_stream_close_finish() to get the result of the 
924  * operation.
925  *
926  * For behaviour details see g_input_stream_close().
927  *
928  * The asyncronous methods have a default fallback that uses threads to implement
929  * asynchronicity, so they are optional for inheriting classes. However, if you
930  * override one you must override all.
931  **/
932 void
933 g_input_stream_close_async (GInputStream        *stream,
934                             int                  io_priority,
935                             GCancellable        *cancellable,
936                             GAsyncReadyCallback  callback,
937                             gpointer             user_data)
938 {
939   GInputStreamClass *class;
940   GSimpleAsyncResult *simple;
941   GError *error = NULL;
942
943   g_return_if_fail (G_IS_INPUT_STREAM (stream));
944
945   if (stream->priv->closed)
946     {
947       simple = g_simple_async_result_new (G_OBJECT (stream),
948                                           callback,
949                                           user_data,
950                                           g_input_stream_close_async);
951
952       g_simple_async_result_complete_in_idle (simple);
953       g_object_unref (simple);
954       return;
955     }
956
957   if (!g_input_stream_set_pending (stream, &error))
958     {
959       g_simple_async_report_take_gerror_in_idle (G_OBJECT (stream),
960                                             callback,
961                                             user_data,
962                                             error);
963       return;
964     }
965   
966   class = G_INPUT_STREAM_GET_CLASS (stream);
967   stream->priv->outstanding_callback = callback;
968   g_object_ref (stream);
969   class->close_async (stream, io_priority, cancellable,
970                       async_ready_close_callback_wrapper, user_data);
971 }
972
973 /**
974  * g_input_stream_close_finish:
975  * @stream: a #GInputStream.
976  * @result: a #GAsyncResult.
977  * @error: a #GError location to store the error occurring, or %NULL to 
978  * ignore.
979  * 
980  * Finishes closing a stream asynchronously, started from g_input_stream_close_async().
981  * 
982  * Returns: %TRUE if the stream was closed successfully.
983  **/
984 gboolean
985 g_input_stream_close_finish (GInputStream  *stream,
986                              GAsyncResult  *result,
987                              GError       **error)
988 {
989   GSimpleAsyncResult *simple;
990   GInputStreamClass *class;
991
992   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), FALSE);
993   g_return_val_if_fail (G_IS_ASYNC_RESULT (result), FALSE);
994
995   if (G_IS_SIMPLE_ASYNC_RESULT (result))
996     {
997       simple = G_SIMPLE_ASYNC_RESULT (result);
998       if (g_simple_async_result_propagate_error (simple, error))
999         return FALSE;
1000
1001       /* Special case already closed */
1002       if (g_simple_async_result_get_source_tag (simple) == g_input_stream_close_async)
1003         return TRUE;
1004     }
1005
1006   class = G_INPUT_STREAM_GET_CLASS (stream);
1007   return class->close_finish (stream, result, error);
1008 }
1009
1010 /**
1011  * g_input_stream_is_closed:
1012  * @stream: input stream.
1013  * 
1014  * Checks if an input stream is closed.
1015  * 
1016  * Returns: %TRUE if the stream is closed.
1017  **/
1018 gboolean
1019 g_input_stream_is_closed (GInputStream *stream)
1020 {
1021   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), TRUE);
1022   
1023   return stream->priv->closed;
1024 }
1025  
1026 /**
1027  * g_input_stream_has_pending:
1028  * @stream: input stream.
1029  * 
1030  * Checks if an input stream has pending actions.
1031  * 
1032  * Returns: %TRUE if @stream has pending actions.
1033  **/  
1034 gboolean
1035 g_input_stream_has_pending (GInputStream *stream)
1036 {
1037   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), TRUE);
1038   
1039   return stream->priv->pending;
1040 }
1041
1042 /**
1043  * g_input_stream_set_pending:
1044  * @stream: input stream
1045  * @error: a #GError location to store the error occurring, or %NULL to 
1046  * ignore.
1047  * 
1048  * Sets @stream to have actions pending. If the pending flag is
1049  * already set or @stream is closed, it will return %FALSE and set
1050  * @error.
1051  *
1052  * Return value: %TRUE if pending was previously unset and is now set.
1053  **/
1054 gboolean
1055 g_input_stream_set_pending (GInputStream *stream, GError **error)
1056 {
1057   g_return_val_if_fail (G_IS_INPUT_STREAM (stream), FALSE);
1058   
1059   if (stream->priv->closed)
1060     {
1061       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_CLOSED,
1062                            _("Stream is already closed"));
1063       return FALSE;
1064     }
1065   
1066   if (stream->priv->pending)
1067     {
1068       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_PENDING,
1069                 /* Translators: This is an error you get if there is already an
1070                  * operation running against this stream when you try to start
1071                  * one */
1072                  _("Stream has outstanding operation"));
1073       return FALSE;
1074     }
1075   
1076   stream->priv->pending = TRUE;
1077   return TRUE;
1078 }
1079
1080 /**
1081  * g_input_stream_clear_pending:
1082  * @stream: input stream
1083  * 
1084  * Clears the pending flag on @stream.
1085  **/
1086 void
1087 g_input_stream_clear_pending (GInputStream *stream)
1088 {
1089   g_return_if_fail (G_IS_INPUT_STREAM (stream));
1090   
1091   stream->priv->pending = FALSE;
1092 }
1093
1094 /********************************************
1095  *   Default implementation of async ops    *
1096  ********************************************/
1097
1098 typedef struct {
1099   void              *buffer;
1100   gsize              count_requested;
1101   gssize             count_read;
1102
1103   GCancellable      *cancellable;
1104   gint               io_priority;
1105   gboolean           need_idle;
1106 } ReadData;
1107
1108 static void
1109 free_read_data (ReadData *op)
1110 {
1111   if (op->cancellable)
1112     g_object_unref (op->cancellable);
1113   g_slice_free (ReadData, op);
1114 }
1115
1116 static void
1117 read_async_thread (GSimpleAsyncResult *res,
1118                    GObject            *object,
1119                    GCancellable       *cancellable)
1120 {
1121   ReadData *op;
1122   GInputStreamClass *class;
1123   GError *error = NULL;
1124  
1125   op = g_simple_async_result_get_op_res_gpointer (res);
1126
1127   class = G_INPUT_STREAM_GET_CLASS (object);
1128
1129   op->count_read = class->read_fn (G_INPUT_STREAM (object),
1130                                    op->buffer, op->count_requested,
1131                                    cancellable, &error);
1132   if (op->count_read == -1)
1133     g_simple_async_result_take_error (res, error);
1134 }
1135
1136 static void read_async_pollable (GPollableInputStream *stream,
1137                                  GSimpleAsyncResult   *result);
1138
1139 static gboolean
1140 read_async_pollable_ready (GPollableInputStream *stream,
1141                            gpointer              user_data)
1142 {
1143   GSimpleAsyncResult *result = user_data;
1144
1145   read_async_pollable (stream, result);
1146   return FALSE;
1147 }
1148
1149 static void
1150 read_async_pollable (GPollableInputStream *stream,
1151                      GSimpleAsyncResult   *result)
1152 {
1153   GError *error = NULL;
1154   ReadData *op = g_simple_async_result_get_op_res_gpointer (result);
1155
1156   if (g_cancellable_set_error_if_cancelled (op->cancellable, &error))
1157     op->count_read = -1;
1158   else
1159     {
1160       op->count_read = G_POLLABLE_INPUT_STREAM_GET_INTERFACE (stream)->
1161         read_nonblocking (stream, op->buffer, op->count_requested, &error);
1162     }
1163
1164   if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_WOULD_BLOCK))
1165     {
1166       GSource *source;
1167
1168       g_error_free (error);
1169       op->need_idle = FALSE;
1170
1171       source = g_pollable_input_stream_create_source (stream, op->cancellable);
1172       g_source_set_callback (source,
1173                              (GSourceFunc) read_async_pollable_ready,
1174                              g_object_ref (result), g_object_unref);
1175       g_source_set_priority (source, op->io_priority);
1176       g_source_attach (source, g_main_context_get_thread_default ());
1177       g_source_unref (source);
1178       return;
1179     }
1180
1181   if (op->count_read == -1)
1182     g_simple_async_result_take_error (result, error);
1183
1184   if (op->need_idle)
1185     g_simple_async_result_complete_in_idle (result);
1186   else
1187     g_simple_async_result_complete (result);
1188 }
1189
1190 static void
1191 g_input_stream_real_read_async (GInputStream        *stream,
1192                                 void                *buffer,
1193                                 gsize                count,
1194                                 int                  io_priority,
1195                                 GCancellable        *cancellable,
1196                                 GAsyncReadyCallback  callback,
1197                                 gpointer             user_data)
1198 {
1199   GSimpleAsyncResult *res;
1200   ReadData *op;
1201   
1202   op = g_slice_new0 (ReadData);
1203   res = g_simple_async_result_new (G_OBJECT (stream), callback, user_data, g_input_stream_real_read_async);
1204   g_simple_async_result_set_op_res_gpointer (res, op, (GDestroyNotify) free_read_data);
1205   op->buffer = buffer;
1206   op->count_requested = count;
1207   op->cancellable = cancellable ? g_object_ref (cancellable) : NULL;
1208   op->io_priority = io_priority;
1209   op->need_idle = TRUE;
1210
1211   if (G_IS_POLLABLE_INPUT_STREAM (stream) &&
1212       g_pollable_input_stream_can_poll (G_POLLABLE_INPUT_STREAM (stream)))
1213     read_async_pollable (G_POLLABLE_INPUT_STREAM (stream), res);
1214   else
1215     g_simple_async_result_run_in_thread (res, read_async_thread, io_priority, cancellable);
1216   g_object_unref (res);
1217 }
1218
1219 static gssize
1220 g_input_stream_real_read_finish (GInputStream  *stream,
1221                                  GAsyncResult  *result,
1222                                  GError       **error)
1223 {
1224   GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
1225   ReadData *op;
1226
1227   g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == 
1228             g_input_stream_real_read_async);
1229
1230   op = g_simple_async_result_get_op_res_gpointer (simple);
1231
1232   return op->count_read;
1233 }
1234
1235 typedef struct {
1236   gsize count_requested;
1237   gssize count_skipped;
1238 } SkipData;
1239
1240
1241 static void
1242 skip_async_thread (GSimpleAsyncResult *res,
1243                    GObject            *object,
1244                    GCancellable       *cancellable)
1245 {
1246   SkipData *op;
1247   GInputStreamClass *class;
1248   GError *error = NULL;
1249   
1250   class = G_INPUT_STREAM_GET_CLASS (object);
1251   op = g_simple_async_result_get_op_res_gpointer (res);
1252   op->count_skipped = class->skip (G_INPUT_STREAM (object),
1253                                    op->count_requested,
1254                                    cancellable, &error);
1255   if (op->count_skipped == -1)
1256     g_simple_async_result_take_error (res, error);
1257 }
1258
1259 typedef struct {
1260   char buffer[8192];
1261   gsize count;
1262   gsize count_skipped;
1263   int io_prio;
1264   GCancellable *cancellable;
1265   gpointer user_data;
1266   GAsyncReadyCallback callback;
1267 } SkipFallbackAsyncData;
1268
1269 static void
1270 skip_callback_wrapper (GObject      *source_object,
1271                        GAsyncResult *res,
1272                        gpointer      user_data)
1273 {
1274   GInputStreamClass *class;
1275   SkipFallbackAsyncData *data = user_data;
1276   SkipData *op;
1277   GSimpleAsyncResult *simple;
1278   GError *error = NULL;
1279   gssize ret;
1280
1281   ret = g_input_stream_read_finish (G_INPUT_STREAM (source_object), res, &error);
1282
1283   if (ret > 0)
1284     {
1285       data->count -= ret;
1286       data->count_skipped += ret;
1287
1288       if (data->count > 0)
1289         {
1290           class = G_INPUT_STREAM_GET_CLASS (source_object);
1291           class->read_async (G_INPUT_STREAM (source_object), data->buffer, MIN (8192, data->count), data->io_prio, data->cancellable,
1292                              skip_callback_wrapper, data);
1293           return;
1294         }
1295     }
1296
1297   op = g_new0 (SkipData, 1);
1298   op->count_skipped = data->count_skipped;
1299   simple = g_simple_async_result_new (source_object,
1300                                       data->callback, data->user_data,
1301                                       g_input_stream_real_skip_async);
1302
1303   g_simple_async_result_set_op_res_gpointer (simple, op, g_free);
1304
1305   if (ret == -1)
1306     {
1307       if (data->count_skipped &&
1308           g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED))
1309         /* No error, return partial read */
1310         g_error_free (error);
1311       else
1312         g_simple_async_result_take_error (simple, error);
1313     }
1314
1315   /* Complete immediately, not in idle, since we're already in a mainloop callout */
1316   g_simple_async_result_complete (simple);
1317   g_object_unref (simple);
1318   
1319   g_free (data);
1320  }
1321
1322 static void
1323 g_input_stream_real_skip_async (GInputStream        *stream,
1324                                 gsize                count,
1325                                 int                  io_priority,
1326                                 GCancellable        *cancellable,
1327                                 GAsyncReadyCallback  callback,
1328                                 gpointer             user_data)
1329 {
1330   GInputStreamClass *class;
1331   SkipData *op;
1332   SkipFallbackAsyncData *data;
1333   GSimpleAsyncResult *res;
1334
1335   class = G_INPUT_STREAM_GET_CLASS (stream);
1336
1337   if (class->read_async == g_input_stream_real_read_async)
1338     {
1339       /* Read is thread-using async fallback.
1340        * Make skip use threads too, so that we can use a possible sync skip
1341        * implementation. */
1342       op = g_new0 (SkipData, 1);
1343       
1344       res = g_simple_async_result_new (G_OBJECT (stream), callback, user_data,
1345                                        g_input_stream_real_skip_async);
1346
1347       g_simple_async_result_set_op_res_gpointer (res, op, g_free);
1348
1349       op->count_requested = count;
1350
1351       g_simple_async_result_run_in_thread (res, skip_async_thread, io_priority, cancellable);
1352       g_object_unref (res);
1353     }
1354   else
1355     {
1356       /* TODO: Skip fallback uses too much memory, should do multiple read calls */
1357       
1358       /* There is a custom async read function, lets use that. */
1359       data = g_new (SkipFallbackAsyncData, 1);
1360       data->count = count;
1361       data->count_skipped = 0;
1362       data->io_prio = io_priority;
1363       data->cancellable = cancellable;
1364       data->callback = callback;
1365       data->user_data = user_data;
1366       class->read_async (stream, data->buffer, MIN (8192, count), io_priority, cancellable,
1367                          skip_callback_wrapper, data);
1368     }
1369
1370 }
1371
1372 static gssize
1373 g_input_stream_real_skip_finish (GInputStream  *stream,
1374                                  GAsyncResult  *result,
1375                                  GError       **error)
1376 {
1377   GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
1378   SkipData *op;
1379
1380   g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_input_stream_real_skip_async);
1381   op = g_simple_async_result_get_op_res_gpointer (simple);
1382   return op->count_skipped;
1383 }
1384
1385 static void
1386 close_async_thread (GSimpleAsyncResult *res,
1387                     GObject            *object,
1388                     GCancellable       *cancellable)
1389 {
1390   GInputStreamClass *class;
1391   GError *error = NULL;
1392   gboolean result;
1393
1394   /* Auto handling of cancelation disabled, and ignore
1395      cancellation, since we want to close things anyway, although
1396      possibly in a quick-n-dirty way. At least we never want to leak
1397      open handles */
1398
1399   class = G_INPUT_STREAM_GET_CLASS (object);
1400   if (class->close_fn)
1401     {
1402       result = class->close_fn (G_INPUT_STREAM (object), cancellable, &error);
1403       if (!result)
1404         g_simple_async_result_take_error (res, error);
1405     }
1406 }
1407
1408 static void
1409 g_input_stream_real_close_async (GInputStream        *stream,
1410                                  int                  io_priority,
1411                                  GCancellable        *cancellable,
1412                                  GAsyncReadyCallback  callback,
1413                                  gpointer             user_data)
1414 {
1415   GSimpleAsyncResult *res;
1416   
1417   res = g_simple_async_result_new (G_OBJECT (stream),
1418                                    callback,
1419                                    user_data,
1420                                    g_input_stream_real_close_async);
1421
1422   g_simple_async_result_set_handle_cancellation (res, FALSE);
1423   
1424   g_simple_async_result_run_in_thread (res,
1425                                        close_async_thread,
1426                                        io_priority,
1427                                        cancellable);
1428   g_object_unref (res);
1429 }
1430
1431 static gboolean
1432 g_input_stream_real_close_finish (GInputStream  *stream,
1433                                   GAsyncResult  *result,
1434                                   GError       **error)
1435 {
1436   GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
1437   g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_input_stream_real_close_async);
1438   return TRUE;
1439 }