1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2006-2007 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * Author: Alexander Larsson <alexl@redhat.com>
26 #include <gfileinputstream.h>
27 #include <gseekable.h>
28 #include "gsimpleasyncresult.h"
34 * SECTION:gfileinputstream
35 * @short_description: file input streaming operations
36 * @see_also: #GInputStream, #GDataInputStream, #GSeekable
42 static void g_file_input_stream_seekable_iface_init (GSeekableIface *iface);
43 static goffset g_file_input_stream_seekable_tell (GSeekable *seekable);
44 static gboolean g_file_input_stream_seekable_can_seek (GSeekable *seekable);
45 static gboolean g_file_input_stream_seekable_seek (GSeekable *seekable,
48 GCancellable *cancellable,
50 static gboolean g_file_input_stream_seekable_can_truncate (GSeekable *seekable);
51 static gboolean g_file_input_stream_seekable_truncate (GSeekable *seekable,
53 GCancellable *cancellable,
55 static void g_file_input_stream_real_query_info_async (GFileInputStream *stream,
58 GCancellable *cancellable,
59 GAsyncReadyCallback callback,
61 static GFileInfo *g_file_input_stream_real_query_info_finish (GFileInputStream *stream,
66 G_DEFINE_TYPE_WITH_CODE (GFileInputStream, g_file_input_stream, G_TYPE_INPUT_STREAM,
67 G_IMPLEMENT_INTERFACE (G_TYPE_SEEKABLE,
68 g_file_input_stream_seekable_iface_init))
70 struct _GFileInputStreamPrivate {
71 GAsyncReadyCallback outstanding_callback;
75 g_file_input_stream_class_init (GFileInputStreamClass *klass)
77 g_type_class_add_private (klass, sizeof (GFileInputStreamPrivate));
79 klass->query_info_async = g_file_input_stream_real_query_info_async;
80 klass->query_info_finish = g_file_input_stream_real_query_info_finish;
84 g_file_input_stream_seekable_iface_init (GSeekableIface *iface)
86 iface->tell = g_file_input_stream_seekable_tell;
87 iface->can_seek = g_file_input_stream_seekable_can_seek;
88 iface->seek = g_file_input_stream_seekable_seek;
89 iface->can_truncate = g_file_input_stream_seekable_can_truncate;
90 iface->truncate = g_file_input_stream_seekable_truncate;
94 g_file_input_stream_init (GFileInputStream *stream)
96 stream->priv = G_TYPE_INSTANCE_GET_PRIVATE (stream,
97 G_TYPE_FILE_INPUT_STREAM,
98 GFileInputStreamPrivate);
102 * g_file_input_stream_query_info:
103 * @stream: a #GFileInputStream.
104 * @attributes: a file attribute query string.
105 * @cancellable: optional #GCancellable object, %NULL to ignore.
106 * @error: a #GError location to store the error occuring, or %NULL to
109 * Queries a file input stream the given @attributes.his function blocks
110 * while querying the stream. For the asynchronous (non-blocking) version
111 * of this function, see g_file_input_stream_query_info_async(). While the
112 * stream is blocked, the stream will set the pending flag internally, and
113 * any other operations on the stream will fail with %G_IO_ERROR_PENDING.
115 * Returns: a #GFileInfo, or %NULL on error.
118 g_file_input_stream_query_info (GFileInputStream *stream,
120 GCancellable *cancellable,
123 GFileInputStreamClass *class;
124 GInputStream *input_stream;
127 g_return_val_if_fail (G_IS_FILE_INPUT_STREAM (stream), NULL);
129 input_stream = G_INPUT_STREAM (stream);
131 if (g_input_stream_is_closed (input_stream))
133 g_set_error (error, G_IO_ERROR, G_IO_ERROR_CLOSED,
134 _("Stream is already closed"));
138 if (g_input_stream_has_pending (input_stream))
140 g_set_error (error, G_IO_ERROR, G_IO_ERROR_PENDING,
141 _("Stream has outstanding operation"));
147 g_input_stream_set_pending (input_stream, TRUE);
150 g_push_current_cancellable (cancellable);
152 class = G_FILE_INPUT_STREAM_GET_CLASS (stream);
153 if (class->query_info)
154 info = class->query_info (stream, attributes, cancellable, error);
156 g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
157 _("Stream doesn't support query_info"));
160 g_pop_current_cancellable (cancellable);
162 g_input_stream_set_pending (input_stream, FALSE);
168 async_ready_callback_wrapper (GObject *source_object,
172 GFileInputStream *stream = G_FILE_INPUT_STREAM (source_object);
174 g_input_stream_set_pending (G_INPUT_STREAM (stream), FALSE);
175 if (stream->priv->outstanding_callback)
176 (*stream->priv->outstanding_callback) (source_object, res, user_data);
177 g_object_unref (stream);
181 * g_file_input_stream_query_info_async:
182 * @stream: a #GFileInputStream.
183 * @attributes: a file attribute query string.
184 * @io_priority: the <link linkend="io-priority">I/O priority</link>
186 * @cancellable: optional #GCancellable object, %NULL to ignore.
187 * @callback: callback to call when the request is satisfied
188 * @user_data: the data to pass to callback function
190 * Queries the stream information asynchronously. For the synchronous
191 * version of this function, see g_file_input_stream_query_info().
193 * If @cancellable is not %NULL, then the operation can be cancelled by
194 * triggering the cancellable object from another thread. If the operation
195 * was cancelled, the error %G_IO_ERROR_CANCELLED will be set
199 g_file_input_stream_query_info_async (GFileInputStream *stream,
202 GCancellable *cancellable,
203 GAsyncReadyCallback callback,
206 GFileInputStreamClass *klass;
207 GInputStream *input_stream;
209 g_return_if_fail (G_IS_FILE_INPUT_STREAM (stream));
211 input_stream = G_INPUT_STREAM (stream);
213 if (g_input_stream_is_closed (input_stream))
215 g_simple_async_report_error_in_idle (G_OBJECT (stream),
218 G_IO_ERROR, G_IO_ERROR_CLOSED,
219 _("Stream is already closed"));
223 if (g_input_stream_has_pending (input_stream))
225 g_simple_async_report_error_in_idle (G_OBJECT (stream),
228 G_IO_ERROR, G_IO_ERROR_PENDING,
229 _("Stream has outstanding operation"));
233 klass = G_FILE_INPUT_STREAM_GET_CLASS (stream);
235 g_input_stream_set_pending (input_stream, TRUE);
236 stream->priv->outstanding_callback = callback;
237 g_object_ref (stream);
238 klass->query_info_async (stream, attributes, io_priority, cancellable,
239 async_ready_callback_wrapper, user_data);
243 * g_file_input_stream_query_info_finish:
244 * @stream: a #GFileInputStream.
245 * @result: a #GAsyncResult.
246 * @error: a #GError location to store the error occuring,
247 * or %NULL to ignore.
249 * Finishes an asynchronous info query operation.
251 * Returns: #GFileInfo.
254 g_file_input_stream_query_info_finish (GFileInputStream *stream,
255 GAsyncResult *result,
258 GSimpleAsyncResult *simple;
259 GFileInputStreamClass *class;
261 g_return_val_if_fail (G_IS_FILE_INPUT_STREAM (stream), NULL);
262 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), NULL);
264 if (G_IS_SIMPLE_ASYNC_RESULT (result))
266 simple = G_SIMPLE_ASYNC_RESULT (result);
267 if (g_simple_async_result_propagate_error (simple, error))
271 class = G_FILE_INPUT_STREAM_GET_CLASS (stream);
272 return class->query_info_finish (stream, result, error);
276 * g_file_input_stream_tell:
277 * @stream: a #GFileInputStream.
279 * Gets the current position in the stream.
281 * Returns: a #goffset with the position in the stream.
284 g_file_input_stream_tell (GFileInputStream *stream)
286 GFileInputStreamClass *class;
289 g_return_val_if_fail (G_IS_FILE_INPUT_STREAM (stream), 0);
291 class = G_FILE_INPUT_STREAM_GET_CLASS (stream);
295 offset = class->tell (stream);
301 g_file_input_stream_seekable_tell (GSeekable *seekable)
303 return g_file_input_stream_tell (G_FILE_INPUT_STREAM (seekable));
307 * g_file_input_stream_can_seek:
308 * @stream: a #GFileInputStream.
310 * Checks if a file input stream can be seeked.
312 * Returns: %TRUE if stream can be seeked. %FALSE otherwise.
315 g_file_input_stream_can_seek (GFileInputStream *stream)
317 GFileInputStreamClass *class;
320 g_return_val_if_fail (G_IS_FILE_INPUT_STREAM (stream), FALSE);
322 class = G_FILE_INPUT_STREAM_GET_CLASS (stream);
329 can_seek = class->can_seek (stream);
336 g_file_input_stream_seekable_can_seek (GSeekable *seekable)
338 return g_file_input_stream_can_seek (G_FILE_INPUT_STREAM (seekable));
342 * g_file_input_stream_seek:
343 * @stream: a #GFileInputStream.
344 * @offset: a #goffset to seek.
345 * @type: a #GSeekType.
346 * @cancellable: optional #GCancellable object, %NULL to ignore.
347 * @error: a #GError location to store the error occuring, or
350 * Seeks in the file input stream.
352 * If @cancellable is not %NULL, then the operation can be cancelled by
353 * triggering the cancellable object from another thread. If the operation
354 * was cancelled, the error %G_IO_ERROR_CANCELLED will be set.
356 * Returns: %TRUE if the stream was successfully seeked to the position.
360 g_file_input_stream_seek (GFileInputStream *stream,
363 GCancellable *cancellable,
366 GFileInputStreamClass *class;
367 GInputStream *input_stream;
370 g_return_val_if_fail (G_IS_FILE_INPUT_STREAM (stream), FALSE);
372 input_stream = G_INPUT_STREAM (stream);
373 class = G_FILE_INPUT_STREAM_GET_CLASS (stream);
375 if (g_input_stream_is_closed (input_stream))
377 g_set_error (error, G_IO_ERROR, G_IO_ERROR_CLOSED,
378 _("Stream is already closed"));
382 if (g_input_stream_has_pending (input_stream))
384 g_set_error (error, G_IO_ERROR, G_IO_ERROR_PENDING,
385 _("Stream has outstanding operation"));
391 g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
392 _("Seek not supported on stream"));
396 g_input_stream_set_pending (input_stream, TRUE);
399 g_push_current_cancellable (cancellable);
401 res = class->seek (stream, offset, type, cancellable, error);
404 g_pop_current_cancellable (cancellable);
406 g_input_stream_set_pending (input_stream, FALSE);
412 g_file_input_stream_seekable_seek (GSeekable *seekable,
415 GCancellable *cancellable,
418 return g_file_input_stream_seek (G_FILE_INPUT_STREAM (seekable),
419 offset, type, cancellable, error);
423 g_file_input_stream_seekable_can_truncate (GSeekable *seekable)
429 g_file_input_stream_seekable_truncate (GSeekable *seekable,
431 GCancellable *cancellable,
434 g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
435 _("Truncate not allowed on input stream"));
439 /********************************************
440 * Default implementation of async ops *
441 ********************************************/
446 } QueryInfoAsyncData;
449 query_info_data_free (QueryInfoAsyncData *data)
452 g_object_unref (data->info);
453 g_free (data->attributes);
458 query_info_async_thread (GSimpleAsyncResult *res,
460 GCancellable *cancellable)
462 GFileInputStreamClass *class;
463 GError *error = NULL;
464 QueryInfoAsyncData *data;
467 data = g_simple_async_result_get_op_res_gpointer (res);
471 class = G_FILE_INPUT_STREAM_GET_CLASS (object);
472 if (class->query_info)
473 info = class->query_info (G_FILE_INPUT_STREAM (object), data->attributes, cancellable, &error);
475 g_set_error (&error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
476 _("Stream doesn't support query_info"));
480 g_simple_async_result_set_from_error (res, error);
481 g_error_free (error);
488 g_file_input_stream_real_query_info_async (GFileInputStream *stream,
491 GCancellable *cancellable,
492 GAsyncReadyCallback callback,
495 GSimpleAsyncResult *res;
496 QueryInfoAsyncData *data;
498 data = g_new0 (QueryInfoAsyncData, 1);
499 data->attributes = g_strdup (attributes);
501 res = g_simple_async_result_new (G_OBJECT (stream), callback, user_data, g_file_input_stream_real_query_info_async);
502 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)query_info_data_free);
504 g_simple_async_result_run_in_thread (res, query_info_async_thread, io_priority, cancellable);
505 g_object_unref (res);
509 g_file_input_stream_real_query_info_finish (GFileInputStream *stream,
513 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
514 QueryInfoAsyncData *data;
516 g_assert (g_simple_async_result_get_source_tag (simple) == g_file_input_stream_real_query_info_async);
518 data = g_simple_async_result_get_op_res_gpointer (simple);
520 return g_object_ref (data->info);
525 #define __G_FILE_INPUT_STREAM_C__
526 #include "gioaliasdef.c"