make GProxyConnection public, as GTcpWrapperConnection
[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 _GAsyncInitable                GAsyncInitable;
38 typedef struct _GBufferedInputStream          GBufferedInputStream;
39 typedef struct _GBufferedOutputStream         GBufferedOutputStream;
40 typedef struct _GCancellable                  GCancellable;
41 typedef struct _GCharsetConverter             GCharsetConverter;
42 typedef struct _GConverter                    GConverter;
43 typedef struct _GConverterInputStream         GConverterInputStream;
44 typedef struct _GConverterOutputStream        GConverterOutputStream;
45 typedef struct _GDataInputStream              GDataInputStream;
46 typedef struct _GSimplePermission             GSimplePermission;
47 typedef struct _GZlibCompressor               GZlibCompressor;
48 typedef struct _GZlibDecompressor             GZlibDecompressor;
49
50 typedef struct _GSimpleActionGroup            GSimpleActionGroup;
51 typedef struct _GActionGroup                  GActionGroup;
52 typedef struct _GSimpleAction                 GSimpleAction;
53 typedef struct _GAction                       GAction;
54 typedef struct _GApplication                  GApplication;
55 typedef struct _GApplicationCommandLine       GApplicationCommandLine;
56 typedef struct _GSettingsBackend              GSettingsBackend;
57 typedef struct _GSettings                     GSettings;
58 typedef struct _GPermission                   GPermission;
59
60 /**
61  * GDrive:
62  *
63  * Opaque drive object.
64  **/
65 typedef struct _GDrive                        GDrive; /* Dummy typedef */
66 typedef struct _GFileEnumerator               GFileEnumerator;
67 typedef struct _GFileMonitor                  GFileMonitor;
68 typedef struct _GFilterInputStream            GFilterInputStream;
69 typedef struct _GFilterOutputStream           GFilterOutputStream;
70
71 /**
72  * GFile:
73  *
74  * A handle to an object implementing the #GFileIface interface.
75  * Generally stores a location within the file system. Handles do not
76  * necessarily represent files or directories that currently exist.
77  **/
78 typedef struct _GFile                         GFile; /* Dummy typedef */
79 typedef struct _GFileInfo                     GFileInfo;
80
81 /**
82  * GFileAttributeMatcher:
83  *
84  * Determines if a string matches a file attribute.
85  **/
86 typedef struct _GFileAttributeMatcher         GFileAttributeMatcher;
87 typedef struct _GFileAttributeInfo            GFileAttributeInfo;
88 typedef struct _GFileAttributeInfoList        GFileAttributeInfoList;
89 typedef struct _GFileDescriptorBased          GFileDescriptorBased;
90 typedef struct _GFileInputStream              GFileInputStream;
91 typedef struct _GFileOutputStream             GFileOutputStream;
92 typedef struct _GFileIOStream                 GFileIOStream;
93 typedef struct _GFileIcon                     GFileIcon;
94 typedef struct _GFilenameCompleter            GFilenameCompleter;
95
96
97 typedef struct _GIcon                         GIcon; /* Dummy typedef */
98 typedef struct _GInetAddress                  GInetAddress;
99 typedef struct _GInetSocketAddress            GInetSocketAddress;
100 typedef struct _GInputStream                  GInputStream;
101 typedef struct _GInitable                     GInitable;
102 typedef struct _GIOModule                     GIOModule;
103 typedef struct _GIOExtensionPoint             GIOExtensionPoint;
104 typedef struct _GIOExtension                  GIOExtension;
105
106 /**
107  * GIOSchedulerJob:
108  *
109  * Opaque class for definining and scheduling IO jobs.
110  **/
111 typedef struct _GIOSchedulerJob               GIOSchedulerJob;
112 typedef struct _GLoadableIcon                 GLoadableIcon; /* Dummy typedef */
113 typedef struct _GMemoryInputStream            GMemoryInputStream;
114 typedef struct _GMemoryOutputStream           GMemoryOutputStream;
115
116 /**
117  * GMount:
118  *
119  * A handle to an object implementing the #GMountIface interface.
120  **/
121 typedef struct _GMount                        GMount; /* Dummy typedef */
122 typedef struct _GMountOperation               GMountOperation;
123 typedef struct _GNetworkAddress               GNetworkAddress;
124 typedef struct _GNetworkService               GNetworkService;
125 typedef struct _GOutputStream                 GOutputStream;
126 typedef struct _GIOStream                     GIOStream;
127 typedef struct _GPollableInputStream          GPollableInputStream; /* Dummy typedef */
128 typedef struct _GPollableOutputStream         GPollableOutputStream; /* Dummy typedef */
129 typedef struct _GResolver                     GResolver;
130 typedef struct _GSeekable                     GSeekable;
131 typedef struct _GSimpleAsyncResult            GSimpleAsyncResult;
132
133 /**
134  * GSocket:
135  *
136  * A lowlevel network socket object.
137  *
138  * Since: 2.22
139  **/
140 typedef struct _GSocket                       GSocket;
141
142 /**
143  * GSocketControlMessage:
144  *
145  * Base class for socket-type specific control messages that can be sent and
146  * received over #GSocket.
147  **/
148 typedef struct _GSocketControlMessage         GSocketControlMessage;
149 /**
150  * GSocketClient:
151  *
152  * A helper class for network clients to make connections.
153  *
154  * Since: 2.22
155  **/
156 typedef struct _GSocketClient                               GSocketClient;
157 /**
158  * GSocketConnection:
159  *
160  * A socket connection GIOStream object for connection-oriented sockets.
161  *
162  * Since: 2.22
163  **/
164 typedef struct _GSocketConnection                           GSocketConnection;
165 /**
166  * GSocketClient:
167  *
168  * A helper class for network servers to listen for and accept connections.
169  *
170  * Since: 2.22
171  **/
172 typedef struct _GSocketListener                             GSocketListener;
173 /**
174  * GSocketService:
175  *
176  * A helper class for handling accepting incomming connections in the
177  * glib mainloop.
178  *
179  * Since: 2.22
180  **/
181 typedef struct _GSocketService                              GSocketService;
182 typedef struct _GSocketAddress                GSocketAddress;
183 typedef struct _GSocketAddressEnumerator      GSocketAddressEnumerator;
184 typedef struct _GSocketConnectable            GSocketConnectable;
185 typedef struct _GSrvTarget                    GSrvTarget;
186 /**
187  * GTcpConnection:
188  *
189  * A #GSocketConnection for TCP/IP connections.
190  *
191  * Since: 2.22
192  **/
193 typedef struct _GTcpConnection                              GTcpConnection;
194 typedef struct _GTcpWrapperConnection                       GTcpWrapperConnection;
195 /**
196  * GThreadedSocketService:
197  *
198  * A helper class for handling accepting incomming connections in the
199  * glib mainloop and handling them in a thread.
200  *
201  * Since: 2.22
202  **/
203 typedef struct _GThreadedSocketService                      GThreadedSocketService;
204 typedef struct _GThemedIcon                   GThemedIcon;
205 typedef struct _GVfs                          GVfs; /* Dummy typedef */
206
207 /**
208  * GProxyResolver:
209  *
210  * A helper class to enumerate proxies base on URI.
211  *
212  * Since: 2.26
213  **/
214 typedef struct _GProxyResolver                GProxyResolver;
215 typedef struct _GProxy                        GProxy;
216 typedef struct _GProxyAddress                 GProxyAddress;
217 typedef struct _GProxyAddressEnumerator       GProxyAddressEnumerator;
218
219 /**
220  * GVolume:
221  *
222  * Opaque mountable volume object.
223  **/
224 typedef struct _GVolume                       GVolume; /* Dummy typedef */
225 typedef struct _GVolumeMonitor                GVolumeMonitor;
226
227 /**
228  * GAsyncReadyCallback:
229  * @source_object: the object the asynchronous operation was started with.
230  * @res: a #GAsyncResult.
231  * @user_data: user data passed to the callback.
232  *
233  * Type definition for a function that will be called back when an asynchronous
234  * operation within GIO has been completed.
235  **/
236 typedef void (*GAsyncReadyCallback) (GObject *source_object,
237                                      GAsyncResult *res,
238                                      gpointer user_data);
239
240 /**
241  * GFileProgressCallback:
242  * @current_num_bytes: the current number of bytes in the operation.
243  * @total_num_bytes: the total number of bytes in the operation.
244  * @user_data: user data passed to the callback.
245  *
246  * When doing file operations that may take a while, such as moving
247  * a file or copying a file, a progress callback is used to pass how
248  * far along that operation is to the application.
249  **/
250 typedef void (*GFileProgressCallback) (goffset current_num_bytes,
251                                        goffset total_num_bytes,
252                                        gpointer user_data);
253
254 /**
255  * GFileReadMoreCallback:
256  * @file_contents: the data as currently read.
257  * @file_size: the size of the data currently read.
258  * @callback_data: data passed to the callback.
259  *
260  * When loading the partial contents of a file with g_file_load_partial_contents_async(),
261  * it may become necessary to determine if any more data from the file should be loaded.
262  * A #GFileReadMoreCallback function facilitates this by returning %TRUE if more data
263  * should be read, or %FALSE otherwise.
264  *
265  * Returns: %TRUE if more data should be read back. %FALSE otherwise.
266  **/
267 typedef gboolean (* GFileReadMoreCallback) (const char *file_contents,
268                                             goffset file_size,
269                                             gpointer callback_data);
270
271
272 /**
273  * GIOSchedulerJobFunc:
274  * @job: a #GIOSchedulerJob.
275  * @cancellable: optional #GCancellable object, %NULL to ignore.
276  * @user_data: the data to pass to callback function
277  *
278  * I/O Job function.
279  *
280  * Note that depending on whether threads are available, the
281  * #GIOScheduler may run jobs in separate threads or in an idle
282  * in the mainloop.
283  *
284  * Long-running jobs should periodically check the @cancellable
285  * to see if they have been cancelled.
286  *
287  * Returns: %TRUE if this function should be called again to
288  *    complete the job, %FALSE if the job is complete (or cancelled)
289  **/
290 typedef gboolean (*GIOSchedulerJobFunc) (GIOSchedulerJob *job,
291                                          GCancellable    *cancellable,
292                                          gpointer         user_data);
293
294 /**
295  * GSimpleAsyncThreadFunc:
296  * @res: a #GSimpleAsyncResult.
297  * @object: a #GObject.
298  * @cancellable: optional #GCancellable object, %NULL to ignore.
299  *
300  * Simple thread function that runs an asynchronous operation and
301  * checks for cancellation.
302  **/
303 typedef void (*GSimpleAsyncThreadFunc) (GSimpleAsyncResult *res,
304                                         GObject *object,
305                                         GCancellable *cancellable);
306
307 /**
308  * GSocketSourceFunc:
309  * @socket: the #GSocket
310  * @condition: the current condition at the source fired.
311  * @user_data: data passed in by the user.
312  *
313  * This is the function type of the callback used for the #GSource
314  * returned by g_socket_create_source().
315  *
316  * Returns: it should return %FALSE if the source should be removed.
317  *
318  * Since: 2.22
319  */
320 typedef gboolean (*GSocketSourceFunc) (GSocket *socket,
321                                        GIOCondition condition,
322                                        gpointer user_data);
323
324 /**
325  * GInputVector:
326  * @buffer: Pointer to a buffer where data will be written.
327  * @size: the available size in @buffer.
328  *
329  * Structure used for scatter/gather data input.
330  * You generally pass in an array of #GInputVector<!-- -->s
331  * and the operation will store the read data starting in the
332  * first buffer, switching to the next as needed.
333  *
334  * Since: 2.22
335  */
336 typedef struct _GInputVector GInputVector;
337
338 struct _GInputVector {
339   gpointer buffer;
340   gsize size;
341 };
342
343 /**
344  * GOutputVector:
345  * @buffer: Pointer to a buffer of data to read.
346  * @size: the size of @buffer.
347  *
348  * Structure used for scatter/gather data output.
349  * You generally pass in an array of #GOutputVector<!-- -->s
350  * and the operation will use all the buffers as if they were
351  * one buffer.
352  *
353  * Since: 2.22
354  */
355 typedef struct _GOutputVector GOutputVector;
356
357 struct _GOutputVector {
358   gconstpointer buffer;
359   gsize size;
360 };
361
362 typedef struct _GCredentials                  GCredentials;
363 typedef struct _GUnixCredentialsMessage       GUnixCredentialsMessage;
364 typedef struct _GUnixFDList                   GUnixFDList;
365 typedef struct _GDBusMessage                  GDBusMessage;
366 typedef struct _GDBusConnection               GDBusConnection;
367 typedef struct _GDBusProxy                    GDBusProxy;
368 typedef struct _GDBusMethodInvocation         GDBusMethodInvocation;
369 typedef struct _GDBusServer                   GDBusServer;
370 typedef struct _GDBusAuthObserver             GDBusAuthObserver;
371 typedef struct _GDBusErrorEntry               GDBusErrorEntry;
372 typedef struct _GDBusInterfaceVTable          GDBusInterfaceVTable;
373 typedef struct _GDBusSubtreeVTable            GDBusSubtreeVTable;
374 typedef struct _GDBusAnnotationInfo           GDBusAnnotationInfo;
375 typedef struct _GDBusArgInfo                  GDBusArgInfo;
376 typedef struct _GDBusMethodInfo               GDBusMethodInfo;
377 typedef struct _GDBusSignalInfo               GDBusSignalInfo;
378 typedef struct _GDBusPropertyInfo             GDBusPropertyInfo;
379 typedef struct _GDBusInterfaceInfo            GDBusInterfaceInfo;
380 typedef struct _GDBusNodeInfo                 GDBusNodeInfo;
381
382 /**
383  * GCancellableSourceFunc:
384  * @cancellable: the #GCancellable
385  * @user_data: data passed in by the user.
386  *
387  * This is the function type of the callback used for the #GSource
388  * returned by g_cancellable_source_new().
389  *
390  * Returns: it should return %FALSE if the source should be removed.
391  *
392  * Since: 2.28
393  */
394 typedef gboolean (*GCancellableSourceFunc) (GCancellable *cancellable,
395                                             gpointer      user_data);
396
397 /**
398  * GPollableSourceFunc:
399  * @pollable_stream: the #GPollableInputStream or #GPollableOutputStream
400  * @user_data: data passed in by the user.
401  *
402  * This is the function type of the callback used for the #GSource
403  * returned by g_pollable_input_stream_create_source() and
404  * g_pollable_output_stream_create_source().
405  *
406  * Returns: it should return %FALSE if the source should be removed.
407  *
408  * Since: 2.28
409  */
410 typedef gboolean (*GPollableSourceFunc) (GObject  *pollable_stream,
411                                          gpointer  user_data);
412
413 G_END_DECLS
414
415 #endif /* __GIO_TYPES_H__ */