mirror of
				https://gitlab.gnome.org/GNOME/glib.git
				synced 2025-10-31 00:12:19 +01:00 
			
		
		
		
	Looks like a copy/paste error from the doc comment immediately below. Signed-off-by: Philip Withnall <pwithnall@gnome.org>
		
			
				
	
	
		
			315 lines
		
	
	
		
			9.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			315 lines
		
	
	
		
			9.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* GIO - GLib Input, Output and Streaming Library
 | |
|  * 
 | |
|  * Copyright (C) 2006-2007 Red Hat, Inc.
 | |
|  *
 | |
|  * SPDX-License-Identifier: LGPL-2.1-or-later
 | |
|  *
 | |
|  * This library is free software; you can redistribute it and/or
 | |
|  * modify it under the terms of the GNU Lesser General Public
 | |
|  * License as published by the Free Software Foundation; either
 | |
|  * version 2.1 of the License, or (at your option) any later version.
 | |
|  *
 | |
|  * This library is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | |
|  * Lesser General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU Lesser General
 | |
|  * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
 | |
|  *
 | |
|  * Author: Christian Kellner <gicmo@gnome.org> 
 | |
|  */
 | |
| 
 | |
| #include "config.h"
 | |
| #include "gfilteroutputstream.h"
 | |
| #include "goutputstream.h"
 | |
| #include "glibintl.h"
 | |
| 
 | |
| 
 | |
| /**
 | |
|  * GFilterOutputStream:
 | |
|  *
 | |
|  * Base class for output stream implementations that perform some
 | |
|  * kind of filtering operation on a base stream. Typical examples
 | |
|  * of filtering operations are character set conversion, compression
 | |
|  * and byte order flipping.
 | |
|  */
 | |
| 
 | |
| enum {
 | |
|   PROP_0,
 | |
|   PROP_BASE_STREAM,
 | |
|   PROP_CLOSE_BASE
 | |
| };
 | |
| 
 | |
| static void     g_filter_output_stream_set_property (GObject      *object,
 | |
|                                                      guint         prop_id,
 | |
|                                                      const GValue *value,
 | |
|                                                      GParamSpec   *pspec);
 | |
| 
 | |
| static void     g_filter_output_stream_get_property (GObject    *object,
 | |
|                                                      guint       prop_id,
 | |
|                                                      GValue     *value,
 | |
|                                                      GParamSpec *pspec);
 | |
| static void     g_filter_output_stream_dispose      (GObject *object);
 | |
| 
 | |
| 
 | |
| static gssize   g_filter_output_stream_write        (GOutputStream *stream,
 | |
|                                                      const void    *buffer,
 | |
|                                                      gsize          count,
 | |
|                                                      GCancellable  *cancellable,
 | |
|                                                      GError       **error);
 | |
| static gboolean g_filter_output_stream_flush        (GOutputStream    *stream,
 | |
|                                                      GCancellable  *cancellable,
 | |
|                                                      GError          **error);
 | |
| static gboolean g_filter_output_stream_close        (GOutputStream  *stream,
 | |
|                                                      GCancellable   *cancellable,
 | |
|                                                      GError        **error);
 | |
| 
 | |
| typedef struct
 | |
| {
 | |
|   gboolean close_base;
 | |
| } GFilterOutputStreamPrivate;
 | |
| 
 | |
| G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE (GFilterOutputStream, g_filter_output_stream, G_TYPE_OUTPUT_STREAM)
 | |
| 
 | |
| static void
 | |
| g_filter_output_stream_class_init (GFilterOutputStreamClass *klass)
 | |
