1 /* GIO - GLib Input, IO 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>
26 #include <gfileiostream.h>
27 #include <gseekable.h>
28 #include "gsimpleasyncresult.h"
29 #include "gasyncresult.h"
30 #include "gcancellable.h"
32 #include "gfileoutputstream.h"
37 * SECTION:gfileiostream
38 * @short_description: File read and write streaming operations
40 * @see_also: #GIOStream, #GFileInputStream, #GFileOutputStream, #GSeekable
42 * GFileIOStream provides io streams that both read and write to the same
45 * GFileIOStream implements #GSeekable, which allows the io
46 * stream to jump to arbitrary positions in the file and to truncate
47 * the file, provided the filesystem of the file supports these
50 * To find the position of a file io stream, use
53 * To find out if a file io stream supports seeking, use g_seekable_can_seek().
54 * To position a file io stream, use g_seekable_seek().
55 * To find out if a file io stream supports truncating, use
56 * g_seekable_can_truncate(). To truncate a file io
57 * stream, use g_seekable_truncate().
59 * The default implementation of all the #GFileIOStream operations
60 * and the implementation of #GSeekable just call into the same operations
61 * on the output stream.
65 static void g_file_io_stream_seekable_iface_init (GSeekableIface *iface);
66 static goffset g_file_io_stream_seekable_tell (GSeekable *seekable);
67 static gboolean g_file_io_stream_seekable_can_seek (GSeekable *seekable);
68 static gboolean g_file_io_stream_seekable_seek (GSeekable *seekable,
71 GCancellable *cancellable,
73 static gboolean g_file_io_stream_seekable_can_truncate (GSeekable *seekable);
74 static gboolean g_file_io_stream_seekable_truncate (GSeekable *seekable,
76 GCancellable *cancellable,
78 static void g_file_io_stream_real_query_info_async (GFileIOStream *stream,
79 const char *attributes,
81 GCancellable *cancellable,
82 GAsyncReadyCallback callback,
84 static GFileInfo *g_file_io_stream_real_query_info_finish (GFileIOStream *stream,
88 G_DEFINE_TYPE_WITH_CODE (GFileIOStream, g_file_io_stream, G_TYPE_IO_STREAM,
89 G_IMPLEMENT_INTERFACE (G_TYPE_SEEKABLE,
90 g_file_io_stream_seekable_iface_init));
92 struct _GFileIOStreamPrivate {
93 GAsyncReadyCallback outstanding_callback;
97 g_file_io_stream_seekable_iface_init (GSeekableIface *iface)
99 iface->tell = g_file_io_stream_seekable_tell;
100 iface->can_seek = g_file_io_stream_seekable_can_seek;
101 iface->seek = g_file_io_stream_seekable_seek;
102 iface->can_truncate = g_file_io_stream_seekable_can_truncate;
103 iface->truncate_fn = g_file_io_stream_seekable_truncate;
107 g_file_io_stream_init (GFileIOStream *stream)
109 stream->priv = G_TYPE_INSTANCE_GET_PRIVATE (stream,
110 G_TYPE_FILE_IO_STREAM,
111 GFileIOStreamPrivate);
115 * g_file_io_stream_query_info:
116 * @stream: a #GFileIOStream.
117 * @attributes: a file attribute query string.
118 * @cancellable: optional #GCancellable object, %NULL to ignore.
119 * @error: a #GError, %NULL to ignore.
121 * Queries a file io stream for the given @attributes.
122 * This function blocks while querying the stream. For the asynchronous
123 * version of this function, see g_file_io_stream_query_info_async().
124 * While the stream is blocked, the stream will set the pending flag
125 * internally, and any other operations on the stream will fail with
126 * %G_IO_ERROR_PENDING.
128 * Can fail if the stream was already closed (with @error being set to
129 * %G_IO_ERROR_CLOSED), the stream has pending operations (with @error being
130 * set to %G_IO_ERROR_PENDING), or if querying info is not supported for
131 * the stream's interface (with @error being set to %G_IO_ERROR_NOT_SUPPORTED). I
132 * all cases of failure, %NULL will be returned.
134 * If @cancellable is not %NULL, then the operation can be cancelled by
135 * triggering the cancellable object from another thread. If the operation
136 * was cancelled, the error %G_IO_ERROR_CANCELLED will be set, and %NULL will
139 * Returns: a #GFileInfo for the @stream, or %NULL on error.
144 g_file_io_stream_query_info (GFileIOStream *stream,
145 const char *attributes,
146 GCancellable *cancellable,
149 GFileIOStreamClass *class;
150 GIOStream *io_stream;
153 g_return_val_if_fail (G_IS_FILE_IO_STREAM (stream), NULL);
155 io_stream = G_IO_STREAM (stream);
157 if (!g_io_stream_set_pending (io_stream, error))
163 g_cancellable_push_current (cancellable);
165 class = G_FILE_IO_STREAM_GET_CLASS (stream);
166 if (class->query_info)
167 info = class->query_info (stream, attributes, cancellable, error);
169 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
170 _("Stream doesn't support query_info"));
173 g_cancellable_pop_current (cancellable);
175 g_io_stream_clear_pending (io_stream);
181 async_ready_callback_wrapper (GObject *source_object,
185 GFileIOStream *stream = G_FILE_IO_STREAM (source_object);
187 g_io_stream_clear_pending (G_IO_STREAM (stream));
188 if (stream->priv->outstanding_callback)
189 (*stream->priv->outstanding_callback) (source_object, res, user_data);
190 g_object_unref (stream);
194 * g_file_io_stream_query_info_async:
195 * @stream: a #GFileIOStream.
196 * @attributes: a file attribute query string.
197 * @io_priority: the <link linkend="gio-GIOScheduler">I/O priority</link>
199 * @cancellable: optional #GCancellable object, %NULL to ignore.
200 * @callback: callback to call when the request is satisfied
201 * @user_data: the data to pass to callback function
203 * Asynchronously queries the @stream for a #GFileInfo. When completed,
204 * @callback will be called with a #GAsyncResult which can be used to
205 * finish the operation with g_file_io_stream_query_info_finish().
207 * For the synchronous version of this function, see
208 * g_file_io_stream_query_info().
213 g_file_io_stream_query_info_async (GFileIOStream *stream,
214 const char *attributes,
216 GCancellable *cancellable,
217 GAsyncReadyCallback callback,
220 GFileIOStreamClass *klass;
221 GIOStream *io_stream;
222 GError *error = NULL;
224 g_return_if_fail (G_IS_FILE_IO_STREAM (stream));
226 io_stream = G_IO_STREAM (stream);
228 if (!g_io_stream_set_pending (io_stream, &error))
230 g_simple_async_report_gerror_in_idle (G_OBJECT (stream),
234 g_error_free (error);
238 klass = G_FILE_IO_STREAM_GET_CLASS (stream);
240 stream->priv->outstanding_callback = callback;
241 g_object_ref (stream);
242 klass->query_info_async (stream, attributes, io_priority, cancellable,
243 async_ready_callback_wrapper, user_data);
247 * g_file_io_stream_query_info_finish:
248 * @stream: a #GFileIOStream.
249 * @result: a #GAsyncResult.
250 * @error: a #GError, %NULL to ignore.
252 * Finalizes the asynchronous query started
253 * by g_file_io_stream_query_info_async().
255 * Returns: A #GFileInfo for the finished query.
260 g_file_io_stream_query_info_finish (GFileIOStream *stream,
261 GAsyncResult *result,
264 GSimpleAsyncResult *simple;
265 GFileIOStreamClass *class;
267 g_return_val_if_fail (G_IS_FILE_IO_STREAM (stream), NULL);
268 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), NULL);
270 if (G_IS_SIMPLE_ASYNC_RESULT (result))
272 simple = G_SIMPLE_ASYNC_RESULT (result);
273 if (g_simple_async_result_propagate_error (simple, error))
277 class = G_FILE_IO_STREAM_GET_CLASS (stream);
278 return class->query_info_finish (stream, result, error);
282 * g_file_io_stream_get_etag:
283 * @stream: a #GFileIOStream.
285 * Gets the entity tag for the file when it has been written.
286 * This must be called after the stream has been written
287 * and closed, as the etag can change while writing.
289 * Returns: the entity tag for the stream.
294 g_file_io_stream_get_etag (GFileIOStream *stream)
296 GFileIOStreamClass *class;
297 GIOStream *io_stream;
300 g_return_val_if_fail (G_IS_FILE_IO_STREAM (stream), NULL);
302 io_stream = G_IO_STREAM (stream);
304 if (!g_io_stream_is_closed (io_stream))
306 g_warning ("stream is not closed yet, can't get etag");
312 class = G_FILE_IO_STREAM_GET_CLASS (stream);
314 etag = class->get_etag (stream);
320 g_file_io_stream_tell (GFileIOStream *stream)
322 GFileIOStreamClass *class;
325 g_return_val_if_fail (G_IS_FILE_IO_STREAM (stream), 0);
327 class = G_FILE_IO_STREAM_GET_CLASS (stream);
331 offset = class->tell (stream);
337 g_file_io_stream_seekable_tell (GSeekable *seekable)
339 return g_file_io_stream_tell (G_FILE_IO_STREAM (seekable));
343 g_file_io_stream_can_seek (GFileIOStream *stream)
345 GFileIOStreamClass *class;
348 g_return_val_if_fail (G_IS_FILE_IO_STREAM (stream), FALSE);
350 class = G_FILE_IO_STREAM_GET_CLASS (stream);
357 can_seek = class->can_seek (stream);
364 g_file_io_stream_seekable_can_seek (GSeekable *seekable)
366 return g_file_io_stream_can_seek (G_FILE_IO_STREAM (seekable));
370 g_file_io_stream_seek (GFileIOStream *stream,
373 GCancellable *cancellable,
376 GFileIOStreamClass *class;
377 GIOStream *io_stream;
380 g_return_val_if_fail (G_IS_FILE_IO_STREAM (stream), FALSE);
382 io_stream = G_IO_STREAM (stream);
383 class = G_FILE_IO_STREAM_GET_CLASS (stream);
387 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
388 _("Seek not supported on stream"));
392 if (!g_io_stream_set_pending (io_stream, error))
396 g_cancellable_push_current (cancellable);
398 res = class->seek (stream, offset, type, cancellable, error);
401 g_cancellable_pop_current (cancellable);
403 g_io_stream_clear_pending (io_stream);
409 g_file_io_stream_seekable_seek (GSeekable *seekable,
412 GCancellable *cancellable,
415 return g_file_io_stream_seek (G_FILE_IO_STREAM (seekable),
416 offset, type, cancellable, error);
420 g_file_io_stream_can_truncate (GFileIOStream *stream)
422 GFileIOStreamClass *class;
423 gboolean can_truncate;
425 g_return_val_if_fail (G_IS_FILE_IO_STREAM (stream), FALSE);
427 class = G_FILE_IO_STREAM_GET_CLASS (stream);
429 can_truncate = FALSE;
430 if (class->truncate_fn)
433 if (class->can_truncate)
434 can_truncate = class->can_truncate (stream);
441 g_file_io_stream_seekable_can_truncate (GSeekable *seekable)
443 return g_file_io_stream_can_truncate (G_FILE_IO_STREAM (seekable));
447 g_file_io_stream_truncate (GFileIOStream *stream,
449 GCancellable *cancellable,
452 GFileIOStreamClass *class;
453 GIOStream *io_stream;
456 g_return_val_if_fail (G_IS_FILE_IO_STREAM (stream), FALSE);
458 io_stream = G_IO_STREAM (stream);
459 class = G_FILE_IO_STREAM_GET_CLASS (stream);
461 if (!class->truncate_fn)
463 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
464 _("Truncate not supported on stream"));
468 if (!g_io_stream_set_pending (io_stream, error))
472 g_cancellable_push_current (cancellable);
474 res = class->truncate_fn (stream, size, cancellable, error);
477 g_cancellable_pop_current (cancellable);
479 g_io_stream_clear_pending (io_stream);
485 g_file_io_stream_seekable_truncate (GSeekable *seekable,
487 GCancellable *cancellable,
490 return g_file_io_stream_truncate (G_FILE_IO_STREAM (seekable),
491 size, cancellable, error);
493 /*****************************************************
494 * Default implementations based on output stream *
495 *****************************************************/
498 g_file_io_stream_real_tell (GFileIOStream *stream)
503 out = g_io_stream_get_output_stream (G_IO_STREAM (stream));
504 seekable = G_SEEKABLE (out);
506 return g_seekable_tell (seekable);
510 g_file_io_stream_real_can_seek (GFileIOStream *stream)
515 out = g_io_stream_get_output_stream (G_IO_STREAM (stream));
516 seekable = G_SEEKABLE (out);
518 return g_seekable_can_seek (seekable);
522 g_file_io_stream_real_seek (GFileIOStream *stream,
525 GCancellable *cancellable,
531 out = g_io_stream_get_output_stream (G_IO_STREAM (stream));
532 seekable = G_SEEKABLE (out);
534 return g_seekable_seek (seekable, offset, type, cancellable, error);
538 g_file_io_stream_real_can_truncate (GFileIOStream *stream)
543 out = g_io_stream_get_output_stream (G_IO_STREAM (stream));
544 seekable = G_SEEKABLE (out);
546 return g_seekable_can_truncate (seekable);
550 g_file_io_stream_real_truncate_fn (GFileIOStream *stream,
552 GCancellable *cancellable,
558 out = g_io_stream_get_output_stream (G_IO_STREAM (stream));
559 seekable = G_SEEKABLE (out);
561 return g_seekable_truncate (seekable, size, cancellable, error);
565 g_file_io_stream_real_get_etag (GFileIOStream *stream)
568 GFileOutputStream *file_out;
570 out = g_io_stream_get_output_stream (G_IO_STREAM (stream));
571 file_out = G_FILE_OUTPUT_STREAM (out);
573 return g_file_output_stream_get_etag (file_out);
577 g_file_io_stream_real_query_info (GFileIOStream *stream,
578 const char *attributes,
579 GCancellable *cancellable,
583 GFileOutputStream *file_out;
585 out = g_io_stream_get_output_stream (G_IO_STREAM (stream));
586 file_out = G_FILE_OUTPUT_STREAM (out);
588 return g_file_output_stream_query_info (file_out,
589 attributes, cancellable, error);
594 GAsyncReadyCallback callback;
598 static AsyncOpWrapper *
599 async_op_wrapper_new (gpointer object,
600 GAsyncReadyCallback callback,
603 AsyncOpWrapper *data;
605 data = g_new0 (AsyncOpWrapper, 1);
606 data->object = g_object_ref (object);
607 data->callback = callback;
608 data->user_data = user_data;
614 async_op_wrapper_callback (GObject *source_object,
618 AsyncOpWrapper *data = user_data;
619 data->callback (data->object, res, data->user_data);
620 g_object_unref (data->object);
625 g_file_io_stream_real_query_info_async (GFileIOStream *stream,
626 const char *attributes,
628 GCancellable *cancellable,
629 GAsyncReadyCallback callback,
633 GFileOutputStream *file_out;
634 AsyncOpWrapper *data;
636 out = g_io_stream_get_output_stream (G_IO_STREAM (stream));
637 file_out = G_FILE_OUTPUT_STREAM (out);
639 data = async_op_wrapper_new (stream, callback, user_data);
640 g_file_output_stream_query_info_async (file_out,
641 attributes, io_priority,
642 cancellable, async_op_wrapper_callback, data);
646 g_file_io_stream_real_query_info_finish (GFileIOStream *stream,
651 GFileOutputStream *file_out;
653 out = g_io_stream_get_output_stream (G_IO_STREAM (stream));
654 file_out = G_FILE_OUTPUT_STREAM (out);
656 return g_file_output_stream_query_info_finish (file_out, res, error);
660 g_file_io_stream_class_init (GFileIOStreamClass *klass)
662 g_type_class_add_private (klass, sizeof (GFileIOStreamPrivate));
664 klass->tell = g_file_io_stream_real_tell;
665 klass->can_seek = g_file_io_stream_real_can_seek;
666 klass->seek = g_file_io_stream_real_seek;
667 klass->can_truncate = g_file_io_stream_real_can_truncate;
668 klass->truncate_fn = g_file_io_stream_real_truncate_fn;
669 klass->query_info = g_file_io_stream_real_query_info;
670 klass->query_info_async = g_file_io_stream_real_query_info_async;
671 klass->query_info_finish = g_file_io_stream_real_query_info_finish;
672 klass->get_etag = g_file_io_stream_real_get_etag;