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_fn = 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_set_pending (input_stream, error))
137 g_cancellable_push_current (cancellable);
139 class = G_FILE_INPUT_STREAM_GET_CLASS (stream);
140 if (class->query_info)
141 info = class->query_info (stream, attributes, cancellable, error);
143 g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
144 _("Stream doesn't support query_info"));
147 g_cancellable_pop_current (cancellable);
149 g_input_stream_clear_pending (input_stream);
155 async_ready_callback_wrapper (GObject *source_object,
159 GFileInputStream *stream = G_FILE_INPUT_STREAM (source_object);
161 g_input_stream_clear_pending (G_INPUT_STREAM (stream));
162 if (stream->priv->outstanding_callback)
163 (*stream->priv->outstanding_callback) (source_object, res, user_data);
164 g_object_unref (stream);
168 * g_file_input_stream_query_info_async:
169 * @stream: a #GFileInputStream.
170 * @attributes: a file attribute query string.
171 * @io_priority: the <link linkend="io-priority">I/O priority</link>
173 * @cancellable: optional #GCancellable object, %NULL to ignore.
174 * @callback: callback to call when the request is satisfied
175 * @user_data: the data to pass to callback function
177 * Queries the stream information asynchronously. For the synchronous
178 * version of this function, see g_file_input_stream_query_info().
180 * If @cancellable is not %NULL, then the operation can be cancelled by
181 * triggering the cancellable object from another thread. If the operation
182 * was cancelled, the error %G_IO_ERROR_CANCELLED will be set
186 g_file_input_stream_query_info_async (GFileInputStream *stream,
189 GCancellable *cancellable,
190 GAsyncReadyCallback callback,
193 GFileInputStreamClass *klass;
194 GInputStream *input_stream;
195 GError *error = NULL;
197 g_return_if_fail (G_IS_FILE_INPUT_STREAM (stream));
199 input_stream = G_INPUT_STREAM (stream);
201 if (!g_input_stream_set_pending (input_stream, &error))
203 g_simple_async_report_gerror_in_idle (G_OBJECT (stream),
207 g_error_free (error);
211 klass = G_FILE_INPUT_STREAM_GET_CLASS (stream);
213 stream->priv->outstanding_callback = callback;
214 g_object_ref (stream);
215 klass->query_info_async (stream, attributes, io_priority, cancellable,
216 async_ready_callback_wrapper, user_data);
220 * g_file_input_stream_query_info_finish:
221 * @stream: a #GFileInputStream.
222 * @result: a #GAsyncResult.
223 * @error: a #GError location to store the error occuring,
224 * or %NULL to ignore.
226 * Finishes an asynchronous info query operation.
228 * Returns: #GFileInfo.
231 g_file_input_stream_query_info_finish (GFileInputStream *stream,
232 GAsyncResult *result,
235 GSimpleAsyncResult *simple;
236 GFileInputStreamClass *class;
238 g_return_val_if_fail (G_IS_FILE_INPUT_STREAM (stream), NULL);
239 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), NULL);
241 if (G_IS_SIMPLE_ASYNC_RESULT (result))
243 simple = G_SIMPLE_ASYNC_RESULT (result);
244 if (g_simple_async_result_propagate_error (simple, error))
248 class = G_FILE_INPUT_STREAM_GET_CLASS (stream);
249 return class->query_info_finish (stream, result, error);
253 * g_file_input_stream_tell:
254 * @stream: a #GFileInputStream.
256 * Gets the current position in the stream.
258 * Returns: a #goffset with the position in the stream.
261 g_file_input_stream_tell (GFileInputStream *stream)
263 GFileInputStreamClass *class;
266 g_return_val_if_fail (G_IS_FILE_INPUT_STREAM (stream), 0);
268 class = G_FILE_INPUT_STREAM_GET_CLASS (stream);
272 offset = class->tell (stream);
278 g_file_input_stream_seekable_tell (GSeekable *seekable)
280 return g_file_input_stream_tell (G_FILE_INPUT_STREAM (seekable));
284 * g_file_input_stream_can_seek:
285 * @stream: a #GFileInputStream.
287 * Checks if a file input stream can be seeked.
289 * Returns: %TRUE if stream can be seeked. %FALSE otherwise.
292 g_file_input_stream_can_seek (GFileInputStream *stream)
294 GFileInputStreamClass *class;
297 g_return_val_if_fail (G_IS_FILE_INPUT_STREAM (stream), FALSE);
299 class = G_FILE_INPUT_STREAM_GET_CLASS (stream);
306 can_seek = class->can_seek (stream);
313 g_file_input_stream_seekable_can_seek (GSeekable *seekable)
315 return g_file_input_stream_can_seek (G_FILE_INPUT_STREAM (seekable));
319 * g_file_input_stream_seek:
320 * @stream: a #GFileInputStream.
321 * @offset: a #goffset to seek.
322 * @type: a #GSeekType.
323 * @cancellable: optional #GCancellable object, %NULL to ignore.
324 * @error: a #GError location to store the error occuring, or
327 * Seeks in the file input stream.
329 * If @cancellable is not %NULL, then the operation can be cancelled by
330 * triggering the cancellable object from another thread. If the operation
331 * was cancelled, the error %G_IO_ERROR_CANCELLED will be set.
333 * Returns: %TRUE if the stream was successfully seeked to the position.
337 g_file_input_stream_seek (GFileInputStream *stream,
340 GCancellable *cancellable,
343 GFileInputStreamClass *class;
344 GInputStream *input_stream;
347 g_return_val_if_fail (G_IS_FILE_INPUT_STREAM (stream), FALSE);
349 input_stream = G_INPUT_STREAM (stream);
350 class = G_FILE_INPUT_STREAM_GET_CLASS (stream);
354 g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
355 _("Seek not supported on stream"));
359 if (!g_input_stream_set_pending (input_stream, error))
363 g_cancellable_push_current (cancellable);
365 res = class->seek (stream, offset, type, cancellable, error);
368 g_cancellable_pop_current (cancellable);
370 g_input_stream_clear_pending (input_stream);
376 g_file_input_stream_seekable_seek (GSeekable *seekable,
379 GCancellable *cancellable,
382 return g_file_input_stream_seek (G_FILE_INPUT_STREAM (seekable),
383 offset, type, cancellable, error);
387 g_file_input_stream_seekable_can_truncate (GSeekable *seekable)
393 g_file_input_stream_seekable_truncate (GSeekable *seekable,
395 GCancellable *cancellable,
398 g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
399 _("Truncate not allowed on input stream"));
403 /********************************************
404 * Default implementation of async ops *
405 ********************************************/
410 } QueryInfoAsyncData;
413 query_info_data_free (QueryInfoAsyncData *data)
416 g_object_unref (data->info);
417 g_free (data->attributes);
422 query_info_async_thread (GSimpleAsyncResult *res,
424 GCancellable *cancellable)
426 GFileInputStreamClass *class;
427 GError *error = NULL;
428 QueryInfoAsyncData *data;
431 data = g_simple_async_result_get_op_res_gpointer (res);
435 class = G_FILE_INPUT_STREAM_GET_CLASS (object);
436 if (class->query_info)
437 info = class->query_info (G_FILE_INPUT_STREAM (object), data->attributes, cancellable, &error);
439 g_set_error (&error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
440 _("Stream doesn't support query_info"));
444 g_simple_async_result_set_from_error (res, error);
445 g_error_free (error);
452 g_file_input_stream_real_query_info_async (GFileInputStream *stream,
455 GCancellable *cancellable,
456 GAsyncReadyCallback callback,
459 GSimpleAsyncResult *res;
460 QueryInfoAsyncData *data;
462 data = g_new0 (QueryInfoAsyncData, 1);
463 data->attributes = g_strdup (attributes);
465 res = g_simple_async_result_new (G_OBJECT (stream), callback, user_data, g_file_input_stream_real_query_info_async);
466 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)query_info_data_free);
468 g_simple_async_result_run_in_thread (res, query_info_async_thread, io_priority, cancellable);
469 g_object_unref (res);
473 g_file_input_stream_real_query_info_finish (GFileInputStream *stream,
477 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
478 QueryInfoAsyncData *data;
480 g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_file_input_stream_real_query_info_async);
482 data = g_simple_async_result_get_op_res_gpointer (simple);
484 return g_object_ref (data->info);
489 #define __G_FILE_INPUT_STREAM_C__
490 #include "gioaliasdef.c"