New functions for efficient access to buffer and simple single byte reads.
[platform/upstream/glib.git] / gio / gbufferedinputstream.h
1 /* GIO - GLib Input, Output and Streaming Library
2  * 
3  * Copyright (C) 2006-2007 Red Hat, Inc.
4  *
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.
9  *
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.
14  *
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.
19  *
20  * Author: Christian Kellner <gicmo@gnome.org> 
21  */
22
23 #ifndef __G_BUFFERED_INPUT_STREAM_H__
24 #define __G_BUFFERED_INPUT_STREAM_H__
25
26 #include <glib-object.h>
27 #include <gio/gfilterinputstream.h>
28
29 G_BEGIN_DECLS
30
31 #define G_TYPE_BUFFERED_INPUT_STREAM         (g_buffered_input_stream_get_type ())
32 #define G_BUFFERED_INPUT_STREAM(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_BUFFERED_INPUT_STREAM, GBufferedInputStream))
33 #define G_BUFFERED_INPUT_STREAM_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_BUFFERED_INPUT_STREAM, GBufferedInputStreamClass))
34 #define G_IS_BUFFERED_INPUT_STREAM(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_BUFFERED_INPUT_STREAM))
35 #define G_IS_BUFFERED_INPUT_STREAM_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_BUFFERED_INPUT_STREAM))
36 #define G_BUFFERED_INPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_BUFFERED_INPUT_STREAM, GBufferedInputStreamClass))
37
38 typedef struct _GBufferedInputStream         GBufferedInputStream;
39 typedef struct _GBufferedInputStreamClass    GBufferedInputStreamClass;
40 typedef struct _GBufferedInputStreamPrivate  GBufferedInputStreamPrivate;
41
42 struct _GBufferedInputStream
43 {
44   GFilterInputStream parent;
45
46   /*< private >*/
47   GBufferedInputStreamPrivate *priv;
48 };
49
50 struct _GBufferedInputStreamClass
51 {
52  GFilterInputStreamClass parent_class;
53
54   gssize   (* fill)        (GBufferedInputStream *stream,
55                             gssize                count,
56                             GCancellable         *cancellable,
57                             GError              **error);
58
59   /* Async ops: (optional in derived classes) */
60   void     (* fill_async)  (GBufferedInputStream *stream,
61                             gssize                count,
62                             int                   io_priority,
63                             GCancellable         *cancellable,
64                             GAsyncReadyCallback   callback,
65                             gpointer              user_data);
66   gssize   (* fill_finish) (GBufferedInputStream *stream,
67                             GAsyncResult         *result,
68                             GError              **error);
69
70   /* Padding for future expansion */
71   void (*_g_reserved1) (void);
72   void (*_g_reserved2) (void);
73   void (*_g_reserved3) (void);
74   void (*_g_reserved4) (void);
75   void (*_g_reserved5) (void);
76 };
77
78
79 GType         g_buffered_input_stream_get_type        (void) G_GNUC_CONST;
80 GInputStream* g_buffered_input_stream_new             (GInputStream          *base_stream);
81 GInputStream* g_buffered_input_stream_new_sized       (GInputStream          *base_stream,
82                                                        gsize                  size);
83
84 gsize         g_buffered_input_stream_get_buffer_size (GBufferedInputStream  *stream);
85 void          g_buffered_input_stream_set_buffer_size (GBufferedInputStream  *stream,
86                                                        gsize                  size);
87 gsize         g_buffered_input_stream_get_available   (GBufferedInputStream  *stream);
88 gsize         g_buffered_input_stream_peek            (GBufferedInputStream  *stream,
89                                                        void                  *buffer,
90                                                        gsize                  offset,
91                                                        gsize                  count);
92 const void*   g_buffered_input_stream_peek_buffer     (GBufferedInputStream  *stream,
93                                                        gsize                 *count);
94
95 gssize        g_buffered_input_stream_fill            (GBufferedInputStream  *stream,
96                                                        gssize                 count,
97                                                        GCancellable          *cancellable,
98                                                        GError               **error);
99 void          g_buffered_input_stream_fill_async      (GBufferedInputStream  *stream,
100                                                        gssize                 count,
101                                                        int                    io_priority,
102                                                        GCancellable          *cancellable,
103                                                        GAsyncReadyCallback    callback,
104                                                        gpointer               user_data);
105 gssize        g_buffered_input_stream_fill_finish     (GBufferedInputStream  *stream,
106                                                        GAsyncResult          *result,
107                                                        GError               **error);
108
109 int           g_buffered_input_stream_read_byte       (GBufferedInputStream  *stream,
110                                                        GCancellable          *cancellable,
111                                                        GError               **error);
112
113
114 G_END_DECLS
115
116 #endif /* __G_BUFFERED_INPUT_STREAM_H__ */