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 <gfileoutputstream.h>
27 #include <gseekable.h>
28 #include "gsimpleasyncresult.h"
34 * SECTION:gfileoutputstream
35 * @short_description: file output streaming operations
36 * @see_also: #GOutputStream, #GDataOutputStream, #GSeekable
42 static void g_file_output_stream_seekable_iface_init (GSeekableIface *iface);
43 static goffset g_file_output_stream_seekable_tell (GSeekable *seekable);
44 static gboolean g_file_output_stream_seekable_can_seek (GSeekable *seekable);
45 static gboolean g_file_output_stream_seekable_seek (GSeekable *seekable,
48 GCancellable *cancellable,
50 static gboolean g_file_output_stream_seekable_can_truncate (GSeekable *seekable);
51 static gboolean g_file_output_stream_seekable_truncate (GSeekable *seekable,
53 GCancellable *cancellable,
55 static void g_file_output_stream_real_query_info_async (GFileOutputStream *stream,
58 GCancellable *cancellable,
59 GAsyncReadyCallback callback,
61 static GFileInfo *g_file_output_stream_real_query_info_finish (GFileOutputStream *stream,
65 G_DEFINE_TYPE_WITH_CODE (GFileOutputStream, g_file_output_stream, G_TYPE_OUTPUT_STREAM,
66 G_IMPLEMENT_INTERFACE (G_TYPE_SEEKABLE,
67 g_file_output_stream_seekable_iface_init));
69 struct _GFileOutputStreamPrivate {
70 GAsyncReadyCallback outstanding_callback;
74 g_file_output_stream_class_init (GFileOutputStreamClass *klass)
76 g_type_class_add_private (klass, sizeof (GFileOutputStreamPrivate));
78 klass->query_info_async = g_file_output_stream_real_query_info_async;
79 klass->query_info_finish = g_file_output_stream_real_query_info_finish;
83 g_file_output_stream_seekable_iface_init (GSeekableIface *iface)
85 iface->tell = g_file_output_stream_seekable_tell;
86 iface->can_seek = g_file_output_stream_seekable_can_seek;
87 iface->seek = g_file_output_stream_seekable_seek;
88 iface->can_truncate = g_file_output_stream_seekable_can_truncate;
89 iface->truncate = g_file_output_stream_seekable_truncate;
93 g_file_output_stream_init (GFileOutputStream *stream)
95 stream->priv = G_TYPE_INSTANCE_GET_PRIVATE (stream,
96 G_TYPE_FILE_OUTPUT_STREAM,
97 GFileOutputStreamPrivate);
101 * g_file_output_stream_query_info:
102 * @stream: a #GFileOutputStream.
103 * @attributes: a file attribute query string.
104 * @cancellable: optional #GCancellable object, %NULL to ignore.
105 * @error: a #GError, %NULL to ignore.
107 * Queries a file output stream for the given @attributes.
108 * This function blocks while querying the stream. For the asynchronous
109 * version of this function, see g_file_output_stream_query_info_async().
110 * While the stream is blocked, the stream will set the pending flag
111 * internally, and any other operations on the stream will fail with
112 * %G_IO_ERROR_PENDING.
114 * Can fail if the stream was already closed (with @error being set to
115 * %G_IO_ERROR_CLOSED), the stream has pending operations (with @error being
116 * set to %G_IO_ERROR_PENDING), or if querying info is not supported for
117 * the stream's interface (with @error being set to %G_IO_ERROR_NOT_SUPPORTED). In
118 * all cases of failure, %NULL will be returned.
120 * If @cancellable is not %NULL, then the operation can be cancelled by
121 * triggering the cancellable object from another thread. If the operation
122 * was cancelled, the error %G_IO_ERROR_CANCELLED will be set, and %NULL will
125 * Returns: a #GFileInfo for the @stream, or %NULL on error.
128 g_file_output_stream_query_info (GFileOutputStream *stream,
130 GCancellable *cancellable,
133 GFileOutputStreamClass *class;
134 GOutputStream *output_stream;
137 g_return_val_if_fail (G_IS_FILE_OUTPUT_STREAM (stream), NULL);
139 output_stream = G_OUTPUT_STREAM (stream);
141 if (g_output_stream_is_closed (output_stream))
143 g_set_error (error, G_IO_ERROR, G_IO_ERROR_CLOSED,
144 _("Stream is already closed"));
148 if (g_output_stream_has_pending (output_stream))
150 g_set_error (error, G_IO_ERROR, G_IO_ERROR_PENDING,
151 _("Stream has outstanding operation"));
157 g_output_stream_set_pending (output_stream, TRUE);
160 g_push_current_cancellable (cancellable);
162 class = G_FILE_OUTPUT_STREAM_GET_CLASS (stream);
163 if (class->query_info)
164 info = class->query_info (stream, attributes, cancellable, error);
166 g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
167 _("Stream doesn't support query_info"));
170 g_pop_current_cancellable (cancellable);
172 g_output_stream_set_pending (output_stream, FALSE);
178 async_ready_callback_wrapper (GObject *source_object,
182 GFileOutputStream *stream = G_FILE_OUTPUT_STREAM (source_object);
184 g_output_stream_set_pending (G_OUTPUT_STREAM (stream), FALSE);
185 if (stream->priv->outstanding_callback)
186 (*stream->priv->outstanding_callback) (source_object, res, user_data);
187 g_object_unref (stream);
191 * g_file_output_stream_query_info_async:
192 * @stream: a #GFileOutputStream.
193 * @attributes: a file attribute query string.
194 * @io_priority: the io priority of the request.
195 * @cancellable: optional #GCancellable object, %NULL to ignore.
196 * @callback: callback to call when the request is satisfied
197 * @user_data: the data to pass to callback function
199 * Asynchronously queries the @stream for a #GFileInfo. When completed,
200 * @callback will be called with a #GAsyncResult which can be used to
201 * finish the operation with g_file_output_stream_query_info_finish().
203 * For the synchronous version of this function, see
204 * g_file_output_stream_query_info().
208 g_file_output_stream_query_info_async (GFileOutputStream *stream,
211 GCancellable *cancellable,
212 GAsyncReadyCallback callback,
215 GFileOutputStreamClass *klass;
216 GOutputStream *output_stream;
218 g_return_if_fail (G_IS_FILE_OUTPUT_STREAM (stream));
220 output_stream = G_OUTPUT_STREAM (stream);
222 if (g_output_stream_is_closed (output_stream))
224 g_simple_async_report_error_in_idle (G_OBJECT (stream),
227 G_IO_ERROR, G_IO_ERROR_CLOSED,
228 _("Stream is already closed"));
232 if (g_output_stream_has_pending (output_stream))
234 g_simple_async_report_error_in_idle (G_OBJECT (stream),
237 G_IO_ERROR, G_IO_ERROR_PENDING,
238 _("Stream has outstanding operation"));
242 klass = G_FILE_OUTPUT_STREAM_GET_CLASS (stream);
244 g_output_stream_set_pending (output_stream, TRUE);
245 stream->priv->outstanding_callback = callback;
246 g_object_ref (stream);
247 klass->query_info_async (stream, attributes, io_priority, cancellable,
248 async_ready_callback_wrapper, user_data);
252 * g_file_output_stream_query_info_finish:
253 * @stream: a #GFileOutputStream.
254 * @result: a #GAsyncResult.
255 * @error: a #GError, %NULL to ignore.
257 * Finalizes the asynchronous query started
258 * by g_file_output_stream_query_info_async().
260 * Returns: A #GFileInfo for the finished query.
263 g_file_output_stream_query_info_finish (GFileOutputStream *stream,
264 GAsyncResult *result,
267 GSimpleAsyncResult *simple;
268 GFileOutputStreamClass *class;
270 g_return_val_if_fail (G_IS_FILE_OUTPUT_STREAM (stream), NULL);
271 g_return_val_if_fail (G_IS_ASYNC_RESULT (result), NULL);
273 if (G_IS_SIMPLE_ASYNC_RESULT (result))
275 simple = G_SIMPLE_ASYNC_RESULT (result);
276 if (g_simple_async_result_propagate_error (simple, error))
280 class = G_FILE_OUTPUT_STREAM_GET_CLASS (stream);
281 return class->query_info_finish (stream, result, error);
285 * g_file_output_stream_get_etag:
286 * @stream: a #GFileOutputStream.
288 * Gets the entity tag for the file output stream.
290 * Returns: the entity tag for the stream.
293 g_file_output_stream_get_etag (GFileOutputStream *stream)
295 GFileOutputStreamClass *class;
296 GOutputStream *output_stream;
299 g_return_val_if_fail (G_IS_FILE_OUTPUT_STREAM (stream), NULL);
301 output_stream = G_OUTPUT_STREAM (stream);
303 if (!g_output_stream_is_closed (output_stream))
305 g_warning ("stream is not closed yet, can't get etag");
311 class = G_FILE_OUTPUT_STREAM_GET_CLASS (stream);
313 etag = class->get_etag (stream);
319 * g_file_output_stream_tell:
320 * @stream: a #GFileOutputStream.
322 * Gets the current location within the stream.
324 * Returns: a #goffset of the location within the stream.
327 g_file_output_stream_tell (GFileOutputStream *stream)
329 GFileOutputStreamClass *class;
332 g_return_val_if_fail (G_IS_FILE_OUTPUT_STREAM (stream), 0);
334 class = G_FILE_OUTPUT_STREAM_GET_CLASS (stream);
338 offset = class->tell (stream);
344 g_file_output_stream_seekable_tell (GSeekable *seekable)
346 return g_file_output_stream_tell (G_FILE_OUTPUT_STREAM (seekable));
350 * g_file_output_stream_can_seek:
351 * @stream: a #GFileOutputStream.
353 * Checks if the stream can be seeked.
355 * Returns: %TRUE if seeking is supported by the stream.
358 g_file_output_stream_can_seek (GFileOutputStream *stream)
360 GFileOutputStreamClass *class;
363 g_return_val_if_fail (G_IS_FILE_OUTPUT_STREAM (stream), FALSE);
365 class = G_FILE_OUTPUT_STREAM_GET_CLASS (stream);
372 can_seek = class->can_seek (stream);
379 g_file_output_stream_seekable_can_seek (GSeekable *seekable)
381 return g_file_output_stream_can_seek (G_FILE_OUTPUT_STREAM (seekable));
385 * g_file_output_stream_seek:
386 * @stream: a #GFileOutputStream.
387 * @offset: a #goffset to seek.
388 * @type: a #GSeekType.
389 * @cancellable: optional #GCancellable object, %NULL to ignore.
390 * @error: a #GError, %NULL to ignore.
392 * Seeks to a location in a file output stream.
394 * Returns: %TRUE if the seek was successful. %FALSE otherwise.
397 g_file_output_stream_seek (GFileOutputStream *stream,
400 GCancellable *cancellable,
403 GFileOutputStreamClass *class;
404 GOutputStream *output_stream;
407 g_return_val_if_fail (G_IS_FILE_OUTPUT_STREAM (stream), FALSE);
409 output_stream = G_OUTPUT_STREAM (stream);
410 class = G_FILE_OUTPUT_STREAM_GET_CLASS (stream);
412 if (g_output_stream_is_closed (output_stream))
414 g_set_error (error, G_IO_ERROR, G_IO_ERROR_CLOSED,
415 _("Stream is already closed"));
419 if (g_output_stream_has_pending (output_stream))
421 g_set_error (error, G_IO_ERROR, G_IO_ERROR_PENDING,
422 _("Stream has outstanding operation"));
428 g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
429 _("Seek not supported on stream"));
433 g_output_stream_set_pending (output_stream, TRUE);
436 g_push_current_cancellable (cancellable);
438 res = class->seek (stream, offset, type, cancellable, error);
441 g_pop_current_cancellable (cancellable);
443 g_output_stream_set_pending (output_stream, FALSE);
449 g_file_output_stream_seekable_seek (GSeekable *seekable,
452 GCancellable *cancellable,
455 return g_file_output_stream_seek (G_FILE_OUTPUT_STREAM (seekable),
456 offset, type, cancellable, error);
460 * g_file_output_stream_can_truncate:
461 * @stream: a #GFileOutputStream.
463 * Checks if the stream can be truncated.
465 * Returns: %TRUE if stream can be truncated.
468 g_file_output_stream_can_truncate (GFileOutputStream *stream)
470 GFileOutputStreamClass *class;
471 gboolean can_truncate;
473 g_return_val_if_fail (G_IS_FILE_OUTPUT_STREAM (stream), FALSE);
475 class = G_FILE_OUTPUT_STREAM_GET_CLASS (stream);
477 can_truncate = FALSE;
481 if (class->can_truncate)
482 can_truncate = class->can_truncate (stream);
489 g_file_output_stream_seekable_can_truncate (GSeekable *seekable)
491 return g_file_output_stream_can_truncate (G_FILE_OUTPUT_STREAM (seekable));
495 * g_file_output_stream_truncate:
496 * @stream: a #GFileOutputStream.
497 * @size: a #goffset to truncate the stream at.
498 * @cancellable: optional #GCancellable object, %NULL to ignore.
499 * @error: a #GError, %NULL to ignore.
501 * Truncates a file output stream.
503 * Returns: %TRUE if @stream is truncated successfully.
506 g_file_output_stream_truncate (GFileOutputStream *stream,
508 GCancellable *cancellable,
511 GFileOutputStreamClass *class;
512 GOutputStream *output_stream;
515 g_return_val_if_fail (G_IS_FILE_OUTPUT_STREAM (stream), FALSE);
517 output_stream = G_OUTPUT_STREAM (stream);
518 class = G_FILE_OUTPUT_STREAM_GET_CLASS (stream);
520 if (g_output_stream_is_closed (output_stream))
522 g_set_error (error, G_IO_ERROR, G_IO_ERROR_CLOSED,
523 _("Stream is already closed"));
527 if (g_output_stream_has_pending (output_stream))
529 g_set_error (error, G_IO_ERROR, G_IO_ERROR_PENDING,
530 _("Stream has outstanding operation"));
534 if (!class->truncate)
536 g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
537 _("Truncate not supported on stream"));
541 g_output_stream_set_pending (output_stream, TRUE);
544 g_push_current_cancellable (cancellable);
546 res = class->truncate (stream, size, cancellable, error);
549 g_pop_current_cancellable (cancellable);
551 g_output_stream_set_pending (output_stream, FALSE);
557 g_file_output_stream_seekable_truncate (GSeekable *seekable,
559 GCancellable *cancellable,
562 return g_file_output_stream_truncate (G_FILE_OUTPUT_STREAM (seekable),
563 size, cancellable, error);
565 /********************************************
566 * Default implementation of async ops *
567 ********************************************/
572 } QueryInfoAsyncData;
575 query_info_data_free (QueryInfoAsyncData *data)
578 g_object_unref (data->info);
579 g_free (data->attributes);
584 query_info_async_thread (GSimpleAsyncResult *res,
586 GCancellable *cancellable)
588 GFileOutputStreamClass *class;
589 GError *error = NULL;
590 QueryInfoAsyncData *data;
593 data = g_simple_async_result_get_op_res_gpointer (res);
597 class = G_FILE_OUTPUT_STREAM_GET_CLASS (object);
598 if (class->query_info)
599 info = class->query_info (G_FILE_OUTPUT_STREAM (object), data->attributes, cancellable, &error);
601 g_set_error (&error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
602 _("Stream doesn't support query_info"));
606 g_simple_async_result_set_from_error (res, error);
607 g_error_free (error);
614 g_file_output_stream_real_query_info_async (GFileOutputStream *stream,
617 GCancellable *cancellable,
618 GAsyncReadyCallback callback,
621 GSimpleAsyncResult *res;
622 QueryInfoAsyncData *data;
624 data = g_new0 (QueryInfoAsyncData, 1);
625 data->attributes = g_strdup (attributes);
627 res = g_simple_async_result_new (G_OBJECT (stream), callback, user_data, g_file_output_stream_real_query_info_async);
628 g_simple_async_result_set_op_res_gpointer (res, data, (GDestroyNotify)query_info_data_free);
630 g_simple_async_result_run_in_thread (res, query_info_async_thread, io_priority, cancellable);
631 g_object_unref (res);
635 g_file_output_stream_real_query_info_finish (GFileOutputStream *stream,
639 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
640 QueryInfoAsyncData *data;
642 g_assert (g_simple_async_result_get_source_tag (simple) == g_file_output_stream_real_query_info_async);
644 data = g_simple_async_result_get_op_res_gpointer (simple);
646 return g_object_ref (data->info);
651 #define __G_FILE_OUTPUT_STREAM_C__
652 #include "gioaliasdef.c"