| {
 | |
|   GObjectClass *object_class;
 | |
|   GOutputStreamClass *ostream_class;
 | |
| 
 | |
|   object_class = G_OBJECT_CLASS (klass);
 | |
|   object_class->get_property = g_filter_output_stream_get_property;
 | |
|   object_class->set_property = g_filter_output_stream_set_property;
 | |
|   object_class->dispose      = g_filter_output_stream_dispose;
 | |
|     
 | |
|   ostream_class = G_OUTPUT_STREAM_CLASS (klass);
 | |
|   ostream_class->write_fn = g_filter_output_stream_write;
 | |
|   ostream_class->flush = g_filter_output_stream_flush;
 | |
|   ostream_class->close_fn = g_filter_output_stream_close;
 | |
| 
 | |
|   /**
 | |
|    * GFilterOutputStream:base-stream:
 | |
|    *
 | |
|    * The underlying base stream on which the I/O ops will be done.
 | |
|    */
 | |
|   g_object_class_install_property (object_class,
 | |
|                                    PROP_BASE_STREAM,
 | |
|                                    g_param_spec_object ("base-stream", NULL, NULL,
 | |
|                                                          G_TYPE_OUTPUT_STREAM,
 | |
|                                                          G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | 
 | |
|                                                          G_PARAM_STATIC_NAME|G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB));
 | |
| 
 | |
|   /**
 | |
|    * GFilterOutputStream:close-base-stream:
 | |
|    *
 | |
|    * Whether the base stream should be closed when the filter stream is closed.
 | |
|    */
 | |
|   g_object_class_install_property (object_class,
 | |
|                                    PROP_CLOSE_BASE,
 | |
|                                    g_param_spec_boolean ("close-base-stream", NULL, NULL,
 | |
|                                                          TRUE, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
 | |
|                                                          G_PARAM_STATIC_NAME|G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB));
 | |
| }
 | |
| 
 | |
| static void
 | |
| g_filter_output_stream_set_property (GObject      *object,
 | |
|                                      guint         prop_id,
 | |
|                                      const GValue *value,
 | |
|                                      GParamSpec   *pspec)
 | |
| {
 | |
|   GFilterOutputStream *filter_stream;
 | |
|   GObject *obj;
 | |
| 
 | |
|   filter_stream = G_FILTER_OUTPUT_STREAM (object);
 | |
| 
 | |
|   switch (prop_id) 
 | |
|     {
 | |
|     case PROP_BASE_STREAM:
 | |
|       obj = g_value_dup_object (value);
 | |
|       filter_stream->base_stream = G_OUTPUT_STREAM (obj);
 | |
|       break;
 | |
| 
 | |
|     case PROP_CLOSE_BASE:
 | |
|       g_filter_output_stream_set_close_base_stream (filter_stream,
 | |
|                                                     g_value_get_boolean (value));
 | |
|       break;
 | |
| 
 | |
|     default:
 | |
|       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
 | |
|       break;
 | |
|     }
 | |
| 
 | |
| }
 | |
| 
 | |
| static void
 | |
| g_filter_output_stream_get_property (GObject    *object,
 | |
|                                      guint       prop_id,
 | |
|                                      GValue     *value,
 | |
|                                      GParamSpec *pspec)
 | |
| {
 | |
|   GFilterOutputStream *filter_stream;
 | |
|   GFilterOutputStreamPrivate *priv;
 | |
| 
 | |
|   filter_stream = G_FILTER_OUTPUT_STREAM (object);
 | |
|   priv = g_filter_output_stream_get_instance_private (filter_stream);
 | |
| 
 | |
|   switch (prop_id)
 | |
|     {
 | |
|     case PROP_BASE_STREAM:
 | |
|       g_value_set_object (value, filter_stream->base_stream);
 | |
|       break;
 | |
| 
 | |
|     case PROP_CLOSE_BASE:
 | |
|       g_value_set_boolean (value, priv->close_base);
 | |
|       break;
 | |
| 
 | |
|     default:
 | |
|       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
 | |
|       break;
 | |
|     }
 | |
| 
 | |
| }
 | |
| 
 | |
| static void
 | |
| g_filter_output_stream_dispose (GObject *object)
 | |
| {
 | |
|   GFilterOutputStream *stream;
 | |
| 
 | |
|   stream = G_FILTER_OUTPUT_STREAM (object);
 | |
| 
 | |
|   G_OBJECT_CLASS (g_filter_output_stream_parent_class)->dispose (object);
 | |
|   
 | |
|   if (stream->base_stream)
 | |
|     {
 | |
|       g_object_unref (stream->base_stream);
 | |
|       stream->base_stream = NULL;
 | |
|     }
 | |
| }
 | |
| 
 | |
| 
 | |
| static void
 | |
| g_filter_output_stream_init (GFilterOutputStream *stream)
 | |
