Add network address and socket types
[platform/upstream/glib.git] / gio / giotypes.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 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
24 #error "Only <gio/gio.h> can be included directly."
25 #endif
26
27 #ifndef __GIO_TYPES_H__
28 #define __GIO_TYPES_H__
29
30 #include <gio/gioenums.h>
31
32 G_BEGIN_DECLS
33
34 typedef struct _GAppLaunchContext             GAppLaunchContext;
35 typedef struct _GAppInfo                      GAppInfo; /* Dummy typedef */
36 typedef struct _GAsyncResult                  GAsyncResult; /* Dummy typedef */
37 typedef struct _GBufferedInputStream          GBufferedInputStream;
38 typedef struct _GBufferedOutputStream         GBufferedOutputStream;
39 typedef struct _GCancellable                  GCancellable;
40 typedef struct _GDataInputStream              GDataInputStream;
41
42 /**
43  * GDrive:
44  *
45  * Opaque drive object.
46  **/
47 typedef struct _GDrive                        GDrive; /* Dummy typedef */
48 typedef struct _GFileEnumerator               GFileEnumerator;
49 typedef struct _GFileMonitor                  GFileMonitor;
50 typedef struct _GFilterInputStream            GFilterInputStream;
51 typedef struct _GFilterOutputStream           GFilterOutputStream;
52
53 /**
54  * GFile:
55  *
56  * A handle to an object implementing the #GFileIface interface.
57  * Generally stores a location within the file system. Handles do not
58  * necessarily represent files or directories that currently exist.
59  **/
60 typedef struct _GFile                         GFile; /* Dummy typedef */
61 typedef struct _GFileInfo                     GFileInfo;
62
63 /**
64  * GFileAttributeMatcher:
65  *
66  * Determines if a string matches a file attribute.
67  **/
68 typedef struct _GFileAttributeMatcher         GFileAttributeMatcher;
69 typedef struct _GFileAttributeInfo            GFileAttributeInfo;
70 typedef struct _GFileAttributeInfoList        GFileAttributeInfoList;
71 typedef struct _GFileInputStream              GFileInputStream;
72 typedef struct _GFileOutputStream             GFileOutputStream;
73 typedef struct _GFileIcon                     GFileIcon;
74 typedef struct _GFilenameCompleter            GFilenameCompleter;
75
76
77 typedef struct _GIcon                         GIcon; /* Dummy typedef */
78 typedef struct _GInetAddress                  GInetAddress;
79 typedef struct _GInetSocketAddress            GInetSocketAddress;
80 typedef struct _GInputStream                  GInputStream;
81 typedef struct _GIOModule                     GIOModule;
82 typedef struct _GIOExtensionPoint             GIOExtensionPoint;
83 typedef struct _GIOExtension                  GIOExtension;
84
85 /**
86  * GIOSchedulerJob:
87  *
88  * Opaque class for definining and scheduling IO jobs.
89  **/
90 typedef struct _GIOSchedulerJob               GIOSchedulerJob;
91 typedef struct _GLoadableIcon                 GLoadableIcon; /* Dummy typedef */
92 typedef struct _GMemoryInputStream            GMemoryInputStream;
93 typedef struct _GMemoryOutputStream           GMemoryOutputStream;
94
95 /**
96  * GMount:
97  *
98  * A handle to an object implementing the #GMountIface interface.
99  **/
100 typedef struct _GMount                        GMount; /* Dummy typedef */
101 typedef struct _GMountOperation               GMountOperation;
102 typedef struct _GNetworkAddress               GNetworkAddress;
103 typedef struct _GNetworkService               GNetworkService;
104 typedef struct _GOutputStream                 GOutputStream;
105 typedef struct _GSeekable                     GSeekable;
106 typedef struct _GSimpleAsyncResult            GSimpleAsyncResult;
107 typedef struct _GSocketAddress                GSocketAddress;
108 typedef struct _GThemedIcon                   GThemedIcon;
109 typedef struct _GVfs                          GVfs; /* Dummy typedef */
110
111 /**
112  * GVolume:
113  *
114  * Opaque mountable volume object.
115  **/
116 typedef struct _GVolume                       GVolume; /* Dummy typedef */
117 typedef struct _GVolumeMonitor                GVolumeMonitor;
118
119 /**
120  * GAsyncReadyCallback:
121  * @source_object: the object the asynchronous operation was started with.
122  * @res: a #GAsyncResult.
123  * @user_data: user data passed to the callback.
124  *
125  * Type definition for a function that will be called back when an asynchronous
126  * operation within GIO has been completed.
127  **/
128 typedef void (*GAsyncReadyCallback) (GObject *source_object,
129                                      GAsyncResult *res,
130                                      gpointer user_data);
131
132 /**
133  * GFileProgressCallback:
134  * @current_num_bytes: the current number of bytes in the operation.
135  * @total_num_bytes: the total number of bytes in the operation.
136  * @user_data: user data passed to the callback.
137  *
138  * When doing file operations that may take a while, such as moving
139  * a file or copying a file, a progress callback is used to pass how
140  * far along that operation is to the application.
141  **/
142 typedef void (*GFileProgressCallback) (goffset current_num_bytes,
143                                        goffset total_num_bytes,
144                                        gpointer user_data);
145
146 /**
147  * GFileReadMoreCallback:
148  * @file_contents: the data as currently read.
149  * @file_size: the size of the data currently read.
150  * @callback_data: data passed to the callback.
151  *
152  * When loading the partial contents of a file with g_file_load_partial_contents_async(),
153  * it may become necessary to determine if any more data from the file should be loaded.
154  * A #GFileReadMoreCallback function facilitates this by returning %TRUE if more data
155  * should be read, or %FALSE otherwise.
156  *
157  * Returns: %TRUE if more data should be read back. %FALSE otherwise.
158  **/
159 typedef gboolean (* GFileReadMoreCallback) (const char *file_contents,
160                                             goffset file_size,
161                                             gpointer callback_data);
162
163
164 /**
165  * GIOSchedulerJobFunc:
166  * @job: a #GIOSchedulerJob.
167  * @cancellable: optional #GCancellable object, %NULL to ignore.
168  * @user_data: the data to pass to callback function
169  *
170  * I/O Job function.
171  *
172  * Note that depending on whether threads are available, the
173  * #GIOScheduler may run jobs in separate threads or in an idle
174  * in the mainloop.
175  *
176  * Long-running jobs should periodically check the @cancellable
177  * to see if they have been cancelled.
178  *
179  * Returns: %TRUE if this function should be called again to
180  *    complete the job, %FALSE if the job is complete (or cancelled)
181  **/
182 typedef gboolean (*GIOSchedulerJobFunc) (GIOSchedulerJob *job,
183                                          GCancellable    *cancellable,
184                                          gpointer         user_data);
185
186 /**
187  * GSimpleAsyncThreadFunc:
188  * @res: a #GSimpleAsyncResult.
189  * @object: a #GObject.
190  * @cancellable: optional #GCancellable object, %NULL to ignore.
191  *
192  * Simple thread function that runs an asynchronous operation and
193  * checks for cancellation.
194  **/
195 typedef void (*GSimpleAsyncThreadFunc) (GSimpleAsyncResult *res,
196                                         GObject *object,
197                                         GCancellable *cancellable);
198
199 G_END_DECLS
200
201 #endif /* __GIO_TYPES_H__ */