Modified Files: glib/ChangeLog glib/glib/giochannel.c glib/glib/giounix.c
[platform/upstream/glib.git] / glib / giochannel.h
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
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.
8  *
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.
13  *
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.
18  */
19
20 /*
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/. 
25  */
26
27 #ifndef __G_IOCHANNEL_H__
28 #define __G_IOCHANNEL_H__
29
30 #include <glib/gconvert.h>
31 #include <glib/gmain.h>
32 #include <glib/gstring.h>
33
34 G_BEGIN_DECLS
35
36 /* GIOChannel
37  */
38
39 typedef struct _GIOChannel      GIOChannel;
40 typedef struct _GIOFuncs        GIOFuncs;
41
42 typedef enum
43 {
44   G_IO_ERROR_NONE,
45   G_IO_ERROR_AGAIN,
46   G_IO_ERROR_INVAL,
47   G_IO_ERROR_UNKNOWN
48 } GIOError;
49
50 #define G_IO_CHANNEL_ERROR g_io_channel_error_quark()
51
52 typedef enum
53 {
54   /* Derived from errno */
55   G_IO_CHANNEL_ERROR_FBIG,
56   G_IO_CHANNEL_ERROR_INVAL,
57   G_IO_CHANNEL_ERROR_IO,
58   G_IO_CHANNEL_ERROR_ISDIR,
59   G_IO_CHANNEL_ERROR_NOSPC,
60   G_IO_CHANNEL_ERROR_NXIO,
61   G_IO_CHANNEL_ERROR_OVERFLOW,
62   G_IO_CHANNEL_ERROR_PIPE,
63   /* Other */
64   G_IO_CHANNEL_ERROR_FAILED
65 } GIOChannelError;
66
67 typedef enum
68 {
69   G_IO_STATUS_ERROR,
70   G_IO_STATUS_NORMAL,
71   G_IO_STATUS_EOF,
72   G_IO_STATUS_AGAIN
73 } GIOStatus;
74
75 typedef enum
76 {
77   G_SEEK_CUR,
78   G_SEEK_SET,
79   G_SEEK_END
80 } GSeekType;
81
82 typedef enum
83 {
84   G_IO_IN       GLIB_SYSDEF_POLLIN,
85   G_IO_OUT      GLIB_SYSDEF_POLLOUT,
86   G_IO_PRI      GLIB_SYSDEF_POLLPRI,
87   G_IO_ERR      GLIB_SYSDEF_POLLERR,
88   G_IO_HUP      GLIB_SYSDEF_POLLHUP,
89   G_IO_NVAL     GLIB_SYSDEF_POLLNVAL
90 } GIOCondition;
91
92 typedef enum
93 {
94   G_IO_FLAG_APPEND = 1 << 0,
95   G_IO_FLAG_NONBLOCK = 1 << 1,
96   G_IO_FLAG_IS_READABLE = 1 << 2,       /* Read only flag */
97   G_IO_FLAG_IS_WRITEABLE = 1 << 3,      /* Read only flag */
98   G_IO_FLAG_IS_SEEKABLE = 1 << 4,       /* Read only flag */
99   G_IO_FLAG_MASK = (1 << 5) - 1,
100   G_IO_FLAG_GET_MASK = G_IO_FLAG_MASK,
101   G_IO_FLAG_SET_MASK = G_IO_FLAG_APPEND | G_IO_FLAG_NONBLOCK,
102 } GIOFlags;
103
104 struct _GIOChannel
105 {
106   guint ref_count;
107   GIOFuncs *funcs;
108
109   gchar *encoding;
110   GIConv read_cd;
111   GIConv write_cd;
112   gchar *line_term;             /* String which indicates the end of a line of text */
113
114   gsize buf_size;
115   GString *read_buf;            /* Raw data from the channel */
116   GString *encoded_read_buf;    /* Channel data converted to UTF-8 */
117   GString *write_buf;           /* Data ready to be written to the file */
118   gchar partial_write_buf[6];   /* UTF-8 partial characters, null terminated */
119
120   /* Group the flags together, immediately after partial_write_buf, to save memory */
121
122   gboolean use_buffer : 1;      /* The encoding uses the buffers */
123   gboolean do_encode : 1;       /* The encoding uses the GIConv coverters */
124   gboolean close_on_unref : 1;  /* Close the channel on final unref */
125   gboolean is_readable : 1;     /* Cached GIOFlag */
126   gboolean is_writeable : 1;    /* ditto */
127   gboolean is_seekable : 1;     /* ditto */
128 };
129
130 typedef gboolean (*GIOFunc) (GIOChannel   *source,
131                              GIOCondition  condition,
132                              gpointer      data);
133 struct _GIOFuncs
134 {
135   GIOStatus (*io_read)           (GIOChannel   *channel, 
136                                   gchar        *buf, 
137                                   gsize         count,
138                                   gsize        *bytes_read,
139                                   GError      **err);
140   GIOStatus (*io_write)          (GIOChannel   *channel, 
141                                   const gchar  *buf, 
142                                   gsize         count,
143                                   gsize        *bytes_written,
144                                   GError      **err);
145   GIOStatus (*io_seek)           (GIOChannel   *channel, 
146                                   glong         offset, 
147                                   GSeekType     type,
148                                   GError      **err);
149   GIOStatus  (*io_close)         (GIOChannel   *channel,
150                                   GError      **err);
151   GSource*   (*io_create_watch)  (GIOChannel   *channel,
152                                   GIOCondition  condition);
153   void       (*io_free)          (GIOChannel   *channel);
154   GIOStatus  (*io_set_flags)     (GIOChannel   *channel,
155                                   GIOFlags      flags,
156                                   GError      **err);
157   GIOFlags   (*io_get_flags)     (GIOChannel   *channel);
158 };
159
160 void        g_io_channel_init   (GIOChannel    *channel);
161 void        g_io_channel_ref    (GIOChannel    *channel);
162 void        g_io_channel_unref  (GIOChannel    *channel);
163
164 #ifndef G_DISABLE_DEPRECATED
165 GIOError    g_io_channel_read   (GIOChannel    *channel, 
166                                  gchar         *buf, 
167                                  gsize          count,
168                                  gsize         *bytes_read);
169 GIOError  g_io_channel_write    (GIOChannel    *channel, 
170                                  const gchar   *buf, 
171                                  gsize          count,
172                                  gsize         *bytes_written);
173 GIOError  g_io_channel_seek     (GIOChannel    *channel,
174                                  glong          offset, 
175                                  GSeekType      type);
176 void      g_io_channel_close    (GIOChannel    *channel);
177 #endif /* G_DISABLE_DEPRECATED */
178
179 GIOStatus g_io_channel_shutdown (GIOChannel      *channel,
180                                  gboolean         flush,
181                                  GError         **err);
182 guint     g_io_add_watch_full   (GIOChannel      *channel,
183                                  gint             priority,
184                                  GIOCondition     condition,
185                                  GIOFunc          func,
186                                  gpointer         user_data,
187                                  GDestroyNotify   notify);
188 GSource * g_io_create_watch     (GIOChannel      *channel,
189                                  GIOCondition     condition);
190 guint     g_io_add_watch        (GIOChannel      *channel,
191                                  GIOCondition     condition,
192                                  GIOFunc          func,
193                                  gpointer         user_data);
194
195 /* character encoding conversion involved functions.
196  */
197
198 void                  g_io_channel_set_buffer_size      (GIOChannel   *channel,
199                                                          gsize         size);
200 gsize                 g_io_channel_get_buffer_size      (GIOChannel   *channel);
201 GIOCondition          g_io_channel_get_buffer_condition (GIOChannel   *channel);
202 GIOStatus             g_io_channel_set_flags            (GIOChannel   *channel,
203                                                          GIOFlags      flags,
204                                                          GError      **error);
205 GIOFlags              g_io_channel_get_flags            (GIOChannel   *channel);
206 void                  g_io_channel_set_line_term        (GIOChannel   *channel,
207                                                          const gchar  *line_term);
208 G_CONST_RETURN gchar* g_io_channel_get_line_term        (GIOChannel   *channel);
209 void                  g_io_channel_set_buffered         (GIOChannel   *channel,
210                                                          gboolean      buffered);
211 gboolean              g_io_channel_get_buffered         (GIOChannel   *channel);
212 GIOStatus             g_io_channel_set_encoding         (GIOChannel   *channel,
213                                                          const gchar  *encoding,
214                                                          GError      **error);
215 G_CONST_RETURN gchar* g_io_channel_get_encoding         (GIOChannel   *channel);
216 void                  g_io_channel_set_close_on_unref   (GIOChannel   *channel,
217                                                          gboolean      do_close);
218 gboolean              g_io_channel_get_close_on_unref   (GIOChannel   *channel);
219
220
221 GIOStatus   g_io_channel_flush            (GIOChannel   *channel,
222                                            GError      **error);
223 GIOStatus   g_io_channel_read_line        (GIOChannel   *channel,
224                                            gchar       **str_return,
225                                            gsize        *length,
226                                            gsize        *terminator_pos,
227                                            GError      **error);
228 GIOStatus   g_io_channel_read_line_string (GIOChannel   *channel,
229                                            GString      *buffer,
230                                            gsize        *terminator_pos,
231                                            GError      **error);
232 GIOStatus   g_io_channel_read_to_end      (GIOChannel   *channel,
233                                            gchar       **str_return,
234                                            gsize        *length,
235                                            GError      **error);
236 GIOStatus   g_io_channel_read_chars       (GIOChannel   *channel,
237                                            gchar        *buf,
238                                            gsize         count,
239                                            gsize        *bytes_read,
240                                            GError      **error);
241 GIOStatus   g_io_channel_read_unichar     (GIOChannel   *channel,
242                                            gunichar     *thechar,
243                                            GError      **error);
244 GIOStatus   g_io_channel_write_chars      (GIOChannel   *channel,
245                                            const gchar  *buf,
246                                            gssize        count,
247                                            gsize        *bytes_written,
248                                            GError      **error);
249 GIOStatus   g_io_channel_write_unichar    (GIOChannel   *channel,
250                                            gunichar      thechar,
251                                            GError      **error);
252 GIOStatus   g_io_channel_seek_position    (GIOChannel   *channel,
253                                            glong         offset,
254                                            GSeekType     type,
255                                            GError      **error);
256 GIOChannel* g_io_channel_new_file         (const gchar  *filename,
257                                            const gchar  *mode,
258                                            GError      **error);
259
260 /* Error handling */
261
262 GQuark          g_io_channel_error_quark      (void);
263 GIOChannelError g_io_channel_error_from_errno (gint en);
264
265 /* On Unix, IO channels created with this function for any file
266  * descriptor or socket.
267  *
268  * On Win32, this can be used either for files opened with the MSVCRT
269  * (the Microsoft run-time C library) _open() or _pipe, including file
270  * descriptors 0, 1 and 2 (corresponding to stdin, stdout and stderr),
271  * or for Winsock SOCKETs. If the parameter is a legal file
272  * descriptor, it is assumed to be such, otherwise it should be a
273  * SOCKET. This relies on SOCKETs and file descriptors not
274  * overlapping. If you want to be certain, call either
275  * g_io_channel_win32_new_fd() or g_io_channel_win32_new_socket()
276  * instead as appropriate.
277  *
278  * The term file descriptor as used in the context of Win32 refers to
279  * the emulated Unix-like file descriptors MSVCRT provides. The native
280  * corresponding concept is file HANDLE. There isn't as of yet a way to
281  * get GIOChannels for Win32 file HANDLEs.
282  */
283 GIOChannel* g_io_channel_unix_new    (int         fd);
284 gint        g_io_channel_unix_get_fd (GIOChannel *channel);
285
286 #ifdef G_OS_WIN32
287
288 #define G_WIN32_MSG_HANDLE 19981206
289
290 /* Use this to get a GPollFD from a GIOChannel, so that you can call
291  * g_io_channel_win32_poll(). After calling this you should only use
292  * g_io_channel_read() to read from the GIOChannel, i.e. never read()
293  * from the underlying file descriptor. For SOCKETs, it is possible to call
294  * recv().
295  */
296 void        g_io_channel_win32_make_pollfd (GIOChannel   *channel,
297                                             GIOCondition  condition,
298                                             GPollFD      *fd);
299
300 /* This can be used to wait a until at least one of the channels is readable.
301  * On Unix you would do a select() on the file descriptors of the channels.
302  */
303 gint        g_io_channel_win32_poll   (GPollFD    *fds,
304                                        gint        n_fds,
305                                        gint        timeout);
306
307 /* This is used to add polling for Windows messages. GDK (GTk+) programs
308  * should *not* use this.
309  */
310 void        g_main_poll_win32_msg_add (gint        priority,
311                                        GPollFD    *fd,
312                                        guint       hwnd);
313
314 /* Create an IO channel for Windows messages for window handle hwnd. */
315 GIOChannel *g_io_channel_win32_new_messages (guint hwnd);
316
317 /* Create an IO channel for C runtime (emulated Unix-like) file
318  * descriptors. After calling g_io_add_watch() on a IO channel
319  * returned by this function, you shouldn't call read() on the file
320  * descriptor. This is because adding polling for a file descriptor is
321  * implemented on Win32 by starting a thread that sits blocked in a
322  * read() from the file descriptor most of the time. All reads from
323  * the file descriptor should be done by this internal GLib
324  * thread. Your code should call only g_io_channel_read().
325  */
326 GIOChannel* g_io_channel_win32_new_fd (gint         fd);
327
328 /* Get the C runtime file descriptor of a channel. */
329 gint        g_io_channel_win32_get_fd (GIOChannel *channel);
330
331 /* Create an IO channel for a winsock socket. The parameter should be
332  * a SOCKET. Contrary to IO channels for file descriptors (on *Win32),
333  * you can use normal recv() or recvfrom() on sockets even if GLib
334  * is polling them.
335  */
336 GIOChannel *g_io_channel_win32_new_socket (gint socket);
337
338 #endif
339
340 G_END_DECLS
341
342 #endif /* __G_IOCHANNEL_H__ */