Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
giochannel.h
Go to the documentation of this file.
1/* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3 *
4 * SPDX-License-Identifier: LGPL-2.1-or-later
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
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#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
31#error "Only <glib.h> can be included directly."
32#endif
33
34#include <glib/gconvert.h>
35#include <glib/gmain.h>
36#include <glib/gstring.h>
37
39
40/* GIOChannel
41 */
42
43typedef struct _GIOChannel GIOChannel;
44typedef struct _GIOFuncs GIOFuncs;
45
53
54#define G_IO_CHANNEL_ERROR g_io_channel_error_quark()
55
70
78
85
86typedef enum
87{
91 G_IO_FLAG_IS_READABLE = 1 << 2, /* Read only flag */
92 G_IO_FLAG_IS_WRITABLE = 1 << 3, /* Read only flag */
93 G_IO_FLAG_IS_WRITEABLE = 1 << 3, /* Misspelling in 2.29.10 and earlier */
94 G_IO_FLAG_IS_SEEKABLE = 1 << 4, /* Read only flag */
95 G_IO_FLAG_MASK = (1 << 5) - 1,
99
101{
102 /*< private >*/
105
109 gchar *line_term; /* String which indicates the end of a line of text */
110 guint line_term_len; /* So we can have null in the line term */
111
113 GString *read_buf; /* Raw data from the channel */
114 GString *encoded_read_buf; /* Channel data converted to UTF-8 */
115 GString *write_buf; /* Data ready to be written to the file */
116 gchar partial_write_buf[6]; /* UTF-8 partial characters, null terminated */
117
118 /* Group the flags together, immediately after partial_write_buf, to save memory */
119
120 guint use_buffer : 1; /* The encoding uses the buffers */
121 guint do_encode : 1; /* The encoding uses the GIConv converters */
122 guint close_on_unref : 1; /* Close the channel on final unref */
123 guint is_readable : 1; /* Cached GIOFlag */
124 guint is_writeable : 1; /* ditto */
125 guint is_seekable : 1; /* ditto */
126
129};
130
131typedef gboolean (*GIOFunc) (GIOChannel *source,
132 GIOCondition condition,
133 gpointer data);
135{
137 gchar *buf,
138 gsize count,
139 gsize *bytes_read,
140 GError **err);
142 const gchar *buf,
143 gsize count,
144 gsize *bytes_written,
145 GError **err);
147 gint64 offset,
148 GSeekType type,
149 GError **err);
151 GError **err);
152 GSource* (*io_create_watch) (GIOChannel *channel,
153 GIOCondition condition);
154 void (*io_free) (GIOChannel *channel);
156 GIOFlags flags,
157 GError **err);
159};
160
167
170 gchar *buf,
171 gsize count,
172 gsize *bytes_read);
173
176 const gchar *buf,
177 gsize count,
178 gsize *bytes_written);
179
182 gint64 offset,
183 GSeekType type);
184
187
190 gboolean flush,
191 GError **err);
195 GIOCondition condition,
196 GIOFunc func,
197 gpointer user_data,
198 GDestroyNotify notify);
201 GIOCondition condition);
204 GIOCondition condition,
205 GIOFunc func,
206 gpointer user_data);
207
208/* character encoding conversion involved functions.
209 */
210
213 gsize size);
220 GIOFlags flags,
221 GError **error);
226 const gchar *line_term,
227 gint length);
230 gint *length);
233 gboolean buffered);
238 const gchar *encoding,
239 GError **error);
244 gboolean do_close);
247
248
251 GError **error);
254 gchar **str_return,
255 gsize *length,
256 gsize *terminator_pos,
257 GError **error);
260 GString *buffer,
261 gsize *terminator_pos,
262 GError **error);
265 gchar **str_return,
266 gsize *length,
267 GError **error);
270 gchar *buf,
271 gsize count,
272 gsize *bytes_read,
273 GError **error);
276 gunichar *thechar,
277 GError **error);
280 const gchar *buf,
281 gssize count,
282 gsize *bytes_written,
283 GError **error);
286 gunichar thechar,
287 GError **error);
290 gint64 offset,
291 GSeekType type,
292 GError **error);
295 const gchar *mode,
296 GError **error);
297
298/* Error handling */
299
304
305/* On Unix, IO channels created with this function for any file
306 * descriptor or socket.
307 *
308 * On Win32, this can be used either for files opened with the MSVCRT
309 * (the Microsoft run-time C library) _open() or _pipe, including file
310 * descriptors 0, 1 and 2 (corresponding to stdin, stdout and stderr),
311 * or for Winsock SOCKETs. If the parameter is a legal file
312 * descriptor, it is assumed to be such, otherwise it should be a
313 * SOCKET. This relies on SOCKETs and file descriptors not
314 * overlapping. If you want to be certain, call either
315 * g_io_channel_win32_new_fd() or g_io_channel_win32_new_socket()
316 * instead as appropriate.
317 *
318 * The term file descriptor as used in the context of Win32 refers to
319 * the emulated Unix-like file descriptors MSVCRT provides. The native
320 * corresponding concept is file HANDLE. There isn't as of yet a way to
321 * get GIOChannels for Win32 file HANDLEs.
322 */
327
328
329/* Hook for GClosure / GSource integration. Don't touch */
331
332#ifdef G_OS_WIN32
333
334/* You can use this "pseudo file descriptor" in a GPollFD to add
335 * polling for Windows messages. GTK applications should not do that.
336 */
337
338#define G_WIN32_MSG_HANDLE 19981206
339
340/* Use this to get a GPollFD from a GIOChannel, so that you can call
341 * g_io_channel_win32_poll(). After calling this you should only use
342 * g_io_channel_read() to read from the GIOChannel, i.e. never read()
343 * from the underlying file descriptor. For SOCKETs, it is possible to call
344 * recv().
345 */
347void g_io_channel_win32_make_pollfd (GIOChannel *channel,
348 GIOCondition condition,
349 GPollFD *fd);
350
351/* This can be used to wait until at least one of the channels is readable.
352 * On Unix you would do a select() on the file descriptors of the channels.
353 */
355gint g_io_channel_win32_poll (GPollFD *fds,
356 gint n_fds,
357 gint timeout_);
358
359/* Create an IO channel for Windows messages for window handle hwnd. */
360#if GLIB_SIZEOF_VOID_P == 8
361/* We use gsize here so that it is still an integer type and not a
362 * pointer, like the guint in the traditional prototype. We can't use
363 * intptr_t as that is not portable enough.
364 */
366GIOChannel *g_io_channel_win32_new_messages (gsize hwnd);
367#else
369GIOChannel *g_io_channel_win32_new_messages (guint hwnd);
370#endif
371
372/* Create an IO channel for C runtime (emulated Unix-like) file
373 * descriptors. After calling g_io_add_watch() on an IO channel
374 * returned by this function, you shouldn't call read() on the file
375 * descriptor. This is because adding polling for a file descriptor is
376 * implemented on Win32 by starting a thread that sits blocked in a
377 * read() from the file descriptor most of the time. All reads from
378 * the file descriptor should be done by this internal GLib
379 * thread. Your code should call only g_io_channel_read_chars().
380 */
382GIOChannel* g_io_channel_win32_new_fd (gint fd);
383
384/* Get the C runtime file descriptor of a channel. */
386gint g_io_channel_win32_get_fd (GIOChannel *channel);
387
388/* Create an IO channel for a winsock socket. The parameter should be
389 * a SOCKET. Contrary to IO channels for file descriptors (on *Win32),
390 * you can use normal recv() or recvfrom() on sockets even if GLib
391 * is polling them.
392 */
394GIOChannel *g_io_channel_win32_new_socket (gint socket);
395
396GLIB_DEPRECATED_FOR(g_io_channel_win32_new_socket)
397GIOChannel *g_io_channel_win32_new_stream_socket (gint socket);
398
400void g_io_channel_win32_set_debug (GIOChannel *channel,
401 gboolean flag);
402
403#endif
404
406
407#endif /* __G_IOCHANNEL_H__ */
struct _GIConv * GIConv
Definition gconvert.h:85
GLIB_AVAILABLE_IN_ALL GIOStatus g_io_channel_read_line(GIOChannel *channel, gchar **str_return, gsize *length, gsize *terminator_pos, GError **error)
GIOError g_io_channel_write(GIOChannel *channel, const gchar *buf, gsize count, gsize *bytes_written)
GLIB_AVAILABLE_IN_ALL gboolean g_io_channel_get_buffered(GIOChannel *channel)
GLIB_AVAILABLE_IN_ALL const gchar * g_io_channel_get_line_term(GIOChannel *channel, gint *length)
GLIB_AVAILABLE_IN_ALL GIOStatus g_io_channel_set_flags(GIOChannel *channel, GIOFlags flags, GError **error)
GLIB_AVAILABLE_IN_ALL GIOChannelError g_io_channel_error_from_errno(gint en)
GLIB_AVAILABLE_IN_ALL guint g_io_add_watch_full(GIOChannel *channel, gint priority, GIOCondition condition, GIOFunc func, gpointer user_data, GDestroyNotify notify)
GIOError g_io_channel_read(GIOChannel *channel, gchar *buf, gsize count, gsize *bytes_read)
GIOError
Definition giochannel.h:47
@ G_IO_ERROR_NONE
Definition giochannel.h:48
@ G_IO_ERROR_INVAL
Definition giochannel.h:50
@ G_IO_ERROR_AGAIN
Definition giochannel.h:49
@ G_IO_ERROR_UNKNOWN
Definition giochannel.h:51
GLIB_AVAILABLE_IN_ALL void g_io_channel_set_buffer_size(GIOChannel *channel, gsize size)
void g_io_channel_close(GIOChannel *channel)
GLIB_AVAILABLE_IN_ALL GQuark g_io_channel_error_quark(void)
typedefG_BEGIN_DECLS struct _GIOChannel GIOChannel
Definition giochannel.h:43
GIOChannelError
Definition giochannel.h:57
@ G_IO_CHANNEL_ERROR_ISDIR
Definition giochannel.h:62
@ G_IO_CHANNEL_ERROR_OVERFLOW
Definition giochannel.h:65
@ G_IO_CHANNEL_ERROR_FAILED
Definition giochannel.h:68
@ G_IO_CHANNEL_ERROR_PIPE
Definition giochannel.h:66
@ G_IO_CHANNEL_ERROR_NXIO
Definition giochannel.h:64
@ G_IO_CHANNEL_ERROR_FBIG
Definition giochannel.h:59
@ G_IO_CHANNEL_ERROR_INVAL
Definition giochannel.h:60
@ G_IO_CHANNEL_ERROR_NOSPC
Definition giochannel.h:63
@ G_IO_CHANNEL_ERROR_IO
Definition giochannel.h:61
GLIB_AVAILABLE_IN_ALL void g_io_channel_init(GIOChannel *channel)
GLIB_AVAILABLE_IN_ALL GIOCondition g_io_channel_get_buffer_condition(GIOChannel *channel)
GLIB_AVAILABLE_IN_ALL GIOChannel * g_io_channel_unix_new(int fd)
GLIB_AVAILABLE_IN_ALL GIOStatus g_io_channel_read_unichar(GIOChannel *channel, gunichar *thechar, GError **error)
GLIB_AVAILABLE_IN_ALL gint g_io_channel_unix_get_fd(GIOChannel *channel)
GLIB_AVAILABLE_IN_ALL guint g_io_add_watch(GIOChannel *channel, GIOCondition condition, GIOFunc func, gpointer user_data)
GIOError g_io_channel_seek(GIOChannel *channel, gint64 offset, GSeekType type)
GLIB_AVAILABLE_IN_ALL GSource * g_io_create_watch(GIOChannel *channel, GIOCondition condition)
GLIB_AVAILABLE_IN_ALL GIOStatus g_io_channel_read_chars(GIOChannel *channel, gchar *buf, gsize count, gsize *bytes_read, GError **error)
GIOStatus
Definition giochannel.h:72
@ G_IO_STATUS_NORMAL
Definition giochannel.h:74
@ G_IO_STATUS_AGAIN
Definition giochannel.h:76
@ G_IO_STATUS_ERROR
Definition giochannel.h:73
@ G_IO_STATUS_EOF
Definition giochannel.h:75
GLIB_AVAILABLE_IN_ALL gboolean g_io_channel_get_close_on_unref(GIOChannel *channel)
GLIB_AVAILABLE_IN_ALL GIOStatus g_io_channel_read_to_end(GIOChannel *channel, gchar **str_return, gsize *length, GError **error)
GLIB_AVAILABLE_IN_ALL GIOStatus g_io_channel_flush(GIOChannel *channel, GError **error)
GLIB_AVAILABLE_IN_ALL GIOChannel * g_io_channel_new_file(const gchar *filename, const gchar *mode, GError **error)
GLIB_AVAILABLE_IN_ALL void g_io_channel_set_buffered(GIOChannel *channel, gboolean buffered)
GLIB_AVAILABLE_IN_ALL GIOStatus g_io_channel_shutdown(GIOChannel *channel, gboolean flush, GError **err)
GLIB_AVAILABLE_IN_ALL GIOStatus g_io_channel_write_chars(GIOChannel *channel, const gchar *buf, gssize count, gsize *bytes_written, GError **error)
gboolean(* GIOFunc)(GIOChannel *source, GIOCondition condition, gpointer data)
Definition giochannel.h:131
GLIB_AVAILABLE_IN_ALL void g_io_channel_unref(GIOChannel *channel)
GLIB_AVAILABLE_IN_ALL const gchar * g_io_channel_get_encoding(GIOChannel *channel)
GLIB_AVAILABLE_IN_ALL GIOStatus g_io_channel_set_encoding(GIOChannel *channel, const gchar *encoding, GError **error)
GLIB_AVAILABLE_IN_ALL void g_io_channel_set_line_term(GIOChannel *channel, const gchar *line_term, gint length)
GLIB_AVAILABLE_IN_ALL GIOChannel * g_io_channel_ref(GIOChannel *channel)
GLIB_AVAILABLE_IN_ALL void g_io_channel_set_close_on_unref(GIOChannel *channel, gboolean do_close)
GLIB_AVAILABLE_IN_ALL GIOStatus g_io_channel_read_line_string(GIOChannel *channel, GString *buffer, gsize *terminator_pos, GError **error)
GIOFlags
Definition giochannel.h:87
@ G_IO_FLAG_IS_WRITABLE
Definition giochannel.h:92
@ G_IO_FLAG_IS_SEEKABLE
Definition giochannel.h:94
@ G_IO_FLAG_SET_MASK
Definition giochannel.h:97
@ GLIB_AVAILABLE_ENUMERATOR_IN_2_74
Definition giochannel.h:88
@ G_IO_FLAG_NONBLOCK
Definition giochannel.h:90
@ G_IO_FLAG_APPEND
Definition giochannel.h:89
@ G_IO_FLAG_GET_MASK
Definition giochannel.h:96
@ G_IO_FLAG_MASK
Definition giochannel.h:95
@ G_IO_FLAG_IS_WRITEABLE
Definition giochannel.h:93
@ G_IO_FLAG_IS_READABLE
Definition giochannel.h:91
GLIB_AVAILABLE_IN_ALL GIOStatus g_io_channel_seek_position(GIOChannel *channel, gint64 offset, GSeekType type, GError **error)
GSeekType
Definition giochannel.h:80
@ G_SEEK_CUR
Definition giochannel.h:81
@ G_SEEK_END
Definition giochannel.h:83
@ G_SEEK_SET
Definition giochannel.h:82
GLIB_VAR GSourceFuncs g_io_watch_funcs
Definition giochannel.h:330
GLIB_AVAILABLE_IN_ALL GIOFlags g_io_channel_get_flags(GIOChannel *channel)
GLIB_AVAILABLE_IN_ALL GIOStatus g_io_channel_write_unichar(GIOChannel *channel, gunichar thechar, GError **error)
GLIB_AVAILABLE_IN_ALL gsize g_io_channel_get_buffer_size(GIOChannel *channel)
#define GLIB_DEPRECATED_FOR(f)
#define GLIB_AVAILABLE_IN_ALL
#define GLIB_VAR
signed long gint64
Definition glibconfig.h:66
signed long gssize
Definition glibconfig.h:82
unsigned long gsize
Definition glibconfig.h:83
#define G_END_DECLS
Definition gmacros.h:910
#define G_BEGIN_DECLS
Definition gmacros.h:909
GIOCondition
Definition gmain.h:34
typedefG_BEGIN_DECLS struct _GPollFD GPollFD
Definition gpoll.h:61
G_BEGIN_DECLS typedef guint32 GQuark
Definition gquark.h:38
typedefG_BEGIN_DECLS struct _GString GString
Definition gstring.h:43
gint gboolean
Definition gtypes.h:56
G_BEGIN_DECLS typedef char gchar
Definition gtypes.h:52
void * gpointer
Definition gtypes.h:109
int gint
Definition gtypes.h:55
void(* GDestroyNotify)(gpointer data)
Definition gtypes.h:140
unsigned int guint
Definition gtypes.h:61
G_BEGIN_DECLS typedef guint32 gunichar
Definition gunicode.h:61
static const struct @51 priority[]
static void error(LoadState *S, const char *why)
gchar partial_write_buf[6]
Definition giochannel.h:116
GString * write_buf
Definition giochannel.h:115
gsize buf_size
Definition giochannel.h:112
GIConv read_cd
Definition giochannel.h:107
GIOFuncs * funcs
Definition giochannel.h:104
GString * read_buf
Definition giochannel.h:113
guint use_buffer
Definition giochannel.h:120
gchar * encoding
Definition giochannel.h:106
guint line_term_len
Definition giochannel.h:110
guint is_writeable
Definition giochannel.h:124
guint is_readable
Definition giochannel.h:123
GString * encoded_read_buf
Definition giochannel.h:114
guint is_seekable
Definition giochannel.h:125
gpointer reserved1
Definition giochannel.h:127
guint close_on_unref
Definition giochannel.h:122
GIConv write_cd
Definition giochannel.h:108
gpointer reserved2
Definition giochannel.h:128
gchar * line_term
Definition giochannel.h:109
guint do_encode
Definition giochannel.h:121
GIOStatus(* io_read)(GIOChannel *channel, gchar *buf, gsize count, gsize *bytes_read, GError **err)
Definition giochannel.h:136
GIOStatus(* io_close)(GIOChannel *channel, GError **err)
Definition giochannel.h:150
GIOStatus(* io_write)(GIOChannel *channel, const gchar *buf, gsize count, gsize *bytes_written, GError **err)
Definition giochannel.h:141
GIOStatus(* io_set_flags)(GIOChannel *channel, GIOFlags flags, GError **err)
Definition giochannel.h:155
void(* io_free)(GIOChannel *channel)
Definition giochannel.h:154
GIOStatus(* io_seek)(GIOChannel *channel, gint64 offset, GSeekType type, GError **err)
Definition giochannel.h:146
GIOFlags(* io_get_flags)(GIOChannel *channel)
Definition giochannel.h:158