1/* GIO - GLib Input, Output and Streaming Library
2 *
3 * Copyright (C) 2006-2007 Red Hat, Inc.
4 *
5 * SPDX-License-Identifier: LGPL-2.1-or-later
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General
18 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 *
20 * Author: Alexander Larsson <alexl@redhat.com>
21 */
22
23#ifndef __G_DATA_OUTPUT_STREAM_H__
24#define __G_DATA_OUTPUT_STREAM_H__
25
26#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
27#error "Only <gio/gio.h> can be included directly."
28#endif
29
30#include <gio/gfilteroutputstream.h>
31
32G_BEGIN_DECLS
33
34#define G_TYPE_DATA_OUTPUT_STREAM (g_data_output_stream_get_type ())
35#define G_DATA_OUTPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DATA_OUTPUT_STREAM, GDataOutputStream))
36#define G_DATA_OUTPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_DATA_OUTPUT_STREAM, GDataOutputStreamClass))
37#define G_IS_DATA_OUTPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DATA_OUTPUT_STREAM))
38#define G_IS_DATA_OUTPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_DATA_OUTPUT_STREAM))
39#define G_DATA_OUTPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_DATA_OUTPUT_STREAM, GDataOutputStreamClass))
40
41typedef struct _GDataOutputStream GDataOutputStream;
42typedef struct _GDataOutputStreamClass GDataOutputStreamClass;
43typedef struct _GDataOutputStreamPrivate GDataOutputStreamPrivate;
44
45struct _GDataOutputStream
46{
47 GFilterOutputStream parent_instance;
48
49 /*< private >*/
50 GDataOutputStreamPrivate *priv;
51};
52
53struct _GDataOutputStreamClass
54{
55 GFilterOutputStreamClass parent_class;
56
57 /*< private >*/
58 /* Padding for future expansion */
59 void (*_g_reserved1) (void);
60 void (*_g_reserved2) (void);
61 void (*_g_reserved3) (void);
62 void (*_g_reserved4) (void);
63 void (*_g_reserved5) (void);
64};
65
66
67GIO_AVAILABLE_IN_ALL
68GType g_data_output_stream_get_type (void) G_GNUC_CONST;
69GIO_AVAILABLE_IN_ALL
70GDataOutputStream * g_data_output_stream_new (GOutputStream *base_stream);
71
72GIO_AVAILABLE_IN_ALL
73void g_data_output_stream_set_byte_order (GDataOutputStream *stream,
74 GDataStreamByteOrder order);
75GIO_AVAILABLE_IN_ALL
76GDataStreamByteOrder g_data_output_stream_get_byte_order (GDataOutputStream *stream);
77
78GIO_AVAILABLE_IN_ALL
79gboolean g_data_output_stream_put_byte (GDataOutputStream *stream,
80 guchar data,
81 GCancellable *cancellable,
82 GError **error);
83GIO_AVAILABLE_IN_ALL
84gboolean g_data_output_stream_put_int16 (GDataOutputStream *stream,
85 gint16 data,
86 GCancellable *cancellable,
87 GError **error);
88GIO_AVAILABLE_IN_ALL
89gboolean g_data_output_stream_put_uint16 (GDataOutputStream *stream,
90 guint16 data,
91 GCancellable *cancellable,
92 GError **error);
93GIO_AVAILABLE_IN_ALL
94gboolean g_data_output_stream_put_int32 (GDataOutputStream *stream,
95 gint32 data,
96 GCancellable *cancellable,
97 GError **error);
98GIO_AVAILABLE_IN_ALL
99gboolean g_data_output_stream_put_uint32 (GDataOutputStream *stream,
100 guint32 data,
101 GCancellable *cancellable,
102 GError **error);
103GIO_AVAILABLE_IN_ALL
104gboolean g_data_output_stream_put_int64 (GDataOutputStream *stream,
105 gint64 data,
106 GCancellable *cancellable,
107 GError **error);
108GIO_AVAILABLE_IN_ALL
109gboolean g_data_output_stream_put_uint64 (GDataOutputStream *stream,
110 guint64 data,
111 GCancellable *cancellable,
112 GError **error);
113GIO_AVAILABLE_IN_ALL
114gboolean g_data_output_stream_put_string (GDataOutputStream *stream,
115 const char *str,
116 GCancellable *cancellable,
117 GError **error);
118
119G_END_DECLS
120
121#endif /* __G_DATA_OUTPUT_STREAM_H__ */
122