| {
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * g_filter_output_stream_get_base_stream:
 | |
|  * @stream: a [class@Gio.FilterOutputStream].
 | |
|  * 
 | |
|  * Gets the base stream for the filter stream.
 | |
|  *
 | |
|  * Returns: (transfer none): a [class@Gio.OutputStream].
 | |
|  **/
 | |
| GOutputStream *
 | |
| g_filter_output_stream_get_base_stream (GFilterOutputStream *stream)
 | |
| {
 | |
|   g_return_val_if_fail (G_IS_FILTER_OUTPUT_STREAM (stream), NULL);
 | |
| 
 | |
|   return stream->base_stream;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * g_filter_output_stream_get_close_base_stream:
 | |
|  * @stream: a [class@Gio.FilterOutputStream].
 | |
|  *
 | |
|  * Returns whether the base stream will be closed when @stream is
 | |
|  * closed.
 | |
|  *
 | |
|  * Returns: `TRUE` if the base stream will be closed.
 | |
|  **/
 | |
| gboolean
 | |
| g_filter_output_stream_get_close_base_stream (GFilterOutputStream *stream)
 | |
| {
 | |
|   GFilterOutputStreamPrivate *priv;
 | |
| 
 | |
|   g_return_val_if_fail (G_IS_FILTER_OUTPUT_STREAM (stream), FALSE);
 | |
| 
 | |
|   priv = g_filter_output_stream_get_instance_private (stream);
 | |
| 
 | |
|   return priv->close_base;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * g_filter_output_stream_set_close_base_stream:
 | |
|  * @stream: a [class@Gio.FilterOutputStream].
 | |
|  * @close_base: `TRUE` to close the base stream.
 | |
|  *
 | |
|  * Sets whether the base stream will be closed when @stream is closed.
 | |
|  **/
 | |
| void
 | |
| g_filter_output_stream_set_close_base_stream (GFilterOutputStream *stream,
 | |
|                                               gboolean             close_base)
 | |
| {
 | |
|   GFilterOutputStreamPrivate *priv;
 | |
| 
 | |
|   g_return_if_fail (G_IS_FILTER_OUTPUT_STREAM (stream));
 | |
| 
 | |
|   close_base = !!close_base;
 | |
| 
 | |
|   priv = g_filter_output_stream_get_instance_private (stream);
 | |
| 
 | |
|   if (priv->close_base != close_base)
 | |
|     {
 | |
|       priv->close_base = close_base;
 | |
|       g_object_notify (G_OBJECT (stream), "close-base-stream");
 | |
|     }
 | |
| }
 | |
| 
 | |
| static gssize
 | |
| g_filter_output_stream_write (GOutputStream  *stream,
 | |
|                               const void     *buffer,
 | |
|                               gsize           count,
 | |
|                               GCancellable   *cancellable,
 | |
|                               GError        **error)
 | |
| {
 | |
|   GFilterOutputStream *filter_stream;
 | |
|   gssize nwritten;
 | |
| 
 | |
|   filter_stream = G_FILTER_OUTPUT_STREAM (stream);
 | |
| 
 | |
|   nwritten = g_output_stream_write (filter_stream->base_stream,
 | |
|                                     buffer,
 | |
|                                     count,
 | |
|                                     cancellable,
 | |
|                                     error);
 | |
| 
 | |
|   return nwritten;
 | |
| }
 | |
| 
 | |
| static gboolean
 | |
| g_filter_output_stream_flush (GOutputStream  *stream,
 | |
|                               GCancellable   *cancellable,
 | |
|                               GError        **error)
 | |
| {
 | |
|   GFilterOutputStream *filter_stream;
 | |
|   gboolean res;
 | |
| 
 | |
|   filter_stream = G_FILTER_OUTPUT_STREAM (stream);
 | |
| 
 | |
|   res = g_output_stream_flush (filter_stream->base_stream,
 | |
|                                cancellable,
 | |
|                                error);
 | |
| 
 | |
|   return res;
 | |
| }
 | |
| 
 | |
| static gboolean
 | |
| g_filter_output_stream_close (GOutputStream  *stream,
 | |
|                               GCancellable   *cancellable,
 | |
|                               GError        **error)
 | |
| {
 | |
|   GFilterOutputStream *filter_stream = G_FILTER_OUTPUT_STREAM (stream);
 | |
|   GFilterOutputStreamPrivate *priv = g_filter_output_stream_get_instance_private (filter_stream);
 | |
|   gboolean res = TRUE;
 | |
| 
 | |
|   if (priv->close_base)
 | |
|     {
 | |
|       res = g_output_stream_close (filter_stream->base_stream,
 | |
|                                    cancellable,
 | |
|                                    error);
 | |
|     }
 | |
| 
 | |
|   return res;
 | |
| }
 |