Remove pollfds from the context here, not when actually freeing the
[glib.git] / giochannel.h
blobe9a64c0b3700fd3115fa0cc06509e140da0ffa3c
1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
24 * GLib at ftp://ftp.gtk.org/pub/gtk/.
27 #ifndef __G_IOCHANNEL_H__
28 #define __G_IOCHANNEL_H__
30 #include <gmain.h>
31 #include <gtypes.h>
33 G_BEGIN_DECLS
35 /* GIOChannel
38 typedef struct _GIOChannel GIOChannel;
39 typedef struct _GIOFuncs GIOFuncs;
40 typedef enum
42 G_IO_ERROR_NONE,
43 G_IO_ERROR_AGAIN,
44 G_IO_ERROR_INVAL,
45 G_IO_ERROR_UNKNOWN
46 } GIOError;
47 typedef enum
49 G_SEEK_CUR,
50 G_SEEK_SET,
51 G_SEEK_END
52 } GSeekType;
53 typedef enum
55 G_IO_IN GLIB_SYSDEF_POLLIN,
56 G_IO_OUT GLIB_SYSDEF_POLLOUT,
57 G_IO_PRI GLIB_SYSDEF_POLLPRI,
58 G_IO_ERR GLIB_SYSDEF_POLLERR,
59 G_IO_HUP GLIB_SYSDEF_POLLHUP,
60 G_IO_NVAL GLIB_SYSDEF_POLLNVAL
61 } GIOCondition;
63 struct _GIOChannel
65 guint channel_flags;
66 guint ref_count;
67 GIOFuncs *funcs;
70 typedef gboolean (*GIOFunc) (GIOChannel *source,
71 GIOCondition condition,
72 gpointer data);
73 struct _GIOFuncs
75 GIOError (*io_read) (GIOChannel *channel,
76 gchar *buf,
77 guint count,
78 guint *bytes_read);
79 GIOError (*io_write) (GIOChannel *channel,
80 gchar *buf,
81 guint count,
82 guint *bytes_written);
83 GIOError (*io_seek) (GIOChannel *channel,
84 gint offset,
85 GSeekType type);
86 void (*io_close) (GIOChannel *channel);
87 GSource * (*io_create_watch) (GIOChannel *channel,
88 GIOCondition condition);
89 void (*io_free) (GIOChannel *channel);
92 void g_io_channel_init (GIOChannel *channel);
93 void g_io_channel_ref (GIOChannel *channel);
94 void g_io_channel_unref (GIOChannel *channel);
95 GIOError g_io_channel_read (GIOChannel *channel,
96 gchar *buf,
97 guint count,
98 guint *bytes_read);
99 GIOError g_io_channel_write (GIOChannel *channel,
100 gchar *buf,
101 guint count,
102 guint *bytes_written);
103 GIOError g_io_channel_seek (GIOChannel *channel,
104 gint offset,
105 GSeekType type);
106 void g_io_channel_close (GIOChannel *channel);
107 guint g_io_add_watch_full (GIOChannel *channel,
108 gint priority,
109 GIOCondition condition,
110 GIOFunc func,
111 gpointer user_data,
112 GDestroyNotify notify);
113 GSource *g_io_create_watch (GIOChannel *channel,
114 GIOCondition condition);
115 guint g_io_add_watch (GIOChannel *channel,
116 GIOCondition condition,
117 GIOFunc func,
118 gpointer user_data);
120 /* On Unix, IO channels created with this function for any file
121 * descriptor or socket.
123 * On Win32, use this only for files opened with the MSVCRT (the
124 * Microsoft run-time C library) _open() or _pipe, including file
125 * descriptors 0, 1 and 2 (corresponding to stdin, stdout and stderr).
127 * The term file descriptor as used in the context of Win32 refers to
128 * the emulated Unix-like file descriptors MSVCRT provides. The native
129 * corresponding concept is file HANDLE. There isn't as of yet a way to
130 * get GIOChannels for file HANDLEs.
132 GIOChannel* g_io_channel_unix_new (int fd);
133 gint g_io_channel_unix_get_fd (GIOChannel *channel);
135 #ifdef G_OS_WIN32
137 #define G_WIN32_MSG_HANDLE 19981206
139 /* Use this to get a GPollFD from a GIOChannel, so that you can call
140 * g_io_channel_win32_poll(). After calling this you should only use
141 * g_io_channel_read() to read from the GIOChannel, i.e. never read()
142 * or recv() from the underlying file descriptor or SOCKET.
144 void g_io_channel_win32_make_pollfd (GIOChannel *channel,
145 GIOCondition condition,
146 GPollFD *fd);
148 /* This can be used to wait a until at least one of the channels is readable.
149 * On Unix you would do a select() on the file descriptors of the channels.
150 * This should probably be available for all platforms?
152 gint g_io_channel_win32_poll (GPollFD *fds,
153 gint n_fds,
154 gint timeout);
156 /* This is used to add polling for Windows messages. GDK (GTk+) programs
157 * should *not* use this.
159 void g_main_poll_win32_msg_add (gint priority,
160 GPollFD *fd,
161 guint hwnd);
163 /* An IO channel for Windows messages for window handle hwnd. */
164 GIOChannel *g_io_channel_win32_new_messages (guint hwnd);
166 /* An IO channel for C runtime (emulated Unix-like) file
167 * descriptors. Identical to g_io_channel_unix_new above.
168 * After calling g_io_add_watch() on a IO channel returned
169 * by this function, you shouldn't call read() on the file
170 * descriptor.
172 GIOChannel* g_io_channel_win32_new_fd (int fd);
174 /* Get the C runtime file descriptor of a channel. */
175 gint g_io_channel_win32_get_fd (GIOChannel *channel);
177 /* An IO channel for a SOCK_STREAM winsock socket. The parameter
178 * should be a SOCKET. After calling g_io_add_watch() on a IO channel
179 * returned by this function, you shouldn't call recv() on the SOCKET.
181 GIOChannel *g_io_channel_win32_new_stream_socket (int socket);
183 #endif
185 G_END_DECLS
187 #endif /* __G_IOCHANNEL_H__ */