Bumps documentation to 93% symbol coverage, touching most
[platform/upstream/glib.git] / gio / gseekable.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: Alexander Larsson <alexl@redhat.com>
21  */
22
23 #ifndef __G_SEEKABLE_H__
24 #define __G_SEEKABLE_H__
25
26 #include <glib-object.h>
27 #include <gio/gcancellable.h>
28
29 G_BEGIN_DECLS
30
31 #define G_TYPE_SEEKABLE            (g_seekable_get_type ())
32 #define G_SEEKABLE(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_SEEKABLE, GSeekable))
33 #define G_IS_SEEKABLE(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_SEEKABLE))
34 #define G_SEEKABLE_GET_IFACE(obj)  (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_SEEKABLE, GSeekableIface))
35
36 /**
37  * GSeekable:
38  * 
39  * Seek object for streaming operations.
40  **/ 
41 typedef struct _GSeekable        GSeekable;
42 typedef struct _GSeekableIface   GSeekableIface;
43
44 /**
45  * GSeekableIface:
46  * @g_iface: The parent interface.
47  * @tell: Tells the current location within a stream.
48  * @can_seek: Checks if seeking is supported by the stream.
49  * @seek: Seeks to a location within a stream.
50  * @can_truncate: Chekcs if truncation is suppored by the stream.
51  * @truncate: Truncates a stream.
52  * 
53  * Provides an interface for implementing seekable functionality on I/O Streams.
54  **/ 
55 struct _GSeekableIface
56 {
57   GTypeInterface g_iface;
58
59   /* Virtual Table */
60   
61   goffset     (* tell)           (GSeekable    *seekable);
62   
63   gboolean    (* can_seek)       (GSeekable    *seekable);
64   gboolean    (* seek)           (GSeekable    *seekable,
65                                   goffset       offset,
66                                   GSeekType     type,
67                                   GCancellable *cancellable,
68                                   GError      **error);
69   
70   gboolean    (* can_truncate)   (GSeekable    *seekable);
71   gboolean    (* truncate)       (GSeekable    *seekable,
72                                   goffset       offset,
73                                   GCancellable *cancellable,
74                                   GError       **error);
75
76   /* TODO: Async seek/truncate */
77 };
78
79 GType g_seekable_get_type (void) G_GNUC_CONST;
80
81 goffset  g_seekable_tell         (GSeekable     *seekable);
82 gboolean g_seekable_can_seek     (GSeekable     *seekable);
83 gboolean g_seekable_seek         (GSeekable     *seekable,
84                                   goffset        offset,
85                                   GSeekType      type,
86                                   GCancellable  *cancellable,
87                                   GError       **error);
88 gboolean g_seekable_can_truncate (GSeekable     *seekable);
89 gboolean g_seekable_truncate     (GSeekable     *seekable,
90                                   goffset        offset,
91                                   GCancellable  *cancellable,
92                                   GError       **error);
93
94 G_END_DECLS
95
96
97 #endif /* __G_SEEKABLE_H__ */