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>
23 #ifndef __G_OUTPUT_STREAM_H__
24 #define __G_OUTPUT_STREAM_H__
26 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
27 #error "Only <gio/gio.h> can be included directly."
30 #include <gio/giotypes.h>
34 #define G_TYPE_OUTPUT_STREAM (g_output_stream_get_type ())
35 #define G_OUTPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_OUTPUT_STREAM, GOutputStream))
36 #define G_OUTPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_OUTPUT_STREAM, GOutputStreamClass))
37 #define G_IS_OUTPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_OUTPUT_STREAM))
38 #define G_IS_OUTPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_OUTPUT_STREAM))
39 #define G_OUTPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_OUTPUT_STREAM, GOutputStreamClass))
44 * Base class for writing output.
46 * All classes derived from GOutputStream should implement synchronous
47 * writing, splicing, flushing and closing streams, but may implement
48 * asynchronous versions.
50 typedef struct _GOutputStreamClass GOutputStreamClass;
51 typedef struct _GOutputStreamPrivate GOutputStreamPrivate;
55 GObject parent_instance;
58 GOutputStreamPrivate *priv;
62 struct _GOutputStreamClass
64 GObjectClass parent_class;
68 gssize (* write_fn) (GOutputStream *stream,
71 GCancellable *cancellable,
73 gssize (* splice) (GOutputStream *stream,
75 GOutputStreamSpliceFlags flags,
76 GCancellable *cancellable,
78 gboolean (* flush) (GOutputStream *stream,
79 GCancellable *cancellable,
81 gboolean (* close_fn) (GOutputStream *stream,
82 GCancellable *cancellable,
85 /* Async ops: (optional in derived classes) */
87 void (* write_async) (GOutputStream *stream,
91 GCancellable *cancellable,
92 GAsyncReadyCallback callback,
94 gssize (* write_finish) (GOutputStream *stream,
97 void (* splice_async) (GOutputStream *stream,
99 GOutputStreamSpliceFlags flags,
101 GCancellable *cancellable,
102 GAsyncReadyCallback callback,
104 gssize (* splice_finish) (GOutputStream *stream,
105 GAsyncResult *result,
107 void (* flush_async) (GOutputStream *stream,
109 GCancellable *cancellable,
110 GAsyncReadyCallback callback,
112 gboolean (* flush_finish) (GOutputStream *stream,
113 GAsyncResult *result,
115 void (* close_async) (GOutputStream *stream,
117 GCancellable *cancellable,
118 GAsyncReadyCallback callback,
120 gboolean (* close_finish) (GOutputStream *stream,
121 GAsyncResult *result,
125 /* Padding for future expansion */
126 void (*_g_reserved1) (void);
127 void (*_g_reserved2) (void);
128 void (*_g_reserved3) (void);
129 void (*_g_reserved4) (void);
130 void (*_g_reserved5) (void);
131 void (*_g_reserved6) (void);
132 void (*_g_reserved7) (void);
133 void (*_g_reserved8) (void);
136 GLIB_AVAILABLE_IN_ALL
137 GType g_output_stream_get_type (void) G_GNUC_CONST;
139 GLIB_AVAILABLE_IN_ALL
140 gssize g_output_stream_write (GOutputStream *stream,
143 GCancellable *cancellable,
145 GLIB_AVAILABLE_IN_ALL
146 gboolean g_output_stream_write_all (GOutputStream *stream,
149 gsize *bytes_written,
150 GCancellable *cancellable,
152 GLIB_AVAILABLE_IN_2_40
153 gboolean g_output_stream_printf (GOutputStream *stream,
154 gsize *bytes_written,
155 GCancellable *cancellable,
158 ...) G_GNUC_PRINTF (5, 6);
159 GLIB_AVAILABLE_IN_2_40
160 gboolean g_output_stream_vprintf (GOutputStream *stream,
161 gsize *bytes_written,
162 GCancellable *cancellable,
165 va_list args) G_GNUC_PRINTF (5, 0);
166 GLIB_AVAILABLE_IN_2_34
167 gssize g_output_stream_write_bytes (GOutputStream *stream,
169 GCancellable *cancellable,
171 GLIB_AVAILABLE_IN_ALL
172 gssize g_output_stream_splice (GOutputStream *stream,
173 GInputStream *source,
174 GOutputStreamSpliceFlags flags,
175 GCancellable *cancellable,
177 GLIB_AVAILABLE_IN_ALL
178 gboolean g_output_stream_flush (GOutputStream *stream,
179 GCancellable *cancellable,
181 GLIB_AVAILABLE_IN_ALL
182 gboolean g_output_stream_close (GOutputStream *stream,
183 GCancellable *cancellable,
185 GLIB_AVAILABLE_IN_ALL
186 void g_output_stream_write_async (GOutputStream *stream,
190 GCancellable *cancellable,
191 GAsyncReadyCallback callback,
193 GLIB_AVAILABLE_IN_ALL
194 gssize g_output_stream_write_finish (GOutputStream *stream,
195 GAsyncResult *result,
197 GLIB_AVAILABLE_IN_2_34
198 void g_output_stream_write_bytes_async (GOutputStream *stream,
201 GCancellable *cancellable,
202 GAsyncReadyCallback callback,
204 GLIB_AVAILABLE_IN_2_34
205 gssize g_output_stream_write_bytes_finish (GOutputStream *stream,
206 GAsyncResult *result,
208 GLIB_AVAILABLE_IN_ALL
209 void g_output_stream_splice_async (GOutputStream *stream,
210 GInputStream *source,
211 GOutputStreamSpliceFlags flags,
213 GCancellable *cancellable,
214 GAsyncReadyCallback callback,
216 GLIB_AVAILABLE_IN_ALL
217 gssize g_output_stream_splice_finish (GOutputStream *stream,
218 GAsyncResult *result,
220 GLIB_AVAILABLE_IN_ALL
221 void g_output_stream_flush_async (GOutputStream *stream,
223 GCancellable *cancellable,
224 GAsyncReadyCallback callback,
226 GLIB_AVAILABLE_IN_ALL
227 gboolean g_output_stream_flush_finish (GOutputStream *stream,
228 GAsyncResult *result,
230 GLIB_AVAILABLE_IN_ALL
231 void g_output_stream_close_async (GOutputStream *stream,
233 GCancellable *cancellable,
234 GAsyncReadyCallback callback,
236 GLIB_AVAILABLE_IN_ALL
237 gboolean g_output_stream_close_finish (GOutputStream *stream,
238 GAsyncResult *result,
241 GLIB_AVAILABLE_IN_ALL
242 gboolean g_output_stream_is_closed (GOutputStream *stream);
243 GLIB_AVAILABLE_IN_ALL
244 gboolean g_output_stream_is_closing (GOutputStream *stream);
245 GLIB_AVAILABLE_IN_ALL
246 gboolean g_output_stream_has_pending (GOutputStream *stream);
247 GLIB_AVAILABLE_IN_ALL
248 gboolean g_output_stream_set_pending (GOutputStream *stream,
250 GLIB_AVAILABLE_IN_ALL
251 void g_output_stream_clear_pending (GOutputStream *stream);
256 #endif /* __G_OUTPUT_STREAM_H__ */